summaryrefslogtreecommitdiff
path: root/www
AgeCommit message (Collapse)AuthorFilesLines
2002-09-13Make bins_edit run again. Bump to 1.1.15nb1.wiz3-8/+10
2002-09-13update to bozohttpd 5.15. changes are:mrg3-37/+5
o add .ogg support -> `application/x-ogg' o fix CGI requests with "/" in the query part
2002-09-12Fix HOMEPAGE and MASTER_SITE.wiz1-3/+3
XXX: Could do with an update. Anyone reading this? ;)
2002-09-12Fix a problem with cgi-bin's and the GET method.wiz3-2/+34
Patch from mrg, due to be included in the next release, but who knows when that will be ;) Bump to 5.14nb1.
2002-09-12add all these Zope productsdrochner1-1/+7
2002-09-12some document management/publication framework for Zopedrochner4-0/+139
(which did reveal multithreaded Python problems...)
2002-09-12XML->HTML translation for Zopedrochner4-0/+56
2002-09-12some FORM support for Zopedrochner4-0/+120
2002-09-12XML processing for other Zope productsdrochner4-0/+514
2002-09-12another Zope image presentation productdrochner8-0/+101
2002-09-12Update to 2.1pre3.wiz4-11/+9
Changes: This version includes two bugfixes in the Javascript support, the X icon name is now set, an associations bug was fixed, along with an occasional paste bug, a Euro entity was added, and parsing \xab numbers in Javascript is now supported, along with other features.
2002-09-12unuseddrochner1-31/+0
2002-09-12product.buildlink.mk -> product.mkdrochner3-6/+6
2002-09-12rename product.buildlink.mk to product.mk since this doesn't usedrochner1-0/+32
"buildlink" logics also define a default prefix - fixes PR pkg/18191
2002-09-12Update to 20020912; changes an ad pattern, and old distfile no longersimonb2-5/+5
available.
2002-09-11buildlink1 -> buildlink2jlam1-11/+12
2002-09-11Wildcard p5-Text-Iconv depends.wiz1-2/+2
2002-09-10Since the major of libiconv was increased during the update to 1.8,wiz6-11/+13
bump dependency to latest libiconv version; recursively also bump all dependencies of packages depending on libiconv. Requested by fredb.
2002-09-09Patch the man page at pre-build instead of post-build so the catpage isjlam1-2/+2
generated with the fixes.
2002-09-09Directly replace the "/usr/pkg" reference in the man page with "${PREFIX}"jlam3-33/+8
in the package Makefile in one step instead of three.
2002-09-07Update to version 20020906. Add more ad patterns. Also adds a newsimonb4-15/+17
variable (STUBURL_COUNTERHTML); users should update to the latest adzap.conf as shown in the message.
2002-09-05libcurl.so needs the openssl libraries.jlam1-1/+3
2002-09-05Add a buildlink2.mk file for the headers and libraries from www/curl.jlam1-0/+19
2002-09-05Update wwwoffle to Version 2.7e. From the NEWS file:fredb4-126/+16
Bug Fixes: Correct some invalid HTML in the message files. Fix some memory leaks, free some unfreed memory, check some pointers, close some files. Don't send the extra arguments to POST requests that WWWOFFLE uses internally. Removed segmentation fault potential when password not used in config file. Another fix for the cookie problem. Warn if running as root. Try both IPv6 and IPv4 socket binding (IPv6 may not accept IPv4). Potential bug fix for page corruption. Potential fix for IPv6 configuration on Solaris. New Features: Add an option to have case-insensitive matching for URL-SPEC path and args. Added the option to only fetch images on the same host (automatic fetching). Allow URL-SPECs to contain an '=' sign embedded in them (long time bug fix). The monitor options page now accepts ranges of hours or days (e.g. '1-5n'). [Note: The change to IPv6 binding to not require IPv4-mapped addresses was already present in the package as "patch-ac".] [Note: TODO: Have the package create a user, and let the "rc.d" script run wwwoffle as that user.] Also, reorder ${MASTER_SITES} to comply with the request on the download page, and work around an install target corner case for the benefit of bulk build machines (only applies for hosts on which wwwoffle has never run).
2002-09-05Clarify comment.fredb1-4/+4
2002-09-05Include "pkgsrc/www/php4/Makefile.php" again, because the package does not buildzuntum1-1/+3
with it. The line seems to have accidentally been removed when linker flags patch went in.
2002-09-05regendillo1-2/+3
2002-09-05add support for big endian 16bit 5-6-5 rgb displaysdillo2-3/+256
(I still ride on the revision bump for the decode fix.)
2002-09-04fix for big-endian 24 bit displays (if condition were in wrong order)dillo2-1/+25
2002-09-04Fix annoying bug in command line parsing (+ was handled incorrectly).wiz6-8/+31
Patch will be sent to maintainers in a minute. Bump PKGREVISION. Also, use common distinfo file and patch dir for links and links-gui.
2002-09-04Enable all the zope-2.5 stuff. It works "well enough".drochner1-2/+5
(now that the Python-pth problems are solved)
2002-09-04add a pkg to publish photo collections in Zopedrochner4-0/+58
(it doesn't work too well for me, primarily due to py-Imaging limitations, but anyway...)
2002-09-04add a pkg to export local files in Zopedrochner4-0/+123
2002-09-04add the Zope "Content Management Framework"drochner4-0/+731
2002-09-04common definitions for add-on productsdrochner1-0/+31
2002-09-04Apply patches from Lubomir Sedlacik <salo@Xtrmntr.org> in PR 18115 toagc7-28/+20
generalise the linker flags used to export symbols by setting them on a per-OS basis. > many packages force -Wl,-export-dynamic which is not portable outside GNU ld > and cause problems e.g. on Solaris. some of these packages use if > conditionals either only for NetBSD or except SunOS, but the state is not > coherent and it may complicate later when support for new OS is added to > pkgsrc (e.g. ongoing work on HP-UX support). > > jlam proposed the following framework in discussion on tech-pkg: > > http://mail-index.netbsd.org/tech-pkg/2002/06/21/0009.html > > now, ${EXPORT_SYMBOLS_LDFLAGS} is used instead of directly defining > -Wl,-export-dynamic which is set in appropriate defs.*.mk to reasonable > values. packages should be converted to this framework by: > > 1) replacing LDFLAGS+= -Wl,-export-dynamic and LIBS+= -export-dynamic with: > > LDFLAGS+= ${EXPORT_SYMBOLS_LDFLAGS} > > 2) for use in patchfiles, add this variable to MAKE_ENV if needed: > > MAKE_ENV+= EXPORT_SYMBOLS_LDFLAGS=${EXPORT_SYMBOLS_LDFLAGS} > > 3) replace occurances of -Wl,-export-dynamic and -export-dynamic in patch > files with: > > $(EXPORT_SYMBOLS_LDFLAGS)
2002-09-03Swipe the patch for bug 160535 from the Mozilla tree, to fix unaligned accessmycroft3-1/+78
problems on 64-bit platforms. (I don't think this is the right way to do it, but...)
2002-09-01Add and enable p5-Apache-Gallerykim1-1/+2
2002-09-01Apache::Gallery creates an thumbnail index of each directory andkim7-0/+194
allows viewing pictures in different resolutions. Pictures are resized on the fly and cached.
2002-09-01Fix panix.com master site. From pkg/18059 by Bill Warner.wiz1-2/+2
2002-08-31Update "opera6" package to version 6.03. Changes since version 6.02:tron2-8/+8
- Applied OpenSSL ASN.1 patch - New Certum CA root certificate and updated old roots - Fixed problem with untrusted HTML content being inserted into Directory listings (buffer overrun)
2002-08-31update to bins-1.1.15 changes are:dmcmahill4-30/+36
BINS 1.1.15 ----------- - New parameter linkInsteadOfCopy has been added, to create a link to the image in the destination directory instead of copying it, when it's possible. Patch from Vincent Bernat. - Correct a bug that crashed bins with Perl 5.8.0 Patch from Marty Leisner - Include links for movie files (avi, mpeg and mov) in the navigation bar of albums ("In this album" upper left box). Patch from Vincent Cautaer. - Scale method (to created scaled pictures and thumbnails) can now be chose with the new scaleMethod parameter. It can be either scale or sample. sample is faster, scale is better. Idea from Mark W. Eichin. - Don't perform rotation on files matching the regexp defined by the new noRotation parameter (default to _Orig suffix). This can be used in conjunction with scaleIfSameSize=0 and a scaled size of 100%x100% to keep original pictures in your album. Patch from Vincent Cautaer. - Correct a bad behavior with some little pictures when scaled sizes uses mixed pixels and percentages. Patch from Vincent Cautaer. - jpegtran can now be used with image names containing spaces. Patch from Vincent Bernat. - Define $verbose earlier to avoid warning. Patch from Vincent Bernat. - Chop local encoding to avoid carrier return. Patch from Vincent Bernat. - A sample album.xml file is provided in the doc directory. Take a look at it to see how you can customize a album.
2002-08-31Update to 2.6:wiz2-6/+8
- New Feature: HTML::Template will combine HTML_TEMPLATE_ROOT environment variable and path option if both are available. (Jesse Erlbaum) - New Feature: __counter__ variable now available when loop_context_vars is set (Simran Gambhir) - New Feature: The default attribute allows you to specify defaults for <tmpl_var> tags. - Bug Fix: fixed parser to reject <tmpl_var>s with no names. (crazyinsomniac) - Doc Fix: fixed documentation to correctly describe the interaction of case_sensitive and loop_context_vars. (Peter Claus Lamprecht) - Doc Fix: updated mailing-list information to reflect move from vm.com to sourceforge.net
2002-08-29take a sledgehammer and make this compile with mozilla-1.1drochner3-3/+49
2002-08-29fix PLISTtaya19-5579/+2952
merge PLIST-* to PLIST improve install script to share with mozilla-1.0 branch(not imported yet)
2002-08-29Updated apache to 2.0.40martti7-59/+110
* SECURITY: [CAN-2002-0661] Close a very significant security hole that applies only to the Win32, OS2 and Netware platforms. Unix was not affected, Cygwin may be affected. Certain URIs will bypass security and allow users to invoke or access any file depending on the system configuration. Without upgrading, a single .conf change will close the vulnerability. Add the following directive in the global server httpd.conf context before any other Alias or Redirect directives; RedirectMatch 400 "\\\.\." Reported by Auriemma Luigi <bugtest@sitoverde.com>. [Brad Nicholes] * SECURITY: Close a path-revealing exposure in multiview type map negotiation (such as the default error documents) where the module would report the full path of the typemapped .var file when multiple documents or no documents could be served based on the mime negotiation. Reported by Auriemma Luigi <bugtest@sitoverde.com>. [CAN-2002-0654] [William Rowe] * SECURITY: Close a path-revealing exposure in cgi/cgid when we fail to invoke a script. The modules would report "couldn't create child process /path-to-script/script.pl" revealing the full path of the script. Reported by Jim Race <jrace@qualys.com>. [CAN-2002-0654] [Bill Stoddard] * More bug fixes (see the CHANGES file)
2002-08-29upgrade to 1.1. includes CSS/cookie-stealing security fix.itojun9-141/+10
* Improved application and layout performance * Improved stability * Improved Web site compatibility * Improved CSS, DOM and HTML standards support * Distinct window icons for the different Mozilla applications (artwork contributed by Grayrest). * Mozilla can now trigger MS DUN when started without a connection. * Fullscreen mode for Mozilla on Linux (press F11). * Browser tabs now close left to right (they used to close right to left). * The tab bar now has a button for creating new tabs. * All Search entry points now use your default search engine. * Download Manager has been enabled as the default download view (with many improvements) * Autocomplete in the location bar has more intelligent completion. * The Linux File Picker has improved filtering and a new directory button. * File extensions more accurately handled in downloads and we save the correct files when saving complete Web pages * Drag and drop support has been greatly improved. * View selection source: Context clicking on a selection now lets you view the HTML source for the selected area. * Page info displays more page info with improved General and Media tab content. * New button in prefs for making Mozilla the system default browser on MS Windows * MathML is now enabled for Mozilla on Macintosh (it was already available on Windows and Linux). * Mozilla now takes advantage of Quartz rendering for users of Mac OS X 10.1.5 * Better Bi-Di Arabic and Hebrew support including improved layout of Arabic pages on Linux and other platforms without their own Arabic shaping support. * We have new layout performance enhancements targeted at DHTML. * Mozilla now has support for the display of XBM images. * Image and plug-in blocking for Mail & News * Mozilla allows you to view HTML mail messages as plain text. * You can now quote the current message in a Mail compose window with Quote Original under the options menu. * The JavaScript Debugger has gone through a major development cycle. It now sports a palette of nine views which can be rearranged within the main window or docked in separate floating windows. It is also possible to create user-defined views and commands directly with JavaScript. More details are available in the FAQ, newsgroup, or IRC channel. * Chatzilla has improved tab completion and can now join channels with Japanese names.
2002-08-28buildlink1 -> buildlink2.jlam3-93/+6
2002-08-26deprecate SQUID_SYSCONFDIR in favour of PKG_SYSCONFDIR.squidgrant1-10/+9
2002-08-26Add back inclusion of bsd.pkg.mk that was accidentally removed.jlam1-1/+2