Commit graph

2230 commits

Author SHA1 Message Date
taca
60615db239 Delete ruby-uri package. It is included in ruby-1.6.7 and later. 2002-06-09 11:12:26 +00:00
taca
23b3c7e92c Disable and delete ruby-uri package. It is included in ruby-1.6.7 and later. 2002-06-09 11:11:36 +00:00
taya
22c2efb797 Update mozilla to 1.0
No major changes from 1.0rc3.

See the release notes for detail about mozilla.
http://www.mozilla.org/releases/mozilla1.0/
2002-06-06 02:05:57 +00:00
cjep
6ca83c324f Add and enable p5-WWW-Amazon-Wishlist. 2002-06-04 19:02:42 +00:00
cjep
c9e27d17bc Initial import of WWW-Amazon-Wishlist-0.65 into the NetBSD packages
collection as www/p5-WWW-Amazon-Wishlist.

This package can be used to get your wish-list from Amazon.(com|co.uk)
and return it in an array of hashrefs so that you can fiddle with it
until your hearts content.

Supplied by Sen Nagata in PR#14933. Thanks!
2002-06-04 19:01:43 +00:00
shell
2e6fefe5b6 Updated p5-HTML-FillInForm, from 0.26 to 0.29.
Changes since 0.26 :

- Added ignore_fields option (Boris Zentner)
- Added missing ! in declaration handler (Boris Zentner)
- Fill all values with the same name if one value is passed
  (Boris Zentner, Gabriel Burka)
- Fixes to pass through comments, processing instructions, and
  declarations (Boris Zentner)
