Commit graph

10795 commits

Author SHA1 Message Date
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