Commit graph

11165 commits

Author SHA1 Message Date
rhaen
d64e07dbba Updated to 2.10
ChangeLog:
2.10    Tue Dec  6 11:16:16 CST 2011

        HTML::Lint is now explicitly licensed under Artistic License 2.0,
        instead of the vague "same terms as Perl itself."

        [FIXES]
        Tags that were self-closed were being ignored.  For example, if you had

            <img src="blah.jpg" />

        then HTML::Lint would ignore the tag.  This has been fixed.
2012-01-26 13:56:21 +00:00
rhaen
80073731e1 Updated to 5.90007
ChangeLog:
5.90007 - 2011-11-22 20:35:00

  New features:
   - Implement a match_captures hook which, if it exists on an action,
     is called with the $ctx and \@captures and is expected to return
     true to continue the chain matching and false to stop matching.
     This can be used to implement action classes or roles which match
     conditionally (for example only matching captures which are integers).

  Bug fixes:
   - Lighttpd script name fix is only applied for lighttpd versions
     < 1.4.23. This should fix non-root installs of lighttpd in versions
     over that.
   - Prepare_action is now inside a try {} block, so that requests containing
     bad unicode can be appropriately trapped by
     Catalyst::Plugin::Unicode::Encoding

5.90006 - 2011-10-25 09:18:00

  New features:
   - A new 'run_options' class data method has been added to Catalyst.pm
     This is used to store all the options passed by scripts, allowing
     application authors to add custom options to their scripts then
     get them passed through to the application.

  Doumentation:
   - Clarify that if you manually write your own .psgi file, then optional
     proxy support (via the using_frontend_proxy config value) will not be
     enabled unless you explicitly apply the default middlewares from
     Catalyst, or you apply the middleware manually.

  Bug fixes:
   - Fix issue due to perl internals bugs in 5.8 and 5.10 (not present in
     other perl versions) require can pass the context inappropriately,
     meaning that some methods of loading classes can fail due to void
     context being passed throuh to make_immutable, causing it to not return
     a value.
     This bug caused loading Catalyst::Script::XXX to fail and is fixed
     both by bumping the Class::Load dependency, and also adding an explicit
     '1;' to the end of the classes, avoiding the context issue.

   - Fix using_frontend_proxy support in mod_perl by using the psgi wrapped
     in default middleware in mod_perl context, rather than the raw psgi.

5.90005 - 2011-10-22 13:35:00

  New features:

   - $c->uri_for_action can now take an array of CaptureArgs and Args
     If you have an action which has both, then you can now say:
     $c->uri_for_action('/myaction', [@captures, @args]);
     whereas before you had to say:
     $c->uri_for_action('/myaction', [@captures], @args);
     The previous form is still supported, however in many cases it is
     easier for the application code to not have to differentiate between
     the two.

   - Catalyst::ScriptRunner has been enhanced so that it will now
     load and apply traits, making it easier to customise.
     - MyApp::TraitFor::Script (if it exists) will be applied to all
       scripts in the application.
     - MyApp::TraitFor::Script::XXXX will be applied to the relevant script
       (for example MyApp::TraitFor::Script::Server will be applied to
       MyApp::Script::Server if it exists, or Catalyst::Script::Server
       otherwise).

  Documentation:

   - Document how to get the vhost of the request in $c->req->hostname
     to avoid confusion
   - Remove documentation showing Global / Regex / Private actionsi
     as whilst these still exist (and work), they are not recommended.
   - Remove references to the -Engine flag.
   - Remove references to the deprecated Catalyst->plugin method
   - Spelling fixed (and tested) throughout the documentation
   - Note that wrapping the setup method will not work with method modifiers
     and provide an alternative.

5.90004 - 2011-10-11 17:12:00

  Bug fixes:

   - Don't guess engine class names when setting an engine through
     MyApp->engine_class.

5.90003 - 2011-10-05 08:32:00
  Bug fixes:

   - Make default body reponses for 302s W3C compliant. RT#71237

   - Fix issue where groups of attributes to override controller actions
     in config would be (incorrectly) overwritten, if the parser for that
     attribute mangled the contents of the attribute. This was found
     with Catalyst::Controller::ActionRole, where Does => [ '+Foo' ]
     would be transformed to Does => [ 'Foo' ] and written back to config,
     whereas Does => '+Foo' would not be changed in config. RT#65463

  Enhancements:

   - Set a matching Content-type for the redirect if Catalyst sets the
     body. This is for compatibility with a WatchGuard Firewall.

  Backward compatibility fixes:

   - Restore (an almost empty) Catalyst::Engine::HTTP to the dist for old
     scripts which explictly require Catalyst::Engine::HTTP

  Documentation fixes:

   - Document Catalyst::Plugin::Authentication fails tests unless
     you use the latest version with Catalyst 5.9

   - Clarify that prepare is called as a class method

   - Clarify use of uri_for further. RT#57011
2012-01-26 13:47:48 +00:00
rhaen
dce0d1f57b Updated to 1.47
Changelog:

1.47 Oct 21, 2011

    [ BUG FIXES ]

    - Silenced an uninitalized value warning from ApacheHandler with newer
  versions of Perl. RT #61900.

1.46 Aug 1, 2011

 [ DOCS ]

    - Mention Mason 2 in documentation
2012-01-26 13:16:01 +00:00
obache
146d4bcbaf distutils pkg, register egg-info.
Bump PKGREVISION.
2012-01-26 12:49:25 +00:00
obache
0aa80e9bbe distutils pkg, register egg-info.
Bump PKGREVISION.
2012-01-26 11:34:28 +00:00
drochner
3f7dd0b1db add patches from upstream to fix 2 security problems:
-data injection attack for certain protocols (CVE-2012-0036)
-SSL CBC IV vulnerability (OpenSSL related, CVE-2011-3389)
bump PKGREV
2012-01-26 11:25:55 +00:00
obache
8bb62116c6 * no compiler languages is required to build.
* distutils pkg, register egg-info.

Bump PKGREVISION.
2012-01-26 09:14:09 +00:00
obache
1053685600 Update py-curl to 7.19.0.
(change to register distutils egg-info)

Version 7.19.0 [requires libcurl-7.19.0 or better]
--------------

        * Added CURLFILE, ADDRESS_SCOPE and ISSUERCERT options,
          as well as the APPCONNECT_TIME info.

        * Added PRIMARY_IP info (patch by
          Yuhui H <eyecat at gmail.com>).

        * Added support for curl_easy_reset through a
          new 'reset' method on curl objects
          (patch by Nick Pilon <npilon at oreilly.com>).

        * Added support for OPENSOCKET callbacks.
          See 'tests/test_opensocket.py' for example
          usage (patch by Thomas Hunger <teh at camvine.com>).


Version 7.18.2
--------------

        * Added REDIRECT_URL info and M_MAXCONNECTS option
          (patch by Yuhui H <eyecat at gmail.com>).

        * Added socket_action() method to CurlMulti objects.
          See 'tests/test_multi_socket_select.py' for example
          usage (patch by Yuhui H <eyecat at gmail.com>).

        * Added AUTOREFERER option.

        * Allow resetting some list operations (HTTPHEADER,
          QUOTE, POSTQUOTE, PREQUOTE) by passing an empty
          list to setopt (patch by Jim Patterson).


Version 7.18.1
--------------

        * Added POST301, SSH_HOST_PUBLIC_KEY_MD5,
          COPYPOSTFIELDS and PROXY_TRANSFER_MODE options.

        * Check for static libs in setup.py to better detect
          whether libcurl was linked with OpenSSL or GNUTLS.

        * PycURL is now dual licensed under the LGPL and
          a license similar to the cURL license (an MIT/X
          derivative).
2012-01-25 13:19:57 +00:00
obache
5bb3417d81 * no compiler languages is required to build
* convert to use distutils.mk, register egg-info.

Bump PKGREVISION.
2012-01-25 12:41:42 +00:00
sbd
ec681430da Recursive dependency bump for databases/gdbm ABI_DEPENDS change. 2012-01-24 09:10:50 +00:00
sbd
1a0b43703b Include <cstdio> for the EOF macro. 2012-01-24 02:55:11 +00:00
joerg
4f8f23d66c Don't use empty lines in mdoc documents. Bump revision. 2012-01-23 00:31:17 +00:00
abs
5a0ce27837 Updated www/p5-Task-Plack to 0.25
0.25
        - Upped versions added new servers and middleware components

also - re-order DEPENDS to match MYMETA.yml and change from *-[0-9] to >=X
2012-01-22 20:14:03 +00:00
abs
1ba6081c1a Updated www/p5-Dancer to 1.3091
1.3091      17.12.2011

    [ BUG FIXES ]
    * Reverting template() behavior by popular demand. (Damien Krotkine)
    * GH #714: Run post-request hooks when custom continuations were created.
      (Damien Krotkine)
    * Always call write_session_id() to update expires. (David Precious)

    [ ENHANCEMENTS ]
    * GH #711, #652: Add server_tokens variable to allow removal of headers.
      (John Wittkoski)

    [ DOCUMENTATION ]
    * GH #680: Document problems with multiple apps in Dancer using
      Plack::Handler::Apache2 and recommend a workaround.
      (Asaf Gordon, Pedro Melo)
    * RT #73258: Spelling glitches. (Damyan Ivanov)
    * Use ":script" instead of ":syntax" in Cookbook. (John Barrett)
    * Typos in Deployment doc. (David Precious)
2012-01-22 20:00:26 +00:00
abs
cd2b525a17 Updated www/p5-Plack to 0.9985
0.9985  Mon Oct 31 13:11:19 PDT 2011
    [BUG FIXES]
    - Short circuit Plack::Handler fallback to avoid %INC bugs in perl 5.8 (mst)
    - Fixed Makefile.PL to avoid Test::SharedFork interferring with Module::Install (ambs)
2012-01-22 19:43:50 +00:00
abs
354b274696 Updated www/p5-Starlet to 0.14
0.14
    - support for randomized reqs-per-child
    - support for slow restart
    - do not send Server header more than once per every response
2012-01-22 19:42:09 +00:00
abs
df34bd2f53 Updated www/p5-Template-Toolkit to 2.23
patch-aa covered upstream

#-----------------------------------------------------------------------
# Version 2.23 - 21st January 2012
#------------------------------------------------------------------------

* Fixed bug RT#47929 which caused the XS Stash to die mysteriously when
  calling code that used string evaluation (e.g. DateTime).

* Fixed bug RT#68722 so that list.defined('alpha') always returns false.

* Added the TRACE_VARS option to keep track of what variables are used
  in a template.  It's not documented yet.  See t/trace_vars.t for an
  example of use.

* Applied patch from RT#48989 to avoid Template::Plugin::Procedural
  from adding target class' methods AUTOLOAD and new methods multiple
  times (Jens Rehsack)

* Applied patch from RT#53451 to accept negative epoch times in
  Template::Plugin::Date.

* Applied patch from Marc Remy to add $Template::Directive::WHILE_MAX
  option to tpage.
2012-01-22 19:38:54 +00:00
abs
eed8ec4db4 Updated www/p5-Template-Toolkit-Simple to 0.16
version: 0.16
date:    Mon Nov  7 18:49:56 PST 2011
changes:
- Anthony Cornehl++ implemented JSON and XML support. \o/
---
version: 0.15
date:    Sat Nov  5 01:09:40 PDT 2011
changes:
- Use fixed TestML
---
version: 0.14
date:    Fri Oct 21 18:31:56 PDT 2011
changes:
- Use Module::Package
- Add strict support
2012-01-22 19:35:52 +00:00
abs
dcc4b8660c Updated www/p5-Test-WWW-Mechanize to 1.38
1.38    Fri Oct 28 10:12:48 CDT 2011
------------------------------------
[FIXES]
Now passes tests even if HTML::Lint is not installed.

There are no other changes in 1.38.


1.36    Thu Oct 27 00:09:21 CDT 2011
------------------------------------
[ENHANCEMENTS]
The $mech object autolint argument can now take an HTML::Lint object.
This lets you pass your own HTML::Lint object that does less stringent
checking than the one T:W:M creates.
2012-01-22 19:34:14 +00:00
abs
8e58e5fbdd Updated www/p5-URI-Find to 20111103
20111103  Thu Nov  3 12:14:21 PDT 2011
    Bug Fixes
    * URI::URL::strict will no longer leak out of find() if the callback
      or filter fails. [rt.cpan.org 71153] (Carl Chambers)


20111020  Thu Oct 20 17:31:56 PDT 2011
    Bug Fixes
    * Things which look like URIs, but aren't, are now properly escaped like
      other text.  [rt.cpan.org 71658]

    New Features
    * Balanced parens in URIs are no longer stripped.  Example:
      "http://example.com/foo(bar)"  (Merten Falk)
2012-01-22 19:31:23 +00:00
abs
c838f221cd Updated www/p5-Web-Scraper to 0.36
0.36  Sat Nov 19 12:12:54 PST 2011
        - Support HTML5 tags by not ignoring unknonw tags (leedo)
2012-01-22 19:14:26 +00:00
abs
27d2f08990 Updated www/p5-WWW-Mechanize to 1.71
1.71        Tue Nov 14 13:50:41 EDT 2011
========================================
[ENHANCEMENTS]
Recognise application/xhtml+xml as HTML.

[DOCUMENTATION]
Improved docs about support of JavaScript
Typo fixes.

[TESTS]
Updated tests as oops-music.com is in utf-8 now
2012-01-22 19:12:23 +00:00
abs
564ffb05cd Updated www/p5-WWW-Pastebin-PastebinCom-Create to 0.004
0.004   Dec 4, 2011
        Fixed an error in one of the test files
2012-01-22 19:09:43 +00:00
gls
117a66748b Update www/moodle to 2.1.4
Fixes many security advisories, see below in the changelog.

Highlights

MDL-28710 - CSS class names have been added for rating div/span elements
enabling theming
MDL-29579 - Question text included in export of quiz statistics report in
Moodle 2.1

Functional changes

MDL-19147 - Single Simple forums are no longer targets for moving (and losing)
discussions
MDL-30273 - Students and teachers can add additional topics to a simple forum
discussion

Security issues

MSA-12-0001 - Recaptcha transmission consistency issue
MSA-12-0003 - Added password protection
MSA-12-0004 - Added profile image security
MSA-12-0005 - Encryption enhancement
MSA-12-0006 - Additional email address validation
MSA-12-0007 - Email injection prevention
MSA-12-0008 - Unsynchronised access via tokens
MSA-12-0009 - Role access issue
MSA-12-0010 - Unauthorised access to session key
MSA-12-0011 - Browser autofill password issue
MSA-12-0012 - Form validation issue

Fixes and improvements

MDL-30376 - Glossary RSS feed no longer generates error
MDL-30378 - Site page links fixed in Navigation blocks
MDL-30460 - Wiki image dropdown includes files with upper case suffixes
MDL-30466 - Writing to database fixed for restoring a course with uses course
completion
MDL-30569 - Editing the front page when defaulthomepage = mymoodle now works as
expected
MDL-28180 - Duplicating an assignment that has course completion enabled no
longer breaks course completion for the course
MDL-27314 - It is now possible to delete or regrade quiz attempts in separate
groups mode
MDL-29730 - Fixed Lesson question shortanswer with regexp option
MDL-30260 - Emailstop option fixed
2012-01-22 12:16:02 +00:00
obache
77c93e90b9 Update dillo to 3.0.2.
PR 45852.

dillo-3.0.2 [December 05, 2011]

+- Digest authentication
   Patch: Justus Winter, corvid
+- text-transform property
 - If not following redirection, show body of redirecting page.
 - Middle click on stylesheet menu item opens in new tab/window.
 - Improve handling of combining characters.
 - Locale-independent ASCII character case handling (fixes Turkic locales).
   Patches: corvid
+- Rework line breaking and fix white-space:nowrap handling.
   Patch: Johannes Hofmann
+- Bind Ctrl-{PageUp,PageDown} to tab-{previous,next}.
   Patch: Jeremy Henty