2002-06-03 13:12:49 +00:00
wiz
a23109dde8 Don't patch bookmarks file -- not cleanly possibly since we support
many different version of navigator/communicator.
Closes pkg/17136.
2002-06-02 09:07:01 +00:00
tron
69a73940ee Add german mirror to master site list. 2002-06-01 14:21:47 +00:00
itojun
68ea0062e5 upgrade to 2.0.36. (this is still a leaf package so it shouldn't affect others)
Changes with Apache 2.0.36

  *) Close sockets on worker MPM when doing a graceless restart.
     [Aaron Bannert]

  *) Reverted a minor optimization in mod_ssl.c that used the vhost ID
     as the session id context rather that a MD5 hash of that vhost ID,
     because it caused very long vhost id's to be unusable with mod_ssl.
     PR 8572.  [Cliff Woolley]

  *) Fix the link to the description of the CoredumpDirectory
     directive in the server-wide document.  PR 8643.  [Jeff Trawick]

  *) Fixed SHMCB session caching.  [Aaron Bannert, Cliff Woolley]

  *) Synced with remaining changes from mod_ssl 2.8.8-1.3.24:
     - Avoid SIGBUS on sparc machines with SHMCB session caches
     - Allow whitespace between the pipe and the name of the
     program in SSLLog "| /path/to/program".  [Cliff Woolley]

  *) Introduce mod_ext_filter and mod_deflate experimental modules
     to the Win32 build (zlib sources must be in srclib\zlib.)
     [William Rowe]

  *) Changes to the worker MPM's queue management and thread
     synchronization code to reduce mutex contention  [Brian Pane]

  *) Don't install *.in configuration files since we already install
     *-std.conf files.  [Aaron Bannert]

  *) Many improvements to the threadpool MPM.  [Aaron Bannert]

  *) Fix subreqs that are promoted via fast_redirect from having invalid
     frec->r structures.  This would cause subtle errors later on in
     request processing such as seen in PR 7966.  [Justin Erenkrantz]

  *) More efficient pool recycling logic for the worker MPM [Brian Pane]

  *) Modify the worker MPM to not accept() new connections until
     there is an available worker thread. This prevents queued
     connections from starving for processing time while long-running
     connections were hogging all the available threads.  [Aaron Bannert]

  *) Convert the worker MPM's fdqueue from a LIFO back into a FIFO.
     [Aaron Bannert]

  *) Get basic HTTP proxy working on EBCDIC machines.  [Jeff Trawick]

  *) Allow mod_unique_id to work on systems with no IPv4 address
     corresponding to their host name.  [Jeff Trawick]

  *) Fix suexec behavior with user directories.  PR 7810.
     [Colm <colmmacc@redbrick.dcu.ie>]

  *) Reject a blank UserDir directive since it is ambiguous.  PR 8472.
     [Justin Erenkrantz]

  *) Make mod_mime use case-insensitive matching when examining
     extensions on all platforms.  PR 8223.  [Justin Erenkrantz]

  *) Add an intelligent error message should no proxy submodules be
     valid to handle a request. PR 8407 [Graham Leggett]

  *) Major improvements in concurrent processing for AB by enabling
     non-blocking connect()s and preventing APR from doing blocking
     read()s. Also implement fatal error checking for apr_recv().
     [Aaron Bannert]

  *) Fix Win32 NTFS Junctions (symlinks).  PR 8014  [William Rowe]

  *) Fix Win32 'short name' aliases in httpd.conf directives.
     PR 8009  [William Rowe]

  *) Fix generation of default httpd.conf when the layout paths are
     disjoint.  PR 7979, 8227.  [Justin Erenkrantz]

  *) Swap downgrade-1.0 and force-response-1.0 conditional checks so
     that downgraded responses can have force-response.  PR 8357.
     [Justin Erenkrantz]

  *) Fix perchild MPM so that it can be configured with the move to the
     experimental directory.  [Scott Lamb <slamb@slamb.org>]

  *) Fix perchild MPM so that it uses ap_gname2id for groups instead of
     ap_uname2id. [Scott Lamb <slamb@slamb.org>]

  *) Fix AcceptPathInfo. PR 8234  [Cliff Woolley]

  *) [Security] Added the APLOG_TOCLIENT flag to ap_log_rerror() to
     explicitly tell the server that warning messages should be sent
     to the client in addition to being recorded in the error log.
     Prior to this change, ap_log_rerror() always sent warning
     messages to the client. In one case, a faulty CGI script caused
     the server to send a warning message to the client that contained
     the full path to the CGI script. This could be considered a
     minor security exposure. [Bill Stoddard]

  *) mod_autoindex output when SuppressRules was specified would
     omit the first carriage return so the first item in the list
     would appear to the right of the column headings instead of
     underneath them. PR 8016  [David Shane Holden <dpejesh@yahoo.com>]

  *) Moved the call to apr_mmap_dup outside the error branch so
     that it would actually get called. This fixes a core dump
     at init everytime you use the MMapFile directive. PR 8314
     [Paul J. Reder]

  *) Trigger an error when a LoadModule directive attempts to
     load a module which is built-in.  This is a common error when
     switching from a DSO build to a static build.  [Jeff Trawick]

  *) Change instdso.sh to use libtool --install everywhere and then
     clean up some stray files and symlinks that libtool leaves around
     on some platforms.  This gets subversion building properly since
     it needed a re-link to be performed by libtool at install time,
     and the old instdso.sh logic to simply cp the DSO didn't handle
     that requirement.  [Sander Striker]

  *) Allow VPATH builds to succeed when configured from an empty
     directory.  [Thom May <thom@planetarytramp.net>]

  *) Fix 'control reaches end of non-void function' warning in
     server/log.c.  [Ben Collins-Sussman <sussman@collab.net>]

  *) Perchild MPM is now correctly deemed as experimental and is now
     located in server/mpm/experimental.  [Justin Erenkrantz]

  *) Fix segfault in mod_mem_cache when garabge collecting an expired
     cache entry.  [Bill Stoddard]

  *) Introduced -E startup_logfile_name option to httpd to allow admins
     to begin logging errors immediately.  This provides Win32 users
     an alternative to sending startup errors to the event viewer, and
     allows other daemon tool authors an alternative to logging to stderr.
     [William Rowe]

  *) Fix subreqs with non-defined Content-Types being served improperly.
     [Justin Erenkrantz]

  *) Merge in latest GNU config.guess and config.sub files.  PR 7818.
     [Justin Erenkrantz]

  *) Move 100 - Continue support to the HTTP_IN filter so that filters
     are guaranteed to support 100 - Continue logic without any
     intervention.  [Justin Erenkrantz]

  *) Add HTTP chunked input trailer support.  [Justin Erenkrantz]

  *) Rename and export get_mime_headers as ap_get_mime_headers.
     [Justin Erenkrantz]

  *) Allow empty Host: header arguments.  PR 7441.  [Justin Erenkrantz]

  *) Properly substitute sbindir as httpd's location in apachectl.  PR 7840.
     [Andreas Hasenack <andreas@netbank.com.br>]

  *) Allow Win32 shebang scripts to follow the path (or omit the .exe
     suffix from the shebang command), and allow ScriptInterpreterSource
     Registry or RegistryStrict to override shebang lines, as 1.3 did.
     PR 8004  [William Rowe]

  *) worker MPM: Fix a situation where a child exited without releasing
     the accept mutex.  Depending on the OS and mutex mechanism this
     could result in a hang.  [Jeff Trawick]

  *) Update the instructions for how to get started with mod_example.
     [Stas Bekman]

  *) Fix PidFile to default to rel_runtimedir instead of
     rel_logfiledir.  PR 7841.  [Andreas Hasenack <andreas@netbank.com.br>]

  *) Win32: Fix problem that caused rapid performance degradation
     when number of connecting clients exceeded ThreadsPerChild.
     [Bill Stoddard]

  *) Fixed a segfault parsing large SSIs on non-mmap systems.
     [Brian Havard]

  *) Proxy was bombing out every second keepalive request, caused by a
     stray CRLF before the second response's status line. Proxy now
     tries to read one more line if it encounters a CRLF where it
     expected a status. PR 10010 [Graham Leggett]

  *) Deprecated the apr_lock.h API. Please see the following files
     for the improved thread and process locking and signaling:
     apr_proc_mutex.h, apr_thread_mutex.h, apr_thread_rwlock.h,
     apr_thread_cond.h, and apr_global_mutex.h.  [Aaron Bannert]

  *) Change mod_status to use scoreboard accessor functions so it can
     be used in any MPM without having to be recompiled.
     [Ryan Morgan <rmorgan@covalent.net>]

  *) Fix parsing of some AP_DECLARE_DATA declarations so that the filter
     handle declarations are recognized.  This fixes problems loading
     mod_autoindex on some platforms.  [Brian Havard]

  *) add optional fixup hook to proxy [Daniel Lopez <daniel@covalent.net>]

  *) Remind the admin about the User and Group directives when we are
     unable to set permissions on a semaphore.  PR 7812  [Jeff Trawick]

  *) fix possible compilation problem in ssl_engine_kernel.c. PR 7802
     [Doug MacEachern]

  *) fix possible infinite loop in mod_ssl triggered by certain
     netscape clients [Doug MacEachern]

  *) fix ProxyPass when frontend is https and backend is http
     [Doug MacEachern]

  *) Add DASL support to mod_dav
     [Sung Kim <hunkim@cse.ucsc.edu>]
