Commit graph

10528 commits

Author SHA1 Message Date
hiramatsu
a64140e1a1 Update p5-URI to 1.59.
Changes from previous:
2011-08-15   Gisle Aas <gisle@ActiveState.com>

  Release 1.59

  Make sure accessor methods don't return utf8::upgraded() bytes
  for URLs initialized from Unicode strings.

  Version number increments.

  Documentation tweaks.
2011-10-17 10:32:02 +00:00
hiramatsu
dea27bd70f Update p5-CGI-Compile to 0.15.
Changes from previous:
0.15  Tue May 24 09:41:52 PDT 2011
        - handle DOS line endings (rkitover)

0.14  Thu Jan 20 15:07:59 PST 2011
        - Enable the warnings (rkitover)

0.13  Mon Jan 17 14:36:27 PST 2011
        - Improved documents about nested closure
        - check -w switch on CGIs (rkitover)
2011-10-17 08:53:21 +00:00
hiramatsu
b00e342422 Add HOMEPAGE and LICENSE. 2011-10-17 04:36:45 +00:00
obache
115dbfbeea Update ruby-httpclient to 2.2.2.
While here, install document again.

== Changes

= Changes in 2.2.2 =

  Oct 17, 2011 - version 2.2.2

    * Bug fixes

      * Do not sort query params on request: Wrongly sorted query params for
        easier debugging but the order of request parameter should be
        preserved. #65

    * Changes

      * Set responce String encoding if possible.  Parse content-type response
        header with some helps from OpenURI::Meta and set response String
        encoding. #26

      * Improve connection cache strategy.  Reuse cached session in MRU order,
        not in LRU.  MRU is more server friendly than LRU because it reduces
        number of cached sessions when a number of requests drops after an
        usaage spike.

        With reusing sessions in LRU order, all sessions are equally checked if
        it's closed or not, as far as there's a request to the same site.  With
        reusing sessions in MRU order, old cold sessions are kept in cache long
        time even if there's a request to the same site.  To avoid this leakage,
        this version adds keep_alive_timeout property and let SessionManager
        scrub all sessions with checking the timeout for each session.  When the
        session expires against the last used time, it's closed and collected.

        keep_alive_timeout is 15[sec] by default. The value is from the default
        value for KeepAliveTimeout of Apache httpd 2.  #68 #69
2011-10-17 01:43:56 +00:00
hiramatsu
db2533e8b6 Updated p5-URI-Fetch to 0.09.
Changes from previous:
0.09  2011.01.28
    - Use $ua->env_proxy to load local proxy settings. (RT 53819)
    - Skip tests if we don't have a network connection. (RT 28388, 59694)
    - Removed sign() and auto_install() from Makefile.PL.
    - Removed magic svn keywords.
    - Added author tests (xt/) and modified SYNOPSIS for all modules to
      make them pass the compilation test.
2011-10-16 16:23:17 +00:00
hiramatsu
a5c001ad00 Update p5-Test-WWW-Mechanize to 1.34.
Changes from previous:
1.34    Tue Jul  5 16:23:24 CDT 2011
------------------------------------
[ENHANCEMENTS]
Added $mech->lacks_uncapped_inputs() to check for <input> tags that
don't have a maxlength attribute.  We've been using this for years at
work, and I'm just now moving it into Test::WWW::Mechanize.
Added $mech->grep_inputs() and $mech->grep_submits() to easily pull
input fields from the page.  I'd like to get this moved up to base
WWW::Mechanize, because it has use outside of the Test:: world.

$mech->followable_links() now finds file: URLs, too.