2012-01-22 11:23:35 +00:00
obache
21f87af1b7 Dillo3 is using FLTK-1.3, not FLTK2.
part of PR 45852.
2012-01-22 09:12:03 +00:00
wiz
5c6a49977d Mark as not-for-python24 (uses if statement that doesn't work in python-2.4.x) 2012-01-21 15:38:25 +00:00
wiz
fa399810ee Update to 2.5:
=== RELEASE 2.5 ===

Sat Dec 24 20:30:41 MET 2011 mikulas:

	Use icon in pmshell

Wed Dec 21 01:46:04 cet 2011 mikulas:

	Do not guess compression type from extension if Content-Type is html

Mon Dec 19 03:09:04 MET 2011 mikulas:

	Recognise tgz extension

Sun Dec 18 21:33:52 cet 2011 mikulas:

	Fixed some visual glitches in the list editor, window is automatically
	resized with the terminal

	Fixed a crash if the user changes bookmarks location while some bookmark
	editing dialog was displayed

	Fixed a bug that bookmark location couldn't be changed on text-only
	builds

	Removed save bookmarks menu option, bookmarks are saved always when
	closing bookmark window

Fri Dec 16 02:12:37 MET 2011 mikulas:

	Search for viewer application according to file extension if the server
	returns content type application/x-<compression method>.

Tue Dec  6 20:03:21 cet 2011 mikulas:

	Implemented forward history

Sun Dec  4 11:35:17 CET 2011 mikulas:

	Fixed memory leaks or lockups if a connection between
	two links instances was unexpectedly broken

	Implemented a handshake in the communication protocol so that
	different Links versions won't communicate with each other

	Fixed a possible lockup if the user presses key and the master
	Links instance disconnects at the same time

Sun Dec  4 06:05:03 CEST 2011 mikulas:

	Use AF_UNIX on Windows

Tue Nov 29 02:44:44 CET 2011 mikulas:

	Do not send spaces in Accept-Charset

Mon Nov 28 03:03:26 CET 2011 mikulas:

	Identify compier in User-Agent

Sun Nov 27 02:28:35 cet 2011 mikulas:

	Heap in high memory on OS/2

Fri Nov 25 01:25:56 CET 2011 mikulas:

	Support lzma compression
2012-01-20 12:27:35 +00:00
wiz
8994b725b3 Update to 2.0.16:
=== 2.0.16 ===
5 Jan 2011

- Add sample for Docs List API to delete ACL.
- Added support for label deletion in the Email Settings API client library
- Added a sample for Email Settings create label and filters with exponential
  back-off
- Added sample for enabling pop settings using Email Settings API
- Fixed typo in analytics sample.
- Fixed ACL batching URI in Docs.
- Updated RetrieveAllUsers and RetrieveAllAliases to return all pages instead
  of one.
- Removing force=True from some ACL requests in DocsClient
- Added RetrieveGroups method and updated RetrieveAllGroups and
  RetrieveAllMembers method
- Added a quick start sample for user provisioning
- Added a client for organization unit provisioning
- Added client architecture for group provisioning
- Added a new sample for multidonain provisioning. Demonstrates all the
  functions available.
- Added test for RetrieveAllUserAliases and changed OAuth scopes for Apps
- Added client architecture for provisioning api and tests for client
- Added support for batch requests to update spreadsheet cells.
- Added GetAcl alias for get_acl in DocsClient
- Added new ACL and get by ID methods to DocsClient.
- Added some conditional imports for tlslite.
- Updates to category handling for Documents list API
- Added a function to retrieve all the aliases for a given user email.
- Fixed #553


=== 2.0.15 ===
18 Oct 2011

- New Documents List API client
- Added support for MDM Provisioning API
- Added Batch support for Documents List API ACL changes
- Added category handling for Documents List API client
- Added commenter role to Documents List API client
- Added support for gContact:status
- Added subdomain support for Email Settings API
- Added support for Apparel attributes in Content API for Shopping client
- Added Documents List sample
- Added Sample for Provisioning API with OAuth2
- Added Sample for Email Settings API with OAuth2
- Added Sample for Provisioning API with Sites and Profiles API
- Fixed Youtube client to use SSL
- Fixed Sites API sample to use SSL
- Removed Google Base Data API support
- Issues closed:
    #190, #206, #215, #230, #268, #270, #279, #281, #288, #296, #303, #312,
    #346, #363, #399, #424, #435, #483, #492, #494, #498, #508, #512, #516,
    #526, #532, #533, #534, #541, #547
2012-01-20 12:21:39 +00:00
reed
ecd1fd1570 set API depends for newer gst-plugins0.10-base.
configure error was:

Requested 'gstreamer-plugins-base-0.10 >= 0.10.30' but version of
GStreamer Base Plugins Libraries is 0.10.26
2012-01-19 15:00:35 +00:00
adam
93badc2018 Revbump after db5 update 2012-01-18 14:49:30 +00:00
adam
102c2e16fd Revbump after updating db5 2012-01-18 14:49:18 +00:00
adam
f9a2266b6a Revbump after db5 update 2012-01-18 14:47:13 +00:00
sbd
1e38404e66 Convert packages with add --libdir=* to CONFIGURE_ARGS to use
GNU_CONFIGURE_LIBDIR or GNU_CONFIGURE_LIBSUBDIR.
2012-01-17 21:43:18 +00:00
spz
47cc1da996 add patch for CVE-2012-0031 taken from Revision 1231058 of http://svn.apache.org/
update patch for http://secunia.com/advisories/45793/
2012-01-17 20:48:28 +00:00
schmonz
6f000aa35f Update to 3.20120115. From the changelog:
* Make backlink(.) work. Thanks, Giuseppe Bilotta.
* mdwn: Workaround discount's eliding of <style> blocks.
* attachment: Fix utf-8 display bug.
2012-01-16 04:43:29 +00:00
mspo
2db29a2047 update to 2.43
2.43    2012-01-08 00:00:00
        - Improved most commands with shortcut options.
        - Improved get command to automatically enable verbose mode for HEAD
          requests. (simotrone)
        - Improved documentation.

2.42    2012-01-02 00:00:00
        - Deprecated Test::Mojo->max_redirects.
        - Removed exprimental status from respond_to method in
          Mojolicious::Controller.
        - Removed experimental status from error event in Mojo::UserAgent.
        - Removed experimental status from connect_timeout attribute in
          Mojo::UserAgent.
        - Removed experimental status from connection event in
          Mojo::Transaction.
        - Removed experimental status from upgrade event in
          Mojo::Asset::Memory.
        - Removed experimental status from auto_upgrade and max_memory_size
          attributes in Mojo::Asset::Memory.
        - Removed experimental status from part event in
          Mojo::Content::MultiPart.
        - Removed experimental status from upgrade event in
          Mojo::Content::Single.
        - Removed experimental status from auto_upgrade attribute in
          Mojo::Content::Single.
        - Removed experimental status from body event in Mojo::Content.
        - Removed experimental status from mojo_lib_dir and slurp_rel_file
          methods in Mojo::Home.
        - Removed experimental status from message event in Mojo::Log.
        - Removed experimental status from contains method in Mojo::Path.
        - Removed test_server method from Test::Mojo.
        - Renamed test_server method in Mojo::UserAgent to app_url.
        - Improved RFC 6265 compliance of generated request headers.
        - Improved documentation.
        - Fixed bug that prevented sessions without expiration.

2.41    2011-12-28 00:00:00
        - Deprecated Mojo::Cookie->version.
        - Deprecated Mojo::Cookie::Response->comment and
          Mojo::Cookie::Response->port.
        - Removed experimental status from group feature of
          Mojolicious::Lite.
        - Removed experimental status from Mojo::Collection.
        - Removed experimental status from Mojolicious::Plugin::Mount.
        - Removed experimental status from dnt and etag methods in
          Mojo::Headers.
        - Improved session expiration by allowing it to be disabled.
          (nwatkiss, sri)
        - Improved session cookies to always enable the HttpOnly flag.
          (nwatkiss, sri)
        - Improved RFC 6265 compliance of cookie implementation.
        - Improved documentation.

2.40    2011-12-24 00:00:00
        - Added EXPERIMENTAL JSON Pointer support. (crab)
        - Improved inactivity timeouts by allowing them to be disabled.
        - Improved class detection of inflate command.
        - Improved documentation.
        - Fixed small bug in Mojo::IOLoop::Server that prevented TLS tests
          from running parallel. (nwatkiss)
        - Fixed repository to not favor specific editors.

2.39    2011-12-22 00:00:00
        - Deprecated all keep_alive_timeout attributes and parameters in
          favor of inactivity_timeout.
        - Added EXPERIMENTAL error event to Mojo::UserAgent.
        - Added EXPERIMENTAL local_address attribute to Mojo::UserAgent.
        - Added EXPERIMENTAL local_address option to
          Mojo::IOLoop::Client->connect.
        - Added EXPERIMENTAL close method to Mojo::IOLoop::Stream.
        - Added "hello.pl" and "fast.pl" to example scripts.
        - Removed log attribute from Mojo::UserAgent.
        - Removed MOJO_STATIC_CLASS and MOJO_TEMPLATE_CLASS environment
          variables.
        - Improved documentation. (marcus, vervain, sri)
        - Improved tests for many environment variables.
        - Fixed Morbo to ignore hidden directories.
        - Fixed small argument bug in client method of Mojo::IOLoop.
        - Fixed small memory leak in Mojo::IOLoop::Stream.
        - Fixed multiple small error reporting bugs in Mojo::UserAgent.
        - Fixed online tests to not be affected by geographical location.
          (marcus)

2.38    2011-12-17 00:00:00
        - Changed Mojo::IOLoop->client arguments from ($loop, $stream, $err)
          to ($loop, $err, $stream).
        - Improved resilience of Mojo::IOLoop::Stream.
        - Improved documentation. (marcus, sri)
        - Improved tests.
        - Fixed memory leaks caused by named capture groups bug in Perl.
          (plu, sri)
        - Fixed small cleanup bug in Mojo::Asset::File.
        - Fixed small multipart bug in Mojo::Message. (augensalat)
        - Fixed missing status method in Mojo::Headers. (crab)
        - Fixed small Mojo::IOLoop::Stream timeout bug.
2012-01-15 19:29:18 +00:00
hans
7c4fa22a36 USE_TOOLS bash and unzip 2012-01-14 03:16:57 +00:00
hans
bbd52967db Convert to USE_TOOLS=zip. 2012-01-14 02:09:35 +00:00
obache
2f73001e54 Update mediawiki to 1.17.2.
== MediaWiki 1.17.2 ==
2012-01-11

This a maintenance and security release of the MediaWiki 1.17 branch.

=== Security changes ===
* (bug 33117) prop=revisions allows deleted text to be exposed through cache pollution.

=== Changes since 1.17.1 ===
* (bug 32709) Private Wiki users were always taken to Special:Badtitle on login.

== MediaWiki 1.17.1 ==

2011-11-24

This a maintenance and security release of the MediaWiki 1.17 branch.

=== Security changes ===
* (bug 32276) Skins were generating output using the internal page title which
  would allow anonymous users to determine wheter a page exists, potentially
  leaking private data. In fact, the curid and oldid request parameters would
  allow page titles to be enumerated even when they are not guessable.
* (bug 32616) action=ajax requests were dispatched to the relevant internal
  functions without any read permission checks being done. This could lead to
  data leakage on private wikis.
2012-01-13 11:27:17 +00:00
obache
1f4649c8a2 Recursive bump from audio/libaudiofile, x11/qt4-libs and x11/qt4-tools ABI bump. 2012-01-13 10:54:43 +00:00
pettai
6daa1b88e9 Version 1.1.4:
- Always allow stale time-based offsets to re-synchronize (issue #14)
    - Added "OTPAuthMaxOTPFailure" to lock accounts after repeated wrong OTP's
2012-01-12 20:04:25 +00:00
joerg
6fe5e8e1d1 + py-django-mptt
+ py-django-sekizai
2012-01-12 18:29:12 +00:00
hauke
faf33e64bd Upgrade package to 1.5.2. From WHATSNEW:
What's new in 1.5.2 (December 2011)
===================================

Pertinent to users:

1. Fixed a warning that pops up when doing ``pip install pyblosxom``

2. Removed debug logging from pycategories


What's new in 1.5.1 (December 2011)
===================================

Pertinent to users:
-------------------

1. Fixed a problem with the manifest so ``python setup.py install``
   works again.

2. Fixed the WHATSNEW so it shows correct version and date for
   1.5 release.


What's new in 1.5 (December 2011)
=================================

Pertinent to users:
-------------------

1. Renamed the project from PyBlosxom to Pyblosxom (no more CamelCase).

2. I moved all the plugins again.  This time, instead of being in
   ``plugins/``, they're now in ``Pyblosxom/plugins/``.

   You no longer have to copy core plugins into your plugins
   directory.  Instead of copying core plugin files, refer to the
   plugins in your ``config.py`` file using their full Python path in
   the Pyblosxom package.

   For example, the pycalendar plugin is now in
   ``Pyblosxom/plugins/pycalendar.py`` and thus its Pyblosxom
   package path is ``Pyblosxom.plugins.pycalendar``.  Your
   ``config.py`` file would look have this::

       py["load_plugins"] = [
           ...
           "Pyblosxom.plugins.pycalendar",
           ...
           ]


   If you do this, then the next time you upgrade PyBlosxom, the
   plugins will be upgraded automatically.

   Further, documentation for plugins is at the top of the individual
   plugin files, but also in the documentation.  This includes a list
   of the plugins available in the core.

   .. only:: text

      You can see the plugin documentation in docs/plugins/.

   .. only:: html

      You can see the plugin documentation at :ref:`part-two`.

3. Plugins added: markdown_parser, readmore

4. Plugins changed:

   pages

   * Fixed documentation and error messages for ``pagesdir``.
   * Fixed frontpage checking.  Should catch / as well as /index
     now.
   * Adds more examples to documentation.

   tags

   * Increased tag cloud range from 3 sizes to 5.
   * Adds truncate support.
   * Fixes problems with initialization when building tags so that
     it initializes plugins allowing them to do startup things.
     This fixes problems with plugins that augment entry parsers.

   rst

   * renamed it to rst_parser so it's clearer what it is

   pycategories

   * fixed category_start/category_begin behavior for root category
   * fixed the first example of settings in the documentation

   the rest of the plugins: pep8 fixes and documentation updates

5. Plugins removed from Pyblosxom: commentAPI

6. Fixes error handling for loading plugins.  When doing
   ``pyblosxom-cmd test`` and a plugin fails to load, it'll now tell
   you.  When using the debug renderer and a plugin fails to load,
   it'll now tell you.

7. Lot of work on simplifying and improving the documentation.

8. Added a ``static_yearindexes`` setting.  Set it to True to generate
   year indexes and False to not generate year indexes.


Pertinent to developers
-----------------------

1. I removed all the extra infrastructure for testing plugins.
   Plugins that come with the core are now in the Pyblosxom package
   and their tests are in ``Pyblosxom/tests/``.

2. Adds *generate* subcommand to pyblosxom-cmd.  This makes it easier
   to test blogs and plugins that do things with entries.

3. Renamed ``PyBlosxomWSGIApp`` class to ``PyblosxomWSGIApp``.

4. Renamed ``PyBlosxom`` class to ``Pyblosxom``.

5. Moved the project from gitorious to github.  The new git repository
   is at `<http://github.com/willkg/pyblosxom>`_.

6. Removed ``VERSION_DATE`` and ``VERSION_SPLIT``.  They're kind of
   silly and don't really help much.

   I moved the version to ``Pyblosxom/_version.py``.  Use it like
   this::

       from Pyblosxom import __version__

       print __version__

   I updated the documentation accordingly.
2012-01-12 12:23:58 +00:00
drochner
7b55627216 update to 2.2.1
new major release, many changes, most notably:
-syntax scanner speed improvement
-UI and feature improvements
-new languages: Google Go, Vala and Ada
-zencoding support
2012-01-12 11:33:23 +00:00
drochner
bfe3af3a36 update to 0.4.3
changes:
-performance improvement
-minor bugfixes
-minor UI improvements
2012-01-12 11:28:39 +00:00
schmonz
e194251d51 Update to 3.20120109. From the changelog:
* mdwn: Can use the discount markdown library, via the
  Text::Markdown::Discount perl module. This is preferred if available
  since it's the fastest currently supported markdown library, speeding up
  ikiwiki's markdown rendering by a factor of 40.
  (However, when multimarkdown is enabled, Text::Markdown::Multimarkdown
  is still used.)
* On Debian, depend on libtext-markdown-discount.

pkgsrc changes:

* Change Perl Markdown dependency to p5-Text-Markdown-Discount.
2012-01-09 21:26:44 +00:00
drochner
d77df62c4c clean up in some cases where the faked "libgnutls-config" script
is not needed anymore
2012-01-09 14:53:31 +00:00
sbd
bd7ca2b973 Disable automatic detection of any library's that do not have there
buildlink3.mk included.

Bump PKGREVISION
2012-01-09 07:08:25 +00:00
sbd
a2c9cec936 Revert the below commit:
Module Name:	pkgsrc
   Committed By:	sbd
   Date:		Sun Jan  8 04:06:35 UTC 2012

   Modified Files:
	   pkgsrc/www/py-uwsgi: Makefile distinfo
   Added Files:
	   pkgsrc/www/py-uwsgi/patches: patch-uwsgiconfig.py

   Log Message:
   Add missing devel/libuuid buildlink.

   Bump PKGREVISION


   To generate a diff of this commit:
   cvs rdiff -u -r1.10 -r1.11 pkgsrc/www/py-uwsgi/Makefile
   cvs rdiff -u -r1.7 -r1.8 pkgsrc/www/py-uwsgi/distinfo
   cvs rdiff -u -r0 -r1.1 pkgsrc/www/py-uwsgi/patches/patch-uwsgiconfig.py
2012-01-09 07:07:10 +00:00
manu
bc036b5665 Add information in MESSAGE on how to use it 2012-01-09 05:27:44 +00:00
obache
43a23bd711 Recursive bump from boost-libs shlib bump. 2012-01-09 02:54:24 +00:00
dholland
8ded21e024 Add a workaround for PR 45266 (krb5-config issue in NetBSD base):
clear BUILDLINK_INCDIRS.heimdal. Otherwise -I/usr/include/krb5 appears
in CFLAGS, which breaks the build because the compiler finds krb5's
base64.h instead of Amaya's. krb5 is pulled in by curl, which is a
several-times-indirect dependency, and nothing in this package uses
it, or apparently anything that needs it, directly.
2012-01-08 22:19:03 +00:00
dholland
0ca2654ac4 Fix build problems with gcc 4.5. The code makes no sense so I'm not sure
what I did is going to work... or that the code that was here previously
ever worked or actually did what anyone upstream intended. C++ is fun
that way.
2012-01-08 22:15:21 +00:00
obache
40ffc09556 Update ruby-rack11 to 1.1.3.
* December 28th, 2011: Twenty first public release: 1.1.3.
  * Security fix. http://www.ocert.org/advisories/ocert-2011-003.html
    Further information here: http://jruby.org/2011/12/27/jruby-1-6-5-1
2012-01-08 11:08:23 +00:00
obache
71118aa637 Update ruby-rack12 to 1.2.5.
* December 28th, 2011: Twenty second public release: 1.2.5
  * Security fix. http://www.ocert.org/advisories/ocert-2011-003.html
    Further information here: http://jruby.org/2011/12/27/jruby-1-6-5-1
2012-01-08 11:04:54 +00:00
adam
d089dbcf4b Fix building with Clang 2012-01-08 10:07:27 +00:00
adam
da404b33a4 Changes 3.1.18:
* Bug 3085: Crash when parsing esi:include
* Bug 3442: assertion failed: external_acl.cc:908: ch->auth_user_request != NULL
* Polish: debug messages on swap.state rename failure
* Portability: SSL library dependency fixes
* Bug 3440: compile error in Adaptation
2012-01-08 10:06:59 +00:00
adam
80ecd734a9 Changes 2.2:
* django-mptt now a proper dependency
* Django 1.3 support
* View permissions
* django-sekizai instead of PluginMedia
* Toolbar must be enabled explicitly in templates
* Static files moved to /static/
* Dropped support for django-dbgettext
2012-01-08 07:56:58 +00:00
adam
a3afb2a5d6 Changes 0.3.4.1:
* Added :ref:advanced-block-definition.
* Added :doc:arguments` documentation.
2012-01-08 07:54:09 +00:00
adam
ca4df47bd2 Removed junk line 2012-01-08 07:51:20 +00:00
adam
7d01042d00 Sekizai means "blocks" in Japanese, and that's what this app provides. A fresh
look at blocks. With django-sekizai you can define placeholders where your
blocks get rendered and at different places in your templates append to those
blocks. This is especially useful for css and javascript. Your subtemplates can
now define css and javscript files to be included, and the css will be nicely
put at the top and the javascript to the bottom, just like you should. Also
sekizai will ignore any duplicate content in a single block.
2012-01-08 07:49:54 +00:00
adam
130afff9ed Utilities for implementing Modified Preorder Tree Traversal with your
Django Models and working with trees of Model instances.

MPTT is a technique for storing hierarchical data in a database. The aim is to
make retrieval operations very efficient.

The trade-off for this efficiency is that performing inserts and moving
items around the tree is more involved, as there's some extra work
required to keep the tree structure in a good state at all times.
2012-01-08 07:48:36 +00:00
sbd
3dcc3f4ebf Add missing devel/libuuid buildlink.
Bump PKGREVISION
2012-01-08 04:06:34 +00:00
sbd
37bf18d78d Add missing mk/curses buildlink.
Bump PKGREVISION
2012-01-08 03:50:39 +00:00
obache
a3018adf11 Update ruby-rack to 1.3.6.
* December 28th, 2011: Twenty third public release: 1.3.6
  * Security fix. http://www.ocert.org/advisories/ocert-2011-003.html
    Further information here: http://jruby.org/2011/12/27/jruby-1-6-5-1
2012-01-08 03:09:48 +00:00
obache
0efcdf9b24 Update ruby-sinatra to 1.3.2.
= 1.3.2 / 2011-12-30

 * Don't automatically add `Rack::CommonLogger` if `Rack::Server` is adding it,
   too. (Konstantin Haase)

 * Setting `logging` to `nil` will avoid setting up `Rack::NullLogger`.
   (Konstantin Haase)

 * Route specific params are now available in the block passed to #stream.
   (Konstantin Haase)

 * Fix bug where rendering a second template in the same request, after the
   first one raised an exception, skipped the default layout. (Nathan Baum)

 * Fix bug where parameter escaping got enabled when disabling a different
   protection. (Konstantin Haase)

 * Fix regression: Filters without a pattern may now again manipulate the params
   hash. (Konstantin Haase)

 * Added examples directory. (Konstantin Haase)

 * Improved documentation. (Gabriel Andretta, Markus Prinz, Erick Zetta, Just
   Lest, Adam Vaughan, Aleksander Dąbrowski)

 * Improved MagLev support. (Tim Felgentreff)
2012-01-08 03:05:01 +00:00
obache
e62b6c0f83 Update ruby-rack-protection to 1.2.0.
Changes:
* Show warnings for JsonCsrtf attacks.
* do not enable parameter escaping by default, fixes #8.
* Use more specific namespace declaration in Rack::Builder configuration.
* NotimpelentedError typo fix
* add test that makes sure passingin on :track option works. related to #6.
* deal with PATH_INFO being nil, fixes #7.
* do not track HTTP_VERSION, fixes #6.
2012-01-08 03:01:22 +00:00
marino
93ae9641a6 www/seamonkey: PR#45629 (webm assy optimization for DragonFly)
These patches enable optimizations that allow video play w/o stuttering.
Other i386 and x86_64 platforms need the same optimizations, so this is
only a partial fix of the PR.
2012-01-07 20:44:32 +00:00
taca
605f33e468 Update contao210-translations package to 20120103.
Update Finnish language files.
2012-01-07 05:21:23 +00:00
sbd
d586f3d0b5 Only add the yasm build dependence on platforms the need it. 2012-01-06 07:36:38 +00:00
sbd
f3671d06d1 Add yasm>=1.1.0 as a build dependence. 2012-01-05 08:55:32 +00:00
sbd
e8a0b0a43d Add yasm>=1.1.0 as a build dependence. 2012-01-05 08:02:20 +00:00
morr
bd9b934605 Security update to 3.3.1.
This maintenance release fixes 15 issues with WordPress 3.3, as well as
a fix for a cross-site scripting vulnerability that affected version 3.3.
2012-01-04 21:10:33 +00:00
taca
6c38a8b470 Update contao210-translations package to 20111231.
Update Spanish language files.
2012-01-02 16:48:15 +00:00
taca
c2fb33b7f7 distfile has been repacked and extra files are not included any more. 2012-01-02 16:47:11 +00:00
taca
144b411853 Fix dependency path to ruby-erubis. 2011-12-31 16:03:21 +00:00
taca
7203c8a4e8 Update contao210-translation pacakge to 20111230.
Update Slovenian language files.
2011-12-31 01:19:04 +00:00
taca
302706856f Deal with some distfile change. 2011-12-30 23:21:00 +00:00
taca
9c2bcaed10 Update contao210 and contao210-example package to 2.10.4.
Version 2.10.4 (2011-12-30)
---------------------------
- Fixed: the Environment class did not always return the correct script name
  (#3603)
- Fixed: close the connection after sending a file to the browser (#3602)
- Fixed: the new Ajax cron trigger did not work in IE8 due to missing
  Date.now() support (#3681)
- Fixed: do not block ressources required by the Google website preview in the
  robots.txt file (#3688)
- Fixed: correctly update the cache after a new template has been created
  (#3676)
- Fixed: correctly handle HTML comments in inline JavaScripts (#3696)
- Fixed: get the next autoincrement ID when importing a theme so deleted
  themes can be restored (#3604)
- Fixed a few minor issues
2011-12-30 15:12:21 +00:00
schmonz
44df80e659 Update to 3.20111229. From the changelog:
* Consume all stdin when rcs_receive short-circuits, to avoid git SIGPIPE race.
* Add path and path_natural sort orders (smcv)
* Test coverage can be checked with make coverage (smcv)
* tag: encode categories using numeric values. (tango)
2011-12-29 21:47:56 +00:00
joerg
97b45fe776 Add note about mysql-server 2011-12-29 14:44:21 +00:00
joerg
d0aad495d8 Don't depend on mysql-server. It creates conflicting dependencies for
the bulk build and the configuration allows setting non-localhost
easily.
2011-12-29 14:35:10 +00:00
joerg
8837b904a1 Kill useless gsed magic, which is gsed specific. 2011-12-28 22:35:28 +00:00
sbd
5d65b0092f Update PLIST
Bump PKGREVISION
2011-12-28 06:40:16 +00:00
sbd
0b764a78d5 Include devel/glib2/schemas.mk (obache@ suggestion).
Regen PLIST
Remove patch-Source_autotools_gsettings.m4 and patch-configure
	(They are redundaent when adding gsed to USE_TOOLS)

Bump PKGREVISION
2011-12-28 04:22:15 +00:00
sbd
adfb8deabc Remove accidently added 'patch-configure.bak' 2011-12-27 03:58:24 +00:00
sbd
95d732362d There is a gsed specific expression used in the install-gsettings-schemas
target (that install org.webkitgtk-1.0.gschema.xml) so use gsed.

Bump PKGREVISION
2011-12-27 03:54:36 +00:00
ryoon
edd5b38ffc Regen distinfo. 2011-12-26 19:07:12 +00:00
ryoon
bdef7c0996 Fix security bug, http://dev.tiki.org/item4059, patch from upstream SVN.
Bump PKGREVISION.
2011-12-26 19:05:32 +00:00
sbd
6342e9559e Add org.webkitgtk-1.0.gschema.xml to the PLIST 2011-12-26 09:01:39 +00:00
ryoon
18604ee64e It seems Version 6.5 requires lang/pear.
Fix broken installation.
2011-12-25 03:35:39 +00:00
ryoon
d022a95085 Update to 6.5
* This release fixes security problem, http://secunia.com/advisories/47278/

Changelog:

Version 6.5
<http://tiki.org/ReleaseNotes65>
------------------

----------------------------------------------
r38940 | chealer | 2011-11-22 20:39:41 +0100 (Tue, 22 Nov 2011) | 2 lines

[bp/r38937][FIX] HTML special characters encoding

----------------------------------------------
r38859 | chealer | 2011-11-17 08:17:46 +0100 (Thu, 17 Nov 2011) | 1 line

[bp/r38858][FIX] JavaScript/HTML special characters encoding
----------------------------------------------
r38743 | chealer | 2011-11-07 20:36:26 +0100 (Mon, 07 Nov 2011) | 1 line

[bp/r38740][FIX] Broken links from self_link (and button) with double-HTML-encoded ampersands when a script links to itself
----------------------------------------------
r38713 | chealer | 2011-11-05 18:49:31 +0100 (Sat, 05 Nov 2011) | 1 line

[bp/r38712][FIX] Broken links from self_link (and button) with double-HTML-encoded ampersands
----------------------------------------------
r38642 | chealer | 2011-11-03 07:40:16 +0100 (Thu, 03 Nov 2011) | 1 line

[bp/r38639][FIX] HTML special characters encoding
----------------------------------------------
r38013 | jyhem | 2011-10-06 10:04:25 +0200 (Thu, 06 Oct 2011) | 1 line

[FIX] Obvious typo
----------------------------------------------
r37997 | jyhem | 2011-10-05 18:22:46 +0200 (Wed, 05 Oct 2011) | 1 line

[FIX] Translations containing '{tr}' break the templates. I commented them
----------------------------------------------
r37714 | marclaporte | 2011-09-27 04:56:36 +0200 (Tue, 27 Sep 2011) | 1 line

correct links back to 6.x profiles
----------------------------------------------
r37441 | chealer | 2011-09-20 03:52:25 +0200 (Tue, 20 Sep 2011) | 1 line

[bp/r37439][FIX] HTML special characters encoding
----------------------------------------------
r36357 | xavidp | 2011-08-20 17:36:35 +0200 (Sat, 20 Aug 2011) | 1 line

set in sync with proposals 6x
----------------------------------------------
r36101 | jean-lucnavarro | 2011-08-12 08:00:49 +0200 (Fri, 12 Aug 2011) | 1 line

[FIX] removed useless personal markers // 1D, // 1F etc.
----------------------------------------------
r36100 | jean-lucnavarro | 2011-08-12 07:47:31 +0200 (Fri, 12 Aug 2011) | 2 lines

[TRA] more French translations

----------------------------------------------
r36035 | jyhem | 2011-08-11 02:13:06 +0200 (Thu, 11 Aug 2011) | 1 line

[FIX] This file was syntactically incorrect. Please just test the file before committing in stable branch.
----------------------------------------------
r35918 | jyhem | 2011-08-08 19:27:48 +0200 (Mon, 08 Aug 2011) | 1 line

[FIX br/35917]i18n: use utf8 non-breaking space instead of html &nbsp;
----------------------------------------------
r35685 | sylvieg | 2011-07-27 19:22:09 +0200 (Wed, 27 Jul 2011) | 1 line

[rollback 35681] wrong branch - sorry
----------------------------------------------
r35681 | sylvieg | 2011-07-27 13:58:21 +0200 (Wed, 27 Jul 2011) | 1 line

[bp/r35680][FIX]action calendar: quick fix to see something (action calendar must be merged with calendar or removed?
----------------------------------------------
r35591 | marclaporte | 2011-07-22 17:14:11 +0200 (Fri, 22 Jul 2011) | 1 line

cleanup
----------------------------------------------
r33940 | chealer | 2011-04-13 05:59:35 +0200 (mer. 13 avril 2011) | 1 ligne

[bp/r33917][FIX] Admin banning: Direct comparisons between UNIX timestamps and TIMESTAMP MySQL type when using "Rule activated by dates". Fixes rules being deleted on creation, not banning correctly and/or wrong saved dates
----------------------------------------------
r33962 | sampaioprimo | 2011-04-14 17:22:29 +0200 (jeu. 14 avril 2011) | 2 lignes

[bp/r33946][FIX] blog posts "disappear" for anonymous when upgrading old installations (<=1.9.x)
2011-12-25 01:29:01 +00:00
taca
1e9649dfa4 Update typo3_46 package to 4.6.3.
2011-12-20  3a854ed                  [RELEASE] Release of TYPO3 4.6.3 (TYPO3 v4 Release Team)
2011-12-20  d0a10f2  #32626          [BUGFIX] Add SQL-comparator <> to SQL parser (Stefan Neufeind)
2011-12-19  8b63540  #31622          [BUGFIX] Invalid query part on menu rendering (Oliver Hader)
2011-12-19  431dfd8  #32666          [BUGFIX] Fatal error during install process (Oliver Hader)
2011-12-18  db7fec2  #32274          [BUGFIX] sessionTimeout for BE does not work (Mario Rimann)
2011-12-18  78fd27f  #32088          [BUGFIX] Checkbox-array space (Felix Kopp)
2011-12-18  f3d7d66  #32163          [BUGFIX] @charset must be lowercase in CSS (Markus Klein)
2011-12-18  a5ec66b  #18176          [BUGFIX] Log password attempt with empty password (Mario Rimann)
2011-12-18  08e70e7  #31350          [BUGFIX] Fatal error when exporting from root (Francois Suter)
2011-12-18  ebbadcf  #21590          [BUGFIX] Warnings in BE when using "Update reference index" (Dmitry Dulepov)
2011-12-17  b7caf1d  #32625          [BUGFIX] Fix path check for custom RTE styles (Stanislas Rolland)
2011-12-17  1bb3587  #11806          [BUGFIX][reports] Missing check for SOAP extension (Mario Rimann)
2011-12-17  978cd0c  #32596          [BUGFIX] Ambiguous XCLASS naming tx_em_Connection_ExtDirectServer (Steffen Gebert)
2011-12-16  1eedef1  #31397          [BUGFIX] Add check for salted default admin password (Gregor Hermens)
2011-12-16  44305f3  #31374          [BUGFIX] Multiple values not displayed for simple items lists (Francois Suter)
2011-12-16  77c74b4                  [TASK] Set TYPO3 version to 4.6.3-dev (TYPO3 v4 Release Team)
2011-12-24 14:26:33 +00:00
taca
226098cca4 Update www/typo3_45 package to 4.5.10.
2011-12-20  71fbd2b                  [RELEASE] Release of TYPO3 4.5.10 (TYPO3 v4 Release Team)
2011-12-20  f8d4623  #32626          [BUGFIX] Add SQL-comparator <> to SQL parser (Stefan Neufeind)
2011-12-19  ce5f5a7  #31622          [BUGFIX] Invalid query part on menu rendering (Oliver Hader)
2011-12-19  0114ceb                  Revert "[FEATURE] Add ExtJS xtype:modulepanel for BE Modules" (Ernesto Baschny)
2011-12-18  5038a58  #30758          [BUGFIX] Login fails silently, when no backend for rsaauth is available (Steffen Gebert)
2011-12-18  0f6f55d  #27836          [BUGFIX] EM: Uploading extensions fails with Fatal Errors (Steffen Gebert)
2011-12-18  043f1c8  #32274          [BUGFIX] sessionTimeout for BE does not work (Mario Rimann)
2011-12-18  33234cb  #32163          [BUGFIX] @charset must be lowercase in CSS (Markus Klein)
2011-12-18  e87e6a3  #18176          [BUGFIX] Log password attempt with empty password (Mario Rimann)
2011-12-18  5bccb23  #31350          [BUGFIX] Fatal error when exporting from root (Francois Suter)
2011-12-18  b9af0ca  #28384          [FEATURE] Add ExtJS xtype:modulepanel for BE Modules (Kay Strobach)
2011-12-18  725a8c7  #21590          [BUGFIX] Warnings in BE when using "Update reference index" (Dmitry Dulepov)
2011-12-18  93c8987  #27969          [BUGFIX] Hide versioning icon in list when workspaces is installed (Tolleiv Nietsch)
2011-12-17  956ecc3  #32625          [BUGFIX] Fix path check for custom RTE styles (Stanislas Rolland)
2011-12-17  2b5a60d  #32596          [BUGFIX] Ambiguous XCLASS naming tx_em_Connection_ExtDirectServer (Steffen Gebert)
2011-12-16  5b2516c  #21054          [BUGFIX] Random miscalculations in ImageTTFBBox (Albrecht Koehnlein)
2011-12-16  ff97731                  [TASK] Set TYPO3 version to 4.5.10-dev (TYPO3 v4 Release Team)
2011-12-24 14:25:50 +00:00
taca
350b01c3b5 I forgot to remove www/erubis which already renamed to www/ruby-erubis. 2011-12-24 03:25:25 +00:00
taca
f368f78056 Remove erubis; I forgot to remove www/erubis. 2011-12-24 03:23:54 +00:00
joerg
f254d29f4d Make sure that the directory exists before writing the output from the
idl-parser. Fixes the race conditions seen recently.
2011-12-23 01:16:27 +00:00
jnemeth
ccb3ea13de add and enable erubis 2011-12-22 18:04:20 +00:00
joerg
407b000b4e No longer supports apache2. 2011-12-22 16:34:12 +00:00
wiz
bb44ab6675 Add comment to patch. 2011-12-21 13:09:31 +00:00
wiz
c9d393e626 zip is not a tool. Replace with BUILD_DEPENDS. 2011-12-21 13:08:30 +00:00
asau
3d821bda33 Build fix: pass stricter compiler checks. 2011-12-20 13:19:00 +00:00
sbd
577ac801a7 snownews does not suppert wide-curses. 2011-12-20 09:32:22 +00:00
gdt
8ae56bcddb Depend on php-dom, for CALDAV support.
The use of CALDAV (but not the builtin calendar) requires php classes
that are, in pkgsrc, part of php-dom.

ok ryoon@.
2011-12-20 01:59:44 +00:00
obache
c8dbfb12b8 Update firefox36 to 3.6.24.
Fixed in Firefox 3.6.24
MFSA 2011-49 Memory corruption while profiling using Firebug
MFSA 2011-47 Potential XSS against sites using Shift-JIS
MFSA 2011-46 loadSubScript unwraps XPCNativeWrapper scope parameter (1.9.2 branch)
Fixed in Firefox 3.6.23
MFSA 2011-40 Code installation through holding down Enter
MFSA 2011-39 Defense against multiple Location headers due to CRLF Injection
MFSA 2011-38 XSS via plugins and shadowed window.location object
MFSA 2011-37 Integer underflow when using JavaScript RegExp
MFSA 2011-36 Miscellaneous memory safety hazards (rv:7.0 / rv:1.9.2.23)
2011-12-19 06:26:55 +00:00
obache
94753badc8 more clean up
* let DISTNAME to sync with base pkg version.
* DISTINFO_FILE is not overwrite by php/ext.mk, so no need to set here.
* reset DIST_SUBDIR, to share DISTFILES with base package.
2011-12-19 03:04:13 +00:00
dholland
b9dd82cf53 make this build again after obache's changes. 2011-12-18 21:09:27 +00:00
obache
34536cf863 Add a patch for CVE-2011-3192.
Bump PKGREVISION.
2011-12-18 09:13:11 +00:00
ryoon
bb9e176ccb Make php-sqlite and php-mysql conditional. Default is sqlite.
Fix typo in MESSAGE.
Bump PKGREVISION.

Tnanks you, gdt@.
2011-12-18 08:38:14 +00:00
sbd
a44b18149b Add ruby-erubis26 (Hi taca) 2011-12-18 07:53:09 +00:00
sbd
2d695b58af www/erubis => www/ruby-erubis26 2011-12-18 07:51:56 +00:00
sbd
9355c29753 Add ruby-rack12 (Hi taca) 2011-12-18 06:41:40 +00:00
taca
71eb3d7e2f Allow depends on php-mysqli or php-mysql package.
Bump PKGREVISION.
2011-12-17 18:20:01 +00:00
taca
11e849fab7 Update www/ruby-sass to 3.1.12.
3.1.12

* Compatibility with the mathn library (thanks to Thomas Walpole).
* Fix some infinite loops with mixins that were previously uncaught.
* Catch infinite @import loops.
* Fix a deprecation warning in sass --update and --watch (thanks to Marcel
  Köppen).
* Don’t make $important a special pre-initialized variable.
* Fix exponential parsing time of certain complex property values and
  selectors.
* Properly merge @media directives with comma-separated queries.
  E.g.

  	@media foo, bar { @media baz { ... } } now becomes
	@media foo and baz, bar and baz { ... }.
2011-12-17 15:28:52 +00:00
obache
9ce09e1be1 Change default PKGNAME scheme for PECL packages.
Drop ${PHP_BASE_VARS} from PKGVERSION by default.

It used to be required to support multiple php version.
But after PHP version based ${PHP_PKG_PREFIX} was introduced,
such trick is not required anymore.
In addition to this, such version name schme invokes unwanted version bump
when base php version is bumped, plus, such version scheme is hard to
use for DEPENDS pattern.

To avoid downgrading of package using such legacy version scheme,
PECL_LEGACY_VERSION_SCHEME is introduced.
If it is defined, current version scheme is still used for currently
supported PHP version (5 and 53), but instead of ${PHP_BASE_VARS},
current fixed PHP base version in pkgsrc is used to avoid unwanted version bump
from update of PHP base package.
With newer PHP (54, or so on), new version scheme will be used if
it is defined.
This trick will not be required and should be removed after php5 and php53 will
be gone away from pkgsrc.
2011-12-17 13:46:27 +00:00
hiramatsu
23f7e0d293 Modify DEPENDS so that not to install w3m when w3m-img is installed.
This fix is provided in PR pkg/38459 by Hiroyuki Bessho.

Increment PKGREVISION for each emacs-w3m and emacs-w3m-snapshot.
2011-12-17 13:11:09 +00:00
hiramatsu
509b977623 Update p5-Dancer to 1.3090.
Changes from previous:
----------------------
1.3090      13.12.2011
    ** Codename: Hornburg of Hannover // Stefan Hornburg (racke) **

    [ BUG FIXES ]
    * GH #685: Set VERSION for Dancer::Plugin::Ajax.
      (Sawyer X, Naveed Massjouni)

    [ DOCUMENTATION ]
    * GH #694: Typo fix. (Yanick Champoux)
    * GH #698: Document further TT init options. (Dennis Lichtenthaeler)
    * GH #709: Update POD documentation regarding hook. (Stefan Hornburg)

1.3089_01   26.11.2011

    [ BUG FIXES ]
    * Fix bug that made system() fail with -1 under Dancer (felixdo).
    * Support for 'content_type' option on send_file when sending a
      system wide file (Emmanuel Rodriguez).
    * Support HTTP_X_FORWARDED_HOST in behing proxy (Ipaponov).
    * Deserialize PATCH requests (Sam Kington).
    * Encode log messages properly if charset UTF-8 is set (David Precious,
      thanks to Penfold for the fix & MiklerGM for reporting).

    [ ENHANCEMENTS ]
    * Continuations-style exception system! (Damien Krotkine).
    * The ability for dancer_response to send file contents for file uploads
      as a scalar, instead of reading from file on disk (Squeeks).

    [ DOCUMENTATION ]
    * Clean up "plack_middlewares" example in docs (Richard Simões).
2011-12-17 12:13:29 +00:00
hiramatsu
c44d99a308 Update p5-Mojolicious to 2.37.
Changes from previous:
----------------------
2.37    2011-12-10 00:00:00
        - Welcome to the Mojolicious core team Marcus Ramberg, Glen Hinkle
          and Abhijit Menon-Sen.
        - Removed cleanup_interval attribute from Mojo::IOLoop.
        - Deprecated Mojo::IOLoop->timeout in favor of
          Mojo::IOLoop::Stream->timeout.
        - Added EXPERIMENTAL timeout event to Mojo::IOLoop::Stream.
        - Added EXPERIMENTAL timeout attribute to Mojo::IOLoop::Stream.
        - Changed default keep alive timeout of Mojo::UserAgent from 15 to 20
          seconds.
        - Improved documentation.
        - Improved unicode tests.
        - Fixed inline template double encoding bug.

2.36    2011-12-05 00:00:00
        - Changed default heartbeat timeout of Hypnotoad from 5 to 10
          seconds.
        - Improved documentation.
        - Fixed default keep alive timeout of Hypnotoad.

2.35    2011-12-01 00:00:00
        - Added EXPERIMENTAL etag method to Mojo::Headers.
        - Improved documentation.
        - Fixed one-byte payload bug in Mojo::Transaction::WebSocket. (tinx)
        - Fixed body event in Mojo::Content to work more reliably in CGI
          environments.
        - Fixed small portability issue in loader test.

2.34    2011-11-28 00:00:00
        - Added "websocket.pl" to example scripts.
        - Improved documentation.
        - Fixed small bugs in example scripts.

2.33    2011-11-28 00:00:00
        - Improved Mojo::EventEmitter performance slightly.
        - Improved documentation.
        - Fixed a few small inline template issues.
        - Fixed small WebSocket handshake bug.

2.32    2011-11-24 00:00:00
        - Added EXPERIMENTAL error event to Mojo::IOWatcher.
        - Updated jQuery to version 1.7.1.
        - Improved Mojo::IOLoop performance by changing the default cleanup
          interval from 0 to 0.025 seconds.
        - Improved documentation.

2.31    2011-11-21 00:00:00
        - Improved stacktraces by making them a lot simpler.
        - Improved documentation.
        - Improved tests.

2.30    2011-11-20 00:00:00
        - Deprecated Mojo::IOLoop->on_lock in favor of Mojo::IOLoop->lock.
        - Deprecated Mojo::IOLoop->on_unlock in favor of
          Mojo::IOLoop->unlock.

2.29    2011-11-19 00:00:00
        - Deprecated Mojolicious->on_process in favor of around_dispatch
          hook.
        - Added EXPERIMENTAL emit_chain method to Mojolicious::Plugins.
          (Akron, sri)
        - Added EXPERIMENTAL around_dispatch hook.
        - Fixed small bug in boundary and charset methods of Mojo::Content.

2.28    2011-11-18 00:00:00
        - Improved documentation.
        - Fixed small IPv6 portabilty issue in Mojo::IOLoop::Client.

2.27    2011-11-16 00:00:00
        - Deprecated Mojo::IOLoop->connect in favor of Mojo::IOLoop->client.
        - Deprecated Mojo::IOLoop->listen in favor of Mojo::IOLoop->server.
        - Deprecated Mojo::IOLoop->connection_timeout in favor of
          Mojo::IOLoop->timeout.
        - Deprecated Mojo::IOLoop->write in favor of
          Mojo::IOLoop::Stream->write.
        - Deprecated Mojo::IOLoop->connect_timeout in favor of timeout
          argument.
        - Deprecated on_* methods in Mojo::IOLoop.
        - Removed Mojo::IOLoop::Resolver.
        - Added EXPERIMENTAL connect_timeout attribute to Mojo::UserAgent.
        - Added EXPERIMENTAL is_readable method to Mojo::IOLoop::Stream.
        - Added EXPERIMENTAL charset method to Mojo::Content.
        - Added EXPERIMENTAL write event to Mojo::IOLoop::Stream.
        - Added EXPERIMENTAL connection event to Mojo::Transaction.
        - Improved documentation.
        - Improved CSS of some built-in templates.
        - Fixed many small memory leaks.
        - Fixed multiple drain callback bugs.
        - Fixed small attribute selector bug in Mojo::DOM::CSS. (tladesignz)

2.26    2011-11-10 00:00:00
        - Added EXPERIMENTAL upgrade event to Mojo::Asset::Memory.
        - Added EXPERIMENTAL upgrade event to Mojo::Transaction::HTTP.
        - Added EXPERIMENTAL auto_upgrade attribute to Mojo::Asset::Memory.
        - Improved Mojo::Content::Single and Mojo::Content::MultiPart parsers
          to reuse events.
        - Improved documentation.
        - Fixed small route caching bug.

2.25    2011-11-08 00:00:00
        - Removed canonicalize method from Mojo::URL.
        - Improved documentation.
        - Fixed URL without scheme handling in Mojo::URL.
        - Fixed a few small bugs in Mojo::URL.

2.24    2011-11-05 00:00:00
        - Added EXPERIMENTAL canonicalize method to Mojo::URL.
        - Improved documentation.
        - Fixed small path canonicalization bug in Mojo::URL.
        - Fixed small trailing slash bug in Mojo::Path.

2.23    2011-11-04 00:00:00
        - Changed semantics of get_line function in Mojo::Util.
        - Removed experimental status from Mojo::Util.
        - Updated jQuery to version 1.7.
        - Improved documentation.
        - Improved empty path element handling in Mojo::URL.
        - Fixed empty path element bug in Mojo::Path.

2.22    2011-11-03 00:00:00
        - Added EXPERIMENTAL --verbose flag to routes command.
        - Improved documentation.
        - Fixed a few attribute without value selector bugs in
          Mojo::DOM::CSS.
        - Fixed template inheritance bug in Mojolicious::Renderer.

2.21    2011-11-02 00:00:00
        - Removed profile helper.
        - Removed CSS4 selector subject support from Mojo::DOM::CSS until we
          actually know the exact semantics.
        - Improved Mojo::ByteStream to generate most Mojo::Util based methods
          automatically.
        - Fixed route pattern bug.
        - Fixed bug in "user_agent.t".

2.20    2011-11-01 00:00:00
        - Changed semantics of almost all functions in Mojo::Util.
        - Documentation improvements.

2.19    2011-10-31 00:00:00
        - Deprecated Mojolicious::Plugins->add_hook in favor of
          Mojolicious::Plugins->on.
        - Deprecated Mojolicious::Plugins->run_hook in favor of
          Mojolicious::Plugins->emit_hook.
        - Deprecated Mojolicious::Plugins->run_hook_reverse in favor of
          Mojolicious::Plugins->emit_hook_reverse.
        - Improved documentation.
        - Improved tests.

2.18    2011-10-30 00:00:00
        - Improved documentation.
        - Fixed small rendering bug.

2.17    2011-10-30 00:00:00
        - Fixed bug in "user_agent.t".

2.16    2011-10-30 00:00:00
        - Removed experimental status from Mojo::EventEmitter.
        - Merged unsubscribe and unsubscribe_all methods in
          Mojo::EventEmitter.
        - Improved documentation.

2.15    2011-10-29 00:00:00
        - Deprecated Mojolicious::Controller->on_finish in favor of
          Mojolicious::Controller->on.
        - Removed Mojolicious::Controller->on_message, you can now use
          Mojolicious::Controller->on instead.
            $c->on(message => sub {...})
        - Added EXPERIMENTAL message event to Mojo::Log.
        - Improved documentation.

2.14    2011-10-29 00:00:00
        - Deprecated Mojo::DOM->new with arguments.
        - Renamed Mojo::IOLoop::Trigger to Mojo::IOLoop::Delay.
        - Renamed watch method in Mojo::IOWatcher to change.
        - Renamed io method in Mojo::IOWatcher to watch.
        - Renamed cancel method in Mojo::IOWatcher to drop_timer.
        - Renamed remove method in Mojo::IOWatcher to drop_handle.
        - Added EXPERIMENTAL --verbose flag to test command.

2.13    2011-10-28 00:00:00
        - Removed experimental status from many classes, methods, attributes
          and functions.
        - Removed before_render hook.
        - Removed Mojolicious::Plugin::CallbackCondition.
        - Improved documentation.

2.12    2011-10-27 00:00:00
        - Added EXPERIMENTAL cleanup_interval attribute to Mojo::IOLoop.
        - Added EXPERIMENTAL max_leftover_size attribute to Mojo::Content.
        - Replaced handle method in Mojo::IOLoop with stream method.
        - Replaced writing and not_writing methods in Mojo::IOWatcher with
          watch method.
        - Replaced is_finished method in Mojo::IOLoop::Stream with is_writing
          method.
        - Replaced add method in Mojo::IOWatcher with io method.
        - Reduced memory usage of Mojo::Headers significantly.
        - Fixed finish event timing in Mojo::Server::Daemon.
2011-12-17 12:12:00 +00:00
taca
c7537bf76d Relax depending version to www/thin. 2011-12-17 07:10:51 +00:00
ryoon
b559c789bf Fix pasto in files/jetty.sh.
Bump PKGREVISION.
2011-12-16 17:03:28 +00:00
taca
a4e8f91bdc Update ruby-sinatra package to 1.3.1.
= 1.3.1 / Not Yet Released

 * Support adding more than one callback to the stream object. (Konstantin
   Haase)

= 1.3.0 / 2011-09-30

 * Added `stream` helper method for easily creating streaming APIs, Server
   Sent Events or even WebSockets. See README for more on that topic.
   (Konstantin Haase)

 * If a HTTP 1.1 client is redirected from a different verb than GET, use 303
   instead of 302 by default. You may still pass 302 explicitly. Fixes AJAX
   redirects in Internet Explorer 9 (to be fair, everyone else is doing it
   wrong and IE is behaving correct). (Konstantin Haase)

 * Added support for HTTP PATCH requests. (Konstantin Haase)

 * Use rack-protection to defend against common opportunistic attacks.
   (Josh Lane, Jacob Burkhart, Konstantin Haase)

 * Support for Creole templates, Creole is a standardized wiki markup,
   supported by many wiki implementations. (Konstanin Haase)

 * The `erubis` method has been deprecated. If Erubis is available, Sinatra
   will automatically use it for rendering ERB templates. `require 'erb'`
   explicitly to prevent that behavior. (Magnus Holm, Ryan Tomayko, Konstantin
   Haase)

 * Patterns now match against the escaped URLs rather than the unescaped
   version. This makes Sinatra confirm with RFC 2396 section 2.2 and RFC 2616
   section 3.2.3 (escaped reserved characters should not be treated like the
   unescaped version), meaning that "/:name" will also match `/foo%2Fbar`, but
   not `/foo/bar`. To avoid incompatibility, pattern matching has been
   adjusted. Moreover, since we do no longer need to keep an unescaped version
   of path_info around, we handle all changes to `env['PATH_INFO']` correctly.
   (Konstantin Haase)

 * `settings.app_file` now defaults to the file subclassing `Sinatra::Base` in
   modular applications. (Konstantin Haase)

 * Set up `Rack::Logger` or `Rack::NullLogger` depending on whether logging
   was enabled or not. Also, expose that logger with the `logger` helper
   method. (Konstantin Haase)

 * The sessions setting may be an options hash now. (Konstantin Haase)

 * Important: Ruby 1.8.6 support has been dropped. This version also depends
   on at least Rack 1.3.0. This means that it is incompatible with Rails prior
   to 3.1.0. Please use 1.2.x if you require an earlier version of Ruby or
   Rack, which we will continue to supply with bug fixes. (Konstantin Haase)

 * Renamed `:public` to `:public_folder` to avoid overriding Ruby's built-in
   `public` method/keyword. `set(:public, ...)` is still possible but shows a
   warning. (Konstantin Haase)

 * It is now possible to use a different target class for the top level DSL
   (aka classic style) than `Sinatra::Application` by setting
   `Delegator.target`. This was mainly introduced to ease testing. (Konstantin
   Haase)

 * Error handlers defined for an error class will now also handle subclasses
   of that class, unless more specific error handlers exist. (Konstantin
   Haase)

 * Error handling respects Exception#code, again. (Konstantin Haase)

 * Changing a setting will merge hashes: `set(:x, :a => 1); set(:x :b => 2)`
   will result in `{:a => 1, :b => 2}`. Use `set(:x, {:a => 1}, true)` to
   avoid this behavior. (Konstantin Haase)

 * Added `request.accept?` and `request.preferred_type` to ease dealing with
   `Accept` headers. (Konstantin Haase)

 * Added `:static_cache_control` setting to automatically set cache control
   headers to static files. (Kenichi Nakamura)

 * Added `informal?`, `success?`, `redirect?`, `client_error?`,
   `server_error?` and `not_found?` helper methods to ease dealing with status
   codes. (Konstantin Haase)

 * Uses SecureRandom to generate default session secret. (Konstantin Haase)

 * The `attachment` helper will set Content-Type (if it hasn't been set yet)
   depending on the supplied file name. (Vasiliy Ermolovich)

 * Conditional requests on `etag` helper now work properly for unsafe HTTP
   methods. (Matthew Schinckel, Konstantin Haase)

 * The `last_modified` helper does not stop execution and change the status code
   if the status code is something different than 200. (Konstantin Haase)

 * Added support for If-Unmodified-Since header. (Konstantin Haase)

 * `Sinatra::Base.run!` now prints to stderr rather than stdout. (Andrew
   Armenia)

 * `Sinatra::Base.run!` takes a block allowing access to the Rack handler.
   (David Waite)

 * Automatic `app_file` detection now works in directories containing brackets
   (Konstantin Haase)

 * Exception objects are now passed to error handlers. (Konstantin Haase)

 * Improved documentation. (Emanuele Vicentini, Peter Higgins, Takanori
   Ishikawa, Konstantin Haase)

 * Also specify charset in Content-Type header for JSON. (Konstantin Haase)

 * Rack handler names will not be converted to lower case internally, this
   allows you to run Sinatra with custom Rack handlers, like Kirk or Mongrel2.
   Example: `ruby app.rb -s Mongrel2` (Konstantin Haase)

 * Ignore `to_ary` on response bodies. Fixes compatibility to Rails 3.1.
   (Konstantin Haase)

 * Middleware setup is now distributed across multiple methods, allowing
   Sinatra extensions to easily hook into the setup process. (Konstantin
   Haase)

 * Internal refactoring and minor performance improvements. (Konstantin Haase)

 * Move Sinatra::VERSION to separate file, so it can be checked without
   loading Sinatra. (Konstantin Haase)

 * Command line options now complain if value passed to `-p` is not a valid
   integer. (Konstantin Haase)

 * Fix handling of broken query params when displaying exceptions. (Luke
   Jahnke)
2011-12-16 15:36:19 +00:00
taca
a4181fdedc ADd and enable ruby-rack-protection. 2011-12-16 15:29:45 +00:00
taca
fcc22ca83a Importing www/ruby-rack-protection pacakge version 1.1.4.
Rack::Protection

You should use protection!

This gem protects against typical web attacks.
Should work for all Rack apps, including Rails.
2011-12-16 15:28:34 +00:00
obache
c0ad91b46d convert to usual style for php/ext.mk. 2011-12-16 14:51:21 +00:00
taca
f5ba7e159d Update www/ruby-sass package to 3.1.11.
3.1.11

* Allow control directives (such as @if) to be nested beneath properties.
* Allow property names to begin with a hyphen followed by interpolation
  (e.g. -#{...}).
* Fix a parsing error with interpolation in comma-separated lists.
* Make --cache-store with with --update.
* Properly report ArgumentErrors that occur within user-defined functions.
* Don’t crash on JRuby if the underlying Java doesn’t support every Unicode
  encoding.
* Add new updated_stylesheet callback, which is run after each stylesheet has
  been successfully compiled. Thanks to Christian Peters.
* Allow absolute paths to be used in an importer with a different root.
* Don’t destructively modify the options when running
  Sass::Plugin.force_update.

Deprecations – Must Read!

* The updating_stylesheet is deprecated and will be removed in a future
  release. Use the new updated_stylesheet callback instead.

3.1.10

* Fix another aspect of the 3.1.8 regression relating to +.

3.1.9

* Fix a regression in 3.1.8 that broke the + combinator in selectors.

* Deprecate the loud-comment flag when used with silent comments
  (e.g. //!). Using it with multi-line comments (e.g. /*!) still works.

3.1.8

* Deprecate parent selectors followed immediately by identifiers
  (e.g. &foo). This should never have worked, since it violates the rule of &
  only being usable where an element selector would.
* Add a --force option to the sass executable which makes --update always
  compile all stylesheets, even if the CSS is newer.
* Disallow semicolons at the end of @import directives in the indented syntax.
* Don’t error out when being used as a library without requiring fileutil.
* Don’t crash when Compass-style sprite imports are used with
  StalenessChecker (thanks to Matthias Bauer).
* The numeric precision of numbers in Sass can now be set using the
  --precision option to the command line. Additionally, the default number of
  digits of precision in Sass output can now be changed by setting
  Sass::Script::Number.precision to an integer (defaults to 3). Since this
  value can now be changed, the PRECISION constant in Sass::Script::Number has
  been deprecated. In the unlikely event that you were using it in your code,
  you should now use Sass::Script::Number.precision_factor instead.
* Don’t crash when running sass-convert with selectors with two commas in a
  row.
* Explicitly require Ruby >= 1.8.7 (thanks Eric Mason).
* Properly validate the nesting of elements in imported stylesheets.
* Properly compile files in parent directories with --watch and --update.
* Properly null out options in mixin definitions before caching them. This
  fixes a caching bug that has been plaguing some Rails 3.1 users.
2011-12-16 13:57:15 +00:00
taca
5ce1eb2277 Update www/ruby-webrobots package to 0.0.12.
Simply repackaged, no change.
2011-12-16 13:42:20 +00:00
taca
1b9bfbff0a Update www/ruby-net-http-persistent package to 2.3.2.
=== 2.3.2

* Bug fix
  * Finish connections that were closed by Net::HTTP so they can be restarted.

=== 2.3.1 / 2011-10-26

* Bug fix
  * If a request object already contains a Connection header it will no longer
    be overridden.  This allows keep-alive connections to be disabled on a
    per-request basis.

=== 2.3 / 2011-10-25

* Minor Enhancement
  * The time since last use for a connection is now recorded in error
    messages for the connection.

=== 2.2 / 2011-10-24

* Minor Enhancements
  * Added timeouts for idle connections which are set through #idle_timeout.
    The default timeout is 5 seconds.  Reducing the idle timeout is preferred
    over setting #retry_change_requests to true if you wish to avoid the "too
    many connection resets" error when POSTing data.
  * Documented tunables and settings in one place in Net::HTTP::Persistent

=== 2.1 / 2011-09-19

* Minor Enhancement
  * For HTTPS connections, SSL sessions are now reused avoiding the extra
    round trips and computations of extra SSL handshakes.  If you have
    problems with SSL session reuse it can be disabled by
    Net::HTTP::Persistent#reuse_ssl_sessions

* Bug Fixes
  * The default certificate store is now used even if #verify_mode was not
    set.  Issue #7, Pull Request #8 by Matthew M. Boedicker
2011-12-16 13:29:08 +00:00
taca
5176e9cf38 Update www/ruby-net-http-digest_auth package to 1.2.
=== 1.2 / 2011-11-22

* Minor enhancement
  * Now thread safe.  Issue #2 by chrisochs.
2011-12-16 13:28:20 +00:00
taca
55c2c520c1 Update ruby-liquid package to 2.3.0.
## 2.3.0

* Several speed/memory improvements
* Numerous bug fixes
* Added support for MRI 1.9, Rubinius, and JRuby
* Added support for integer drop parameters
* Added epoch support to `date` filter
* New `raw` tag that suppresses parsing
* Added `else` option to `for` tag
* New `increment` tag
* New `split` filter


## 2.2.1 / 2010-08-23

* Added support for literal tags
2011-12-16 13:27:06 +00:00
taca
0ae0c098d1 Update www/camping package to camping-2.1.467.
Changes are unknown.
2011-12-16 13:26:10 +00:00
taca
f7740a3c1d Update www/ramaze package to 2011.10.23.
Changes are too many to write here, please refer CHANGELOG file.
2011-12-16 13:21:50 +00:00
taca
70f1150712 Update ruby-innate package to 2011.10.
[7ad5d81 | 2011-10-23 17:19:58 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Version 2011.10

[013b148 | 2011-10-22 20:12:45 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Remove deprecated Innate::Session.options.expires, use Innate::Session.options.ttl instead

[ae24452 | 2011-10-22 20:10:57 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Remove deprecated shared :mock block

[7bf2528 | 2011-10-21 23:41:34 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Another 1.8 incompatibility in the spec

[97cf46a | 2011-10-21 23:39:23 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Make provides spec more robust

[11bdba7 | 2011-10-21 22:38:16 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Try requiring rubygems for the lesser versions

[8dcfffb | 2011-10-21 22:35:20 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Remove set -x, let's get down to business

[7a5066f | 2011-10-21 22:33:25 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Try ignoring trust issues with .rvmrc

[f913028 | 2011-10-21 22:16:06 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Load rvm manually

[3791189 | 2011-10-21 22:14:12 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * turn debugging for rvm on

[845c834 | 2011-10-21 22:11:44 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Try debugging and loading bashrc to get rvm

[85ff8df | 2011-10-21 22:09:46 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * And make things a bit more complicated

[e725da7 | 2011-10-21 21:58:22 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * try to make travis happy

[acaa77a | 2011-10-21 21:55:48 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Move rvm gemset import to the right place

[ac0371c | 2011-10-21 16:30:40 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Try setup via .rvmrc .gems

[156e09b | 2011-10-21 16:30:21 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Remove dependency on json

[b5ca6a3 | 2011-10-21 15:53:08 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Run setup before bacon

[0426977 | 2011-10-21 15:47:21 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Revert "Remove the unused gem install task"

    This reverts commit 3e1cc52743470886f7b50db633535bcf6765b638.

[3e1cc52 | 2011-10-21 15:36:30 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Remove the unused gem install task

[9390547 | 2011-10-21 15:36:15 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Fix location of RUBY

[f086a10 | 2011-10-21 15:35:46 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Fix the gem package task

[bed5d5a | 2011-10-21 15:35:02 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Update rvmrc

[965ed57 | 2011-10-21 15:20:10 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Adding travis config

[e9b0d7c | 2011-09-23 10:06:54 UTC] Yorick Peterse <yorickpeterse@gmail.com>

  * Updated the README, fixes #5

    Signed-off-by: Yorick Peterse <yorickpeterse@gmail.com>

[157a09d | 2011-08-18 08:00:28 UTC] YorickPeterse <yorickpeterse@gmail.com>

  * Added a .rvmrc file and updated the .gitignore file to exclude rcov data.

[7df330c | 2011-07-20 08:09:53 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Update spec file exclusion

[a4eb56a | 2011-06-01 23:07:46 UTC] Michael Fellinger <m.fellinger@gmail.com>

  * Update Node documentation
2011-12-16 13:18:37 +00:00
taca
ebc7bd31d6 Add and enable drupal7. 2011-12-16 12:58:30 +00:00
taca
a7f0e6e412 Importing www/drupal7 package version 7.10.
This is current stable release of Drupal.

Drupal is software that allows an individual or a community of users to easily
publish, manage and organize a great variety of content on a website. Tens of
thousands of people and organizations have used Drupal to set up scores of
different kinds of web sites, including

* community web portals and discussion sites
* corporate web sites/intranet portals
* personal web sites
* aficionado sites
* e-commerce applications
* resource directories

Drupal includes features to enable:

* content management systems
* blogs
* collaborative authoring environments
* forums
* newsletters
* picture galleries
* file uploads and download
2011-12-16 12:57:06 +00:00
taca
856ad972ae Remove drupal6-translations.
Language files are maintained differnet way when this package was created.
So, remove this in complete and obsolete package now.
2011-12-16 12:54:15 +00:00
taca
ee316d7a57 Remove drupal6-translations now. 2011-12-16 12:53:11 +00:00
taca
960fbd0b22 Update thin pacakge to 1.3.1.
== 1.3.1 Triple Espresso
 * Fix service not working pre 1.9.

== 1.3.0 Double Espresso
 * BREAKING CHANGE: Thin no longer ships with fat Windows binaries.
   From now on, to install on Windows, install https://github.com/oneclick/rubyinstaller/wiki/Development-Kit.
 * BREAKING CHANGE: Remove automatic Content-Length setting.
   It is now the responsibility of the app (or a middleware) to set the Content-Length.
 * Log errors to STDERR [textgoeshere]
 * Shut down gracefully when receiving SIGTERM [ddollar]

     Processes are allowed a chance to shut down gracefully when receiving
     SIGTERM (http://en.wikipedia.org/wiki/SIGTERM).

     On Heroku, when shutting down a process, we send a SIGTERM followed 10
     seconds later with a SIGKILL, similar to the behavior of the init daemon
     on most Unix systems. This patch will allow Heroku apps to shut down
     gracefully when they need to be terminated / moved.
2011-12-16 12:43:09 +00:00
taca
1192d60c7b Add and enable ruby-rails31. 2011-12-16 12:34:55 +00:00
taca
289188a9f1 Importing www/ruby-rails31 package version 3.1.3.
Please refer changes for Ruby on Rails 3.1.3.

http://guides.rubyonrails.org/3_1_release_notes.html
http://weblog.rubyonrails.org/2011/8/31/rails-3-1-0-has-been-released
http://weblog.rubyonrails.org/2011/10/7/ann-rails-3-1-1
http://weblog.rubyonrails.org/2011/11/18/rails-3-1-2-has-been-released
http://weblog.rubyonrails.org/2011/11/20/rails-3-1-3-has-been-released
2011-12-16 12:34:30 +00:00
taca
8f0700fa2f Add and enable ruby-actionpack31 and ruby-activeresource31. 2011-12-16 12:30:20 +00:00
taca
c7ca2a5a7b Importing www/ruby-activeresource31 package version 3.1.3.
## Rails 3.1.1 (October 7, 2011) ##

*   No changes


## Rails 3.1.0 (August 30, 2011) ##

*   The default format has been changed to JSON for all requests. If you want to continue to use XML you will need to set `self.format = :xml` in the class. eg.

    class User < ActiveResource::Base
    self.format = :xml
    end
2011-12-16 12:28:37 +00:00
taca
b82318b6c0 Importing www/ruby-actionpack31 package version 3.1.3.
## Rails 3.1.3 (unreleased) ##

*   Downgrade sprockets to ~> 2.0.3. Using 2.1.0 caused regressions.

*   Fix using `tranlate` helper with a html translation which uses the `:count` option for
    pluralization.

    *Jon Leighton*

## Rails 3.1.2 (unreleased) ##

*   Fix XSS security vulnerability in the `translate` helper method. When using interpolation
    in combination with HTML-safe translations, the interpolated input would not get HTML
    escaped. *GH 3664*

    Before:

        translate('foo_html', :something => '<script>') # => "...<script>..."

    After:

        translate('foo_html', :something => '<script>') # => "...&lt;script&gt;..."

    *Sergey Nartimov*

*   Upgrade sprockets dependency to ~> 2.1.0

*   Ensure that the format isn't applied twice to the cache key, else it becomes impossible
    to target with expire_action.

    *Christopher Meiklejohn*

*   Swallow error when can't unmarshall object from session.

    *Bruno Zanchet*

*   Implement a workaround for a bug in ruby-1.9.3p0 where an error would be raised
    while attempting to convert a template from one encoding to another.

    Please see http://redmine.ruby-lang.org/issues/5564 for details of the bug.

    The workaround is to load all conversions into memory ahead of time, and will
    only happen if the ruby version is *exactly* 1.9.3p0. The hope is obviously that
    the underlying problem will be resolved in the next patchlevel release of
    1.9.3.

    *Jon Leighton*

*   Ensure users upgrading from 3.0.x to 3.1.x will properly upgrade their flash object in session (issues #3298 and #2509)

## Rails 3.1.1 (October 7, 2011) ##

*   stylesheet_link_tag('/stylesheets/application') and similar helpers doesn't
    throw Sprockets::FileOutsidePaths exception anymore *Santiago Pastorino*

*   Ensure default_asset_host_protocol is respected, closes #2980. *Jos«± Valim*

    Changing rake db:schema:dump to run :environment as well as :load_config,
    as running :load_config alone will lead to the dumper being run without
    including extensions such as those included in foreigner and
    spatial_adapter.

    This reverses a change made here:
    5df72a238e (L0L324)

    I'm assuming here that :load_config needs to be invoked
    separately from :environment, as it is elsewhere in the
    file for db operations, if not the alternative is to go
    back to "task :dump => :environment do".

    *Ben Woosley*

*   Update to rack-cache 1.1.

    Versions prior to 1.1 delete the If-Modified-Since and If-Not-Modified
    headers when config.action_controller.perform_caching is true. This has two
    problems:
        * unexpected inconsistent behaviour between development &
          production environments
        * breaks applications that use of these headers

    *Brendan Ribera*

*   Ensure that enhancements to assets:precompile task are only run once *Sam Pohlenz*

*   TestCase should respect the view_assigns API instead of pulling variables on
    its own. *Jos«± Valim*

*   javascript_path and stylesheet_path now refer to /assets if asset pipelining
    is on. *Santiago Pastorino*

*   button_to support form option. Now you're able to pass for example
    'data-type' => 'json'. *ihower*

*   image_path and image_tag should use /assets if asset pipelining is turned
    on. Closes #3126 *Santiago Pastorino and christos*

*   Avoid use of existing precompiled assets during rake assets:precompile run.
    Closes #3119 *Guillermo Iguaran*

*   Copy assets to nondigested filenames too *Santiago Pastorino*

*   Give precedence to `config.digest = false` over the existence of
    manifest.yml asset digests *christos*

*   escape options for the stylesheet_link_tag method *Alexey Vakhov*

*   Re-launch assets:precompile task using (Rake.)ruby instead of Kernel.exec so
    it works on Windows *cablegram*

*   env var passed to process shouldn't be modified in process method. [Santiago
    Pastorino]

*   `rake assets:precompile` loads the application but does not initialize
    it.

    To the app developer, this means configuration add in
    config/initializers/* will not be executed.

    Plugins developers need to special case their initializers that are
    meant to be run in the assets group by adding :group => :assets. *Jos«± Valim*

*   Sprockets uses config.assets.prefix for asset_path *asee*

*   FileStore key_file_path properly limit filenames to 255 characters. *phuibonhoa*

*   Fix Hash#to_query edge case with html_safe strings. *brainopia*

*   Allow asset tag helper methods to accept :digest => false option in order to completely avoid the digest generation.
    Useful for linking assets from static html files or from emails when the user
    could probably look at an older html email with an older asset. *Santiago Pastorino*

*   Don't mount Sprockets server at config.assets.prefix if config.assets.compile is false. *Mark J. Titorenko*

*   Set relative url root in assets when controller isn't available for Sprockets (eg. Sass files using asset_path). Fixes #2435 *Guillermo Iguaran*

*   Fix basic auth credential generation to not make newlines. GH #2882

*   Fixed the behavior of asset pipeline when config.assets.digest and config.assets.compile are false and requested asset isn't precompiled.
    Before the requested asset were compiled anyway ignoring that the config.assets.compile flag is false. *Guillermo Iguaran*

*   CookieJar is now Enumerable. Fixes #2795

*   Fixed AssetNotPrecompiled error raised when rake assets:precompile is compiling certain .erb files. See GH #2763 #2765 #2805 *Guillermo Iguaran*

*   Manifest is correctly placed in assets path when default assets prefix is changed. Fixes #2776 *Guillermo Iguaran*

*   Fixed stylesheet_link_tag and javascript_include_tag to respect additional options passed by the users when debug is on. *Guillermo Iguaran*

*   Fix ActiveRecord#exists? when passsed a nil value

*   Fix assert_select_email to work on multipart and non-multipart emails as the method stopped working correctly in Rails 3.x due to changes in the new mail gem.


## Rails 3.1.0 (August 30, 2011) ##

*   Param values are `paramified` in controller tests. *David Chelimsky*

*   x_sendfile_header now defaults to nil and config/environments/production.rb doesn't set a particular value for it. This allows servers to set it through X-Sendfile-Type. *Santiago Pastorino*

*   The submit form helper does not generate an id "object_name_id" anymore. *fbrusatti*

*   Make sure respond_with with :js tries to render a template in all cases *Jos«± Valim*

*   json_escape will now return a SafeBuffer string if it receives SafeBuffer string *tenderlove*

*   Make sure escape_js returns SafeBuffer string if it receives SafeBuffer string *Prem Sichanugrist*

*   Fix escape_js to work correctly with the new SafeBuffer restriction *Paul Gallagher*

*   Brought back alternative convention for namespaced models in i18n *thoefer*

    Now the key can be either "namespace.model" or "namespace/model" until further deprecation.

*   It is prohibited to perform a in-place SafeBuffer mutation *tenderlove*

    The old behavior of SafeBuffer allowed you to mutate string in place via
    method like `sub!`. These methods can add unsafe strings to a safe buffer,
    and the safe buffer will continue to be marked as safe.

    An example problem would be something like this:

        <%= link_to('hello world', @user).sub!(/hello/, params[:xss])  %>

    In the above example, an untrusted string (`params[:xss]`) is added to the
    safe buffer returned by `link_to`, and the untrusted content is successfully
    sent to the client without being escaped.  To prevent this from happening
    `sub!` and other similar methods will now raise an exception when they are called on a safe buffer.

    In addition to the in-place versions, some of the versions of these methods which return a copy of the string will incorrectly mark strings as safe. For example:

         <%= link_to('hello world', @user).sub(/hello/, params[:xss]) %>

    The new versions will now ensure that *all* strings returned by these methods on safe buffers are marked unsafe.

    You can read more about this change in http://groups.google.com/group/rubyonrails-security/browse_thread/thread/2e516e7acc96c4fb

*   Warn if we cannot verify CSRF token authenticity *Jos«± Valim*

*   Allow AM/PM format in datetime selectors *Aditya Sanghi*

*   Only show dump of regular env methods on exception screen (not all the rack crap) *DHH*

*   auto_link has been removed with no replacement.  If you still use auto_link
    please install the rails_autolink gem:
        http://github.com/tenderlove/rails_autolink

    *tenderlove*

*   Added streaming support, you can enable it with: *Jos«± Valim*

        class PostsController < ActionController::Base
          stream :only => :index
        end

    Please read the docs at `ActionController::Streaming` for more information.

*   Added `ActionDispatch::Request.ignore_accept_header` to ignore accept headers and only consider the format given as parameter *Jos«± Valim*

*   Created `ActionView::Renderer` and specified an API for `ActionView::Context`, check those objects for more information *Jos«± Valim*

*   Added `ActionController::ParamsWrapper` to wrap parameters into a nested hash, and will be turned on for JSON request in new applications by default *Prem Sichanugrist*

    This can be customized by setting `ActionController::Base.wrap_parameters` in `config/initializer/wrap_parameters.rb`

*   RJS has been extracted out to a gem. *fxn*

*   Implicit actions named not_implemented can be rendered. *Santiago Pastorino*

*   Wildcard route will always match the optional format segment by default. *Prem Sichanugrist*

    For example if you have this route:

        map '*pages' => 'pages#show'

    by requesting '/foo/bar.json', your `params[:pages]` will be equals to "foo/bar" with the request format of JSON. If you want the old 3.0.x behavior back, you could supply `:format => false` like this:

        map '*pages' => 'pages#show', :format => false

*   Added Base.http_basic_authenticate_with to do simple http basic authentication with a single class method call *DHH*

        class PostsController < ApplicationController
          USER_NAME, PASSWORD = "dhh", "secret"

          before_filter :authenticate, :except => [ :index ]

          def index
            render :text => "Everyone can see me!"
          end

          def edit
            render :text => "I'm only accessible if you know the password"
          end

          private
            def authenticate
              authenticate_or_request_with_http_basic do |user_name, password|
                user_name == USER_NAME && password == PASSWORD
              end
            end
        end

    ..can now be written as

        class PostsController < ApplicationController
          http_basic_authenticate_with :name => "dhh", :password => "secret", :except => :index

          def index
            render :text => "Everyone can see me!"
          end

          def edit
            render :text => "I'm only accessible if you know the password"
          end
        end

*   Allow you to add `force_ssl` into controller to force browser to transfer data via HTTPS protocol on that particular controller. You can also specify `:only` or `:except` to specific it to particular action. *DHH and Prem Sichanugrist*

*   Allow FormHelper#form_for to specify the :method as a direct option instead of through the :html hash *DHH*

        form_for(@post, remote: true, method: :delete) instead of form_for(@post, remote: true, html: { method: :delete })

*   Make JavaScriptHelper#j() an alias for JavaScriptHelper#escape_javascript() -- note this then supersedes the Object#j() method that the JSON gem adds within templates using the JavaScriptHelper *DHH*

*   Sensitive query string parameters (specified in config.filter_parameters) will now be filtered out from the request paths in the log file. *Prem Sichanugrist, fxn*

*   URL parameters which return false for to_param now appear in the query string (previously they were removed) *Andrew White*

*   URL parameters which return nil for to_param are now removed from the query string *Andrew White*

*   ActionDispatch::MiddlewareStack now uses composition over inheritance. It is
    no longer an array which means there may be methods missing that were not
    tested.

*   Add an :authenticity_token option to form_tag for custom handling or to omit the token (pass :authenticity_token => false).  *Jakub Ku«õma, Igor Wiedler*

*   HTML5 button_tag helper. *Rizwan Reza*

*   Template lookup now searches further up in the inheritance chain. *Artemave*

*   Brought back config.action_view.cache_template_loading, which allows to decide whether templates should be cached or not. *Piotr Sarnacki*

*   url_for and named url helpers now accept :subdomain and :domain as options, *Josh Kalderimis*

*   The redirect route method now also accepts a hash of options which will only change the parts of the url in question, or an object which responds to call, allowing for redirects to be reused (check the documentation for examples). *Josh Kalderimis*

*   Added config.action_controller.include_all_helpers. By default 'helper :all' is done in ActionController::Base, which includes all the helpers by default. Setting include_all_helpers to false will result in including only application_helper and helper corresponding to controller (like foo_helper for foo_controller). *Piotr Sarnacki*

*   Added a convenience idiom to generate HTML5 data-* attributes in tag helpers from a :data hash of options:

        tag("div", :data => {:name => 'Stephen', :city_state => %w(Chicago IL)})
        # => <div data-name="Stephen" data-city-state="[&quot;Chicago&quot;,&quot;IL&quot;]" />

    Keys are dasherized. Values are JSON-encoded, except for strings and symbols. *Stephen Celis*

*   Deprecate old template handler API. The new API simply requires a template handler to respond to call. *Jos«± Valim*

*   :rhtml and :rxml were finally removed as template handlers. *Jos«± Valim*

*   Moved etag responsibility from ActionDispatch::Response to the middleware stack. *Jos«± Valim*

*   Rely on Rack::Session stores API for more compatibility across the Ruby world. This is backwards incompatible since Rack::Session expects #get_session to accept 4 arguments and requires #destroy_session instead of simply #destroy. *Jos«± Valim*

*   file_field automatically adds :multipart => true to the enclosing form. *Santiago Pastorino*

*   Renames csrf_meta_tag -> csrf_meta_tags, and aliases csrf_meta_tag for backwards compatibility. *fxn*

*   Add Rack::Cache to the default stack. Create a Rails store that delegates to the Rails cache, so by default, whatever caching layer you are using will be used for HTTP caching. Note that Rack::Cache will be used if you use #expires_in, #fresh_when or #stale with :public => true. Otherwise, the caching rules will apply to the browser only. *Yehuda Katz, Carl Lerche*
2011-12-16 12:26:29 +00:00
taca
c8c019c4a7 Update typo3_46 pacakge to 4.6.2 (TYPO3 4.6.2).
This release fixed remote code execution problem,
http://typo3.org/teams/security/security-bulletins/typo3-core/typo3-core-sa-2011-004/.

2011-12-16  5a45350
	[RELEASE] Release of TYPO3 4.6.2 (TYPO3 v4 Release Team)
2011-12-16  18bb20b
	[TASK] Raise submodule pointer (TYPO3 v4 Release Team)
2011-12-16  4394475  #29899
	[BUGFIX] RTE not loading in IE when content css file does not exist
		 (Stanislas Rolland)
2011-12-14  19cf831  #30851
	[TASK] Add CSS Class to special input types in FORM (Ingo Pfennigstorf)
2011-12-11  a36bd66  #19278
	[BUGFIX] Install Tool shows internal MySQL databases (Mario Rimann)
2011-12-11  a14f4f1  #32433
	[BUGFIX] Disabled ImageMagick throws Exception (Markus Klein)
2011-12-07  62d5c2b  #32075
	[TASK] Integrate system extension linkvalidator as submodule
	       (Oliver Hader)
2011-12-07  67665b4  #22231
	[BUGFIX] Add possibility to use Wizards->Suggest in FlexForms
		 (Tolleiv Nietsch)
2011-12-05  4a948c9  #30631
	[BUGFIX] RTE doesn't allow to create links around images in IE8
		 (Stanislas Rolland)
2011-11-29  3ffa430  #32040
	[BUGFIX][SECURITY] XSS vulnerability in BE-User Admin module
			   (Marco Bresch)
2011-11-26  f701338  #32025
	[BUGFIX] Respect linkVars for generating the cHash (Helmut Hummel)
2011-11-24  4cffee7  #31290
	[BUGFIX] Core calls deprecated ADMCMD_preview() (Markus Klein)
2011-11-22  5f8a929
	[TASK] Set TYPO3 version to 4.6.2-dev (TYPO3 v4 Release Team)
2011-12-16 11:29:41 +00:00
taca
f010bd4413 Update typo3_45 pacakge to 4.5.9 (TYPO3 4.5.9).
This release fixed remote code execution problem,
http://typo3.org/teams/security/security-bulletins/typo3-core/typo3-core-sa-2011-004/.

2011-12-16  dd85342
		[RELEASE] Release of TYPO3 4.5.9 (TYPO3 v4 Release Team)
2011-12-16  7f71d9d
		[TASK] Raise submodule pointer (TYPO3 v4 Release Team)
2011-12-16  a5546eb  #29899
		[BUGFIX] RTE not loading in IE when content css file does not
			 exist (Stanislas Rolland)
2011-12-14  03f137b  #25398
		[BUGFIX] TCEforms draws huge empty icon row which on
			 select-fields (Benjamin Mack)
2011-12-11  98c2451  #23355,#23860,
		[BUGFIX] Restructure the random byte generator (Helmut Hummel)
2011-12-11  92c7bb5  #19278
		[BUGFIX] Install Tool shows internal MySQL databases
			 (Mario Rimann)
2011-12-08  cbc0793  #29597
		[BUGFIX] Wrong char for explodes of links (Georg Ringer)
2011-12-07  58024ca  #32075
		[TASK] Integrate system extension linkvalidator as submodule
		       (Oliver Hader)
2011-12-07  5455f86  #22231
		[BUGFIX] Add possibility to use Wizards->Suggest in FlexForms
			 (Tolleiv Nietsch)
2011-12-07  2d95a76  #27634
		[BUGFIX] Gap between module menu items causes collapse on click
			 (Kay Strobach)
2011-12-07  44dc505  #28012
		[BUGFIX] Localization: Editing in TCEforms shows unstyled
			 original value (Benjamin Mack)
2011-12-07  a3bfd01  #28916
		[BUGFIX] Use trimExplode() for pageOverlayFields (Georg Ringer)
2011-12-07  a65381a  #30369
		[BUGFIX] EM: Available extension list misses icons
			 (Steffen Gebert)
2011-12-05  8477462  #27272,#17020,
		[BUGFIX] Remove hardcoded limits in T3D export (Georg Ringer)
2011-11-29  d1eeb92  #30695
		[TASK] Implement check for saltedpasswords in reports module
		       (Steffen Ritter)
2011-11-29  c1a0c9c  #32040
		[BUGFIX][SECURITY] XSS vulnerability in BE-User Admin module
				   (Marco Bresch)
2011-11-22  b4ff1bf  #31450
		[BUGFIX] Log date picker broken (Francois Suter)
2011-11-22  4b60371
		[TASK] Set TYPO3 version to 4.5.9-dev (TYPO3 v4 Release Team)
2011-12-16 11:26:29 +00:00
hiramatsu
f4b49a6589 Update to p5-Catalyst-Plugin-Authorization-Roles to 0.09.
Changes from previous:
----------------------
0.09   2011-04-29
        - Fix documentation to point at the tutorial, rather than
          old advent article.
        - Link to Catalyst::ActionRole::ACL
        - Tidy up examples to show the new authentication system
        - fix check_* to always return scalar values,
          even in list context (RT#66812)
2011-12-16 06:13:13 +00:00
ryoon
6090eed7eb Add jetty7 2011-12-15 22:20:39 +00:00
ryoon
220e7d4938 Import jetty-7.5.4.20111024 as www/jetty7
Jetty provides an HTTP server, HTTP client, and javax.servlet
container. These components are open source and available for
commercial use and distribution.

Tested on NetBSD/i386 5.99.58 with lang/openjdk7
2011-12-15 22:19:10 +00:00
manu
c51fe5d06a Missing commit (sorry!) 2011-12-15 17:15:05 +00:00
taca
bc66928fa0 Correct LICENSE. It isn't GPL v3 but AGPL v3.
Bump PKGREVISION.
2011-12-15 16:05:58 +00:00
taca
e9577ee3f7 Update contao210-translations package to 20111210.
Update Japanese language files.
2011-12-15 15:32:21 +00:00
taca
96e5376767 Add and enable ruby-rack-cache and ruby-rack-ssl. 2011-12-15 15:30:21 +00:00
taca
a511637391 Importing www/ruby-rack-ssl package version 1.3.2.
Rack::SSL
=========

Force SSL/TLS in your app.

1. Redirects all "http" requests to "https"
2. Set `Strict-Transport-Security` header
3. Flag all cookies as "secure"
2011-12-15 15:29:27 +00:00
taca
5c7c227fab Importing www/ruby-rack-cache package version 1.1.
HTTP Caching for Rack.
2011-12-15 15:28:36 +00:00
drochner
d29667f2f9 build against pkgsrc neon which is newer than the bundled one,
should fix build error due to neon incompatibility with newer openssl
seen in bulk build
bump PKGREV
2011-12-15 15:24:05 +00:00
drochner
4b48886cae update to 0.29.6
changes:
-bugfixes (mostly SSL releated)
-docs updates
2011-12-15 15:19:35 +00:00
taca
b7543434a6 Update ruby-rack package to 1.3.5.
* September 16, 2011: Eighteenth public release 1.2.4
  * Fix a bug with MRI regex engine to prevent XSS by malformed unicode

* May 22nd, 2011: Thirteenth public release 1.3.0
  * Various performance optimizations
  * Various multipart fixes
  * Various multipart refactors
  * Infinite loop fix for multipart
  * Test coverage for Rack::Server returns
  * Allow files with '..', but not path components that are '..'
  * rackup accepts handler-specific options on the command line
  * Request#params no longer merges POST into GET (but returns the same)
  * Use URI.encode_www_form_component instead. Use core methods for escaping.
  * Allow multi-line comments in the config file
  * Bug L#94 reported by Nikolai Lugovoi, query parameter unescaping.
  * Rack::Response now deletes Content-Length when appropriate
  * Rack::Deflater now supports streaming
  * Improved Rack::Handler loading and searching
  * Support for the PATCH verb
  * env['rack.session.options'] now contains session options
  * Cookies respect renew
  * Session middleware uses SecureRandom.hex

* May 22nd, 2011: Fourteenth public release 1.2.3
  * Pulled in relevant bug fixes from 1.3
  * Fixed 1.8.6 support

* July 13, 2011: Fifteenth public release 1.3.1
  * Fix 1.9.1 support
  * Fix JRuby support
  * Properly handle $KCODE in Rack::Utils.escape
  * Make method_missing/respond_to behavior consistent for Rack::Lock,
    Rack::Auth::Digest::Request and Rack::Multipart::UploadedFile
  * Reenable passing rack.session to session middleware
  * Rack::CommonLogger handles streaming responses correctly
  * Rack::MockResponse calls close on the body object
  * Fix a DOS vector from MRI stdlib backport

* July 16, 2011: Sixteenth public release 1.3.2
  * Fix for Rails and rack-test, Rack::Utils#escape calls to_s

* September 16, 2011: Seventeenth public release 1.3.3
  * Fix bug with broken query parameters in Rack::ShowExceptions
  * Rack::Request#cookies no longer swallows exceptions on broken input
  * Prevents XSS attacks enabled by bug in Ruby 1.8's regexp engine
  * Rack::ConditionalGet handles broken If-Modified-Since helpers

* October 1, 2011: Nineteenth public release 1.3.4
  * Backport security fix from 1.9.3, also fixes some roundtrip issues in URI
  * Small documentation update
  * Fix an issue where BodyProxy could cause an infinite recursion
  * Add some supporting files for travis-ci

* October 17, 2011: Twentieth public release 1.3.5
  * Fix annoying warnings caused by the backport in 1.3.4
2011-12-15 14:58:34 +00:00
taca
c4a4864673 Update ruby-erubis package to 2.7.0.
- release:   2.7.0
  date: 2011-04-01
  enhancements:

    - |
	New option ':bufvar' supported to specify buffer variable name.

	ex:
	    input = "Hello <%= name %>!"
	    eruby = Erubis::Eruby.new(input)
	    puts eruby.src
	       #=>  _buf = ''; _buf << "Hello "; _buf << ( name ).to_s; _buf << '!';

	    eruby = Erubis::Eruby.new(input, :bufvar=>'@_out')
	    puts eruby.src
	       #=>  @_out = ''; @_out << 'Hello '; @_out << ( name ).to_s; @_out << '!';

    - |
	New enhancer 'PrefixedLineEnhancer' which is a customizable version
	of PercentLineEnhancer.
	The difference between PrefixedLineEnhancer and PercentLineEnhancer is:
	* You can indent Ruby statetment lines starting with '%'
	* You can specify prefix character by :prefixchar option.

	ex:
	    class MyEruby < Erubis::Eruby
	      include Erubis::PrefixedLineEnhancer
	    end
	    input = <<END
	    <ul>
	      % for item in @items
	      <li><%= item %></li>
	      % end
	      %% you can indent '%' lines
	    </ul>
	    END
	    eruby = MyEruby.new(input, :prefixchar=>'%')   # default '%'
	    puts eruby.src

	output:
	    _buf = ''; _buf << '<ul>
	    ';   for item in @items
	     _buf << '  <li>'; _buf << ( item ).to_s; _buf << '</li>
	    ';   end
	      % you can indent '%' lines
	     _buf << '</ul>
	    ';
	    _buf.to_s

    - |
	Add helper CGI script. See 'public_html/README.txt' for details.

    - |
	Rubinius is supported as first-class Ruby implementation.

    - |
	C++ support. Try '-l cpp' command-line option.


  changes:

    - |
	Remove dependency to 'abstract' library.
	You don't need to install 'abstract' gem.

    - |
	Erubis::Eruby#load_file() now sets cache file timestamp to the same
	value as original eRuby file. For example, if you restore eRuby files
	from backup, Erubis::Eruby#load_file() can detect it and generate
	cache file again.

	    ## generates cache file (A.rhtml.cache).
	    eruby = Erubis::Eruby.load_file('A.rhtml')
	    p File.mtime('A.rhtml') == File.mtime('A.rhtml.cache')  #=> true
2011-12-15 14:57:37 +00:00
taca
841bc64883 * Change depending directories:
devel/ruby-i18n	=> devel/ruby-i18n
	www/ruby-rack	=> www/ruby-rack12
	www/erubis	=> ruby-erubis26
* Don't override gemspec for i18n (ruby-i18n).

Bump PKGREVISION.
2011-12-15 14:39:10 +00:00
taca
f8cef62ef4 Importing www/ruby-erubis version 2.6.6 as www/ruby-erubis26
since we still need to keep this version.
2011-12-15 14:33:35 +00:00
taca
5c656a9550 Remove erubis and add ruby-erubis. 2011-12-15 14:31:15 +00:00
taca
3f8ff61a2f Importing www/erubis pacakge version 2.6.6 as www/ruby-erubis to rename it. 2011-12-15 14:29:47 +00:00
taca
6a2aae1935 Importing ruby-rack version 1.2.4 as www/ruby-rack12. 2011-12-15 14:22:21 +00:00
taca
5ac1c25a81 Add and enable typo3_46. 2011-12-15 12:59:24 +00:00
taca
a69029af6a Importing TYOP3 4.6.1 as www/typo3_46.
TYPO3 is a free Open Source content management system for enterprise
purposes on the web and in intranets. It offers full flexibility and
extendability while featuring an accomplished set of ready-made
interfaces, functions and modules.

This is TPYO3 4.6 based stable release.

Please refer release notes http://typo3.org/download/release-notes/typo3-46/
in detail.
2011-12-15 12:58:36 +00:00
dholland
8fb5368ad5 Restore Joerg's build fix patch, which the previous update dropped, and
drop patch-ab, which doesn't exist. HI MANU
2011-12-15 12:55:16 +00:00
taca
ca65c5d368 Improve COMMENT and DESCR; Explicitly note this is LTS, Long Term Support
release.

Bump PKGREVISION.
2011-12-15 12:45:49 +00:00
taca
25a50a5c0a www/typo3 has renamed to www/typo3_45 now. 2011-12-15 12:39:07 +00:00
taca
61c92b8c4f Rename typo3 to typo3_45. 2011-12-15 12:37:04 +00:00
taca
26ed37ea76 Re-import www/typo3 as www/typo3_45; rename from www/typo3. 2011-12-15 12:36:33 +00:00
taca
512db7e863 Update typo3 package to 4.5.8.
This version is a maintenance release and contains bug fixes only.
Please refer full Change log in http://wiki.typo3.org/TYPO3_4.5.8.
2011-12-15 12:33:47 +00:00
hiramatsu
8082d8ea0f Update p5-Apache2-AuthCookieDBI to 2.14.
Changes from previous:
----------------------
2.14 - Sat Mar 26 09:41:01 PDT 2011
     - Changed documentation about WhateverDBI_SecretKey to
       address https://rt.cpan.org/Ticket/Display.html?id=62488
     - Fixes for https://rt.cpan.org/Public/Bug/Display.html?id=66336
       (_dbi_connect should be called as a class method.)

2.13 - Sat Dec 18 10:33:19 PST 2010
     - Build system uses Module::Build (generates a Makefile.PL for compatability.)
     - Distro version now matches module version (2.13)
     - Fixed statement handle still active <https://rt.cpan.org/Public/Bug/Display.html?id=57906>
       Also added support for WhatEverDBI_UserActiveField
       Thanks to Chad Columbus
     - Fixed $HEX_STRING_REGEX definition is wrong <https://rt.cpan.org/Public/Bug/Display.html?id=46117>
       Thanks to Joe Ingersoll
     - Fixed User authenticated if not in MySQL database <https://rt.cpan.org/Ticket/Display.html?id=62470>
       Thanks to Keith Lawson
     - Fixed Login.pl example - syntax error <https://rt.cpan.org/Public/Bug/Display.html?id=62487>
       (also moved from eg/public-pl/login.pl to eg/bin/login.pl)
       Thanks to William McKee http://search.cpan.org/~wmckee/
     - Updated documentation to cover protecting the DocumentRoot <https://rt.cpan.org/Ticket/Display.html?id=51593>
     - Now depends on DBI 1.40 instead of Apache::DBI - <https://rt.cpan.org/Ticket/Display.html?id=43083>
2011-12-15 05:54:43 +00:00
dholland
580f78428c Fix broken depend pattern. Hi manu! 2011-12-15 05:37:31 +00:00
hiramatsu
dd542e0045 Update p5-Apache2-AuthCookie to 3.18.
Changes from previous:
----------------------
3.18  2011-01-24
   - remove 3.17's test skip hacks, and bump Apache::Test prerequisite to v1.35
     which fixes this issue.
   - fix MANIFEST.SKIP to ignore generated t/conf/mime.types
   - remove dist.ini, weaver.ini from dists
   - fixed t/real.t to use correct -withtestmore import syntax
   - rename sample authcookie handlers to Sample::Apache and Sample::Apache2
     namespaces

3.17  2011-01-19
   - skip the test suite if running as root.  Apache::Test 1.34 fails the test
     suite if running as root instead of skipping it.  By skipping, AuthCookie can
     be installed via CPAN.pm as root.

3.16  2011-01-19
   - require Apache::Test 1.32 - fixes ubuntu build issue
   - remove mod_perl/mod_perl2 related prereq's from META.yml.  The correct mod
     perl version is not known until Makefile.PL is run.  CPAN.pm should not
     try to install either one until it is known which one is appropriate.
     (RT 64926)

3.15  2010-08-27
   - enable Dist::Zilla Manifest plugin
   - add FAQ
   - add FAQ entry on how to protect an entire site/document root
   - recognize_user: return DECLINED if user is already set
   - refactor P3P header generation into send_p3p($r) so subclasses can overload it

3.14  2010-04-12
   - MP2: doc updates: remove beta warnings, change Apache::AuthCookie to
     Apache2::Authcookie where appopriate.
   - docs: change my email to my cpan address
   - docs: remove POST limitations reference (handled by POST to GET conversion)
   - sign dist with Module::Signature
   - add signature test
   - MP1: perltidy Apache::AuthCookie sources.
   - update mod_perl2 prereq version (still 2.0.0 RC5, but version number was
     incorrect in Makefile.PL)
   - use Dist::Zilla for building the dist
2011-12-15 02:18:06 +00:00
ryoon
b0bb652a04 Add php-concrete5 2011-12-14 20:54:14 +00:00
ryoon
05801ee8b0 Import php*-concrete5-5.4.2.2 as www/php-concrete5
Concrete5 is a content management system (CMS) that can manage Web
applications, Web sites, stores, and forums. It allows individuals
involved with Web sites to easily manage their content and their
site structure. Concrete5's in-context editing is like working with
a wiki, and the extendable block support makes editing and extending
unique Web sites easy. The goal behind Concrete5 was always to
create a toolset that could be used by anyone with basic computer
skills to edit and add pages to a Web site.
2011-12-14 20:51:49 +00:00
morr
846f7961d8 Update to version 3.3.
Highlights:

* Easier Uploading
    - File Type Detection - A single upload button
    - Drag-and-Drop Media Uploader
* Dashboard Design
    - New Toolbar in the dashboard, combining the Admin Bar and admin
      header
    - Responsive design for some screens, including iPad/tablet
      support
    - Flyout menus, providing single-click access to any screen
* New User Experience
    - New feature pointers, helping users navigate new features
    - Post-update About screen
    - Dashboard welcome area for new installs
* Content Tools
    - Better co-editing that releases post locks immediately
    - Don't lose widgets when switching themes
    - Tumblr Importer
* Under the Hood improvements
    - Use the postname permalink structure without a performance
      penalty
    - Improved Editor API
    - is_main_query() function and WP_Query method
    - Remove a number of funky characters from post slugs
    - jQuery 1.7.1 and jQuery UI 1.8.16
    - A new Screen API for adding help documentation and adapting to
      screen contexts
    - Improved metadata API
* Performance improvements and hundreds of bug fixes

More changes at http://codex.wordpress.org/Version_3.3
2011-12-14 19:47:45 +00:00
taca
3af5980d5c Update ruby-rack-test pacakge to 0.6.1.
== 0.6.1 / 2011-07-27

* Bug fixes

  * Fix support for params with arrays in multipart forms (Joel Chippindale)
  * Add respond_to? to Rack::Test::UploadedFile to match method_missing (Josh Nichols)
  * Set the Referer header on requests issued by follow_redirect! (Ryan Bigg)

== 0.6.0 / 2011-05-03

* Bug fixes

  * Add support for HTTP OPTIONS verb (Paolo "Nusco" Perrotta)
  * Call #finish on MockResponses if it's available (Aaron Patterson)
  * Allow HTTP_HOST to be set via #header (Geoff Buesing)
2011-12-14 16:48:39 +00:00
taca
d46df1c650 Update ruby-rack-mount package to 0.8.3.
Exacat changes are unknown but improve compatibility for Ruby 1.9.3.
2011-12-14 16:46:53 +00:00
taca
d5adbd07fd Change source directories;
www/ruby-rack-mount to www/ruby-rack-mount06
	www/ruby-rack-test to www/ruby-rack-test05
2011-12-14 16:40:30 +00:00
taca
f0918e962d Add and enable ruby-rack-test05. 2011-12-14 16:36:01 +00:00
taca
1c109672d7 Importing www/ruby-rack-test version 0.5.7 as /ruby-rack-test05. 2011-12-14 16:35:24 +00:00
taca
14cd60b6a5 Add and enable ruby-rack-mount06. 2011-12-14 16:33:12 +00:00
taca
a4e194c703 Importing current ruby-rack-mount 0.6.14 as www/ruby-rack-mount06. 2011-12-14 16:32:06 +00:00
manu
431aff7a4e Update SOPE and SOGo to 2.0.0b3 (bug fixes) 2011-12-14 15:02:24 +00:00
hiramatsu
42f3c430f7 Update p5-Catalyst-Engine-PSGI to 0.13.
Changes from previous:
----------------------
0.13  Thu Jun  9 23:58:10 PDT 2011
        - Fixed a bug in PSGI header generation to prevent potential HTTP header injection
        - Misc doc fixes

0.12  Thu Jan  6 14:37:53 PST 2011
        - Fix for Catalyst::Runtime >= 5.80030 (pedromelo)
2011-12-14 11:02:16 +00:00
joerg
2e0d696a90 Add back distfile for push option and decouple it from uwsgi.
Adjust logic to generate the full distinfo if makesum is called.
Add image-filter, upload and debug options (PR 45612).
2011-12-13 22:00:47 +00:00
taca
7e35125162 * Switch to use RUBY_RAILS_SUPPORTED.
* Correct CATEGORIES to www.
2011-12-13 16:03:53 +00:00
taca
ad3119dc7d Switch to use RUBY_RAILS_SUPPORTED. 2011-12-13 16:03:09 +00:00
taca
6d736b2810 * Switch to use RUBY_RAILS_SUPPORTED.
* Relax dependency to ruby-i18n version.

Bump PKGREVISION.
2011-12-13 16:02:39 +00:00
taca
7063319ca4 * Switch to use RUBY_RAILS_SUPPORTED.
* Don't hard code RUBY_RAILS2_VERSION in DISTNAME.
2011-12-13 15:57:27 +00:00
spz
601deba762 add revision 1209432 from http://svn.apache.org/ as patches:
fix for CVE-2011-4317
2011-12-13 15:37:56 +00:00
hiramatsu
8ddb95b20b Update p5-Catalyst-Authentication-Store-DBIx-Class to 0.1503.
Changes from previous:
----------------------
0.1503  2011-12-08
        * Change docs to show $c->config('Plugin::Authentication' => {...
          rather than $c->config->{authentication}. The new key, and method
          rather than hash access style are both preferred and recommended.

0.1502  2011-08-24
        * Switch repository to git (fREW Schmidt)

0.1501  2011-06-17
        * If use_userdata_from_session isn't set, then don't store more
          fields than we need in the session -- only the fields we need to
          load the object from the DB again.

0.1500  2010-11-16
        * Allow specifying a fully loaded DBIC result in addition to resultsets
          of which only the first row is considered.

0.1401  2010-11-16
        * Fix call to ->load which was not passing $c
2011-12-13 12:30:07 +00:00
spz
83d0fc6d00 Upstream changelog:
Tomcat 6.0.35 (jfclere)
+++++++++++++++++++++++

Catalina
--------

fix	Fix regression in decoding of parameters that contain spaces.
	Patch by Willem Fibbe. (kkolinko)

Tomcat 6.0.34 (jfclere)	not released
++++++++++++++++++++++++++++++++++++

Catalina
--------

fix	51550: Display an error page rather than an empty response
	for an IllegalStateException caused by too many active sessions.
	(markt)
add	51640: Improve the memory leak prevention for leaks triggered
	by java.sql.DriverManager. (markt/kkolinko)
fix	51688: JreMemoryLeakPreventionListener now protects against
	AWT thread creation. (schultz)
fix	51758: The digester (used for processing XML files) used
	the logger name org.apache.commons.digester.Digester rather
	than the expected org.apache.tomcat.util.digester.Digester.
	The digester has been changed to use the expected logger name.
	(kkolinko)
add	51862: Added a classesToInitialize attribute to
	JreMemoryLeakPreventionListener to allow pre-loading of
	configurable classes to avoid some classloader leaks. (slaurent)
fix	51872: Ensure that the access log always uses the correct
	value for the remote IP address associated with the request
	and that requests with multiple errors do not result in
	multiple entries in the access log. (markt)
add	Allow to overwrite the check for distributability of session
	attributes by session implementations. (rjung)
add	Provide the log format "OneLineFormatter" for JULI that
	provides the same information as the default plus thread
	name but on a single line. (markt/rjung)
fix	Ensure the the memory leak protection for the HttpClient
	keep-alive always operates even if the thread has already
	stopped. (markt)
fix	51940: Do not limit saving of request bodies during FORM
	authentication to POST requests since any HTTP method may
	include a request body. Based on a patch by Nicholas Sushkin.
	(kkolinko)
fix	52091: Address performance issues related to lock contention
	in StandardWrapper. Based on patch provided by Taiki Sugawara.
	(kkolinko)
update	In GenericPrincipal, SerializablePrincipal: Do not sort lists
	of roles that have only one element. (kkolinko)
add	Make configuration issue for CsrfPreventionFilter result in
	the failure of the filter rather than just a warning message.
	(kkolinko)
fix	Ensure changes to the configuration of RemoteAddrValve and
	RemoteHostValve via JMX are thread-safe. (kkolinko)
add	Make configuration issue for RemoteAddrValve and
	RemoteHostValve result in the failure of the valve rather
	than just a warning message. (kkolinko)
update	In RequestFilterValve (RemoteAddrValve, RemoteHostValve):
	refactor value matching logic into separate method and expose
	this new method isAllowed through JMX. (kkolinko)
add	Improve performance of parameter processing for GET and POST
	requests. Also add an option to limit the maximum number of
	parameters processed per request. This defaults to 10000.
	Excessive parameters are ignored. Note that FailedRequestFilter
	can be used to reject the request if some parameters were
	ignored. (markt/kkolinko)
add	New filter FailedRequestFilter that will reject a request
	if there were errors during HTTP parameter parsing. (kkolinko)

Coyote
------

fix	50394: Return -1 from read operation instead of throwing an
	exception when encountering an EOF with the HTTP APR connector.
	(kkolinko)
fix	51698: Fix CVE-2011-3190. Prevent AJP message injection. (markt)
fix	Detect incomplete AJP messages and reject the associated
	request if one is found. (markt)
fix	51794: Fix race condition in NioEndpoint selector.
	Patch provided by dlord. (fhanik)
fix	51905: Fix infinite loop in AprEndpoint shutdown if acceptor
	unlock fails. Reduce timeout before forcefully closing the
	socket from 30s to 10s. (kkolinko)
fix	52121: Fix possible output corruption when compression is
	enabled for a connector and the response is flushed.
	Test case provided by David Marcks. (kkolinko)
fix	Replace unneeded call that iterated events queue in
	NioEndpoint.Poller. (kkolinko)
fix	Improve MimeHeaders.toString(). (kkolinko)
fix	Allow the BIO HTTP connector to be used with SSL when
	running under Java 7. (markt)
fix	Improve multi-byte character handling in all connectors. (rjung)

Jasper
------

fix	51220: Correct copy/paste error in original commit for this
	issue. (markt)
fix	52091: Address performance issues related to log creation
	in TagHandlerPool. Patch provided by Taiki Sugawara. (markt)

Cluster
-------

add	51736: Make rpcTimeout configurable in BackupManager. (kfujino)
add	New cluster manager attribute sessionAttributeFilter allows
	to filter which session attributes are replicated using a
	regular expression applied to the attribute name. (rjung)
fix	Avoid an unnecessary session ID change notice.
	Notice of changed session ID by JvmRouteBinderValve is
	unnecessary to BackupManager. In BackupManager, change of
	session ID is replicated by the call of a setId() method.
	(kfujino)
fix	Fix unneeded duplicate resetDeltaRequest() call in
	DeltaSession.setId(String). (kkolinko)
add	When Context manager does not exist, no context manager
	message is replied in order to avoid timeout (default 60 sec)
	of GET_ALL_SESSIONS sync phase. (kfujino)

Webapps
-------

fix	Correct the documentation for the connectionLinger attribute
	of the HTTP connector. (markt)
add	Show build date and version in the header on every
	documentation page. (kkolinko)
fix	52049: Improve setup instructions for running as a Windows
	service: correct information on how a JRE is identified and
	selected. (markt)
update	52172: Clarify Tomcat build instructions. Patch provided by
	bmargulies. (kkolinko)

Other
-----

update	Update the native component of the APR/native connectors
	to 1.1.22. (markt)
update	Update the recommended version of the native component
	of the APR/native connectors to 1.1.22. (kkolinko)
update	Update the Eclipse compiler (used for JSPs) to 3.7. (markt)
fix	Correct two typos in the Windows installer. (kkolinko)
fix	52059: In Windows uninstaller: Do not forget to remove
	Tomcat keys from 32-bit registry on deinstallation. (kkolinko)
2011-12-13 09:44:17 +00:00
joerg
aa7e418922 Fix fallout from newer gnutls. 2011-12-12 19:10:37 +00:00
tron
dbb45bcd98 Remove duplicate error check from security patch. No revision bump as
there is no functional change.

Problem pointed out by S.P. Zeidler.
2011-12-12 18:43:14 +00:00
ryoon
69371172c5 Add php-owncloud 2011-12-11 14:30:20 +00:00
ryoon
306e613dcb Import php*-owncloud as www/php-owncloud.
ownCloud gives you universal access to your files through a web
interface or WebDAV. It also provides a platform to easily view &
sync your contacts, calendars and bookmarks across all your devices
and enables basic editing right on the web.
2011-12-11 14:29:20 +00:00
ryoon
1f4e9cb166 Fix typo in MESSAGE, bump PKGREVISION. 2011-12-11 13:01:50 +00:00
drochner
759c9a66a2 PKGREV bump for libXp-less openmotif 2011-12-09 14:36:32 +00:00
hiramatsu
6b482f81f8 Update p5-Catalyst-Controller-FormBuilder to 0.06.
Change from previous:
---------------------
0.06   26-01-11 10:38:00
    Remove last reference to NEXT:: (caelum/agladish)
2011-12-09 06:58:23 +00:00
hiramatsu
d1dc99a3e0 Update p5-Catalyst-Controller-HTML-FormFu to 0.09003.
Changes from previous:
----------------------
0.09003 2011-05-12

     - depend on HTML::FormFu 0.09

0.09002 2011-05-11

    - fixes #67404 (Missing dependency on MooseX::ChainedAccessors)

    - fixes #67571 (Minimum requirement for HTML::FormFu is 0.9002)
      actually it just requires MooseX::ChainedAccessors

    - hopefully fixes 539965f0-7b0f-11e0-b729-7181c0b02281

0.09001 2011-05-10

    - fixed problem with build_per_context_instance that caused errors
      like http://paste.scsys.co.uk/102966

0.09000 2011-03-29

    - Fix mem leak

    - Resolve Moose extends/runtime bug RT #55780

    - fix RequestToken classes to work with new Moosified HTML-FormFu
2011-12-09 02:09:38 +00:00
ryoon
62bd87409c * php-tiki6 accepts lang/php5, see http://doc.tiki.org/Requirements .
* Update MESSAGE file, bump PKGREVISION.
2011-12-08 20:35:25 +00:00
obache
71d0da19b6 Update ruby-httpclient to 2.2.4.
= Changes in 2.2.4 =
  Dec 08, 2011 - version 2.2.4
    * Bug fixes
      * Do not recycle buffer String object for yielding.  When the response is
        not chunked and the size of the response > 16KB, API with block style
        yields recycled String object for each yields.
      * Set VERSION string in User-Agent header.  $Id$ didn't work long time...
      Bugs are reported by Seamus Abshere. Thanks!
2011-12-08 12:08:05 +00:00
joerg
d7833e4206 Dependencies can only work for php 5.3 2011-12-08 03:01:48 +00:00
hiramatsu
544590a2b1 Update p5-Catalyst-Authentication-Credential-HTTP to 1.013.
Changes from previous:
----------------------
1.013 2010-12-14
   - Call store_digest_authorization_nonce() instead of $c->cache->set()
     in authenticate_digest() (RT#63669) (rjk)
   - Make Test::Exception and Test::MockObject be listed as test_requires
     rather than requires (RT#54029)
   - Skip WWW::Mech tests unless WWW::Mech is a new enough version (RT#55303).
   - Improve documentation for authenticate_digest() (rjk)
     - depends on Catalyst::Plugin::Cache, not Catalyst::Plugin::Session
     - reorganize and clarify
2011-12-08 00:39:28 +00:00
tron
04135dd016 Add improved fix for proxy vulnerability reported in CVE-2011-3368.
This should also fix CVE-2011-3639 and possibly CVE-2011-4317, both
part of SA46987.
2011-12-07 22:58:12 +00:00
drochner
34bd591fa6 update to 3.0.18
many fixes and improvements - see the ChangeLog file
one marked as security relevant:
If the redirect URL contains characters RFC 3986 doesn't permit,
they are (re)encoded. Not doing this makes Privoxy versions from
3.0.5 to 3.0.17 susceptible to HTTP response splitting (CWE-113)
attacks if the +fast-redirects{check-decoded-url} action is used.
2011-12-07 16:13:51 +00:00
ryoon
79d2ec721b Add php-tiki6 2011-12-07 13:32:18 +00:00
ryoon
d426a7a3ef Import php*-tiki6-6.4 as www/php-tiki6
Tiki is free, both Free Software (as in "Free Speech") and Free of
Charge (as in "Free Beer"), and for everyone! It has all the features
you need "out-of-the-box":

    * Wikis (like Wikipedia)
    * Forums (like phpBB)
    * Blogs (like WordPress)
    * Articles (like Yahoo News)
    * Image Gallery (like Flickr)
    * Map Server (like Google Maps)
    * Link Directory (like DMOZ)
    * Multilingual (like Babel Fish)
    * Bug Tracker (like Bugzilla)
    * RSS Feeds (like Digg)
    * Free Open Source software (LGPL)

This is Long Term Support version.
2011-12-07 13:29:32 +00:00
hiramatsu
8a11833b9c Update p5-Captcha-reCAPTCHA-Mailhide to 0.94.
Change from previous:
0.94    2010-07-03
        Updated Perl plugin to use Google infrastructure.
2011-12-07 04:34:28 +00:00
gls
1ce32d2ac5 Update www/moodle to 2.1.3
Upstream highlights:
--------------------

Highlights

MDL-27037 - Wiki 2.0 respects 'visible groups' functionality
MDL-29960 - Dropbox repository now functioning with new API

Functional changes

MDL-27516 - RTL Theme fixes for Moodle 2

Security issues

MSA-11-0042 - Information leak in Wiki
MSA-11-0043 - Possible link redirect in Calendar
MSA-11-0044 - Expired identification information shown in Web services
MSA-11-0045 - Potential to masquerade through MNet
MSA-11-0047 - Possible injection attack in Calendar
MSA-11-0048 - Password loss issue
MSA-11-0050 - Backup capability issue
MSA-11-0051 - Authentication issue with Web services
MSA-11-0052 - Potential to exploit developer debugging scripts
MSA-11-0053 - Security and system administration conflict
MSA-11-0054 - Personal information leak

Fixes and improvements

MDL-28292 - Removed possibility to 'lose' a block by docking it
MDL-29542 - Lesson no longer gets corrupted after creating a new question
MDL-30010 - Core themes which have pagelayout problems when moving blocks have been fixed
MDL-27790 - Temporary course remains after restore
MDL-29529 - Fixed database error when assignments were sorted by status
MDL-30375 - Comments block no longer disappears when cancel is clicked
MDL-30398 - Lesson no longer accepts blank password
2011-12-06 19:42:37 +00:00
dholland
d3aca20238 Fix previous - had wrong sum with wrong filename. hi joerg :-) 2011-12-06 16:14:31 +00:00
ryoon
28086fa5ba Fix typo in MESSAGE.
Bump PKGREVISION.
2011-12-06 12:41:02 +00:00
manu
b8c0859d81 Update to mod_auth_mellon 0.4.0 plus upstream patch:
* Honour MellonProbeDiscoveryIdP order when sending probes
* Allow MellonUser variable to be translated through MellonSetEnv
* A /mellon/probeDisco endpoint replaces the builtin:get-metadata
  IdP dicovery URL scheme
* New MellonCond directive to enable attribute filtering beyond
  MellonRequire functionalities.
* New MellonIdPMetadataGlob directive to load mulitple IdP metadata
  using a glob(3) pattern.
* Support for running behind reverse proxy.
* MellonCookieDomain and MellonCookiePath options to configure cookie
  settings.
* Support for loading federation metadata files.
* Several bugfixes.
2011-12-06 09:58:00 +00:00
hiramatsu
462339275d Update p5-Dancer to 1.3080.
Changes from previous:
1.3080      25.10.2011
    ** Codename: Sawyer's Sugar Stream // Sawyer X **

    [ ENHANCEMENTS ]
    * No functional changes, just releasing as stable.

1.3079_05   02.10.2011

    [ API CHANGES ]
    * Deprecation of 'before', 'before_template' and 'after' in favor of hook
      (Alberto Simões)

    [ BUG FIXES ]
    * Minor corrections (jamhed, felixdo)
    * Log if a view and or a layout is not found (Alberto Simões, reported
      by David Previous)

    [ ENHANCEMENTS ]
    * Add support for the HTTP 'PATCH' verb (David Precious)

1.3079_04   02.10.2011

    [ ENHANCEMENTS ]
    * PSGI handler code cleaned up (chromatic).
    * Improved warning localizations (chromatic).

    [ DOCUMENTATION ]
    * Dancer::Plugins typos (Olof Johansson).
    * PSGI handler documented (chromatic).

1.3079_03   10.09.2011

    [ ENHANCEMENTS ]
    * Support XML::Simple configuration for serializing/deserializing
      (Alberto Simões)
    * Hard deprecate lots of stuff (Alberto Simões)

    [ BUG FIXES ]
    * Don't clobber TT INCLUDE_PATH if the user set it specifically in the
      config file - Issue 643 (David Precious, reported by meraxes)
    * Don't require a space after semi-colon delimiting multiple name=value
      cookie pairs - Issue 642 (David Precious, reported by travisbeck)

1.3079_02   28.08.2011

    [ BUG FIXES ]
    * Remove hard-coded version from 404.html and 500.html (Alberto Simões)
    * Fix logging of UTF8-encoded strings (jamhed)
    * Do not clean 'vars' during forward (Alberto Simões)

    [ ENHANCEMENTS ]
    * Add streaming support to send_file. (Sawyer X)
2011-12-06 06:50:04 +00:00
obache
a6565c32aa revive apache2 support. 2011-12-06 01:47:06 +00:00
sbd
529d8cb79d Recursive bump for lang/ocaml buildlink addition. 2011-12-06 00:19:21 +00:00
joerg
4a37fe54f4 Restrict crypt.h to Solaris for now. 2011-12-05 22:57:35 +00:00
dholland
150765c75d Does not work with apache2 due to conflicting apr requirements. 2011-12-05 13:28:34 +00:00
wiz
81016a12b7 Update htdig using htdig-devel. Update packages using it
and bump their PKGREVISIONs. Remove htdig-devel.
2011-12-05 10:18:16 +00:00
shattered
30a1cd7266 Update to 1.0.10 and delint. Partially resolves PR/45317, PR/45612 and
PR/45506.  No new options added.  Notable changes:

    *) Bugfix: a segmentation fault might occur in a worker process if
       resolver got a big DNS response.

    *) Feature: accept filters are now supported on NetBSD.

    *) Bugfix: a segmentation fault occurred on start or while
       reconfiguration if the "ssl" directive was used at http level and
       there was no "ssl_certificate" defined.

    *) Bugfix: nginx hogged CPU if all servers in an upstream were marked as
       "down".

    *) Bugfix: a segmentation fault might occur during reconfiguration if
       ssl_session_cache was defined but not used in previous configuration.

    *) Bugfix: a segmentation fault might occur in a worker process if many
       backup servers were used in an upstream.

    *) Feature: now nginx supports ECDHE key exchange ciphers.

    *) Change: now default SSL ciphers are "HIGH:!aNULL:!MD5".

    *) Bugfix: a segmentation fault might occur in a worker process, if a
       caching was used.

    *) Bugfix: worker processes may got caught in an endless loop during
       reconfiguration, if a caching was used; the bug had appeared in 0.8.48.
2011-12-04 14:41:01 +00:00
taca
b471e76619 Update contao210-translatinons package to 20111129.
Upadate Japanese language files.
2011-12-04 02:25:18 +00:00
joerg
bbde65f2e0 Tag the 28 locations that result in a Python 3.1 package as supporting so.
Remove it from the default list for the rest.
2011-12-03 00:02:14 +00:00
minskim
771b70f4c9 bookmark-w3m.el is not compiled with emacs<23.
Noted by Ryo ONODERA.
2011-12-02 23:05:42 +00:00
wiz
cf5746a5e0 Remove PKGREVISION line after update. Hi is! 2011-12-02 14:34:54 +00:00
is
05501b5129 Upgrade dillo to 3.0.1. 2011-12-02 13:06:31 +00:00
hiramatsu
6d8dbfe0cd Update p5-Plack-Middleware-ConsoleLogger to 0.04.
Changes from previous:
0.04  Thu Jul  7 12:53:41 PDT 2011
      - Encode high bit characters with \uXXXX (#1)

0.03  Wed May 18 14:54:07 PDT 2011
      - Escape more literals inside JavaScript
2011-12-02 09:51:33 +00:00
sbd
d37ca59b51 Recursive bump for devel/apr buildlink addition. 2011-12-02 07:13:48 +00:00
gls
67621d964d Add a fix for CVE 2011-4357, taken from
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=649322
2011-12-01 20:50:48 +00:00
minskim
26a4391f28 Update emacs-w3m-snapshot to 1.4.442.20110729.
Changes:
	* w3m.el (w3m-delete-buffer): Switch to the previous emacs-w3m buffer
	explicitly; bind frame-auto-delete and ignore-window-parameters while
	killing the buffer.
	(w3m-goto-url): Change the order of retrieving group:* urls so as to
	arrange the buffer list in turn.

	* w3m.el (w3m-goto-mailto-url): Pass other headers to the agent.

	* w3m-ems.el (w3m-toolbar-define-keys): Work around the Emacs 24 error
	"`keymap' is reserved for embedded parent maps".

	* w3m.el (w3m-content-type-alist): Use functionp instead of symbolp for
	the users who set their own private function to
	browse-url-browser-function.

	* w3m.el (w3m-content-type-alist): When selecting which external html
	browser to use, handle the case where browse-url-browser-function is
	an alist.

	* w3m.el (w3m-goto-mailto-url): Decode entities in URL.
2011-12-01 17:53:58 +00:00
wiz
191e9c7714 Use DEINSTALL script instead of unexec rm. Bump PKGREVISION. 2011-12-01 09:56:39 +00:00
wiz
11f7520839 Use DEINSTALL script instead of unexec rm. Bump PKGREVISION.
Untested since this doesn't compile with recent C++ compilers.
2011-12-01 09:55:58 +00:00
schmonz
bd52c09ce3 Update to 3.20111107. From the changelog:
* img: Bugfix to width/height tags for scaled down image when only
     one dimension was provided. Thanks, Per Carlson.
   * editpage: Fix FormattingHelp link on Discussion pages.
   * The umask setting can now be set to private, group, or public,
     avoiding the need to enter octal correctly which is particularly
     difficult in yaml setup files. (smcv)
   * graphviz: Support urls embedded in the graph, by having graphviz
     generate an imagemap.
   * graphviz: Support wikilinks embedded in the graph.
     (Sponsored by The TOVA Company.)
2011-12-01 04:02:03 +00:00
minskim
b459ac7ec3 Use an absolute path in invoking w3m. 2011-11-30 21:05:13 +00:00
wiz
f3a9c4d97c Update to 7.23.1:
Fixed in 7.23.1 - November 17 2011

Bugfixes:

    Windows: curl would fail if it found no CA cert, unless -k was used. Even if a non-SSL protocol URL was used

Fixed in 7.23.0 - November 15 2011

Changes:

    Empty headers can be sent in HTTP requests by terminating with a semicolon
    SSL session sharing support added to curl_share_setopt()
    Added support to MAIL FROM for the optional SIZE parameter
    smtp: Added support for NTLM authentication
    curl tool: code split into tool_*.[ch] files

Bugfixes:

    handle HTTP redirects to "//hostname/path"
    SMTP without --mail-from caused segfault
    prevent extra progress meter headers between multiple files
    allow Content-Length to be replaced when sending HTTP requests
    curl now always sets postfieldsize to allow --data-binary and --data to be mixed in the same command line
    curl_multi_fdset: avoid FD_SET out of bounds
    lots of MinGW build tweaks
    Curl_gethostname: return un-qualified machine name
    fixed the openssl version number configure check
    nss: certificates from files are no longer looked up by file base names
    returning abort from the progress function when using the multi interface would not properly cancel the transfer and close the connection
    fix libcurl.m4 to not fail with modern gcc versions
    ftp: improved the failed PORT host name resolved error message
    TFTP timeout and unexpected block adjustments
    HTTP and GOPHER test server-side connection closing adjustments
    fix endless loop upon transport connection timeout
    don't clobber errno on failed connect
    typecheck: allow NULL to unset CURLOPT_ERRORBUFFER
    formdata: ack read callback abort
    make --show-error properly position independent
    set the ipv6-connection boolean correctly on connect
    SMTP: fix end-of-body string escaping
    gtls: only call gnutls_transport_set_lowat with HTTP: handle multiple auths in a single WWW-Authenticate line
    curl_multi_fdset: correct fdset with FTP PORT use
    windbuild: fix the static build
    fix builds with GnuTLS version 3
    fix calling of OpenSSL's ERR_remove_state(0)
    HTTP auth: fix proxy Negotiate bug when Negotiate not requested
    ftp PORT: don't hang if bind() fails
    -# would crash on terminals wider than 256 columns

Fixed in 7.22.0 - September 13 2011

Changes:

    Added CURLOPT_GSSAPI_DELEGATION
    Added support for NTLM delegation to Samba's winbind daemon helper ntlm_auth
    Display notes from setup file in testcurl.pl
    BSD-style lwIP TCP/IP stack experimental support on Windows
    OpenSSL: Use SSL_MODE_RELEASE_BUFFERS if available
    --delegation was added to set CURLOPT_GSSAPI_DELEGATION
    nss: start with no database if the selected database is broken
    telnet: allow programatic use on Windows

Bugfixes:

    curl_getdate: detect some illegal dates better
    when sending a request and an error is received before the (entire) request body is sent, stop sending the request and close the connection after having received the entire response. This is equally true if an Expect: 100-continue header was used.
    When using both -J and a single -O with multiple URLs, a missing init could cause a segfault
    -J fixed for escaped quotes
    -J fixed for file names with semicolons
    progress: reset flags at transfer start to avoid wrong CURLINFO_CONTENT_LENGTH_DOWNLOAD
    curl_gssapi: Guard files with HAVE_GSSAPI and rename private header
    silence picky compilers: mark unused parameters
    help output: more gnu like output
    libtests: stop checking for CURLM_CALL_MULTI_PERFORM
    setting a non-HTTP proxy with an environment variable or with CURLOPT_PROXY / --proxy (without specifying CURLOPT_PROXYTYPE) would still make it do proxy-like HTTP requests
    CURLFORM_BUFFER: insert filename as documented (regression)
    SOCKS: fix the connect timeout
    ftp_doing: bail out on error properly while multi interfacing
    improved Content-Encoded decoding error message
    asyn-thread: check for dotted addresses before thread starts
    cmake: find winsock when building on windows
    Curl_retry_request: check return code
    cookies: handle 'secure=' as if it was 'secure'
    tests: break busy loops in tests 502, 555, and 573
    FTP: fix proxy connect race condition with multi interface and SOCKS proxy
    RTSP: GET_PARAMETER requests have a body
    fixed several memory leaks in OOM situations
    bad expire(0) caused multi_socket API to hang
    Avoid ftruncate() static define with mingw64
    mk-ca-bundle.pl: ignore untrusted certs
    builds with PolarSSL 1.0.0
2011-11-30 20:56:08 +00:00
wiz
4bc24b71d9 Update to 2.8.7rel.2 as 2.8.7nb4.
Same distfile name, different contents.

Changes:
2010-06-21 (2.8.7rel.2)
* add limit-check for too-long URIs in href's (RedHat #605286) -TD
* fix a few places still referring to "2-8-6" -TD
2011-11-30 14:02:59 +00:00
drochner
97c2b47fec add patch from upstream to fix sign extension bug which can lead
to out-of-bounds array read
(possible DOS, CVE-2011-4362)
bump PKGREV
2011-11-30 11:13:59 +00:00
drochner
ca6558fcd5 update to 1.6.7
changes:
-bugfixes
-translation updates
2011-11-30 10:50:08 +00:00
darcy
8a251a2ae8 Upgrade to 0.36.
Too many changes to list.  See
https://github.com/webpy/webpy/blob/master/ChangeLog.txt
2011-11-29 18:16:56 +00:00
darcy
853bdf110d Update to version 3.2.0. Not much in the way of release notes except this:
Beautiful Soup 3.2.0 features very little new functionality, but its version
number leapfrogs the defunct 3.1 series, preventing confusion about which
version is the latest.

However, the web site also says this about our previous version:

Beautiful Soup version 3.1.0.1 was released January 6, 2009. It won't work
very well — I consider it a failed experiment.
2011-11-29 17:00:54 +00:00
ryoon
d354455435 Correct instructions in MESSAGE file.
Bump PKGREVISION.
2011-11-29 14:51:37 +00:00
hiramatsu
06add12a60 Add p5-JavaScript-Value-Escape. 2011-11-29 10:40:46 +00:00
hiramatsu
c41b898918 Import JavaScript::Value::Escape into www/p5-JavaScript-Value-Escape,
which is required to update www/p5-Plack-Middleware-ConsoleLogger.

There are a lot of XSS, a security hole typically found in web
applications, caused by incorrect (or lack of) JavaScript
escaping. This module is aimed to provide a secure JavaScript escaping
to avoid XSS with JavaScript values.
2011-11-29 10:39:24 +00:00
drochner
bcf1288937 Don't allow '/' characters to be passed to pam_start() by the
PAM helper program. OpenPAM didn't check this, so it could be
tricked into reading arbitrary config files, allowing privilege
escalation.
Standard squid installations don't install the PAM helper SUID, but
depending on local needs, an administrator might choose to do so.
approved by pkg maintainer
bump PKGREV
2011-11-28 15:26:25 +00:00
wiz
431c6a7da6 Update to 2.4:
=== RELEASE 2.4 ===

Sat Nov 19 01:21:25 MET 2011 mikulas:

	Do not translate '\' to '/' in HTTP requests

Sat Nov 19 01:19:12 MET 2011 mikulas:

	Do not test for existing strings when loading links history file
	=> avoid quadratic-complexity on startup

Sat Nov 19 01:18:59 MET 2011 mikulas:

	Fixed a possible memory leak on Windows

Wed Nov 16 17:59:49 MET 2011 mikulas:

	Fixed a crash on systems that don't have strerror

Fri Nov 11 23:22:25 CEST 2011 mikulas:

	Fixed a crash in Windows console code

Wed Oct 12 22:08:39 MET 2011 mikulas:

	Fixed a possible crash if the user changes socks dns append string
	while socks connection is in progress

Sun Sep 25 18:40:57 MET 2011 mikulas:

	Do not send '#' in the url when downloading

Sun Sep 18 16:57:38 CEST 2011 mikulas:

	Fixed crashes with libpng-1.5

Fri Sep 16 20:16:01 CEST 2011 mikulas:

	Fixed bugs in the directfb driver

Fri Sep 16 18:40:41 CEST 2011 mikulas:

	Workaround for icc optimization bug on framebuffer
	Don't clear the whole framebuffer, clear just an used area
		(fixes problems with Nvidia framebuffer)

Tue Sep 13 23:13:52 CEST 2011 mikulas:

	Make it compile with OpenWatcom for Linux
	Note: because of unimplemented "gethostbyname" function,
	it requires installed "host" command to do name lookups

Tue Sep 13 03:53:06 cet 2011 mikulas:

	Try to free internal caches when out of memory happens

Mon Sep 12 19:57:13 CEST 2011 mikulas:

	Fixed a crash when cache is flushed while auth dialog is displayed

Sun Sep 11 02:02:09 MET 2011 mikulas:

	Reduced memory consumption
	Don't reformat plain text if window size changes
2011-11-28 15:05:31 +00:00
wiz
498f690044 Update to 0.9.17:
Releasing 0.9.17. -CG

	Fixing return value of MHD_get_timeout if timeouts are not in use.
        (#1914). -rboulton

	Trying to fix accidental addition of a "Connection: close" footer
	under certain (rare) circumstances. -CG

	Small updates to the tutorial.
	Releasing 0.9.16. -CG

	shutdown(RDWR) fails on OS X after shutdown(RD), so only use
	shutdown(WR) if we already closed the socket for reading (otherwise
	OS X might not do shutdown (WR) at all). -CG

	Force adding of 'Connection: close' to the header if we (for whatever
	reason) are shutting down the socket for reading (see also
	#1760). -CG

	Treat EAGAIN the same way as EINTR (helps on W32). -LRN

	Made sockets blocking again for non-Linux platforms as non-blocking
	sockets cause problems (#1824) on Cygwin but offer better performance
	on Linux (see change on August 11 2011). -CG/pross

 	Fixed problems with testcases on W32. -LRN

	Fixed MHD_CONNECTION_OPTION_TIMEOUT for HTTPS (#1811). -CG
2011-11-28 15:04:06 +00:00
hiramatsu
583ead9994 Update p5-CGI-Application-Plugin-ValidateRM to 2.4.
Changes from previous:
2.4 July 20th, 2011
    No functional changes.

    Fixed Perl 5.12 compatibility, thanks to Nicholas Bamber.  (RT#67894)

    Also, some other code-cleanup.
2011-11-28 13:05:36 +00:00
wiz
15c4d1d8d8 Reset maintainer, sketch resigned. 2011-11-28 00:06:17 +00:00
tnn
e7eb433660 Work around lack of _SC_NPROCESSORS_ONLN on some platforms (like netbsd4).
Observed in PR pkg/45553.
2011-11-27 13:09:00 +00:00
sbd
56ae2aa138 Recursive bump for www/serf buildlink addition. 2011-11-27 05:43:24 +00:00
sbd
cfc56e6ca9 Add missing devel/zlib buildlink.
Bump PKGREVISION
2011-11-27 05:42:50 +00:00
ryoon
9e0fe8f70f Add aipo 2011-11-26 19:30:19 +00:00
ryoon
2d77428864 Import aipo-6.02 as pkgsrc/www/aipo from wip/aipo
Aipo is web-based groupware software. Currently Aipo has interface
written in Japanese only.

You can get source at http://code.google.com/p/aipo/ .

This package requires apache-tomcat and postgresql-server.

Tested only with lang/openjdk7, www/apache-tomcat7,
and databases/postgresql84-server.
2011-11-26 19:29:05 +00:00
obache
5ff052bc67 Update py-mechanize to 0.2.5.
(added test target)

2011-03-31 John J Lee <jjl@pobox.com>
	* 0.2.5 release.
	* This is essentially a no-changes release to fix easy_install
	  breakage caused by a SourceForge issue
	* Sourceforge is returning invalid HTTP responses, make download
	  links point to PyPI instead
	* Include cookietest.cgi in source distribution
	* Note new IETF cookie standardisation effort

2010-10-28 John J Lee <jjl@pobox.com>
	* 0.2.4 release.
	* Fix IndexError on empty Content-type header value. (GH-18)
	* Fall back to another encoding if an unknown one is declared.
	  Fixes traceback on unknoqn encoding in Content-type header.
	  (GH-30)

2010-10-16 John J Lee <jjl@pobox.com>
	* 0.2.3 release.
	* Fix str(ParseError()) traceback. (GH-25)
	* Add equality methods to mechanize.Cookie . (GH-29)

2010-07-17 John J Lee <jjl@pobox.com>
	* 0.2.2 release.
	* Officially support Python 2.7 (no changes were required)
	* Fix TypeError on .open()ing ftp: URL (only affects Python 2.4
	  and 2.5)
	* Don't include HTTPSHandler in __all__ if it's not available

2010-05-16 John J Lee <jjl@pobox.com>
	* 0.2.1 release.
	* API change: Change argument order of
	  HTTPRedirectHandler.redirect_request() to match urllib2.
	* Fix failure to use bundled BeautifulSoup for forms. (GH-15)
	* Fix default cookie path where request path has query containing
	  / character. (http://bugs.python.org/issue3704)
	* Fix failure to raise on click for nonexistent label. (GH-16)
	* Documentation fixes.

2010-04-22 John J Lee <jjl@pobox.com>
	* 0.2.0 release.
	* Behaviour change: merged upstream urllib2 change (allegedly a
	  "bug fix") to return a response for all 2** HTTP responses (e.g.
	  206 Partial Content).  Previously, only 200 caused a response
	  object to be returned.  All other HTTP response codes resulted
	  in a response object being raised as an exception.
	* Behaviour change: Use of mechanize classes with `urllib2` (and
	  vice-versa) is no longer supported.  However, existing classes
	  implementing the urllib2 Handler interface are likely to work
	  unchanged with mechanize.  Removed RequestUpgradeProcessor,
	  ResponseUpgradeProcessor, SeekableProcessor.
	* ClientForm has been merged into mechanize.  This means that
	  mechanize has no dependencies other than Python itself.  The
	  ClientForm API is still available -- to switch from ClientForm to
	  mechanize, just s/ClientForm/mechanize in your source code, and
	  ensure any use of the module logging logger named "ClientForm" is
	  updated to use the new logger name "mechanize.forms".  I probably
	  won't do further standalone releases of ClientForm.
	* Stop monkey-patching Python stdlib.
	* Merge fixes from urllib2 trunk
	* Close file objects on .read() failure in .retrieve()
	* Fix a python 2.4 bug due to buggy urllib.splithost
	* Fix Python 2.4 syntax error in _firefox3cookiejar
	* Fix __init__.py typo that hid mechanize.seek_wrapped_response and
	  mechanize.str2time.  Fixes
	  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=465206
	* Fix an obvious bug with experimental firefox 3 cookiejar support.
	  It's still experimental and not properly tested.
	* Change documentation to not require a .port attribute on request
	  objects, since that's unused.
	* Doc fixes
	* Added mechanize.urljoin (RFC 3986 compliant function for joining
	  a base URI with a URI reference)
	* Merge of ClientForm (see above).
	* Moved to git (from SVN) http://github.com/jjlee/mechanize
	* Created an issue tracker http://github.com/jjlee/mechanize/issues
	* Docs are now in markdown format (thanks John Gabriele).
	* Website rearranged.  The old website has been archived at
	  http://wwwsearch.sourceforge.net/old/ .  The new website is
	  essentially just the mechanize pages, rearranged and cleaned up a
	  bit.
	* Source code rearranged for easier merging with upstream urllib2
	* Fully automated release process.
	* New test runner.  Single test suite; tests create their own HTTP
	  server fixtures (server fixtures are cached where possible for
	  speed).
2011-11-26 09:18:25 +00:00
sbd
071c9ea3b7 Add missing devel/zlib buildlink.
Bump PKGREVISION
2011-11-26 04:39:19 +00:00
joerg
0cd0f97f9c Fix build with modern GCC 2011-11-25 22:24:39 +00:00
obache
a6bbd02e18 Add missing dependency on py-ClientForm.
PR pkg/45651.

Bump PKGREVISION.
2011-11-25 13:29:43 +00:00
hiramatsu
1ff68c23bb Update p5-HTTP-OAI to 3.27.
Changes from previous:
3.26
	- Added 'delay' option to delay between requests
	- Added --skip-identify option to oai_browser.pl
	- Fixed POD for RT #64077
	- Hopefully fixes #69337 (no test case given)
	- Bumped XML::SAX::Base to 1.04 which should fix #68907

3.25
	- Added unit test for OAI_DC metadata() parsing
	- Metadata::OAI_DC now parses dc when passed as a DOM to ->metadata
2011-11-25 11:44:27 +00:00
hiramatsu
87cd41d1fe Update p5-HTML-TreeBuilder-LibXML to 0.13.
Changes from previous:
0.13
     * Added 'getValue' node's method as in HTML::TreeBuilder::XPath for
       comment nodes in web-scraper module
     * Added dummy method 'store_comments' as in HTML::TreeBuilder
       for web-scraper module (for comment nodes) and for
       HTML::TreeBuilder::XPath working in tests with comment nodes
     * Now this module requires HTML::TreeBuilder::XPath v.0.14 (before 0.14
       there getValue() didn't work for comment nodes)
2011-11-25 08:14:54 +00:00
hiramatsu
6c12afbb17 Update p5-Catalyst-Plugin-Server to 0.28.
Changes from previous:
0.28  Thu Jul 08 20:30:00 CEST 2010
===================================
* Upgrade the plugin for Catalyt 5.8 series
* Changes for adopting MRO::compat where not complete. Calls to next::method
  instead of NEXT::...()
* Change name of paths and compiled base class properties in Cat 5.8
* Clone the result before serializing, as RPC::XML won't clone already seen
  refs (thanks t0m)
* Fix the test suite (some tests were lost from 0.24->0.26)
* Don't warn about the breakage of XML::RPC, as the author has already
  fixed the backcompat breakage

0.26  Fri Sep 25 13:50:41 CEST 2009
===================================
* Important notice: RPC::XML 0.69 introduced a backwards incompatible
  change. For now, this module will only work with RPC::XML 0.67 or
  before. See this bug report for RPC::XML for details:
    https://rt.cpan.org/Ticket/Display.html?id=50013
* Address: #44995: Instruction to disable RenderView action.
  Updated tutorial accordingly.
* Address: #46316: Catalyst::Plugin::Server is trying to use NEXT, which
  is deprecated. We are now using MRO::compat instead.
* Address: #45709 Documentation Ambiguity leads to confusion; The use of
  $c->req->xmlrpc->error is now documented in more detail.
* Add unicode tests
* Other small test improvements
2011-11-25 08:14:37 +00:00
hiramatsu
f551f90b65 Update p5-POE-Filter-HTTP-Parser to 1.06.
Changes from previous:
==============================
2011-03-07 23:46:11 +0000 1.06
==============================

  commit b19d16ab7884681490695ac7e06145c8e609a293
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date:   Mon Mar 7 23:46:11 2011 +0000

    Fix trailing space and bump version to 1.06

  commit dd95ee1ab0da0d89e8a18e39e9b4cbebabdd4f44
  Author: Paul Driver <frodwith@gmail.com>
  Date:   Mon Mar 7 10:54:55 2011 -0600

    Depending on latest HTTP::Parser and fixing some tests

  commit a3fbde85a4c52b1f9265b355a40214d4ba69b9d7
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date:   Mon Mar 7 21:46:59 2011 +0000

    Update dist.ini with 'Prereqs' option rather than 'Prereq'

  commit 0337189987690f84435961ee29e0082a6216accf
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date:   Wed Jul 28 13:13:58 2010 +0100

    Removed the unnecessary tests

  commit ae9689f9b53ecfdc6db670daba7db58b72c30126
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date:   Wed Jul 28 13:06:43 2010 +0100

    Convert distribution to Dist::Zilla
2011-11-25 05:55:49 +00:00
hiramatsu
dc36b40be6 Update p5-FCGI-ProcManager to 0.24.
Changes from previous:
0.24 2011-10-04 Tomas Doran  <bobtfish@bobtfish.net>
    * Further fix to pm_wait routine to find the correct PID and remove it
      (fixing logical error introduced in the last release), noted by Vadim
      Dashkevich
    * Document (somewhat) FCGI::ProcManager::Constrainted

0.23 2011-09-27 Tomas Doran  <bobtfish@bobtfish.net>
    * Fix pm_wait routine to exit without a warning
    * Fix pm_wait to correctly detect child processes which have died.
    * Fix to return SIGCHLD handler to it's default state in the
      pm_manage loop so that loading code which sets SIGCHLD to ignore
      won't interfere with normal operation.
    * Add repository metadata.

0.22 2011-08-04 Tomas Doran  <bobtfish@bobtfish.net>
    * Ship a version of FCGI::ProcManager::Constrainted which actually
      works as advertised.

0.21 2011-08-02 Tomas Doran  <bobtfish@bobtfish.net>
    * Ship a working dist.

0.20 2011-08-02 Gareth Kirwan  <gbjk@cpan.org>
    * ProcManager::Constrained: Add a new FCGI::ProcManager::Constrainted
      subclass which will restart workers safely after a certain number of
      requests, or at certain memory thresholds.
    * ProcManager: Fix start_delay causing a permanent hang.
2011-11-25 05:54:24 +00:00
hiramatsu
114dc6ff8b Update p5-Catalyst-Action-REST to 0.91.
Changes from previous:
Thu  04 Aug 2011 14:37:21 CEST - Release 0.91
  For the deserialization action class, make the HTTP methods it operates on
  configurable on a per-action level (plu, rafl).

Fri  25 Feb 2011 13:56:00 GMT - Release 0.90
  Remove test which is no longer applicable and fails in the latest Catalyst
  release.

Mon  24 Jan 2011 21:57:42 GMT - Release 0.89
  All classes are now made immutable. (Dave Rolsky)

  Added a Catalyst::Action::REST::ForBrowsers class. This will try to dispatch
  GET requests to a foo_GET_html method before trying foo_GET. (Dave Rolsky)

Tue  11 Jan 2011 23:07:00 GMT - Release 0.88
  Fix documentation for overriding Serialize and Deserialize actions
  in Catalyst::Controller::REST.

  Avoid warning with empty response bodies and new Catalyst version
  (>= 5.80030)

  Returning a body of '' is now possible - Catalyst::Action::Serialize
  acts like Catalyst::Action::RenderView (>= 0.16) by using the has_body
  predicate in Catalyst::Response (>= 5.80030)

Wed  3 Nov 2010 19:46:00 GMT - Release 0.87

  Fix Request class role when used with new Moose and other request
  class roles.
2011-11-24 16:12:11 +00:00
taca
27f642e9e2 Update ruby-rack pacakge to 1.2.4.
* September 16, 2011: Eighteenth public release 1.2.4
  * Fix a bug with MRI regex engine to prevent XSS by malformed unicode
2011-11-24 14:21:55 +00:00
hiramatsu
b6796963d9 Update p5-FCGI-Client to 0.08.
Changes from previous:
0.08
    - fixed default timeout was 10secs.
      previsously it was documented as 10secs, but it is implemented as 1sec.
      https://rt.cpan.org/Ticket/Display.html?id=71100

0.07
    - make FCGI::Client::Connection->timeout as writable(Jonas)

0.06
    - fixed large packet issue
      (trunaev++)

0.05
    - remove unused dependency to autodie, Try::Tiny.
    - fixed bad error handler in FCGI/Client/Connection.pm.
      https://rt.cpan.org/Ticket/Display.html?id=57374
      (reported by mmcleric)
2011-11-23 11:06:48 +00:00
taca
bd5945884e Update contao210-translations package to 20111120.
Update Bulgarian, Persian, LithuanianPortuguese and Russian language files.
2011-11-23 05:51:16 +00:00
taca
1d986b097a Use lang/ruby/json.mk to handle dependency to ruby-json.
Bump PKGREVISION since dependency would change with ruby193-base.
2011-11-23 05:29:52 +00:00
shattered
1e7ade0885 Revert last change per joerg@'s objections. 2011-11-22 18:40:27 +00:00
gdt
f6d5d40df8 Add option to link with python.
From reed@ and Mayuresh on pkgsrc-users.
2011-11-22 14:09:49 +00:00
hiramatsu
12c252e5c0 Update p5-HTTP-Lite to 2.3.
Changes from previous:
2.3 Tue 14 Dec 2010
	- No functional changes
	- Updated Module::Install to 1.00
	- Updated author tests and moved to xt directory
2011-11-22 03:39:10 +00:00
hiramatsu
959aaf6abe Update p5-CGI to 3.58.
Changes from previous:
Version 3.58 Nov 11th, 2011

    [DOCUMENTATION]
    - Clarify that using query_string() only has defined behavior when using the GET method. (RT#60813)

Version 3.57 Nov 9th, 2011
    [INTERNALS]
    - test failure in t/fast.t introduced in 3.56 is fixed. (Thanks to zefram and chansen).
    - Test::More requirement has been bumped to 0.98

Version 3.56 Nov 8th, 2011

    [SECURITY]
    Use public and documented FCGI.pm API in CGI::Fast
        CGI::Fast was using an FCGI API that was deprecated and removed from
        documentation more than ten years ago. Usage of this deprecated API with
        FCGI >= 0.70 or FCGI <= 0.73 introduces a security issue.
        <https://rt.cpan.org/Public/Bug/Display.html?id=68380>
        <http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2011-2766>
        (Thanks to chansen)

    [INTERNALS]
    - tmp files are now cleaned up on VMS ( RT#69210, thanks to cberry@cpan.org )
    - Fixed test failure: done_testing() added to url.t (Thanks to Ryan Jendoubi)
    - Clarify preferred bug submission location in docs, and note that Mark Stosberg
      is the current maintainer.

Version 3.55 June 3rd, 2011

    [THINGS THAT MAY BREAK YOUR CODE]
    url() was fixed to return "PATH_INFO" when it is explicitly requested
    with either the path=>1 or path_info=>1 flag.

    If your code is running under mod_rewrite (or compatible) and you are calling self_url() or
    you are calling url() and passing path_info=>1, These methods will actually be
    returning PATH_INFO now, as you have explicitly requested, or has self_url()
    has requested on your behalf.

    The PATH_INFO has been omitted in such URLs since the issue was introduced
    in the 3.12 release in December, 2005.

    This bug is so old your application may have come to depend on it or
    workaround it. Check for application before upgrading to this release.

    Examples of affected method calls:

     $q->url(-absolute => 1, -query => 1, -path_info => 1 )
     $q->url(-path=>1)
     $q->url(-full=>1,-path=>1)
     $q->url(-rewrite=>1,-path=>1)
     $q->self_url();
2011-11-22 03:38:25 +00:00
hiramatsu
e165a8478b Update p5-Plack-Middleware-Auth-Digest to 0.04.
Changes from previous:
0.04  Thu Dec 16 11:27:29 PST 2010
        - Passed $env to the callback as a second argument (blaze-x)
        - Adde a documentation on using it with Apache environment
2011-11-21 08:47:00 +00:00
hiramatsu
0105a40b87 Update p5-HTML-FillInForm to 2.1.
Changes from previous:
2.1 - August 29th, 2011

Fixed disable_fields option (#52667 Dirk Braun, Goro Fuji)

Add an option to clear absent checkboxes (#44101 Alex Kapranoff)

Fix incorrectly multiple escaped data in list context (#34081 Miika Pekkarinen)

Allow FIF to process the new <input> field  types (URL, email, and number) as
defined in the HTML5 draft and already implemented by the iPhone.
(Michael Fisher)

Allow alternate parsing class (Mark Stosberg)

mark invalid fields (Sam Tregar)
2011-11-21 08:46:39 +00:00
hiramatsu
a0b05a7d00 Update p5-Catalyst-Model-Adaptor to 0.10.
Change from previous:
0.10 23 Febuary 2011
       - Allow callers pass some args at instance time
2011-11-21 08:45:58 +00:00
shattered
ba88905807 Avoid deadlock if FETCH_USING is set to wget or curl and we're building
one of them.
2011-11-20 14:03:40 +00:00
shattered
e28a0957c6 Delint only. 2011-11-20 12:37:14 +00:00
ryoon
df170627fa Add apache-tomcat7 2011-11-19 17:45:37 +00:00
ryoon
95b3780fa8 Set LICENSE. 2011-11-19 17:13:09 +00:00
ryoon
c4260e0802 Import apache-tomcat-7.0.22 as www/apache-tomcat7
Apache Tomcat is an implementation of the Java Servlet and JavaServer Pages
technologies. The Java Servlet and JavaServer Pages specifications are
developed under the Java Community Process.

Apache Tomcat is developed in an open and participatory environment and
released under the Apache Software License. Apache Tomcat is intended to
be a collaboration of the best-of-breed developers from around the world.
We invite you to participate in this open development project.

Apache Tomcat powers numerous large-scale, mission-critical web applications
across a diverse range of industries and organizations.


I have tested some war apps and they works. But not fully tested.
2011-11-19 17:11:10 +00:00
taca
eb07e870fc Update ruby-rails3 package to 3.0.11 (version change only). 2011-11-19 15:39:56 +00:00
taca
99ba6b759e Update ruby-activeresource3 to 3.0.11 (version change only). 2011-11-19 15:37:10 +00:00
taca
9549e5854f Update ruby-actionpack3 package to 3.0.11.
*Rails 3.0.11 (unreleased)*

* Fix XSS security vulnerability in the `translate` helper method. When using
  interpolation in combination with HTML-safe translations, the interpolated
  input would not get HTML escaped. *GH 3664*

  Before:

      translate('foo_html', :something => '<script>') # => "...<script>..."

  After:

      translate('foo_html', :something => '<script>') # => "...&lt;script&gt;..."

  *Sergey Nartimov*

* Implement a workaround for a bug in ruby-1.9.3p0 where an error would be
  raised while attempting to convert a template from one encoding to another.

  Please see http://redmine.ruby-lang.org/issues/5564 for details of the bug.

  The workaround is to load all conversions into memory ahead of time, and will
  only happen if the ruby version is exactly 1.9.3p0. The hope is obviously
  that the underlying problem will be resolved in the next patchlevel release
  of 1.9.3.

* Fix assert_select_email to work on multipart and non-multipart emails as the
  method stopped working correctly in Rails 3.x due to changes in the new mail
  gem.

* Fix url_for when passed a hash to prevent additional options (eg. :host,
  :protocol) from being added to the hash after calling it.
2011-11-19 15:34:37 +00:00
hiramatsu
c856f6bbd2 Update p5-LWP-Online to 1.08.
Changes from previous:
1.08 Fri  9 Jul 2011
	- Updated to Module::Install::DSL 1.01
	- Added the Microsoft NCSI URL to the list of sites probed
2011-11-19 03:28:43 +00:00
hiramatsu
18630bbff0 Update p5-HTTP-Proxy to 0.25.
Changes from previous:
0.25 Sun Jul  3 00:28:10 CEST 2011
        [ENHANCEMENTS]
        - new Engine: HTTP::Proxy::Engine::Threaded, by Angelos Karageorgiou
        [FIXES]
        - Correctly call eod() when the response has no body
          (closed RT ticket #48310)
2011-11-19 03:28:23 +00:00
hiramatsu
b10221efb0 Update p5-HTML-FormFu to 0.09005.
Changes from previous:
0.09005 2011-09-06
    - bump version of prereq CGI to 3.37 to make all tests pass

0.09004 2011-08-26

    - skip aggregate.t on Win32
    - no functional changes to HTML::FormFu

0.09003_02 2011-08-25

    - disable Test::Aggregate on Win32

0.09003_01 2011-05-11

    - using Test::Aggregate for the test suite if installed
      tests finish now in seconds instead of minutes

0.09003 2011-05-10

    - fixed regression in Model::HashRef introduced in 0.09000

0.09002 2011-03-21

    - Hopefully fix IO::Interactive dependency properly

0.09001 2011-03-31

    - Fix IO::Interactive dependency

0.09000 2011-03-29

    - Codebase changed to use Moose - massive internal changes - any custom
      Elements, Constraints, etc will require changes.
      See advice on mailing list:
      http://www.mail-archive.com/html-formfu@lists.scsys.co.uk/msg02325.html
      Or ask for help on the mailing list:
      http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/html-formfu

    - Bug fix: was a fatal error when a value was submitted for Label element
      (code called delete_nested_hash_value instead of deleted_nested_hash_key).

    - Bug fix: RT#65728 Filter::Split shouldn't return a value if no value was
      submitted.

    - Bug fix: Element::Date now uses default() in preference to
      default_natural(). RT#65727

    - DateTime elements, minutes and seconds have new 'interval' option.

    - Now only delete submitted value if there's no other field on the form with
      the same name.

    - load_config_file(stem) now honours the include path order, to mimic TT
      behaviour.
2011-11-18 13:21:41 +00:00
mrg
563464ae90 update to bozohttpd 20111118. changes include:
o  add -P <pidfile> option, from jmmv@netbsd.org
        o  avoid crashes with http basic auth, from pooka@netbsd.org
        o  add support for REDIRECT_STATUS variable, from tls@netbsd.org
        o  support .mp4 files in the default map
        o  directory indexes with files with : are now displayed properly, from
           reed@netbsd.org
        o  allow -I option to be useful in non-inetd mode as well
2011-11-18 09:37:21 +00:00
hiramatsu
1ffdd3ca5f Update p5-Continuit to 1.5.
Changes from previous:
Version 1.5 (released 2011.09.17)
  * Fix PSGI docroot
  * Documentation improvements

Version 1.4 (released 2011.03.20)
  * Make PSGI adapter be non-blocking
  * Also make it use the psgi.streaming interface
  * Add yield to Adapt::HttpDaemon's print (I thought it was there before?)
  * Add Coro thread descriptions for better debugging

Version 1.3 (released 2010.11.22)
  * Stupid version number issue

Version 1.2.0 (released 2010.11.22)
  * Refactor PSGI adaptor (scrottie)
  * Random documentation updates
2011-11-18 00:15:56 +00:00
hiramatsu
d169eb1383 Update p5-Catalyst-Action-RenderView to 0.16.
Changes from previous:
0.16 2011-01-05 19:28:00 GMT
    - Fix bug accidentally introduced in the last version with response
      3xx statuses.

0.15 2011-01-04 14:19:36 CET
    - Don't delegate to a view if the response body is set to `undef'.
    - Make sure a Test::More with done_testing support is available.
2011-11-18 00:14:42 +00:00
hiramatsu
449662d8fe Update p5-HTML-Selector-XPath to 0.11.
Changes from previous:
0.11 Sun Oct 23 21:45:00 GMT 2011
      - Add test to MANIFEST so it also ships

0.10 Sun Oct 23 21:10:53 GMT 2011
      - Identifiers are now parsed closer to the CSS3 spec
      - Certain invalid attribute selectors now raise an exception

0.09 Sun Oct 16 13:07:09 GMT 2011
      - Fix bug in attribute-value-substring selectors where
        the CSS attributes were wrongly assumed to be
        specified with @href (Aaron Crane)
      - Make test suite less verbose (Aaron Crane)

0.08 Sun Sep 18 12:31:31 PDT 2011
      - Fix bug when combining selectors (p , q). Whitespace created invalid
        XPath expressions there. (Corion)
      - Fix bug when combining :root selectors as the second selector.
        The first selector was modified. (Corion)
      - :root now acts relative to the given "root" option,
        not the document root (Corion)
      - More css3 selectors support (Corion)

0.07 Mon Mar  7 17:07:39 PST 2011
      - Added a COPYRIGHT section

0.06 Thu Feb 17 13:54:45 PST 2011
      - Add CSS3 "=$" operator (Corion)
      - Add CSS3 "=^" operator (Corion)
      - Add complex subexpressions for :not() (Corion)
      - Add :empty selector (Corion)
      - Support 'root' parameters to to_xpath (JZOBEL, David Wheeler, Corion)

0.05 Thu Feb 17 09:08:06 PST 2011
      - Add CSS3 "=*" operator for real substring matching (Corion)
      - Add CSS3 ":first-of-type" and ":nth-of-type()" pseudo-attributes (Corion)
        (but if you're using them, you're likely better off using XPath already)
      - Add CSS3 "~" operator (Corion)
      - Adopt tests for "~" operator from RT #61990, by Aaron Crane (Corion)
      - Add :contains() selector (only immediate child nodes) (Corion)
      - Support implicit selectors like "> em" (translated to "* > em") (Corion)
        Fixes RT #50131 (Reported by David Wheeler)
      - Fix more implicit universal selectors (fixes RT #49982)
        :lang(c) as a bare selector works now (Corion, Aaron Crane)
2011-11-17 14:15:13 +00:00
hiramatsu
0308c748cd Update p5-Plack-Middleware-File-Sass to 0.03.
Changes from previous:
0.03  Sun Feb 13 19:40:10 PST 2011
        - Use 'sass' gem executable if installed.

0.02  Fri Feb 11 19:01:42 PST 2011
        - Supported SCSS with the new option 'syntax'
2011-11-17 14:14:39 +00:00
taca
8738d02607 Update MASTER_SITES; SF.net project name has updated. 2011-11-17 11:17:39 +00:00
hiramatsu
e28e64aee3 Update p5-HTTP-Parser-XS to 0.14.
Changes from previous:
0.14
	- do not include '#' and the following characters in URI in PATH_INFO or QUERY_STRING

0.13
	- fix compile error on GCC < 3 (RT #63074)

0.12
	- fix undeclared dependency on URI::Escape (RT #62716)
	- fix parsing of protocol version in the pure perl impl to exactly match that of XS

0.11
	- fix build error due to the use of Module::Install::ReadmeMarkdownFromPod (RT #62589)

0.10
	- support for HTTP response parsing (by gfx,mala,tokuhirom)
2011-11-17 09:11:04 +00:00
hiramatsu
c6993da0c8 Update p5-HTTP-Parser to 0.06.
Change from previous:
0.06  2011-03-06
  - fix by frodwith for rt.cpan.org #66298 (path string parsing)
2011-11-17 09:10:28 +00:00
hiramatsu
dae7a1cd55 Updated to p5-HTML-StickyQuery to 0.13.
Changes from previous:
0.13 2010-12-03  IKEBE Tomohiro  <ikebe@livedoor.jp>

        * use parent.
	* modern layout.
2011-11-17 08:04:22 +00:00
hiramatsu
608e66bf41 Update p5-Net-FastCGI to 0.13.
Changes from previous:
0.13 2011-02-12
   - No functional changes in this release
   - Added eg/runfcgi.pl, contributed by Paul Evans (LeoNerd)
   - Added eg/server.pl
2011-11-17 07:58:01 +00:00
jnemeth
45ac8ec680 add and enable ap22-limitipconn 2011-11-17 04:29:58 +00:00
drochner
9559078505 update to 0.4.2
changes:
-bookmark dialog crashes are fixed
-faster, base64-based CSS support
-Speed dial received a makeover
-Cookies are stored in an sqlite3 database
-more of subtle tweaks and improvements
2011-11-16 19:56:36 +00:00
hiramatsu
e0a4816a28 Update p5-HTTP-Body to 1.14.
Changes from previous:
1.14    Tue 26 Oct 2011 19:42:00 CET
        - removed benchmark test data and benchmark script for release (Torsten Raudssus [GETTY])

1.12    Sat 19 Mar 2011 19:05:17 CET
        - Fixed the t/08 test

1.11    Tue 26 Oct 2010 14:10:00 UTC
        - Added param_order capability (Torsten Raudssus [GETTY])

1.10    Fri 8 Oct 2010 15:50:55 UTC
        - Patch for test failure ( thanks KENTNL/MITHALDU! )
2011-11-16 08:05:53 +00:00
hiramatsu
9a0b00a7d5 Update p5-Plack-App-Proxy to 0.19.
Changes from previous:
0.19
        - Add pluggable backends, since AnyEvent seems to be flaky on
          some systems. (doy)

0.18    02/17/2010
        - Fixes for RewriteLocation when used on a mounted proxy
          (hiratara, rbuels)
        - Ignore $ENV{http_proxy}
        - Include reason for failure in 502 response
        - Disabled persistent HTTP connection option in AnyEvent::HTTP

0.17    01/19/2010
        - Bump version to fix some CPAN issues

0.16    01/12/2010
        - Rewrite proxy code to use AnyEvent::HTTP's on_body callback.
          This gets chunked and gzipped responses working.
2011-11-16 08:05:28 +00:00