<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pkgsrc/www/ruby-actionpack/PLIST, branch pkgsrc_2009Q3</title>
<subtitle>[no description]</subtitle>
<id>https://git.osdyson.ru/mirror/pkgsrc/atom?h=pkgsrc_2009Q3</id>
<link rel='self' href='https://git.osdyson.ru/mirror/pkgsrc/atom?h=pkgsrc_2009Q3'/>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/'/>
<updated>2009-12-02T23:17:09Z</updated>
<entry>
<title>Pullup ticket #2941 - requested by minskim</title>
<updated>2009-12-02T23:17:09Z</updated>
<author>
<name>tron</name>
<email>tron</email>
</author>
<published>2009-12-02T23:17:09Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=3b345f6402d72bf9049679637dfefd0cf1b2e56c'/>
<id>urn:sha1:3b345f6402d72bf9049679637dfefd0cf1b2e56c</id>
<content type='text'>
databases/ruby-activerecord: security update
devel/ruby-activesupport: security update
mail/ruby-actionmailer: security update
www/rails: security update
www/ruby-actionpack: security update
www/ruby-activeresource security update

Revisions pulled up:
- databases/ruby-activerecord/Makefile		1.17
- databases/ruby-activerecord/distinfo		1.17
- devel/ruby-activesupport/Makefile		1.20
- devel/ruby-activesupport/PLIST		1.16
- devel/ruby-activesupport/distinfo		1.17
- mail/ruby-actionmailer/Makefile		1.16
- mail/ruby-actionmailer/distinfo		1.17
- www/rails/Makefile				1.17
- www/rails/distinfo				1.13
- www/ruby-actionpack/Makefile			1.18
- www/ruby-actionpack/PLIST			1.18
- www/ruby-actionpack/distinfo			1.19
- www/ruby-activeresource/Makefile		1.7
- www/ruby-activeresource/distinfo		1.7
---
Module Name:    pkgsrc
Committed By:   minskim
Date:           Tue Dec  1 23:24:24 UTC 2009

Modified Files:
        pkgsrc/databases/ruby-activerecord: Makefile distinfo
        pkgsrc/devel/ruby-activesupport: Makefile PLIST distinfo
        pkgsrc/mail/ruby-actionmailer: Makefile distinfo
        pkgsrc/www/rails: Makefile distinfo
        pkgsrc/www/ruby-actionpack: Makefile PLIST distinfo
        pkgsrc/www/ruby-activeresource: Makefile distinfo

Log Message:
Update rails packages to 2.3.5.  This fixes a cross-site scripting
vulnerability in ruby-actionpack.

Major changes:
- Improved compatibility with Ruby 1.9
- RailsXss plugin availability
- Fixes for the Nokogiri backend for XmlMini
</content>
</entry>
<entry>
<title>Update rails packages to 2.3.4.</title>
<updated>2009-09-12T22:14:16Z</updated>
<author>
<name>minskim</name>
<email>minskim</email>
</author>
<published>2009-09-12T22:14:16Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=4e42bfdccdf61a6f02f83adeed5afb935b9bfcaa'/>
<id>urn:sha1:4e42bfdccdf61a6f02f83adeed5afb935b9bfcaa</id>
<content type='text'>
Changes since 2.3.2:
* I18n support for plugins.
</content>
</entry>
<entry>
<title>Convert @exec/@unexec to @pkgdir or drop it.</title>
<updated>2009-06-14T22:00:14Z</updated>
<author>
<name>joerg</name>
<email>joerg</email>
</author>
<published>2009-06-14T22:00:14Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=71a32296ba11763abadcde92e96627deb1c72b1d'/>
<id>urn:sha1:71a32296ba11763abadcde92e96627deb1c72b1d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update rails packages to 2.3.1.</title>
<updated>2009-04-07T17:13:26Z</updated>
<author>
<name>minskim</name>
<email>minskim</email>
</author>
<published>2009-04-07T17:13:26Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=fcfd0a04c7bff5b30b3cb8f4598f59c6c346a7ed'/>
<id>urn:sha1:fcfd0a04c7bff5b30b3cb8f4598f59c6c346a7ed</id>
<content type='text'>
Changes since 2.1.1:
* Allow metal to live in plugins #2045 [Matthew Rudy]
* Added metal [Josh Peek]
* Remove script/performance/request in favour of the performance
  integration tests. [Pratik Naik]
* Add a rake task to apply a template to an existing application :
  rake rails:template LOCATION=~/template.rb [Pratik Naik]
* Add "-m/--template" option to Rails generator to apply a template to
  the generated application. [Jeremy McAnally]
* Extracted the process scripts (inspector, reaper, spawner) into the
  plugin irs_process_scripts [David Heinemeier Hansson]
* Changed Rails.root to return a Pathname object
* Added view path support for engines [David Heinemeier Hansson]
* Added that config/routes.rb files in engine plugins are
  automatically loaded (and reloaded when they change in dev mode)
  [David Heinemeier Hansson]