2002-06-01 13:18:01 +00:00
seb
5f661affe6 Adjust various pathnames to use newly reimported packages from the japanese
category.
This is part of the japanese category retirement.
2002-05-31 15:19:55 +00:00
seb
d81aa19f20 Add & enable newly reimported packages from the japanese category.
This is part of the japanese category retirement.

- in category converters:
	ack, nkf, p5-Jcode, p5-jcode, p5-nkf, qkc, ruby-romkan, ruby-uconv
- in category lang:
	ja-gawk
- in category mail:
	ja-mh
- in category misc:
	ja-less, ja-man, jhd, xjdic
- in category print:
	ja-a2ps, ja-vflib, ja-vflib-lib, ja-vflib-utils, ja-vfxdvik, texfamily, texfamily-share
- in category textproc:
	chasen, chasen-base, ipadic, ja-grep, ja-groff, ja-sed, kakasi, kbanner, namazu1, namazu2, p5-Text-ChaSen, p5-Text-Kakasi
- in category www:
	mknmz-wwwoffle
- in category x11:
	xjman
2002-05-31 15:02:40 +00:00
seb
eb6e92b94b Reimport of package mknmz-wwoffle from japanese/mknmz-wwwoffle into www/mknmz-wwwoffle.
This is part of the japanese category retirement.
CATEGORIES and pathnames to japanese/ adjusted.
2002-05-31 13:01:44 +00:00
uebayasi
2f177b1663 Updated to 2.07. Provided by Hiramatsu Yoshifumi <hiramatu@boreas.dti.ne.jp>
in pkg/16289 as 2.06, and further update to 2.07 by me.

