./www/ruby-actionpack, Two-step approach to web response generation

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ] [ Add to tracker ]


Branch: pkgsrc-2009Q3, Version: 2.3.5, Package name: ruby18-actionpack-2.3.5, Maintainer: minskim

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.


Required to run:
[devel/ruby-activesupport] [misc/rubygems] [lang/ruby18-base]

Required to build:
[devel/rake] [misc/rubygems]

Master sites:

SHA1: 6c46dbcbde1840202ebd2bcfa690d53047e47c9e
RMD160: b9b9f1451ecdf050ca9a376e6fde020e7aebdb61
Filesize: 720.5 KB

Version history: (Expand)


CVS history: (Expand)


   2009-12-03 00:17:10 by Matthias Scheler | Files touched by this commit (17) | Package updated
Log message:
Pullup ticket #2941 - requested by minskim
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