summaryrefslogtreecommitdiff
path: root/www
AgeCommit message (Collapse)AuthorFilesLines
2010-02-15DESTDIR support. XXX horrible, abusive packagejoerg1-18/+18
2010-02-15Disallow Python 2.4, it doesn't have python-config.joerg1-1/+3
2010-02-15Updated mod_fcgid to 2.3.5.fhajny5-19/+41
This covers the transition to ASF that mod_fcgi was donated to in the course of 2009. No longer backwards compatible as far as configuration is concerned! Changes with mod_fcgid 2.3.5 *) Stop using the unsuppressable "notice" log level for debug and informational messages. PR 48536. [Jeff Trawick] *) Respect DEFAULT_REL_RUNTIMEDIR for default values of FcgidIPCDir and FcgidProcessTableFile. [Jeff Trawick] *) Resolve fatal EDEADLK errors with threaded MPMs on Solaris. [Jeff Trawick] *) Display information about active processes in the server-status page. [Ryan Pan] *) Fix compatibility of httpd.conf-editing logic with non-GNU awk. PR 48067. [Hans Werner Strube <strube physik3.gwdg.de>] *) Fix startup errors creating shared memory in constrained systems, such as OS X in its default configuration. This is a regression since mod_fcgid 2.2. [Jeff Trawick] *) Recover from most "Resource temporarily unavailable" errors writing the request to the FastCGI application. These were common with large request bodies on Mac OS X and intermittent on Solaris. PR 48025. [Jeff Trawick] *) Fix a bug in fixconf.sed that resulted in a prefix of "FcgidFcgid" on the updated directives. [Dan Hulme <dhulme gmail.com>] *) Fix possible corruption or truncation of request bodies which exceed FcgidMaxRequestInMem. This is a regression since mod_fcgid 2.2, which effectively ignored FcgidMaxRequestInMem if larger than 8K. PR 48021. [Jeff Trawick] *) Fix handling of the request body when a FastCGI access checker/ authenticator/authorizer (AAA) was configured. The body wasn't available for the request handler. PR 47973. [Jeff Trawick, Barry Scott <barry.scott onelan.co.uk>] *) Fix handling of FcgidCmdOptions so that it can apply to wrapper scripts which were defined with command-line arguments on the FcgidWrapper directive. [Jeff Trawick] Changes with mod_fcgid 2.3.4 *) Corrected unix 'make install' target regression in 2.3.3. [Jeff Trawick] Changes with mod_fcgid 2.3.3 *) Add FcgidCmdOptions directive to associate some of the existing configuration settings with a specific command. [Jeff Trawick] *) Allow/respect virtual host settings for the following directives: FcgidBusyTimeout, FcgidMaxProcessesPerClass, FcgidMinProcessesPerClass, FcgidIdleTimeout, and FcgidProcessLifetime. [Jeff Trawick] Changes with mod_fcgid 2.3.2 *) Fix a make install DESTDIR problem handling the reference manual and potentially other files (specific to 2.3.1). [Paul Howarth <paul city-fan.org>] *) Fix a mod_fcgid 2.3.1 failure with <sys/mutex.h> when building for httpd 2.0.x on some platforms. [Paul Howarth <paul city-fan.org>] *) Termination of idle processes after inactivity timeout can now be disabled by setting FcgidIdleTimeout to 0. Termination of idle processes based on the process lifetime can now be disabled by setting FcgidProcessLifeTime to 0. FcgidMaxRequestsPerProcess now accepts 0 for unlimited. [Ricardo Cantu <ricardo smartcsc.com>] *) All directives have been renamed in order to use a common prefix "Fcgid". Underscores in directive names have been eliminated in favor of CamelCase. The old directive names will still work but are deprecated. To fix your configuration you can use the sed script build/fixconf.sed. The following tables contains old and new directive names. Old Name New Name ................................................................... BusyScanInterval FcgidBusyScanInterval BusyTimeout FcgidBusyTimeout DefaultInitEnv FcgidInitialEnv DefaultMaxClassProcessCount FcgidMaxProcessesPerClass DefaultMinClassProcessCount FcgidMinProcessesPerClass ErrorScanInterval FcgidErrorScanInterval FastCgiAccessChecker FcgidAccessChecker FastCgiAccessCheckerAuthoritative FcgidAccessCheckerAuthoritative FastCgiAuthenticator FcgidAuthenticator FastCgiAuthenticatorAuthoritative FcgidAuthenticatorAuthoritative FastCgiAuthorizer FcgidAuthorizer FastCgiAuthorizerAuthoritative FcgidAuthorizerAuthoritative FCGIWrapper FcgidWrapper IdleScanInterval FcgidIdleScanInterval IdleTimeout FcgidIdleTimeout IPCCommTimeout FcgidIOTimeout IPCConnectTimeout FcgidConnectTimeout MaxProcessCount FcgidMaxProcesses MaxRequestInMem FcgidMaxRequestInMem MaxRequestLen FcgidMaxRequestLen MaxRequestsPerProcess FcgidMaxRequestsPerProcess OutputBufferSize FcgidOutputBufferSize PassHeader FcgidPassHeader PHP_Fix_Pathinfo_Enable FcgidFixPathinfo ProcessLifeTime FcgidProcessLifeTime SharememPath FcgidProcessTableFile SocketPath FcgidIPCDir SpawnScore FcgidSpawnScore SpawnScoreUpLimit FcgidSpawnScoreUpLimit TerminationScore FcgidTerminationScore TimeScore FcgidTimeScore ZombieScanInterval FcgidZombieScanInterval *) Separate classes by virtual host also on Windows. [Rainer Jung] *) Log client IP address with many more error log messages. [Jeff Trawick] *) Fix basic implementation of FcgidMaxRequestInMem and FcgidMaxRequestLen directives. [Jeff Trawick] *) Merge per-directory directives so that they can be inherited or overridden within other containers as expected. Merge server config/ virtual host directives so that they can be inherited or overridden within a virtual host as expected. [Jeff Trawick] *) Use the virtual host settings for the request being processed instead of those of the first FastCGI request handled by this httpd child process. Affected directives: FcgidBusyTimeout, FcgidIOTimeout, FcgidConnectTimeout, FcgidMaxRequestsPerProcess, and FcgidOutputBufferSize. [Jeff Trawick] *) Directives which previously were ignored in a virtual host context are no longer allowed. [Jeff Trawick] *) Add an optional flag "virtual" to FcgidWrapper. If virtual is set, the URLs passed to the wrapper are not checked, whether they resolve to a file. [Rainer Jung] *) Make the second argument (suffix) for FcgidWrapper optional. A wrapper defined without a suffix applies to all URLs, unless there is another more specific wrapper with a suffix. [Rainer Jung] Changes with mod_fcgid 2.3.1 *) Suppress "need AuthType to note auth failure" error-level messages when a FastCGIAccessChecker fails without any other kind of authentication (Basic, Digest) configured. [Eric Covener] *) Complete the unix port to 2.3-dev trunk. [William Rowe] *) Provide a default, mandatory environment as with mod_cgi (with the inclusion of LD_LIBRARY_PATH or similar variables on other platforms), unless overridden by DefaultInitEnv. [William Rowe] *) Handle DefaultInitEnv for case-insensitive platforms by forcing the env variable names to uppercase on Win32, OS2 and Netware. [William Rowe] *) Don't try to set the ownership of the socket directory unless running as root and the directory was just created. This allows the default httpd.conf (with some daemon User/Group) to be used by non-root. [Jeff Trawick] *) Fix formatting of several messages, including the oft-seen "mod_fcgid: Can't create shared memory for size %zu byte". [Jeff Trawick] *) Fix declared names of FastCgiAuthenticator and FastCgiAuthenticator- Authoritative directives, allowing them to be used. [Ulf Haueisen <ulf dvlp.de>] *) Fix vhost-specific DefaultInitEnv settings. Previously, when setting multiple virtual hosts with the same SuexecUserGroup user and group, the process manager use the same process pool for both virtual hosts. This means if one virtual host has a DefaultInitEnv and the other has different values set, a fastcgi request from any of these virtual host can go to the same processes, which is inconsistent (a request from virtualhost a with DefaultInitEnv VAL "a", can go to a process spawned with virtualhost b with DefaultInitEnv VAL "b" set). [Gabriel Barazer <gabriel oxeva.fr>]
2010-02-14Update dillo to 2.2. Changes:snj5-29/+32
+- Added keybindings for scrolling. - Help button and local help file. +- Add support for multiple class names in CSS. - Fix X11 coordinate overflows with huge borders. - Improve CSS font parsing. - Enable font face setting via <font> element. - Ignore XML comment markers in CSS. - Split up long lines in plain.cc to avoid X11 coordinate overflows. - Fix user agent style for nested <ul>. - Add support for CSS property list-style-position. - Support border-width: thin | medium | thick. - Fix CSS_SHORTHAND_DIRECTIONS case in CssParser. - Add quirk to reset font properties in tables (fixes e.g. gmail). +- Cleaned up system includes in dpid directory. - Fixed CustProgressBox() for systems without weak symbols. - Handle signed chars. Added dIsspace() and dIsalnum() to dlib. - Added a_Dpip_get_attr_l() to DPIP's API. - Changed the CCCs to build in one step (for both HTTP and DPI). This is simpler and helps to avoid race conditions. - Updated CCCwork.txt to the new scheme. - Fixed a bug with OPTION element (it was parsing entities twice). - Bugfix: remove the empty cache entry lingering after connection abort. - Switched capi to use dlib's Dlist instead of a_List_* methods. - Remove empty cache entries on Stop-button press and new link request! - Fixed URL unescaping in the datauri DPI. - Changed and reimplemented the DPI API. * Fixed bugs and updated all DPI programs: * Reimplemented the file dpi using select(). No pthreads-based anymore. * Fixed ftp dpi: downloads, streamed transfer, error feedback. * Fixed a bug in dillo with lingering cache entries. * Made dpidc a C language program. * Made the internal dsh implementation use unique functions for read/write. * Removed the write/fwrite mix in DPIP. * Made the DPIP API token-based. Packet assembling is coded inside DPIP! * Several cleanups and more error handling sprinkled all over too. +- Fix segfault from AREA when MAP is missing name attribute. - Fix image map coordinates when margin/border/padding present. - Handle stylesheet @charset. - Fix cache segfault when cache entry removed. - Split words that contain whitespace as numeric character references. - Allow linebreaks around Chinese/Japanese characters. - Fix segfault in Html_parse_doctype (BUG#918). - Change exit code used for bad command line argument. - By default, do not use proxy for localhost (BUG 921). - Fix scrolling for text search. - Added 'save' key action (not bound by default). - Tooltips - Fix segfault when radio button lacks name attribute. - Enable popup menu below bottom of page content (BUG#856). - Handle JPEGs with CMYK color space. - Allow keysyms in keysrc. - Explicitly check installation bindir for dpid (BUG 930) - General cookies overhaul. +- Support for the letter-spacing property. +- Fixed a bug in w3c_mode. In fact it wasn't working at all. - Improve stylesheet menu. +- Limit number of simultaneous connections (BUG 685).
2010-02-14Fix socket_mode option. Bump revision.joerg2-6/+5
2010-02-14Update squid to 3.0.24 (3.0.STABLE24).taca2-6/+6
Changes to squid-3.0.STABLE24 (13 Feb 2010): - Bug 2858: Segment violation in HTCP - Updated refresh pattern for dynamic pages
2010-02-14Add a security patch described security advisory SQUID-2010_2.txt,taca3-3/+29
http://www.squid-cache.org/Advisories/SQUID-2010_2.txt Patch was the same content as official one. http://www.squid-cache.org/Versions/v2/2.7/changesets/12600.patch.
2010-02-14Update typolight28-translations package 20100210.taca5-14/+16
Icelandic and Dutch translation files are updated.
2010-02-13Switch from gecko to webkit-gtk. (still doesn't work, but at least builds..)tnn2-5/+5
2010-02-13Update to 3.20100212. From the changelog:schmonz3-10/+10
* template: Preprocess parameters before htmlizing. * img: Fix a bug that could taint @links with undef values. * setup automator: Configure Term::Readline to use bold for prompt, rather than default underline. Closes: #517656 * Allow jumping directly into account registration process by going to ikiwiki.cgi?do=register * Improve display of openid in preferences page. * Add link to userpage (or creation link) to top of preferences page. * opendiscussion: This plugin will also now allow posting comments to otherwise locked-down sites. * auto-blog.setup: Lock all pages, so only admin can post to the blog by default, and enable opendiscussion so others can comment. * Fix color and format plugins to appear in the websetup interface. * amazon_s3: Fix to support the EU S3 datacenter, which is more picky about attempts to create already existing buckets. * httpauth: When cgiauthurl is configured, httpauth can now be used alongside other authentication methods (like openid or anonok). Rather than always redirect to the cgiauthurl for authentication, there is now a button on the login form to use it. * httpauth: Add httpauth_pagespec setting that can be used to limit pages to only being edited via users authed with httpauth. * Allow globs to be used in user() pagespecs. * Group related plugins into sections in the setup file, and drop unused rcs plugins from the setup file.
2010-02-12DESTDIR supportjoerg6-12/+51
2010-02-12Added www/p5-Task-CatInABox version 0.03sno1-1/+2
2010-02-12Importing www/p5-Task-CatInABox version 0.03 as a dependency of scheduledsno3-0/+42
update of editors/p5-Padre-Plugin-Catalyst to 0.08. This distribution defined a set of modules to cover common modules used in Catalyst applications.
2010-02-12DESTDIR supportjoerg3-5/+8
2010-02-11Add an option for the oracle backend.joerg3-4/+29
2010-02-11- php-FastTemplatewiz1-2/+1
2010-02-10Pick something non-ancient for the JRE (v6 for now).joerg1-2/+2
2010-02-10Allow all python versions.joerg1-2/+1
2010-02-10Bump revision for change of PostgreSQL default version.joerg4-8/+8
2010-02-10Use pgsql as option name for consistency with other packages.joerg3-38/+38
2010-02-10Bump revision for PYTHON_VERSION_DEFAULT change.joerg9-15/+18
2010-02-10Retire PHP 4.joerg23-758/+1
2010-02-10iRetire apc-gui, php-FastTemplate and php4-apc.joerg15-285/+1
2010-02-10Retire psycopg1 option and rename psycopg2 to postgresql, making itjoerg3-48/+39
the default. Bump revision.
2010-02-10--libs for python-config is evil, it makes it find the static lib first.joerg1-2/+6
Bump revision.
2010-02-10Hack this to build against Apache 1.3.42. As 1.3.42 doesn't changedholland3-4/+15
anything significant in the internals, all this requires is patching the accepted version and bumping BUILDLINK_API_DEPENDS. PKGREVISION++.
2010-02-09+ py-uwsgijoerg1-1/+2
2010-02-09Import uwsgi-0.9.4.1:joerg4-0/+56
uWSGI is a fast (pure C), self-healing, developer-friendly WSGI server, aimed for professional python webapps deployment and development. Backend support exists for Apache, nginx, cherokee and lighttpd. Some of the features include: - low memory footprint - preforking and multithreaded operation - logging, diagnostic and profiling support - support for sendfile() - self-healing - graceful restart and hot-plug upgrading
2010-02-09No negative form of --with-ipv6.joerg1-3/+1
2010-02-09Fix overcomplicated install rules. Make sure to create the logfile atjoerg3-10/+125
install time with the right permissions and don't make most of the templates group writeable. Bump revision.
2010-02-09add a patch from upstream to fix "data callback excessive length"drochner3-3/+19
which is security critical
2010-02-09Update to 1.3.42, fixing CVE-2010-0010. Note: this package is now EOLdholland2-6/+6
upstream. The next security bug probably won't get patched, so if you're still using this, it's time to migrate to 2.x.
2010-02-08Add & enable p5-Web-Scraperseb1-1/+2
2010-02-08Initial import of p5-Web-Scraper version 0.32 in the NetBSD Packagesseb3-0/+41
Collection. The Perl 5 module Web::Scraper is a web scraper toolkit, inspired by Ruby's equivalent Scrapi. It provides a DSL-ish interface for traversing HTML documents and returning a neatly arranged Perl data structure.
2010-02-08Add & enable p5-HTML-TreeBuilder-LibXMLseb1-1/+2
2010-02-08Initial import of p5-HTML-TreeBuilder-LibXML version 0.11 in theseb3-0/+31
NetBSD Packages Collection. The Perl 5 module HTML::TreeBuilder::LibXML is a libxml based compatible interface to HTML::TreeBuilder, which could be slow for a large document.
2010-02-08Fix the name of the RC script.joerg2-4/+4
2010-02-08Update the optional uwsgi to 0.9.4, which fixes some BE issues.joerg2-6/+6
2010-02-08Update typolight28-translation package to 20100207.taca10-11/+560
* Update Polish language files, supporting really 2.8.RC2. * Add missing language files which should be added: Bosnian, Croatian, Finnish, Hungarian, Slovenian and Tagalog. * Drop executable permission from translation files.
2010-02-08* Add missing language files which should be added: Bosnian, Croatian,taca9-5/+644
Finnish, Hungarian, Slovenian and Tagalog. * Drop executable permission from translation files. Bump PKGREVISION.
2010-02-08Update to lighttpd-1.4.26:joerg4-27/+13
- fix various bugs, including a trivial to trigger OOM/DoS - Allow support for checking for exec bit on cgi scripts - Add support for TLS servername indication - Add support client certificate verification - Split off spawn-fcgi into a separate package
2010-02-08+ spawn-fcgijoerg1-1/+2
2010-02-08Initial import of spawn-fcgi-1.6.3:joerg5-0/+163
spawn-fcgi is a small utility to start external FastCGI applications. It takes care of various common tasks to simplify deployment: - setuid/setgid - current working directory - chroot - socket creation and permissions in the case of Unix Domain Sockets - forking a number of worker processes
2010-02-08nginx-0.8.33:joerg3-8/+19
- fix issues with Keep-Alive in various clients - fix issue with internal redirects between proxy/fastcgi locations - fix a bug with discarding request bodies Add optional uwsgi backend.
2010-02-08Package is not user-destdir ready.tnn1-2/+5
2010-02-07Add & enable p5-HTML-TreeBuilder-XPathseb1-1/+2
2010-02-07Initial import of p5-HTML-TreeBuilder-XPath version 0.11 in theseb3-0/+30
NetBSD Packages Collection. The Perl 5 module HTML::TreeBuilder::XPath adds typical XPath methods to HTML::TreeBuilder, to make it easy to query a document.
2010-02-07Update to 3.49:wiz2-6/+6
Version 3.49 [BUG FIXES] 1. Fix a regression since 3.44 involving a case when the header includes "Content-Length: 0". Thanks to Alex Vandiver (RT#51109) 2. Suppress uninitialized warnings under -w. Thanks to burak. (RT#50301) 3. url() now uses virtual_port() instead of server_port(). Thanks to MKANAT and Yanick Champoux. (RT#51562) [SECURITY] 1. embedded newlines are now filtered out of header values in header(). Thanks to Mark Stosberg and Yanick Champoux. [DOCUMENTATION] 1. README was updated to reflect that CGI.pm was moved under ./lib. Thanks to Alex Vandiver. [INTERNALS] 1. More tests were added for autoescape, thanks to Bob Kuo. (RT#25485) 2. Attempt to avoid test failures with t/fast, thanks to Steve Hay. (RT#49599)
2010-02-07Add & enable p5-HTML-Selector-XPathseb1-1/+2
2010-02-07Initial import of p5-HTML-Selector-XPath version 0.03 in the NetBSDseb3-0/+27
Packages Collection. The Perl 5 module HTML::Selector::XPath is a utility function to compile CSS2 selector to the equivalent XPath expression.