$mech->content_contains(), $mech->content_lacks(), $mech->text_contains(0
and $mech->text_lacks() all fail if a reference is passed instead of
a string.

[FIXES]
$mech->text_contains() was not calling $mech->text(), so was not taking
advantage of the caching of the parsed text.

[INTERNALS]
Most tests no longer use TestServer.pm class.

All tests now run under -T and have plan counts.

1.31_01 Wed May  4 16:07:31 CDT 2011
------------------------------------
[ENHANCEMENTS]
The methods that look at the text of the page, ->text_like() and
->text_unlike(), now use the WWW::Mechanize method ->text() which caches
the text.  This will be a big speedup if you call these methods more
than once.

[FIXED]Normalized the use of single vs. double quotes in the default descriptions.

Fixed tests that fail under newer versions of LWP.

Fixed tests that fail if http_proxy or HTTP_PROXY are set.

Fixed tests that fail on Perl 5.14.
2011-10-16 13:55:27 +00:00
hiramatsu
ff3d69ae9f Add p5-Catalyst-Plugin-StatusMessage. 2011-10-16 09:22:23 +00:00
hiramatsu
fe1d2f986c Import perl module Catalyst::Plugin::StatusMessage into
www/p5-Catalyst-Plugin-StatusMessage, because tutorial
recommends to use this module.

The purpose of this plugin is to pass "status message" between screens
through the following mechanisms:

- Stores messages in the "$c->session" so that the application is
  free to redirect to the appropriate URL after an action is taken.

- Associates a random 8-digit "token" with each messages, so it's
  completely unambiguous what message should be shown in each
  window/tab.

- Only requires that the token (not the full message) be included in
  the redirect URL.

- Automatically removes the message after the first time it is
  displayed.  That way, if users hit refresh in their browsers they
  only see the messages the first time.
2011-10-16 09:20:29 +00:00
manu
90c01e6b34 Add libmemcached, SOPE, SOGo 2011-10-16 05:39:32 +00:00
manu
8d4d031071 Groupware server supporting CalDAV, CardDAV and GroupDAV 2011-10-16 05:36:32 +00:00
hiramatsu
9efdf58243 Do not need to include HOMEPAGE url in DESCR. 2011-10-15 19:19:02 +00:00
hiramatsu
e0dd69cf14 Update p5-Starman to 0.2014.
Changes from previous:
0.2014  Sun Sep 18 12:43:06 PDT 2011
        - Fixed broken PSGI response headers after the output (cho45)

0.2013  Sat Jun 25 11:51:47 PDT 2011
        - Relaxed the harakiri tests (audreyt)

0.2012  Wed Jun 22 13:51:59 PDT 2011
        - Implemented psgix.harakiri mode (audreyt)
        - Added --error-log option (Paulo E. Castro)

0.2011  Tue May 24 09:41:52 PDT 2011
        - Fix chunked response with 0-length PSGI array elements (chmrr)

0.2010  Mon Mar 28 16:23:23 PDT 2011
        - Fixed packaging. No changes.

0.2009  Fri Mar 25 19:15:23 PDT 2011
        - Requires Plack 0.9971 to support localizing $0 to fix the FindBin issues #7, #15, #18, #19
        - Calls srand() automatically in the child init hook to avoid a fixed random seed #20
        - Implemented --keepalive-timeout which defaults to 1 (acme)

0.2008  Mon Feb 14 17:19:20 PST 2011
        - Documented that -E is automatically set to 'deployment' RT:61517 (timbunce)
        - Check the defined-ness of the input buffer to suppress warnings RT:60007

0.2007 Thu Sep 30 14:09:00 PDT 2010
        - Fixed a bug where Date header can be duplicate if the app generates one (spleenjack)
2011-10-15 15:19:14 +00:00
obache
6acb75cd09 * LICENSE=modified-bsd
* regist egg-info

Bump PKGREVISION.
2011-10-15 11:24:19 +00:00
obache
3111d58839 * LICENSE= modified-bsd OR zpl
* no need to set PYDISTUTILPKG here.
2011-10-15 11:16:58 +00:00
obache
ea025145d7 * LICENSE=mit
* regist egg-info

Bump PKGREVISION.
2011-10-15 11:10:57 +00:00
obache
f8daa9d14e Fixes missing bump of py-rss2gen. 2011-10-15 11:04:35 +00:00
obache
f9fdb760bf * LICENSE=modified-bsd
* remove unused PLIST_SUBST.
* regist egg-info.

Bump PKGREVISION.
2011-10-15 11:01:59 +00:00
obache
eb64d1739a LICENSE=mit 2011-10-15 10:56:37 +00:00
obache
7ab487203f * LICENSE=modified-bsd
* regist egg-info

Bump PKGREVISION.
2011-10-15 10:54:25 +00:00
obache
d6e0dc1add LICENSE=2-clause-bsd 2011-10-15 10:45:19 +00:00
jklos
0e371e19d9 Fixed URL to SquidFAQ entry. 2011-10-14 22:48:28 +00:00
wiz
389cdb3361 Fix build-always.sh -- added too many single quotes.
Bump PKGREVISION.
2011-10-13 16:37:03 +00:00
wiz
5ec9da283d Update to 0.9.9.6. Changes:
0.9.9.6:
Functionality Enhancements

    Implementation of the Timezone Service Protocol (draft)

Bug Fixes

    Fixes to the handling of time-range queries in the calendar-query report.
    Fixes to LDAP authentication regressions introduced in 0.9.9.5.
    Fix ability to save blank default privileges.

Other Changes

    Add a script which can be run from cron to sync users from LDAP.
    Most use of the deprecated iCalendar class has been switched to use the new vCalendar class.

0.9.9.5:
Functionality Enhancements

    Experimental 'memcached' support is added to help large sites improve scalability.
    The /setup.php URL is improved to provide better information
    When a new user is created an 'addressbook' collection will be created in addition to their 'home' calendar.
    Scheduling Extensions for CalDAV: When a meeting is scheduled with another person on the same server it should automatically appear in their calendar and scheduling inbox.
    Implemented the principal-match REPORT.
    Only include calendar-data (or addressbook-data) in the response to a sync-collection if there are fewer than 50 changes outstanding.
    Add support for Digest authentication.
    Add support for using IMAP as an auth source.
    Add support for binding remote calendars External Bind(Rob Ostensen).

Bug Fixes

    Repeat rule expansion now handles floating date-time and date correctly.
    Access to calendar resources by users with only read-free-busy access should always be obfuscated.
    The first user to log in after setting up a system using pam_auth or LDAP will no longer fail.
    Correct handling for PUT of a VCALENDAR with unreferenced VTIMEZONE components.
    Only include override components in an expanded report if they override in the expand period (or otherwise affect within the period).
    Correct output of XML <error> responses containing error tags in the DAV namespace.
    Correct handling of calendar-query REPORT where <prop> follows <filter>
    Setup tests now handle where PHP config values are set to '0' or 'off' as equivalent.
    Various bugfixes to caldav-client-v2.php script.
    Don't restrict password character set for LDAP auth users.
    Don't allow BIND to succeed with an empty password.
    Correct sort ordering of members of a group.
    Block access by expired tickets.

Other Changes

    Group membership now always confers the group's 'Default privileges' to members of the group.
    The handling of reading users from the database is refactored from old PHP4 code into some better object oriented classes.
    Refactoring of the handling of PUT requests.
    Add a workaround to let Apple Addressbook log in and use CardDAV even when account names contain '@'
    Updated translations.
    New translations for Norwegian, Brazilian Portuguese and Mexican Spanish.
    Allow expansion to return expanded floating time events in floating time (extension to spec).
    When an event is added but has no UID (invalid) we now add one.
    Add support in the archive for building RPMs of DAViCal
2011-10-13 15:57:03 +00:00
dholland
06bb485383 Uses perl-style if syntax and therefore doesn't work with python24. 2011-10-13 13:06:20 +00:00
dholland
f81238022a Patch checksums were also wrong. 2011-10-13 12:33:47 +00:00
dholland
fe0c5ace78 Undo lang/php/ext.mk's hijacking of DISTINFO_FILE.
XXX: should be fixed properly in the php logic
2011-10-13 12:24:33 +00:00
jnemeth
8ece490477 add and enable php-phrasea2, phraseanet, and phraseanet-indexer 2011-10-13 07:37:51 +00:00
taca
e7202e88bf Update contao210-translations package to 20111012.
Update French, Japanese and Latvian language files.
2011-10-12 13:05:07 +00:00
hiramatsu
a697fd4fc8 Update p5-Twiggy to 0.1010.
Changes from previous:
0.1010 Mon Jan 17 17:04:14 PST 2011
        - Returning CondVar as a PSGI response is deprecated. Will be
          removed in the next release

0.1009 Fri Dec  3 11:52:20 PST 2010
        - Fixed leaking fd (t0m)

0.1008 Fri Oct  1 11:54:01 PDT 2010
        - Fixes shebang (chiba)
        - Fixed typo

0.1007 Fri Sep 10 13:13:18 PDT 2010
        - Passing port => 0|undef to the Plack::Handler::Twiggy
          (and Twiggy::Server) means it's passing them to AnyEvent::Socket
          to find un available random port.

0.1006 Sun Aug  8 23:35:52 PDT 2010
        - Fix an edge case when on_drain gets empty string the request is
          never completed (clkao)
        - no automatic 'use lib' in twiggy command line
2011-10-12 06:35:23 +00:00
taca
1737f1cfe7 Add update patche to fix XSS from Contao's repository.
Bump PKGREVISION.
2011-10-10 16:35:10 +00:00
taca
9eee2b995b Update contao210 package to 2.10.2.
It is really fix the XSS problem.

Version 2.10.2 (2011-10-10)
---------------------------
- Updated: updated TinyMCE to version 3.4.6
- Fixed: do not remove slashes just because get_magic_quotes_gpc() exists
- Fixed: CSS units were not always applied when used with global variables
  (#3464)
- Fixed: the task deadline field did not show the date picker (#3351)
- Fixed: do not return empty lines in the compileDefinition hook (#3440)
- Fixed: the TinyMCE spellchecker did not work anymore (#3487)
- Fixed: the regexp for validating phone numbers accepted invalid values
  (#3493)
- Fixed: added the new HTML5 elements to the valid TinyMCE tags (#3479)
- Fixed: the style sheet generator did not support absolute URLs (#3512)
- Fixed: fixed a potential XSS vulnerability (thanks to sschurtz)
- Fixed a few minor issues
2011-10-10 16:32:59 +00:00
wiz
cc97f3d9d9 Update to 0.9.15. Use better master sites.
Wed Sep 28 08:37:55 CEST 2011
	Releasing libmicrohttpd 0.9.15. -CG

Tue Sep 27 13:07:36 CEST 2011
	Added ability to access URL arguments of the form 'url?foo' (without
	'=').  Added testcase and updated documentation accordingly. -CG

Mon Sep 26 21:24:00 CEST 2011
	Only run response cleanup testcase if curl binary was found by
	configure. -CG

Wed Sep 21 09:53:18 CEST 2011
	Reverting to using pipes for signalling select on non-Linux
	platforms where shutdown-on-listen-sockets does not work. -WB/CG

Mon Sep 19 14:06:30 CEST 2011
	Fixing problem introduced with prompt response cleanup code. -CG

Wed Sep 14 13:43:26 CEST 2011
	Fixing minor memory leak if daemon with HTTPS support failed to
	initialize (#1766). -CG

Tue Sep 13 09:47:58 CEST 2011
	Try to release responses more promptly upon connection termination. -CG

Mon Sep 12 10:20:28 CEST 2011
	Releasing libmicrohttpd 0.9.14. -CG

Mon Sep 12 10:05:36 CEST 2011
	Added new function to allow setting of a custom timeout value
	for an individual connection (the MHD_set_connection_option is
	more generic, but this is currently the only use). -CG

Sat Sep 10 07:30:12 CEST 2011
	Documenting that MHD_CONNECTION_INFO_GNUTLS_CLIENT_CERT is not
	implemented and will not be implemented, and what to use instead. -CG

Fri Sep  9 13:42:20 CEST 2011
	Added testcase to demonstrate that response cleanup calling is
	working. No bug was found. -CG

Thu Aug 18 11:05:16 CEST 2011
	Fixed bug with wrong state transition if callback returned
	MHD_CONTENT_READER_END_OF_STREAM causing spurious extra callbacks
	to the handler (thanks to Jan Seeger for pointing it out). -CG/JS

Thu Aug 11 11:40:03 CEST 2011
	Changing sockets to be non-blocking as suggested by Eivind Sarto
	on the mailinglist. -CG

Mon Jul 25 16:13:15 CEST 2011
	Added a logo. -CG

Sat Jul 16 22:42:10 CEST 2011
	Change type of nonce to 'unsigned long int' to match return type
	from 'strtoul'.  Fixes ERANGE check which would have previously
	failed. -CG

Wed Jul 13 09:26:17 CEST 2011
	Fixing HTTP error status strings for certain high-numbered status codes.
	Added support for some more (non-standard) status codes.
	Releasing libmicrohttpd 0.9.13. -CG

Thu Jul  7 10:24:20 CEST 2011
	Adding performance measurements. -CG

Thu Jun 23 14:21:13 CEST 2011
	Releasing libmicrohttpd 0.9.12. -CG

Wed Jun 22 14:32:23 CEST 2011
	Force closing connection if either the client asked it or
	if the response contains 'Connection: close' (so far,
	only the client's request was considered). -CG/RV

Wed Jun 22 10:37:35 CEST 2011
	Removing listen socket from poll/select sets in
	MHD_USE_THREAD_PER_CONNECTION mode; using 'shutdown'
	on connection sockets to signal termination instead. -CG

Wed Jun 22 10:25:13 CEST 2011
	Eliminate unnecessary (and badly synchronized) calls to
	MHD_get_timeout in MHD_USE_THREAD_PER_CONNECTION mode.
	Document that this is not acceptable. -CG

Tue Jun 21 13:54:59 CEST 2011
	Fixing tiny memory leak in SSL code from 'gnutls_priority_init'.
	Fixing data race between code doing connection shutdown and
	connection cleanup.
	Changing code to reduce connection cleanup cost from O(n) to O(1).
	Cleaning up logging code around 'connection_close_error'. -CG

Sat Jun 11 13:05:12 CEST 2011
	Replacing use of sscanf by strtoul (#1688). -CG/bplant

Fri Jun  3 15:26:42 CEST 2011
	Adding MHD_CONNECTION_INFO_DAEMON to obtain MHD_Daemon
	responsible for a given connection. -CG

Wed May 25 14:23:20 CEST 2011
	Trying to fix stutter problem on timeout described by
	David Myers on the mailinglist (5/10/2011). -CG

Fri May 20 22:11:55 CEST 2011
	Fixed bug in testcase setup code causing crashes in
	tls_session_timeout_test on some systems.
	Releasing libmicrohttpd 0.9.11. -CG

Fri May 20 19:34:59 CEST 2011
	Fixed bug in parsing multipart/form-data with post processor where
	the code failed to add a 0-terminator in the correct position. -PP

Thu May 12 14:40:46 CEST 2011
	Fixed bug where if multiple HTTP request messages are piped in at once,
	microhttpd would call the handler with the wrong upload_data_size. -HZM

Thu May 12 14:40:08 CEST 2011
	Documented possible issue with off_t being sometimes
	32-bit and sometimes 64-bit depending on #includes. -CG

Sun May  8 21:52:47 CEST 2011
	Allow MHD_SIZE_UNKNOWN to be used in conjunction with
	MHD_create_response_from_fd (fixing #1679). -TG

Wed Apr 27 16:11:18 CEST 2011
	Releasing libmicrohttpd 0.9.10. -CG

Fri Apr  8 11:40:35 CEST 2011
	Workaround for cygwin poll brokenness. -TS

Sun Apr  3 13:56:52 CEST 2011
	Fixing compile error on OS X. -CG

Wed Mar 30 12:56:09 CEST 2011
	Initialize tv_usec in MHD_USE_THREAD_PER_CONNECTION with select
	and per-connection timeout. -CG
2011-10-10 13:04:14 +00:00
taca
bc44e3ec7d Add patch for CVE-2011-3368 from Apache's repository.
Bump PKGREVISION.
2011-10-10 10:13:42 +00:00
hiramatsu
4f5928033f Update p5-WWW-Mechanize to 1.70.
Changes from previous:
1.70        Fri Aug 26 13:46:30 EDT 2011
========================================
[ENHANCEMENTS]
Mech now defaults to _not_ running live tests by default.
You can still enable them by running "perl Makefile.PL --live"
Thanks to RJBS for the suggestion

1.69_01
========================================
[INTERNALS]
The test suite for the local tests was updated
2011-10-10 09:52:11 +00:00
wiz
4cd8e56a12 Add more files to REPLACE_PYTHON. Bump PKGREVISION. 2011-10-10 08:32:19 +00:00
wiz
6376c048d4 Update to 2.0.14:
=== 2.0.14 ===
7 Mar 2011

 - Bug Fixes:
  * 491. 302 redirect on some gsessionids
  * 501. Remove support for deprecated Maps Data API.
  * 462. Bug in samples/analytics/data_feed_demo.py (using segments)
  * 482. String exception in service.py
  * 414. http proxy url containing properly formatted user-name and password not accepted
 - Turn on SSL for Codesearch, Photos, Project Hosting, Analytics,
    Contacts, Marketplace Licensing, and Docs.
 - Add batch default URL to the Contacts API and clean the sample code. (issue4000058)
 - Added support for Content API for Shopping
 - Added Calendar V2 API support
 - Add Google Marketplace Licensing API to the Gdata Python Client
 - Added patch from Alexandre Vivien that fixes calendar resource email support that somehow went missing in a previous release.


=== 2.0.13 ===
16 Nov 2010 (revision 902:73f3fbb5ea88)

 - Bug Fixes:
   * Issue 315: Correctly constructs queries based on categories for Blogger APIs.
   * Issue 323: YouTubeUserQuery constructor passes incorrect overridden parameter to base class.
 - Accept proxy username and password in http(s)_proxy environment variables.
 - Adding support for specifying URI to v3 docs client.
 - Adding tests for revisions for arbitrary file types in Documents List API.
 - Google Base, added bucket node to attributes.
 - Adding ContainsSampledData XML Element to Analytics Data Feed and updating samples


=== 2.0.12 ===
17 Sep 2010 (revision 892:e949a7cf9a31)

 - Bug Fixes:
   * Issue 437: PATCH request generates incorrect Content-Type
   * Issue 428: get_blog_name() does not correctly handle blog URLs containing hyphens
   * Issue 443: Packages should contain gdata.apps.audit in setup.py
   * Issue 430: Lots of memory usage when uploading big video files
   * Issue 423: gdata.contacts.client.ContactsClient.get_profiles_feed() broken
  - Turn on SSL be default for the spreadsheet API
  - Added support for new Analytics feeds
  - All V3 code and development has been out of this project and into http://code.google.com/p/google-api-python-client/
  - Added partial support for the YouTube API in v2


=== 2.0.11 ===
Jul 29, 2010 (revision fa49231cc8)

 - Added the following new APIs:
   * Apps Audit APIs from Jay Lee
   * Apps Organization from Alexandre Vivien
   * Added Email Settings API client library v2.0 from Claudio Cherubino
 - Fixes to file permissions for samples.
 - Fixing a broken calendar resource client from r983, removing a superfluous call to MakeResourceFeedUri(), adding regression tests for edit links.
 - Abstracting out AppsProperty so that it's usable by other libs.  Thanks to Claudio Cherubino <ccherubino@google.com> for this change.
 - Added optional change_password parameter to AppsService.CreateUser
 - Fixing minor bugs in analytics samples
 - http://codereview.appspot.com/1677050 Switch default connection type back to non-SSL connections.
 - Switch the repository from subversion to mercurial
 - Added OAuth test cases thanks Samuel Cyprian
 - Many APIs now use SSL, and some require it, so the following APIs now default to using HTTPS:
   * Spreadsheets
   * Sites
   * Calendar Resource

=== 2.0.10 ===
May 12, 2010 (revision 980)

 - Add check for liveness of proxy in live tests. Also add in upload-diffs.py to make using codereview.appspot.com easier.
 - Patch from Alexandre Vivien adds the ResourceEmail attribute to CalendarResourceEntry
 - Adding new single page methods to apps.groups.service. Thanks Jeremy Selier!
 - Cleanup in service GetWithRetries. Thanks Will Charles!
 - Adding much more test coverage for calendar_resource.client.
 - Fixing Calendar Resource get_resource to use correct feed URI generator.  Thanks to Alexandre Vivien for reporting.
 - Adds support for Blogger Pages. Thanks Wiktor Gworek!
2011-10-08 14:11:22 +00:00
obache
6ff204f93a Update mimetex to 1.72.
some commands are supported additionally.
2011-10-08 08:11:56 +00:00
hiramatsu
59061d753f Update p5-Web-Scraper to 0.35.
Changes from previous:
0.35  Mon Sep 26 18:40:06 PDT 2011
        - Added support for comments() XPath #3 (Perlover)

0.34  Thu Feb 24 09:35:12 PST 2011
        - Skip xml_simple.t if LibXML is not there (omega)

0.33  Thu Feb 17 09:12:55 PST 2011
        - Remove failing invalid XPath tests
2011-10-08 03:44:59 +00:00
obache
338fea394f Mechanically regen PLIST from webkit-gtk. 2011-10-07 12:32:36 +00:00
taca
cf70b879aa Add a patch based r1041 from the repository of Contao to fix potential
XSS vulnerability.

Bump PKGREVISION.
2011-10-07 12:28:11 +00:00
drochner
8a92a32b55 update to 1.6.1
changes:
-JavaScriptCore library can be used independently
-New DOM methods
-API extensions: spell checking, local storage database path
-bugfixes
2011-10-07 12:17:25 +00:00
hiramatsu
643e47d3e5 Update p5-WWW-Shorten to 3.02.
Changes from previous:
2010-12-06  Dave Cross <dave@dave.org.uk>

  * lib/WWW/Shorten.pm: Bump version number for release.

  * bin/shorten: Be far more intelligent about the code that allows the user to
  choose which service to use.

  * MANIFEST.SKIP: Added MYMETA.yml to MANIFEST.SKIP.

  * bin/shorten: Default to using a service that we currently support.

  * Build.PL, lib/WWW/Shorten.pm: Added Config::Auto to list of dependencies
  (it's used by the shorten program). Bumped version for release.
2011-10-07 11:37:44 +00:00
dholland
33f9e4d0f5 PHP_VERSIONS_ACCEPTED=52, because php-fileinfo doesn't accept php53.
Now pbulk_scan no longer refuses to countenance this package, so it
can run to completion and build other stuff. I don't think this
package builds anyway...
2011-10-07 05:45:03 +00:00
dholland
cca353bc06 Fix broken DEPENDS that pbulk appears to be allergic to. 2011-10-07 03:56:19 +00:00
dholland
e0de03b41d This appeared only in the subdir copy of the package and looks like it's
probably wanted, so let's keep it.
2011-10-07 03:52:46 +00:00
dholland
64776761c7 Remove extra copy of this package that apparently got imported in a
subdir.
2011-10-07 03:51:44 +00:00
hiramatsu
1ca9c83910 Update p5-Catalyst-Devel to 1.34.
Changes from previous:
1.34 2011-09-16 09:02:00
        - Bump required version of Catalyst to 5.9
        - Merge psgi support. catalyst.pl will now generate a default
          myapp.psgi file with the default middlewares applied.
        - Fix scripts being generated mode 0700, rather than 0755
        - Fix duplicate 'use Test::More' statement in generated components.
        - Fix Pod for catalyst_ignore function in Module::Install::Catalyst
          RT#68563

1.33 2011-03-24 15:10:00
        - Fix a regression introduced in 1.32 that caused Catalyst::Restarter
          to not work at all.

1.32 2011-03-22 09:17:00
        - Fix RT#65907: missing build require: Test::Exception
        - Fix RT#57019: Fix bundling of File::Copy::Recursive in inc/
          by Module::Install::Catalyst

1.31 2011-01-20 01:08:00
        - Fix for copying generated files into installed apps + tests
          to ensure it keeps working. abraxxa++
        - Make Pod tests author only

1.30 2011-01-11 23:54:00
        - Increased Catalyst::Plugin::ConfigLoader dependency to 0.30
        - Include File::Copy::Recursive in inc/ when building a dist of an
          application.

1.29 2011-01-11 23:51:00
        - Add documentation for the --proc_title option to the generated
          fastcgi scripts
        - Don't bother with the BEGIN { use_ok dance for created tests
          - the test will fail to compile (and ergo fail) using just use,
          and that's less typing (and less copy-pasting)
        - Split method for creating tests into multiple methods to allow
          subclasses to override the generation of some tests.
        - Allow the author to be defined in the call to ->new to help things
          which want to call Catalyst::Helper programatically.
        - Remove $VERSION = eval $VERSION handwave in generated code as:
          - Gives a perl critic violation.
          - If you're shipping a dev release, best practice is you should do
            it by renaming the tarball, rather than having a _ in the VERSION.
        - Allow catalyst.pl . to work for already created applications
          when in the application's directory.
        - Note that plugin order is important in the generated skeleton.
        - Don't pollute M::I plugin detector with GetOptions symbol from
          GetOpt::Long
        - Fix typo in share/script/myapp_server.pl.tt (RT #58475)
2011-10-06 12:42:41 +00:00
hiramatsu
2803e65e6a Update p5-Catalyst-Manual to 5.9002.
Changes from previous:
5.9002 3 Sept 2011    - Tutorial
        - Switch to 'catalyst' vs. 'root' user in VM
        - Add notes about X Windows installation
        - Misc small adjustments

5.9001 2 Sept 2011
    - Tutorial:
        - Migrate Tutorial to use of a downloadable Virtual Machine
        - Switch tutorial to Catalyst::Plugin::StatusMessage (vs. flash
            and query parameters)
        - Switch to use of local::lib
        - Add "next chapter links" (RT #31164)
        - Test all the tutorial code and make sure it's all working
        - Lots of other Tutorial cleanup
        - Update to Catalyst 5.9 and latest versions of all modules
        - Clean up RT ticket queue (#68379, 68377, 68376, etc.)
        - Other misc fixes/changes


5.9000 16 Aug 2011
    - Copy editing to make more sense in deployment documentation.

5.8901 7 Aug 2011 - TRIAL RELEASE
    - Added Catalyst::Manual::Deployment containing the documentation
      which used to be in Catalyst::Engine::*, updated for the
      new PSGI engine.

5.8008 2 Aug 2011
    - Tutorial chaper 3
      - Remove note about hacking tests to require MyApp so that MyApp->path_to
        works. Application components should compile independently, and
        therefore explain this and show configuring components from the
        app class.

    - Tutorial appendix
      - Fix confusing mix of singular and plural table names in the MySQL
        section to be plural, as per the rest of the tutorial.

    - Cookbook
      - Remove suggestion to generate RSS feeds using Template Toolkit.
        This is a horrible idea, and it's very very easy to generate an
        invalid feed.

5.8007 29 Feb 2011
    - Tutorial
      - Switch to use of DBIx::Class::PassphraseColumn for hashed & salted
        passwords. It's much more flexible than the previously used
        DBIx::Class::EncodedColumn.

5.8006 29 Feb 2011
    - Fix metadata to refer to the new git repository
    - Cookbook
      - Small fixes and typos
    - Tutorial
      - Various typo fixes.
      - RT #57989: typo
      - RT #61486: correct instructions for MySQL
      - RT #62095: prevent XSS
      - RT #62095: persistent message on /login
      - RT #63057: typo
      - RT #64087: typos
      - RT #64126: Use precise name of licence
      - RT #64126: typos
      - RT #67820: fix relationship decleration
      - Do not recommend FastMmap
    - DevelopmentProcess
      - RT #62610: typo

5.8005 27 Oct 2010
    - Tutorial:
        - Add DATABASE CONFIG SWITCHING USING MULTIPLE CONFIG FILES section
        - Critical bugfix on index page.
2011-10-06 12:40:42 +00:00
obache
cc1c2c3335 Take care of rtmp option. 2011-10-05 02:14:19 +00:00
shattered
5e0597d889 Whitespace only. 2011-10-04 20:55:35 +00:00