Some of changes from 2.04 are:

* Add 'valign' as an option to the html/cell template.
* Added the 'uri' filter for URI escaping text.
* Incorporated Doug's XS Stash.
* Modified Template::Plugins fetch() method to accept $factory as a code
  reference.
* 'orange' became valid colour.
* Added 'sorted' as a flag to the HTML plugin.
* Added get_all() and get() to the DBI iterator.

And many bug fixes as usual.
2002-05-29 15:10:59 +00:00
uebayasi
25816732ff Perl is used while processing manual pages.
Pointed out by Yasushi Oshima <oshimaya@sc.starcat.ne.jp> in pkg/17098.
2002-05-29 13:58:56 +00:00
taya
7609670c56 Add LDFLAGS to set rpath.
Add patch-ae forget to add at previous commit.
2002-05-28 23:31:06 +00:00
tron
df6b9fc0e6 Update "opera" package to version 6.01. This update fixes a security hole
in the handling of the '<input type="file">' tag which could be used to
transfer files from the local host without the user noticing.
2002-05-28 15:26:58 +00:00
abs
6d1c6db546 1.2.3 release notes state 1.0rc3 requirement 2002-05-28 01:07:25 +00:00
taya
42ecbe8767 Source tarball has changed.
regen distinfo.
2002-05-26 23:47:03 +00:00
taya
7be3d97175 Update skipstone to 0.8.2
and add some patch to work with mozilla-1.0rc3

Changes from ChangeLog:
- Patch from Tai, to make find have the options to wrap around, search
  in frames and match entire words.
- Updated nl.po from Francois Duprez.
- Petr Balhos sent in a patch for the zoomer plugin to remmeber
  zoom history, I modified this patch to not store history for each
  site, instead now there is a context menu when right clicking on
  the plugin, it either asks to remember or unremember a setting
  for a specific url.
- Fixed the location entry not resizing when window is resized.
- Patch from Doug Kearns  to enable
  skipstone to convert relative paths to full paths so that the
  mozilla widget can find them correctly.
- Patch from Seth Kingsley to improve argument quoting when passing
  mailto urls to mua's.
- Patch from Daniel to move embed creation in window mode a notch up so
  the favicon plugin doesn't complain.
- Patch from Tai for SearchToolBar to encode search strings, structurize
  and add a border to the toolbar to make it look better.
- Mem leaks in FavIcon fixed.
- Another patch from Daniel, adds an option to go to last focused tab when
  closing another instead of the notebook widget jumping to the most left
  tab. I added config ui and its off by default, to turn it on go to misc
  config node.
- locale fixes from Tai-hwa Liang
- Patch from  Daniel Mooney  - Fixes expansion/shrinking
  of progressbar, adds two context message ids to statusbar and improves
  the overall display of statusbar messages. Also fixed memory leaks pointed
  by Daniel, thanks for his work.
- Added Bulgarian translation by  Miroslav Iordanov
- Alt-+ is changed to Alt-= for next tab.
- Configure patch applied from Nick Blievers .
  SkipStone distributions from now on, will contain configure, people
  checking out from CVS will have to run autoconf to generate a configure
  file. Thanks a lot to Nick and everybody for thier work on this.
- Remove pref that caused entries to have scrollbars when reached the end,
  you also have to remove it from your prefs.js ng.layout.gfx.scrollbars line.
- Changed the printing API and made it possible to print selected ranges in
  addition to all pages or selected pages.
- Compile with debug was broken, fixed. Thanks to Muthu Kumar for finding out.
2002-05-26 12:10:13 +00:00
taya
b8a9decbec Update galeon to 1.2.3
Changes from release mail:
- mozilla 1.0rc3 compatibilty/requirement
- bugfixes
2002-05-25 23:35:59 +00:00
taya
82fc4d6e15 Update mozilla to 1.0rc3
* We've landed 139 bug fixes since RC2, including fixes for plugins, usability, crashes, and internationalization issues.

