Commit graph

70509 commits

Author SHA1 Message Date
he
31e7f84b63 Note update of p5-Apache-Test from 1.12 to 1.16. 2004-11-27 15:13:10 +00:00
he
4a20e833ac Update p5-Apache-Test from version 1.12 to 1.16.
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-27 15:12:11 +00:00
he
81eebe6e6d Note update of p5-Apache-AuthCookie to 3.06. 2004-11-27 15:08:19 +00:00
he
0326872fcd Upgrade p5-Apache-AuthCookie from 3.05 to 3.06.
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-27 15:06:41 +00:00
dmcmahill
f9063fe8b1 update to covered-0.3
Changes since the last stable release:

  - User-specified FSM code coverage.  By using command-line options or inline code specified
    by the user, FSM code coverage can be extracted from the design.  This does not include
    the ability to automatically extract FSMs from the design (an ability that will be added
    in future stable releases).
  - Enhanced performance of the score command.  A 3x - 5x speedup in the running time of the
    score command on the design should be expected with this release over past stable releases.
  - Enhanced readability of coverage reports.  The coverage report look has been overhauled to
    produce a much more readable/understandable coverage report.
  - Several bug-fixes have been made, including coverage number calculation bugs.
  - Development and user documentation updates.
  - Enhanced regression suite.
2004-11-27 15:04:02 +00:00
taca
7a23af0a6d Update ruby package to 1.8.1.
Now, this package isn't meta-package.

Ruby itself is provided as language/ruby18 (Ruby 1.8.1) or
language/ruby16 (Ruby 1.6.8) and Ruby's commands are
$PREFIX/bin/ruby18 or $PREFIX/bin/ruby16.

This pacakge provide commands without its version in name
as $PREFIX/bin/ruby.

Some extention libraries bundled in Ruby's distribution are
move to separate packages.  For ruby18:

	converters/ruby-iconv:		Iconv module
	databases/ruby-dbm:		DBM module
	databases/ruby-gdbm:		GDBM module
	devel/ruby-curses:		Curses module
	security/ruby-digest:		message digest module
	security/ruby-openssl:		OpenSSL module
	devel/ruby-readline:		readline module
	x11/ruby-tcltklib:		Tcl/Tk libraries
	x11/ruby-tk:			Tk modules

And for ruby16:

	databases/ruby-dbm:		DBM module
	databases/ruby-gdbm:		GDBM module
	devel/ruby16-curses:		Curses module
	security/ruby-digest:		message digest module
	devel/ruby-readline:		readline module
	x11/ruby16-tcltklib:		Tcl/Tk libraries
	x11/ruby16-tk:			Tk modules

You can specify default Ruby's version by setting
RUBY_VERSION_DEFAULT to 1.6 or 1.8 in /etc/mk.conf.
2004-11-27 15:02:10 +00:00
taca
bacef49d8d Update ruby-mode package to 1.8.1; Ruby 1.8.1 bundled version.
Changes are unknown.
2004-11-27 14:55:25 +00:00
taca
82be7da08e Add and enable ruby16-tcltk and ruby16-tk package. 2004-11-27 14:54:24 +00:00
taca
10d0e6dc75 Re-import previous ruby-tk package as ruby16-tk package for supporting
Ruby 1.6.8.
2004-11-27 14:52:52 +00:00
taca
692cb8431f Re-import previous ruby-tcltk package as ruby16-tcltk package for supporting
Ruby 1.6.8.
2004-11-27 14:52:19 +00:00
taca
38a415a0ea Update ruby-tk pacakge to 1.8.1 with new framework for Ruby packages. 2004-11-27 14:50:45 +00:00
he
64d3f70e87 Note update of p5-Apache-Filter from 1.019 to 1.022. 2004-11-27 14:50:43 +00:00
taca
d3eb9e68f8 Update ruby-tcltk pacakge to 1.8.1 with new framework for Ruby packages. 2004-11-27 14:50:12 +00:00
he
dcf18e77f3 Update p5-Apache-Filter from 1.019 to 1.022.
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-27 14:49:35 +00:00
taca
93f04672c0 Add and enable ruby16-openssl package. 2004-11-27 14:48:38 +00:00
taca
72357dd926 Re-import previous ruby-openssl package as ruby16-openssl package.
This package is for Ruby 1.6.8.
2004-11-27 14:47:36 +00:00
taca
acdc2b3334 Update ruby-openssl pacakge to 1.0.0 with switching to new framework for
Ruby packages.