* Added app/[models|controllers|helpers] to the load path for plugins
  that has an app directory (go engines ;)) [David Heinemeier Hansson]
* Add config.preload_frameworks to load all frameworks at
  startup. Default to false so Rails autoloads itself as it's
  used. Turn this on for Passenger and JRuby. Also turned on by
  config.threadsafe!  [Jeremy Kemper]
* Add a rake task to generate dispatchers : rake
  rails:generate_dispatchers [Pratik Naik]
* "rails &lt;app&gt;" will not generate public/dispatch.cgi/fcgi/rb files by
  default now. Please use "--with-dispatchers" option if you need
  them. [Yaroslav Markin, Pratik Naik]
* Added rake rails:update:application_controller to renamed
  application.rb to application_controller.rb -- included in rake
  rails:update so upgrading to 2.3 will automatically trigger it #1439
  [kastner]
* Added Rails.backtrace_cleaner as an accessor for the
  Rails::BacktraceCleaner instance used by the framework to cut down
  on backtrace noise and config/initializers/backtrace_silencers.rb to
  add your own (or turn them all off) [David Heinemeier Hansson]
* Switch from Test::Unit::TestCase to ActiveSupport::TestCase.  [Jeremy Kemper]
* Added config.i18n settings gatherer to config/environment,
  auto-loading of all locales in config/locales/*.rb,yml, and
  config/locales/en.yml as a sample locale [David Heinemeier Hansson]
* BACKWARDS INCOMPATIBLE: Renamed application.rb to
  application_controller.rb and removed all the special casing that
  was in place to support the former. You must do this rename in your
  own application when you upgrade to this version [David Heinemeier
  Hansson]
* Fixed plugin generator so that generated unit tests would subclass
  ActiveSupport::TestCase, also introduced a helper script to reduce
  the needed require statements #1137 [Mathias Meyer]
* Update Prototype to 1.6.0.3 [sam]
* Fixed that sqlite would report "db/development.sqlite3 already
  exists" whether true or not on db:create #614 [Antonio Cangiano]
* Added config.threadsafe! to toggle allow concurrency settings and
  disable the dependency loader [Josh Peek]
* Turn cache_classes on by default [Josh Peek]
* Added configurable eager load paths. Defaults to app/models,
  app/controllers, and app/helpers [Josh Peek]
* Introduce simple internationalization support.  [Ruby i18n team]
* Make script/plugin install &lt;plugin&gt; -r &lt;revision&gt; option work with
  git based plugins. #257. [Tim Pope Jakub Kuźma]. Example:
* Added Rails.initialized? flag [Josh Peek]
* Make rake test:uncommitted work with Git. [Tim Pope]
* Added Thin support to script/server.  #488 [Bob Klosinski]
* Fix script/about in production mode.  #370 [Cheah Chu Yeow, Xavier
  Noria, David Krmpotic]
* Add the gem load paths before the framework is loaded, so certain
  gems like RedCloth and BlueCloth can be frozen.
* Fix discrepancies with loading rails/init.rb from gems.
* Plugins check for the gem init path (rails/init.rb) before the
  standard plugin init path (init.rb) [Jacek Becela]
* Changed all generated tests to use the test/do declaration style
  [David Heinemeier Hansson]
* Wrapped Rails.env in StringInquirer so you can do
  Rails.env.development? [David Heinemeier Hansson]
* Fixed that RailsInfoController wasn't considering all requests local
  in development mode (Edgard Castro) [#310 state:resolved]
</content>
</entry>
<entry>
<title>Update ruby-actionpack to 2.1.1.</title>
<updated>2008-09-15T05:50:42Z</updated>
<author>
<name>minskim</name>
<email>minskim</email>
</author>
<published>2008-09-15T05:50:42Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=51a3001c0931627d82f983a82c6be83354f4b335'/>
<id>urn:sha1:51a3001c0931627d82f983a82c6be83354f4b335</id>
<content type='text'>
Changes:

* All 2xx requests are considered successful [Josh Peek]

* Deprecate the limited follow_redirect in functional tests.  If you
  wish to follow redirects, use integration tests. [Michael Koziarski]

* Fixed that AssetTagHelper#compute_public_path shouldn't cache the
  asset_host along with the source or per-request proc's won't run
  [DHH]

* Deprecate define_javascript_functions, javascript_include_tag and
  friends are much better [Michael Koziarski]

* Fix polymorphic_url with singleton resources.  #461 [Tammer Saleh]

* Deprecate ActionView::Base.erb_variable. Use the concat helper
  method instead of appending to it directly.  [Jeremy Kemper]

* Fixed Request#remote_ip to only raise hell if the HTTP_CLIENT_IP and
  HTTP_X_FORWARDED_FOR doesn't match (not just if they're both
  present) [Mark Imbriaco, Bradford Folkens]
</content>
</entry>
<entry>
<title>Update ruby-actionpack to 2.1.0.</title>
<updated>2008-06-20T04:30:33Z</updated>
<author>
<name>minskim</name>
<email>minskim</email>
</author>
<published>2008-06-20T04:30:33Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=879d9e1162100e444ff68e1094e2fc2c03950b66'/>
<id>urn:sha1:879d9e1162100e444ff68e1094e2fc2c03950b66</id>
<content type='text'>
Too many changes since 2.0.2.  See CHANGELOG for the complete list.
</content>
</entry>
<entry>
<title>Install as a gem using the pkgsrc rubygem.mk framework instead of</title>
<updated>2008-04-04T15:30:00Z</updated>
<author>
<name>jlam</name>
<email>jlam</email>
</author>
<published>2008-04-04T15:30:00Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=bb91d465009f79ffc1ee660432fbd12aad691235'/>
<id>urn:sha1:bb91d465009f79ffc1ee660432fbd12aad691235</id>
<content type='text'>
directly into site_ruby.
</content>
</entry>
<entry>
<title>Update ruby-actionpack to 2.0.2.</title>
<updated>2008-02-09T06:23:29Z</updated>
<author>
<name>minskim</name>
<email>minskim</email>
</author>
<published>2008-02-09T06:23:29Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=1c092755cbc355806af85565a437a319b24de2e1'/>
<id>urn:sha1:1c092755cbc355806af85565a437a319b24de2e1</id>
<content type='text'>
There have been too many changes.  Please see CHANGELOG for the complete list:

http://dev.rubyonrails.org/browser/tags/rel_2-0-2/actionpack/CHANGELOG
</content>
</entry>
<entry>
<title>Update ruby-actionpack to 1.13.5.</title>
<updated>2007-10-16T03:17:31Z</updated>
<author>
<name>minskim</name>
<email>minskim</email>
</author>
<published>2007-10-16T03:17:31Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=7d6403f1737a52a8922893aaeda40b1c5febe525'/>
<id>urn:sha1:7d6403f1737a52a8922893aaeda40b1c5febe525</id>
<content type='text'>
Changes:
* Backport: allow array and hash query parameters. Array route parameters are
  converted/to/a/path as before. #6765, #7047, #7462 [bgipsy, Jeremy McAnally,
  Dan Kubb, brendan, Diego Algorta Casamayou]
* Fix in place editor's setter action with non-string fields.  #7418 [Andreas]
* Only accept session ids from cookies, prevents session fixation attacks.
* Change the resource seperator from ; to / change the generated routes to use
  the new-style named routes. e.g. new_group_user_path(@group) instead of
  group_new_user_path(@group). [pixeltrix]
* Integration tests: introduce methods for other HTTP methods. #6353 [caboose]
* Improve performance of action caching. Closes #8231 [skaes]
* Fix errors with around_filters which do not yield, restore 1.1 behaviour
  with after filters. Closes #8891 [skaes]
* Allow you to delete cookies with options. Closes #3685
* Deprecate pagination. Install the classic_pagination plugin for forward
  compatibility, or move to the superior will_paginate plugin. #8157
* Fix filtered parameter logging with nil parameter values.  #8422 [choonkeat]
* Integration tests: alias xhr to xml_http_request and add a request_method
  argument instead of always using POST. #7124
* Document caches_action.  #5419 [Jarkko Laine]
* observe_form always sends the serialized form. #5271
* Update UrlWriter to accept :anchor parameter. Closes #6771. [octopod]
* Replace the current block/continuation filter chain handling by an
  implementation based on a simple loop. Closes #8226 [Stefan Kaes]
* Return the string representation from an Xml Builder when rendering a
  partial. #5044 [tpope]
* Cleaned up, corrected, and mildly expanded ActionPack documentation. Closes
  #7190 [jeremymcanally]
* Small collection of ActionController documentation cleanups. Closes #7319
* Performance: patch cgi/session/pstore to require digest/md5 once rather than
  per #initialize. #7583 [Stefan Kaes]
* Deprecation: verification with :redirect_to =&gt; :named_route shouldn't be
  deprecated. #7525 [Justin French]
</content>
</entry>
<entry>
<title>Update ruby-actionpack to 1.13.3.</title>
<updated>2007-03-17T11:10:16Z</updated>
<author>
<name>minskim</name>
<email>minskim</email>
</author>
<published>2007-03-17T11:10:16Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=ecf3fe658875159dc27827d6857df289d4b80a37'/>
<id>urn:sha1:ecf3fe658875159dc27827d6857df289d4b80a37</id>
<content type='text'>
Changes:
* Apply [5709] to stable.
* session_enabled? works with session :off.
* Performance: patch cgi/session to require digest/md5 once rather than per
  #cre ate_new_id.
</content>
</entry>
</feed>