See release notes for detail.
http://www.mozilla.org/releases/mozilla1.0/
2002-05-25 23:33:11 +00:00
abs
21a6a78e8d Add a 'flush' option to the rc.d script. Bump version to jakarta-tomcat-3.2.4nb1
If you've used tomcat this probably comes under the category of bugfix :)
2002-05-23 15:48:44 +00:00
fredb
d81fb3085f USE_LIBINTL and USE_SSL are evidently made obsolete by buildlink.
Remove them, to take advantage of buildlink and not include anything
from ${LOCALBASE}/include, to prevent lynx from tripping over the
similarites between NetBSD curses and ncurses. This allows the NetBSD
"curses" build to succeed while "ncurses" is installed, and may close
PR pkg 16949. I still haven't checked all possible combinations.
2002-05-22 15:01:28 +00:00
wiz
6d752eab06 Remove $Id$ from patch, and add $NetBSD$. 2002-05-21 12:04:42 +00:00
wiz
a733253559 Some space fixing in the Makefile, and fix installation of dillorc.
Makes PLIST correct... [forgot to add the patch?].
2002-05-21 11:13:30 +00:00
cjep
98c7eccbc9 Add NetBSD tags. 2002-05-20 19:07:42 +00:00
cjep
f293e87dff Add NetBSD tag. 2002-05-20 19:06:41 +00:00
cjep
8da02ed7f6 Add NetBSD tags. 2002-05-20 19:06:03 +00:00
cjep
e2621ffc7f Add NetBSD tag. 2002-05-20 18:21:28 +00:00
zuntum
9232665230 add & enable elinks 2002-05-17 18:07:14 +00:00
zuntum
7683c82f46 Initial import of elinks-0.3.0
This is the elinks tree - intended to provide feature-rich version of links,
however not rock-stable and dedicated mainly for testing.  Its purpuose is to
make alternative to links, until Mikulas will have some time to maintain it,
and to test and tune various patches for Mikulas to be able to include them
in the official links releases.

Provided by Dawid Szymanski <dawszy@arhea.net> in pkg/16851,
slightly modified by myself.
2002-05-17 18:06:19 +00:00
abs
a2accd70ae include crimson.jar and ant.jar in default CLASSPATH 2002-05-17 13:24:57 +00:00
kei
0dce8ce849 No need to depend on jpeg-6b when inline image support is disabled. Noticed
by YAMAMOTO Takashi.  Thanks.

Bump pacakge revision to w3m-0.3nb2.
2002-05-17 00:01:12 +00:00
mjl
808c0fc1cd Update p5-URI to 1.19
URI::Heuristic will guess better on strings like "123.3.3.3:8080/foo".
URI::WithBase will not keep the full history of any base URI's base URI.
URI::URL->new("foo", "bar")->base now returns an URI::URL.
Deal properly with file:///-URIs.
2002-05-16 21:24:14 +00:00
tron
0eb48a6931 Update "opera" package to version 6.0. A list of changes since version
6.0 beta 2 is not available yet.
2002-05-15 12:01:56 +00:00
tron
2ee8e4e875 Update "analog" package to version 5.23. Changes since version 5.22:
- Added PROGRESSFREQ to the list of forbidden commands from the form
  interface, because it allows a denial-of-service attack.
- Also emphasised in the documentation that allowing untrusted users to
  run analog through the form interface is inherently open to a
  denial-of-service attack.
- Fixed two bugs which caused occasional crashes while outputting.
- Russian language files included (KOI8-R and Windows-1251 character sets).
- Added new domains to the French domains files.
- New How-To on configuring IIS
2002-05-15 06:18:52 +00:00
fredb
96c602805c Don't core just because a silly server, like my 3com [TM] Lan Modem,
puts leading white space at the beginning of the very first header
line. (Leading blanks are supposed to signify a continuation of the
previous header line, but for the "server:" line, there aren't any
previous lines, so who knows why they do that.) This patch was
suggested by Andrew M. Bishop, "wwwoffle"'s author and maintainer.
Don't know if it's going to be in the next release, or not.
2002-05-14 15:37:19 +00:00
taya
a8fc6bbd1b forget to remove this on previous commit 2002-05-14 00:20:35 +00:00
taya
8b5c7f6102 Update mozilla to 1.0rc2
Changes from release notes are follows:
- A security vulnerability  reported in Mozilla by  GreyMagic Software
has now been fixed. For more information see the  mozilla.org
statement.