This package is actually a part of the Ruby distribution but still use
its own version now.
2004-11-27 14:45:30 +00:00
taca
940fc8a640 Update ruby-digest pacakge with new framework for Ruby packages.
(Provide ruby18-digest-1.8.1 and ruby16-1.6.8 package now.)
2004-11-27 14:43:13 +00:00
grant
b89c7fd5ee ditch NetBSD-specific stuff, specifically -Werror which xlc doesn't
support.
2004-11-27 14:42:28 +00:00
taca
4c74ce02f6 Add and enable ruby-curses and ruby16-curses package. 2004-11-27 14:41:11 +00:00
taca
d974b71e74 Update ruby-readline pacakge with new framework for Ruby packages. 2004-11-27 14:38:46 +00:00
taca
af17dc50e5 Initial import of ruby-curses package. This is separated from original
Ruby 1.6.8 distribution because of (possible) dependency to external package.
2004-11-27 14:35:59 +00:00
taca
a032a04af6 Initial import of ruby-curses package. This is separated from original
Ruby 1.8.1 distribution because of (possible) dependency to external package.
2004-11-27 14:35:15 +00:00
taca
12a1ab5604 Add and enable ruby-dbm. 2004-11-27 14:31:50 +00:00
taca
2b2aa439c9 Make ruby-gdbm package into new framework.
Since this change PKGBASE, PKGREVISION is reset now.
2004-11-27 14:30:14 +00:00
taca
628884caa8 Initial import of ruby-dbm package. This is part of Ruby distribution
and this package covers both Ruby 1.8 base and 1.6 base.

This is a Ruby extension to DBM library (including Berkley DB's DBM
compatible one), which is actually a part of the Ruby distribution.
2004-11-27 14:27:50 +00:00
taca
58699b32b1 Add and enable ruby16-iconv package. 2004-11-27 14:25:08 +00:00
magick
f93030e2bb remove nxtvepg, package is up to date now 2004-11-27 14:24:16 +00:00
taca
89ed320423 Initial import of ruby16-iconv package.
This is an iconv wrapper class for Ruby 1.6 based release.
2004-11-27 14:24:15 +00:00
jdolecek
bd8febfed0 Update pear-HTTP_Request to 1.2.3.
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-27 14:23:55 +00:00
magick
349e625fc6 note update og nxtvepg to 2.7.2 2004-11-27 14:22:40 +00:00
he
4b57b177d3 Note update of
p5-Algorithm-Diff to 1.19.01
	p5-Algorithm-Merge to 0.05
Remove the latter from TODO.
2004-11-27 14:21:24 +00:00
taca
eb2e1929d6 Make ruby-iconv package to ruby 1.8.1 based package. Previous
ruby-iconv-0.5 package will be provided as ruby16-iconv package.
2004-11-27 14:21:14 +00:00
magick
83fc39cb80 remove pkgrevision, its a new version 2004-11-27 14:21:13 +00:00
magick
854e1f3b7b add missing patch 2004-11-27 14:19:16 +00:00
he
8bf6cce33b Update p5-Algorithm-Merge from 0.04 to 0.05.
Add HOMEPAGE pointing into search.cpan.org.
Add DEPENDS on p5-Algorithm-Diff, to reflect a real dependency.

Change log:

0.05  -   6 Nov 2003

  Added some more entries to the callback map.

  Thanks to Chia-liang Kao for bringing these to our attention.
