summaryrefslogtreecommitdiff
path: root/www
AgeCommit message (Collapse)AuthorFilesLines
2004-12-04Switch to use RUBY_DLEXT as suffix of extention library.taca2-4/+4
2004-12-04Add some configuration tips to MESSAGE.ben1-1/+11
2004-12-04Set DISTINFO_FILE after included php/ext.mk, because it overwrites it.wiz1-2/+5
2004-12-04Fix typo in maintainer.wiz1-2/+2
2004-12-04NetBSD have socklen_t.taya2-6/+13
define HAVE_SOCKLEN_T
2004-12-04update mozilla-stable to 1.7.3taya46-408/+1718
stable branch of mozilla was switched to 1.7-branch mostly copied from www/mozilla
2004-12-03Add SUBDIR for ap2-chroot.ben1-1/+2
2004-12-03Initial import for ap2-chroot-0.3, a module to easily run Apache in aben5-0/+58
chroot environment. mod_chroot makes running Apache in a secure chroot environment easy. You don't need to create a special directory hierarchy containing /dev, /lib, /etc... mod_chroot allows you to run Apache in a chroot jail with no additional files. The chroot() system call is performed at the end of startup procedure - when all libraries are loaded and log files open.
2004-12-03generate extension directory & related stuff at install time.taya3-6/+11
fix PR pkg/28396 bump PKGREVISION
2004-12-03Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.wiz11-25/+25
Suggested by Roland Illig, ok'd by various.
2004-12-03Re-point paths to devel/guile14-gtk instead of devel/guile-gtk.wiz1-2/+2
2004-12-02Update liferea to 0.6.4.minskim3-6/+8
Changes: * Added Polish translation and default feed list. (Jakub W. Jozwicki) * Article skimming keybinding is now global. (Lars Lindner) * Not matching types for proxy port variable fixed. This should solve proxy problems on Solaris. (Lars Lindner) * Fixes a bug that caused the items of a deleted feed not to be removed from all vfolders. (Jakub W. Jozwicki) * Workaround for unwanted GtkHTML2 default background color. Liferea now enforces a white background. (Juha-Mikko Ahonen)
2004-12-01Fix dependency to ruby-openssl package; since this package is only fortaca1-2/+2
ruby16, it should depneds on ruby16-openssl package. This should fix bulkbuild problem.
2004-12-01Add USE_BUILDLINK3=yes, make sure to BUILD_DEPNDS to ruby-rdtool.taca1-1/+2
This should fix bulkbuild problem.
2004-12-01"the the" -> "the"wiz2-3/+3
2004-11-30Modify the apxs(8) script to use ${APR_LIBTOOL} as the libtool tojlam4-5/+28
build modules if APR_LIBTOOL is defined in the environment. Force the use of the libtool wrapper by module packages by setting APR_LIBTOOL in apache2/buildlink3.mk. Bump the PKGREVISION.
2004-11-30Bump PKGREVISION for removal of db3 buildlink3.mk file fromwiz3-7/+6
GConf's buildlink3.mk file. Bump BUILDLINK_DEPENDS where appropriate.
2004-11-30Forgot to change LYNX_SCREEN_LIB, this should be fixed now.xtraeme2-5/+7
2004-11-29Update to 1.4.6:jmmv3-9/+10
Changes * Fix wrong certificate stored (Christian) [#158453] * Disallow favicon links from subframes (Christian) * Fix opening of content when not downloading automatically (Marco) [#158466] * Add --disable-filepicker configure option (Christian) * Fix tabs menu ordering when using the tab-groups extension (Christian) * Fix event context computation (Christian) * Adapt to mozilla API changes (Christian; patch adapted from a galeon patch by Crispin Flowerday) * Fix out-of-srcdir build (Marco, Christian) * Don't raise windows when using --new-tab (Christian) [#158923] Translation updates * Jordi Mallach (ca)
2004-11-29Fix clearsilver-base dependency.epg2-4/+4
2004-11-29Add and enable clearsilver-base, py-clearsilver, and ruby-clearsilver.epg1-1/+4
2004-11-29Update to 0.9.13 and turn this into a meta-package; what was formerlyepg7-192/+83
in this package has split into py-clearsilver and clearsilver-base. Release Notes for Clearsilver 0.9.13 11/24/2004 ------------------------------------- bugfix release - one incompatible change: semi-public function cgi_html_ws_strip now takes a second argument to set the level of stripping - white space stripper now has two levels: 1 is the old debug level (which doesn't strip whitespace at the beginning of a line) and the second strips all duplicate whitespace - make java/perl/python/ruby wrappers for CS include the html strfuncs (ie, filters) - make hdf destroy less recursive (so we don't blow the stack on really large data sets) Release Notes for Clearsilver 0.9.12 09/29/2004 ------------------------------------- bugfix release - fix bugs in Java wrapper and add white space stripper option - fix some allocation bugs in cs parser - add single quotes to the list of characters to escape in url_escape - fix core dump in find_context (hit during parse error in evar) - fix some operator precedence bug and some bad expression handling of empty strings Release Notes for Clearsilver 0.9.11 08/03/2004 ------------------------------------- bugfix release - fix bugs in Java wrapper - update copyright notice - fixes to get rid of gcc3 warnings - fix bug in cgi/html.c Release Notes for Clearsilver 0.9.10 06/02/2004 ------------------------------------- bugfix release - Parenthesis in the wrong place in the last patch - fix some memory leaks in template parsing and rendering Release Notes for Clearsilver 0.9.9 05/14/2004 ------------------------------------- A small release. INCOMPATIBLE CHANGE - The convert_text_html_alloc_options() HTML_CONVERT_OPTS struct now has another member, link_name, which (if not NULL) will be used instead of the link as the title of the link which gets created. If you don't zero out your HTML_CONVERT_OPTS struct (using either memset or calloc, for instance), you'll need to initialize the link_name member (probably to NULL). Users of the older convert_text_html_alloc() function or the python wrapped version don't have to worry about this. Also, added a ne_file_read_len() for loading binary files since it returns the length of the loaded data. Release Notes for Clearsilver 0.9.8 04/22/2004 ------------------------------------- A bit more than a bugfix release, we have some new features and abilities. New Features - Internal functions in ClearSilver can now take multiple arguments. This includes support for the comma ',' operator in CS, which works like the comma operator in C. - added string.slice function as an example of a multiple argument function. - added string.length function to replace old len function - added subcount function to replace bad len function overloading - added gettext support from Gerald Dachs <gda at gmx.de> - INCOMPATIBLE CHANGE: added secure flag to cgi_cookie_set function - Add new allocating sprintf routines which take the char * as an argument and return the size of the allocated string - Dave added a bunch of my public python code to the python example code (we need to define a real package for this stuff at some point) - support for sqlite in odb, and various odb improvements Bug fixes - gzip compression was broken, thanks to the guys at OmniWeb for pointing out my mistake. - handle redirects when using https correctly - handle invalid form data without erroring out (or segfaulting)
2004-11-29Import ruby-clearsilver-0.9.13.epg3-0/+24
Clearsilver is a fast, powerful, and language-neutral HTML template system. In both static content sites and dynamic HTML applications, it provides a separation between presentation code and application logic which makes working with your project easier. This package contains the Ruby binding to clearsilver.
2004-11-29Depend on py-clearsilver instead of clearsilver.epg1-2/+2
2004-11-29Import py-clearsilver-0.9.13.epg3-0/+28
Clearsilver is a fast, powerful, and language-neutral HTML template system. In both static content sites and dynamic HTML applications, it provides a separation between presentation code and application logic which makes working with your project easier. This package contains the Python binding to clearsilver.
2004-11-28Import clearsilver-base-0.9.13.epg3-0/+162
Clearsilver is a fast, powerful, and language-neutral HTML template system. In both static content sites and dynamic HTML applications, it provides a separation between presentation code and application logic which makes working with your project easier. This package contains the base clearsilver infrastructure. All other clearsilver modules depend on this, but it is all you need if you are using clearsilver from C.
2004-11-28adam at monkeybyte dot org's mail setup is broken, revert to tech-pkg.wiz1-2/+2
2004-11-28Apply six official patches:taca2-7/+24
* 2004-11-07 23:37 (Minor) Squid fails to close TCP connection after blank HTTP response * 2004-11-06 21:42 (Minor) 100% CPU on startup on new/experimental Linux kernels due to O_NONBLOCK * 2004-11-06 15:28 (Minor) Failure to shut down busy helpers on -k rotate/reconfigure * 2004-10-20 23:23 (Minor) The new req_header and resp_header acls segfaults immediately on parse of squid.conf * 2004-10-19 10:09 (Cosmetic) Document -v (protocol version) option to LDAP helpers * 2004-10-14 22:48 (Minor) 100% CPU usage on half-closed PUT/POST requests Bump package revision.
2004-11-28Reset maintainer, email bounced.wiz1-2/+2
2004-11-28Update ap-ruby package to 1.2.4.taca4-10/+25
Changes are huge, please see ChangeLog file.
2004-11-28Update ap2-ruby pacakge to 1.2.4.taca6-75/+24
Changes are huge, please see ChangeLog.
2004-11-28update to pycurl-7.12.2recht2-6/+5
Version 7.12.2 [requires libcurl-7.12.2 or better] -------------- 2004-10-15 Kjetil Jacobsen <kjetilja> * Added CURLOPT_FTPSSLAUTH (and CURLFTPAUTH_*). * Added CURLINFO_OS_ERRNO. 2004-08-17 Kjetil Jacobsen <kjetilja> * Use LONG_LONG instead of PY_LONG_LONG to make pycurl compile on Python versions < 2.3 (fix from Domenico Andreoli <cavok at libero.it>).
2004-11-28Add and enable ruby16-borges package.taca1-1/+2
2004-11-28Importing ruby16-borges package previous ruby-borges version for ruby16.taca4-0/+79
2004-11-28Update ruby-webunit package to 20040429++ migrating to use newtaca4-17/+21
framework for Ruby packages. === 20040429+ --> 20040429++ * add <area> to SingleTags in parser.html (Thanks to Philip Plumlee) === 20040429 --> 20040429+ * fix bug about handling XHTML(like <hr/> tag, in SingleTags at parser.rb) === 20040211 --> 20040429 * fit htmlsplit to XHTML(like <p/> tag, it's temporary and defective) === 20030121 --> 20040211 * fix for ruby 1.8.1
2004-11-28Migrate ruby-installpkg to use new framework for Ruby packages.taca1-11/+10
And mark this package is only for ruby16, too. The same version is bundled in ruby18.
2004-11-28Migrate ruby-tag to use new framework for Ruby packages.taca1-6/+4
2004-11-28Migrate ruby-htmlsplit to use new framework for Ruby packages.taca1-8/+5
2004-11-28Update ruby-fcgi pacakge to 0.8.5 migrating to use new frameworktaca3-36/+10
for Ruby packages. Changes are unknown.
2004-11-28Update to ruby-borges pacakge to 1.1.0 migrating to use new frameworktaca4-62/+1312
for Ruby packages. Changes are huge and this version is Ruby 1.8 and lator.
2004-11-28Migrate ap2-ruby to use new framework for Ruby packages.taca2-27/+52
2004-11-28Migrate ap-ruby to use new framework for Ruby packages.taca2-42/+43
2004-11-27Update p5-Apache-Test from version 1.12 to 1.16.he2-5/+5
Change log: 1.16 - November 9, 2004 launder the require()d custom config filename to make -T happy [Torsten Fo"rtsch <torsten.foertsch gmx.net>] added Apache::TestRunPHP and Apache::TestConfigPHP classes, which provide a framework for server-side testing via PHP scripts [Geoffrey Young] fix problem with multiple all.t files where only the final file was being run through the test harness. [Geoffrey Young] Documented that redirection does not work with "POST" requests in Apache::TestRequest unless LWP is installed. [David Wheeler] Separated the setting of the undocumented $RedirectOK package variable by users of Apache::TestRequest from when it is set internally by passing the "requests_redirectable" parameter to the user_agent() method. This allows users to override the behavior set by the user_agent() method without replacing it. [David Wheeler] 1.15 - October 22, 2004 add need_php4() and have_php4() which will return true when mod_php4 is available. also, tidy up need_php() and have_php() for PHP4 on Apache 2.0. [Joe Orton] add new test_config make target, equivalent to t/TEST -conf, and make it a prerequisite for the cmodules make target. now you can 'make cmodules' to build the things in c-modules/ without running t/TEST -conf first. [Geoffrey Young] add -withtestmore import action, which allows Test::More >= 0.49 to replace Test.pm as the engine for server-side tests [Geoffrey Young] add automatic core dump backtrace generation in t/REPORT if Devel::GDB is installed [Gozer] add 'testcover' make target for running tests with Devel::Cover [Geoffrey Young] 1.14 - October 12, 2004 improve the same_interpreter framework to handle response failures while trying to init and later find out the same interpreter. [Stas] make sure that 'make distclean' cleans all the autogenerated files [Stas] make sure that if -maxclients option is passed on the command line, minclients will never be bigger than that value [Stas] add -one-process runtime argument, which will start the server in single-server mode (httpd -X in Apache 1.X or httpd -D ONE_PROCESS in 2.X) [Geoffrey Young] In open_cmd, sanitize PATH instead of clearing it [Gozer] Allow / \ and \\ path delimiters in SKIP file [Markus Wichitill <mawic@gmx.de>] Added an apxs query cache for improved test performance [Gozer] run_tests make target no longer invokes t/TEST -clean, making it possible to save a few development cycles when a full cleanup is not required between runs. [Geoffrey Young] Apache::TestSmoke imrovements: [Stas] o the command line option -iterations=N should always be respected (previously it was internally overriden for order!='random'). o since IPC::Run3 broke the Ctrl-C handler, we started to loose any intermediate results, should the run be aborted. So for now, try to always store those results in the temp file: smoke-report...$iter.temp fix 'require blib' in scripts to also call 'blib->import', required to have an effect under perl 5.6.x. [Stas] don't allow running an explicit 'perl Makefile.PL', when Apache-Test is checked out into the modperl-2.0 tree, since it then decides that it's a part of the modperl-2.0 build and will try to use modperl httpd/apxs arguments which could be unset or wrong [Stas] Fix skip test suite functionality in the interactive configuration phase [Stas] s/die/CORE::die/ after exec() to avoid warnings (and therefore failures) when someone overrides CORE::die when using Apache-Test [William McKee, Stas] Overrode Module::Build's "testcover" action in Apache::TestMB to prevent the Apache::Test sticky preference files from being included in the coverage report. [David] 1.13 - Aug 20, 2004 move the custom config code into Apache::TestConfig, split the config object creation in 2 parts - first not requiring the knowledge of httpd location, the second requiring one, refactor the custom config interactive prompting into the second phase, if failed to find httpd. Reshuffle the code to run first bits not requiring the knowledge of httpd location. [Stas] fix Apache::TestCommonPost::lwp_do to work with LWP 5.800 ($res->content() doesn't allow CODE refs anymore, instead used content_ref to avoid huge strings copy) [Stas] add @PHP_MODULE@ extra.conf.in substitution variable, which selects mod_php4 or mod_php5 as appropriate. [Geoffrey Young] the have() function was removed entirely - use need() instead. [Geoffrey Young] add need() and need_* variant functions (need_module(), need_apache(), etc) for use specifically with plan() to decide whether or not a test should run. have_* variants (have_module(), have_apache(), etc) are now specifically for use outside of plan(), although they can continue to be used within plan() without fear of current tests breaking. [Geoffrey Young] add need_php() and have_php() which will return true when either mod_php4 or mod_php5 are available, providing functionality similar to need_cgi() and have_cgi(). [Geoffrey Young] Add APACHE_TEST_EXTRA_ARGS make variable to all invocations to t/TEST to allow passing extra arguments from the command line. [Gozer] When APACHE_TEST_NO_STICKY_PREFERENCES=1 is used don't even try to interactively configure the server, as we don't save any config it was entering an infinite loop. [Stas] If a directory t/lib exists from where the tests are run, adjust @INC so that this directory is added when running the tests, both within t/TEST and within t/conf/modperl_inc.pl. This allows inclusion of modules specific to the tests that aren't intended to be installed. [Stas, Randy] make a special case for threaded mpm configuration, to ensure that unless maxclients was specified, MaxClients will be exactly twice bigger than ThreadsPerChild (minclients), since if we don't do that, Apache will reduce MaxClients to the same value as ThreadsPerChild. [Stas] Renamed generate_test_script() to generate_script() in Apache::TestMB to match the naming convention used in Apache::TestMM and elsewhere. [David] Apache::TestMB now only prints the "Generating test running script" message if verbosity is enabled (e.g., by passing --verbose when executing Build.PL). [David] Fixed the "requests_redirectable" parameter to Apache::TestRequest::user_agent() so that it works as docmented when passed a negative value. [Boris Zentner] Documented support for passing an array reference to the "requests_redirectable" parameter to Apache::TestRequest::user_agent() to be passed to LWP::UserAgent if LWP ist installed. [David]
2004-11-27Upgrade p5-Apache-AuthCookie from 3.05 to 3.06.he2-5/+6
Add dependency on p5-Apache-Test (even though I could not make "make test" work). Change log: Version: 3.06 ** BUG FIX: AuthNameSatisfy (Any|All) directives were broken. AuthCookie was using AuthCookieSatisfy rather than ${auth_name}Satisfy. If you used this feature and had an "AuthCookieSatisfy" directive in your config file, you MUST change this to ${auth_name}Satisfy. E.g.: "WhateverSatisfy All" - created better test cases for AuthNameSatisfy directives. - when redirecting, set Location with headers_out() not err_headers_out(). apache prefers Location in headers_out, even if the status code is not 200. - MP2: Apache::unescape_url() -> Apache::URI::unescape_url() - check for mod_perl 1.9913 or later for Apache::URI (Frederick Moyer) - Remove set status in login.pl which caused malformed custom error document (Frederick Moyer) - Add support for ${auth_name}CookieName to change the name of the cookie used for each auth name. Default remains ${auth_name}_${auth_type} if not set. - make some debug log_error() calls conditional on $debug
2004-11-27Update p5-Apache-Filter from 1.019 to 1.022.he3-16/+14
Add a HOMEPAGE pointing into search.cpan.org. Adapt the patch to the new version of the package. Change log: Version: 1.022 Fri Jan 31 14:00:48 CST 2003 - Now can be installed using either Module::Build or ExtUtils::MakeMaker. - Simplified a few of the TIEHANDLE code chunks that used substr() to manipulate saved filehandle data. Version: 1.021 Fri Dec 27 10:13:23 CST 2002 - The test suite now provides a bit more useful information upon failure and uses Test.pm to generate its output. - Avoid an "undefined value" warning in READLINE() method [Dave Rolsky] - If the initial $r isn't an Apache object (could be Apache::Request or a subclass of Apache), make an on-the-fly subclass of whatever it is. [Dave Rolsky] Version: 1.020 Date: Mon Nov 11 17:11:31 AEST 2002 Fixed the Apache::PerlRunFilter module, which was missing a call to filter_register(). [Ruslan U. Zakirov, Oleh Khoma] Minor regex speedup in READLINE() method of filehandle. Correct doc bug about Filter2 and Filter3. Add Apache::HTML::ClassParser to list of filter-aware modules.
2004-11-27Update pear-HTTP_Request to 1.2.3.jdolecek2-6/+9
Changes since 1.2 include many bugfixes and possibility to add misc. socket options. Full list http://pear.php.net/package/HTTP_Request/download/. Package requires Net_Socket>=1.0.2 and Net_URL>=1.0.12.
2004-11-27Upgrade bundled Net_Socket to 1.0.2 and Net_SMTP to 1.2.6 on installation.jdolecek3-6/+15
These include some important bug fixes, and some other pear packages require the newer versions. Bump PKGREVISION, and BUILDLINK_RECOMMENDED.
2004-11-27claim MAINTAINERjdolecek2-4/+4
2004-11-27update for DIST_SUBDIR=pearjdolecek3-9/+9
2004-11-27Use HOMEPAGE provided by lang/php/pear.mkjdolecek3-7/+4