- Fifteen of our most frequently encountered crashes have been
fixed. You can help us find any that are left by banging on Mozilla
and sending in those TalkBack crash reports.

- Ten of our most frequently encountered application freezes have been
fixed (including the dreaded bug 96504 on Linux).

- We finally support CSS2 :hover the way web developers want us
to. (Bug bug 5693)

- It is now possible to install colormap on 8 bit displays using
-install. (Bug 22337)

- Cookies can now be disabled for Mozilla Mail. (Bug 22994)

- You can now enable in preferences HTTP 1.1 pipelining (not on by
default). (Bug 93054)
2002-05-14 00:16:37 +00:00
joda
603dd5fd63 don't change .htpasswd into .thtpasswd 2002-05-12 14:47:28 +00:00
abs
2b325a79cd prdownloads.sourceforge.net is no longer any use.
Switch to MASTER_SITE_SOURCEFORGE.
2002-05-12 10:16:44 +00:00
wiz
96516d68fd Wildcard gdk-pixbuf dependency.
XXX: should be buildlinked.
2002-05-11 18:45:10 +00:00
wiz
f164c3956e Share patches and distinfo between the two w3m packages. 2002-05-10 16:51:02 +00:00
wiz
2094bf937d Update to 0.97.
Changes since 0.96:
Big forms are a bit faster
Swapeed x and y entries when reporting image in form
END doesn't skip to next line when wrapping
Do not recode invisible form values to display charset and back
Do not strip '?' from url when method is POST
Danish translation
Process broken html tags
Ctrl-W selects last item in menu
Fixed one leak when links came out of memory
Ftp doesn't send more commands at once -- slower but safe with MS IIS or
  Novell
Do not swallow ' ' in filenames
Do not print contents of posted data in 'downloads' menu
Charset in values in <SELECT> tag
Always trust 'Content-Length' when communicating with HTTP/1.1 server --
  work around broken HTTP/1.1 servers that send Connection: close, but
  keep the connection
Handle encoding to utf-8 correctly
Do not accept '<' without name as a tag
-dump does not stuck in redirect loops
Report terminal size in User-Agent
Improved performance of rendering nested tables
Indonesian translation
Finnish translation
Added &euro; symbol
Manpage update
Romanian translation
Cookie expiration
Do not reject cookies with insecure domain (but send them only to
original server, not to the whole domain)
Fix stripping '?' out of form url
Add "LISTING" tag
Fix relative redirect on -dump and -source
Use "imgtitle" if there's no "alt"
Catalan translation
Dutch translation
Do not allow larger input fiels than screen size

And lots of miscellaneous bugfixes.
2002-05-10 08:14:35 +00:00
kei
8b2dcc37ee added and enabled w3m-img 2002-05-10 06:30:41 +00:00
kei
6cac9bb090 splitted w3m package into w3m and w3m-img, which disables/enables inline
image support, respectively.

inline image support requires glib, which is so large for such as light-
weight text-based browser w3m especially on slower ports.

it's based on the diffs supplied by uebayashi.  This also addresses
pkg/16495.
2002-05-10 06:27:22 +00:00
taya
abd28d79cb Lubomir Sedlacik <salo@Xtrmntr.org> reported that pkgsrc for mozilla worked on Solaris 8.
So add SunOS-*-* to ONLY_FOR_PLATFORM.
2002-05-08 13:25:23 +00:00
kleink
a763c90bcc G/c references to ftp.uni-trier.de. 2002-05-08 11:44:50 +00:00
taya
ecd1633354 Add security fix for " Bugzilla Bug 141061 XMLHttpRequest allows reading of local files"
See bugzilla for detail:
http://bugzilla.mozilla.org/show_bug.cgi?id=141061

Demo of this vulnerability:
http://sec.greymagic.com/adv/gm001-ns/
2002-05-07 23:45:49 +00:00
simonb
30ca3a330c Update adzap to version 20020505; many ad pattern changes. 2002-05-07 13:29:02 +00:00