2004-11-27 14:19:05 +00:00
jdolecek
be30ce006c introduce optional dependence on Net_Socket 1.0.2 - php-4.3.9nb1 contains
1.0.1 (default), packages requesting 1.0.2 get dependence on 4.3.9nb2
2004-11-27 14:16:39 +00:00
he
d669d9297c Update p5-Algorithm-Diff from 1.15 to 1.19.01.
The original version designation is 1.1901, but who wants to take a bet
the next one after that won't be 1.20?

Changelog:

1.19 2004-09-22
- Added OO interface.
- Based on Ned's v1.18 (unreleased)
2004-11-27 14:16:35 +00:00
taca
57c7cb66d5 Add and enable ruby16 and ruby18 package.
Disable ruby-base package now.
2004-11-27 14:16:05 +00:00
taca
728fce10d1 Importing ruby16 package; Ruby 1.6.8 based release.
(This is basically re-import of old ruby-base package.)

These extention libraries are provided as separated packages.

	databases/ruby-dbm:		DBM module
	databases/ruby-gdbm:		GDBM module
	devel/ruby16-curses:		Curses module
	security/ruby-digest:		message digest module
	devel/ruby-readline:		readline module
	x11/ruby16-tcltklib:		Tcl/Tk libraries
	x11/ruby16-tk:			Tk modules
2004-11-27 14:14:05 +00:00
taca
a7758e413f Initial import of ruby18 package; Ruby 1.8.1 + several security fixes.
Ruby is the interpreted scripting language for quick and
	easy object-oriented programming.  It has many features to
	process text files and to do system management tasks (as in
	Perl).  It is simple, straight-forward, and extensible.

Detail changes from Ruby 1.6.8 is huge and I know details in Ruby's site.

<http://www.ruby-lang.org/ja/man/index.cgi?cmd=view;name=1.6.8%A4%AB%A4%E91.8.0%A4%D8%A4%CE%CA%D1%B9%B9%C5%C0%28%A4%DE%A4%C8%A4%E1%29>

Sadly, this is written in Japanese and I don't know where is English version.
2004-11-27 14:11:15 +00:00
jdolecek
45205bcc3c Upgrade bundled Net_Socket to 1.0.2 and Net_SMTP to 1.2.6 on installation.
These include some important bug fixes, and some other pear packages
require the newer versions.

Bump PKGREVISION, and BUILDLINK_RECOMMENDED.
2004-11-27 14:00:08 +00:00
magick
31e42df792 Update nxtvepg to 2.7.2
There is already a 2.7.3 but that fixes only some windows bugs

