Commit graph

16 commits

Author SHA1 Message Date
jlam
49044b1ec2 Install as a gem using the pkgsrc rubygem.mk framework instead of
directly into site_ruby.
2008-04-04 15:30:00 +00:00
minskim
cdd6ce7240 Update ruby-actionpack to 2.0.2.
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
2008-02-09 06:23:29 +00:00
minskim
0a20710c88 Update ruby-actionpack to 1.13.6.
Changes:
* Correct Broken Fix for session_fixation attacks
* Ensure that cookies handle array values correctly.  Closes #9937 [queso]
2007-12-10 05:47:02 +00:00
minskim
02e3a184bc Update ruby-actionpack to 1.13.5.
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 => :named_route shouldn't be
  deprecated. #7525 [Justin French]
2007-10-16 03:17:31 +00:00
minskim
af068e02eb Update ruby-actionpack to 1.13.3.
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.
2007-03-17 11:10:16 +00:00
minskim
f539b0cd6a Update ruby-actionpack to 1.13.2.
Changes:
* Add much-needed html-scanner tests.  Fixed CDATA parsing bug. [Rick]
* improve error message for Routing for named routes. [Rob Sanheim]
* Added enhanced docs to routing assertions. [Rob Sanheim]
* fix form_for example in ActionController::Resources documentation. [gnarg]
* Add singleton resources from trunk [Rick Olson]
* TestSession supports indifferent access so session['foo'] == session[:foo]
  in your tests. #7372 [julik, jean.helou]
* select :multiple => true suffixes the attribute name with [] unless already
  suffixed. #6977 [nik.kakelin, ben, julik]
* Improve routes documentation.  #7095 [zackchandler]
* Resource member routes require :id, eliminating the ambiguous overlap with
  collection routes. #7229 [dkubb]
* Fixed NumberHelper#number_with_delimiter to use "." always for splitting the
  original number, not the delimiter parameter #7389 [ceefour]
* Autolinking recognizes trailing and embedded . , : ;  #7354 [Jarkko Laine]
* Make TextHelper::auto_link recognize URLs with colons in path correctly,
  fixes #7268. [imajes]
* Improved auto_link to match more valid urls correctly [Tobias Luetke]
2007-02-18 23:29:06 +00:00
minskim
80911ce74c Update ruby-actionpack to 1.13.1, required by rails-1.2.1.
Too many changes since 1.12.5.  See ${RUBY_DOCDIR}/actionpack/CHANGELOG.
2007-01-28 05:39:02 +00:00
minskim
fbe48239dc Use RUBY_SITELIBDIR. 2006-10-09 23:21:41 +00:00
minskim
0d52281032 Update ruby-actionpack to 1.12.5. This version includes a security fix
for path string handling.  See ${RUBY_DOCDIR}/actionpack/CHANGELOG for
the complete list.
2006-10-09 22:48:10 +00:00
taca
54b3277281 Sort PLIST. 2006-09-07 15:55:50 +00:00
minskim
4aacd2f915 Fix check-interpreter errors and warnings. 2006-06-07 21:28:39 +00:00
taca
dccd827fac Stop handling DIST_SUBDIR default for Ruby based packages.
Second, update distinfo and/or stop using USE_RUBY_DIST_SUBDIR in Makefiles.
2006-01-03 14:25:49 +00:00
joerg
51f7c31aec Fix patch (the original file has no newline at the end, breaking the
BSD patch).
2005-12-30 13:13:40 +00:00
taca
0d227a9c7b Update www/ruby18-actionpack package to 1.10.1.
Changes from 1.9.1 are many, please see ${RUBY_DOCDIR}/actionpack/CHANGELOG.

pkgsrc change is installing example files, too.
2005-11-02 14:48:39 +00:00
taca
2361223994 Update ruby-actionpack package to 1.9.1
Changes from 1.7.0 are too huge, please see web page:
http://ap.rubyonrails.com/files/CHANGELOG.html.
2005-09-04 14:05:44 +00:00
minskim
3583d2c2be Import ruby-actionpack.
Action Pack splits the response to a web request into a controller
part (performing the logic) and a view part (rendering a template).
This two-step approach is known as an action, which will normally
create, read, update, or delete (CRUD for short) some sort of model
part (often backed by a database) before choosing either to render a
template or redirecting to another action.

Action Pack implements these actions as public methods on Action
Controllers and uses Action Views to implement the template rendering.
Action Controllers are then responsible for handling all the actions
relating to a certain part of an application.  This grouping usually
consists of actions for lists and for CRUDs revolving around a single
(or a few) model objects.  So ContactController would be responsible
for listing contacts, creating, deleting, and updating contacts.  A
WeblogController could be responsible for both posts and comments.

Action View templates are written using embedded Ruby in tags mingled
in with the HTML.  To avoid cluttering the templates with code, a
bunch of helper classes provide common behavior for forms, dates, and
strings.  And it's easy to add specific helpers to keep the separation
as the application evolves.
2005-04-10 04:11:28 +00:00