Changes since 2.6.0: (only an extract
2.7.0:
- changed shortcut presentation from flat list into hierarchical tree, i.e.
  added possibility to use nested folders and also separator lines
- bugfix for shortcut lists which are too long to fit into the main window:
  scrolling with middle mouse button did not work. Since there's no scrollbar
  lower shortcuts were inacessible. Thanks to Udo for pointing this out in the
  discussion forum and for providing feedback.
- added improved "teletext slicer" to reduce decoding errors on TV channels
  with weak reception: was available since 2.5.2, but had to be selected at
  compile time by -DZVBI_DECODER switch. Now configurable in TV card input
  configuration dialog.  (The slicer is derived from libzvbi and alevt.)
  Also extended acquisition statistics output with decoding errors.
- improved TV app EPG OSD for channels with multiple networks (Arte/Fr5):
  using user-configured "air times" in network selection configuration dialog
  to determine which network is currently received in case VPS/PDC is not
  available. Thanks to salokyn for the suggestion.
- added work-around for flip-flopping of program title popups on Arte/Fr5
  in France: appearently Fr5 sends Fr5 PDC code, but Arte VPS. Solved by
  allowing to suppress false EPG popups by means of air times configuration.
  Thanks to Simon for test and debugging support.
- extended variable substitution for user-defined commands in context menu
  configuration: an optional time offset can be added to start and stop times,
  e.g. to start a recording 5 minutes before the official start time.
- Added new command line option -acqonce for daemon mode: automatically
  stop acquisition and terminate the daemon after the given phase has been
  completed for all providers.
- Linux: set channel change priority to "background" to prevent channel changes
  while TV app is running (for v4l2 drivers, e.g. saa7134 or bttv9; requires
  kernel >= 2.6.2 or recent v4l2 modules snapshots from http://bytesex.org/)
  Thanks to Gerd Knorr for accepting this feature in his video4linux drivers.
- Windows: added new command line option -remctrl: can be used to remote
  control an other, previously started GUI instance (i.e. non-daemon) of
  nxtvepg. Currently supported are commands to start/stop acquisition,
  close/raise/iconify the other instance's main window. See the manual
  for details.
- Windows: extended hardware support to include new Microtune tuner MT2050
  (e.g. used in new Pinnacle PCTV Rave and MSI TV @anywhere TV cards) and
  Philips MK3 tuner in combination with TDA9887 (used in Leadtek's CX23881
  card; Thanks to Gerard Chevalier for debugging support; Thanks to Gunther
  Mayer for the MT2050 code which was originally posted to the v4l ML)
- introduced compatibility between database file names on Windows and Linux,
  i.e. Windows can load databases written by Linux and vice versa without
  renaming the files (note: use -dbdir command line option to specify the
  path to the directory with the alternate OS's databases)
- right mouse button in main window now selects the programme entry below
  the mouse before opening the context menu; Previously the selection was not
  changed. Thanks to J?rg for the suggestion.
- bugfix in user-defined context menu commands based on !wintv! and !xawtv!:
  argument count which was reported to the external program was wrong, hence
  some apps did not accept the command. Thanks to Rami for debugging support.
- compile and build process improvements: added warning message to Makefile
  make is started with "make nxtvepg" (you should type only "make") to prevent
  make failure due to missing header files.  Also note the build process was
  restructured so that all generated files are placed into a sub-directory
  called "build-<platform>" to allow building on multiple platforms in parallel
- bugfix in build procedure: tcl2c.c crashed on 64bit platforms
  Thanks to Simon Barner and Gerd Knorr for the bug reports.
- fixed memory leak in Xawtv window detection (for every newly created
  toplevel with a WM_CLASS property a few bytes were not freed)
- bugfix date scale: shows Sunday twice during switch from daylight saving
  time back to regular time (00:00 localtime + 24h is still the same day at
  that special day :)   Note that wrong start times for TV programmes
  after the time switch are faults on side if the content providers. Also
  weekdays in the scale are now printed in the local language.
- added new EPG provider "VT4" (Belgium) as of March 2004.
  Thanks to "N?o" for providing the info.
- UNIX: added support for libzvbi: requires change in Makefile (add compiler
  switch -DUSE_LIBZVBI) and re-compilation; also added preliminary support
  for VBI proxy (add compiler switch -DUSE_LIBZVBI_PROXY; note the proxy API
  is still subject to change)
2.7.1:
- bugfix in "local time" option for XML database export (times were still
  in GMT only, regardless if the option was enabled or not)
- added support for new XMLTV DTD 0.6 (note command line option -dump xml
  uses the format which was used last in Control->"Export as XMLTV")
- fixed -daemonstop option for Linux and v4l2 devices (2.6 kernels): did
  sometimes not work after the user interface was used.
- added support for new UNIX TV app: Zapping, i.e. reading channel table
  from zapping.conf.  (Note: interaction with nxtvepg was implemented in
  zapping too: you can check it out from CVS at zapping.sourceforge.net)
- bugfix in acq stats (control menu): when connected to acquisition daemon
  VPS/PDC info was not displayed
- added work-around for daylight saving time changes and local time zone
  handling specifically for Turkish provider TRT.
- made programme list's context menu fully configurable: pre-defined
  commands for filter and reminder control can be re-ordered now too
  (in addition to external commands); also removed the need to press the
  dialog's "Update" button after changes (which was a long standing entry
  in the TODO list)
- UNIX/X11: display Nextview logo in main window title bar (only works for
  window managers which support the WM_ICON feature, e.g. fvwm2 or Gnome)
- bugfix: columns in the main programme list were not resizable, i.e.
  the pull-down menu appeared even when clicking onto the column header
  button's right border ("single list" layout only)
- bugfix: option "-provider merged" did not work in daemon mode (acq for
  merged database did work though, if pre-configured as default in the
  .nxtvepgrc or INI file)  Thanks to Georg for reporting this bug.
- Linux: bugfix in v4l2 support (fixes problems with PVR-350 cards.)
  Thanks to Urs Schaufelberger and Hans Verkuil for the patch.
- Windows only: fixed weekday colors in datescale: did not match those
  in the "weekday color" attribute in the programme list; thanks to
  everyone who reported this bug in the forum.
2.7.2
- Fixed bugs in XMLTV database export, both in DTD5 and DTD6 versions
  (introduced in version 2.7.1)
  Thanks to Steffen Siebert for pointing these out.
- Added "tvtime" to the list of TV applications supporting interaction
  with nxtvepg (via "xawtv-remote" connection; import of tvtime's channel
  table is not supported yet though.)  Thanks to Billy Biggs.
- Added new command line option "-clock" which allows to acquire the
  current date and time from teletext and update the system time with it.
  (Warning: implementation is still preliminary; usage of this option may
  change in subsequent versions of nxtvepg.)
- Made the "tvsim" tools compilable on *BSD platforms, thanks to
  Simon Barner (note: still untested; please report if it actually works.)
2004-11-27 13:58:30 +00:00
taca
893eb044d9 Importing files for Ruby's new framework. 2004-11-27 13:57:20 +00:00
jdolecek
d1eaf7a16f claim MAINTAINER 2004-11-27 13:34:37 +00:00
jdolecek
dabfddfb8b update for DIST_SUBDIR=pear 2004-11-27 13:33:52 +00:00
jdolecek
84166d02fb Update pear-Date to 1.4.3.
Changes 1.4.1 to 1.4.3:
* Fix #1250 Wrond name for Bangladesh TZ
* Fix #1390, add XML Schema datetime support
* TimeZone default bad global usage only _DATE_TIMEZONE_DEFAULT is used now
* Fix #683, add optional length argumet to getDayName()
* Fix PHP5 problems with get_class functions
* Fix #674 endOfWeek() beginOfWeek()
* Fix #727, weeksInMonth (wrong result with some dates)
* Fix #674 (and old system #22549), check arguments in Date_Span

Changes in 1.4:
- improvements in input date parsing
- add Date methods addSpan() and subtractSpan()
- added two more ISO8601 date/time output formats DATE_FORMAT_ISO_BASIC
  and DATE_FORMAT_ISO_EXTENDED
- improve Date_Calc isLeapYear() and daysInMonth() for year 1582
- add gregorianToISO() method to Date_Calc
- add dateSeason() method to Date_Calc
- add Date_Span class
- bugfix in Date_Calc when century ends in 00, only define
  DATE_CALC_BEGIN_WEEKDAY if not already defined
- bugfix in beginOfNextWeek(), beginOfPreviousWeek()
- bugfix in nextDayOfWeek and prevDayOfWeek (thx to koan at gmx dot at)
- bugfix for bug 62: getDate(DATE_FORMAT_UNIXTIME) off because of DST
- bugfix for bug 65: format(e) returns zero-padded day
- bugfix for bug 195: Suppress a notice in setDate()
- bugfix for bug 271: Date_Calc weeksInMonth() returns wrong number
- fix abstraction bug, Date constructor accepts now object that extends Date
- add tests to release package
- Fix notices and mins calc in to toUTCbyOffset()
2004-11-27 13:31:10 +00:00
jdolecek
61ae11e536 Updated pear-Net-URL to 1.0.14. This is actually the version which
fixes the arg_separator.input bug, 1.0.12 fixes some other bugs.
2004-11-27 13:23:47 +00:00
jdolecek
9d4ca1f664 Added pear-Net_SMTP 1.2.6 - implementation of SMTP protocol for PHP. 2004-11-27 13:05:39 +00:00
jdolecek
2d5e0a6f7b Add pear-Net_SMTP package 1.2.6. This is for PHP5 only, PHP4 has this
bundled.
2004-11-27 13:01:16 +00:00