Commit Graph

13150 Commits

Author SHA1 Message Date
José Valim
7fe4ca3253 Add a test for default_url_options in AM. 2010-02-21 13:19:21 +01:00
Prem Sichanugrist
8f97e9d19a Add validators reflection so you can do 'Person.validators' and 'Person.validators_on(:name)'.
Signed-off-by: José Valim <jose.valim@gmail.com>
2010-02-21 12:37:46 +01:00
José Valim
250c809246 Require persisted? in ActiveModel::Lint and remove new_record? and destroyed? methods. ActionPack does not care if the resource is new or if it was destroyed, it cares only if it's persisted somewhere or not. 2010-02-21 11:12:14 +01:00
José Valim
9dd67fce25 Add to_key and to_param methods to ActiveModel::Conversion. 2010-02-21 09:08:59 +01:00
snusnu
f81c6bc040 AMo #key is now #to_key and CI is probably happy
Obviously #key is a too common name to be included
in the AMo interface, #to_key fits better and also
relates nicely to #to_param. Thx wycats, koz and
josevalim for the suggestion.

AR's #to_key implementation now takes customized
primary keys into account and there's a testcase
for that too.

The #to_param AMo lint makes no assumptions on how
the method behaves in the presence of composite
primary keys. It leaves the decision wether to
provide a default, or to raise and thus signal to
the user that implementing this method will need
his special attention, up to the implementers. All
AMo cares about is that #to_param is implemented
and returns nil in case of a new_record?.

The default CompliantObject used in lint_test
provides a naive default implementation that just
joins all key attributes with '-'.

The #to_key default implementation in lint_test's
CompliantObject now returns [id] instead of [1].
This was previously causing the (wrong) tests I
added for AR's #to_key implementation to pass. The
#to_key tests added with this patch should be
better.

The CI failure was caused by my lack of knowledge
about the test:isolated task. The tests for the
record_identifier code in action_controller are
using fake non AR models and I forgot to stub the
#to_key method over there. This issue didn't come
up when running the test task, only test:isolated
revealed it. This patch fixes that.

All tests pass isolated or not, well, apart from
one previously unpended test in action_controller
that is unrelated to my patch.
2010-02-20 20:17:29 -08:00
José Valim
fed72b5842 Rename engines_load_path to railties_load_path. 2010-02-20 15:46:55 +01:00
snusnu
9acd686753 Adds #key and #to_param to the AMo interface
This commit introduces two new methods that every
AMo compliant object must implement. Below are the
default implementations along with the implied
interface contract.

  # Returns an Enumerable of all (primary) key
  # attributes or nil if new_record? is true
  def key
    new_record? ? nil : [1]
  end

  # Returns a string representing the object's key
  # suitable for use in URLs, or nil if new_record?
  # is true
  def to_param
    key ? key.first.to_s : nil
  end

1) The #key method

Previously rails' record_identifier code, which is
used in the #dom_id helper, relied on calling #id
on the record to provide a reasonable DOM id. Now
with rails3 being all ORM agnostic, it's not safe
anymore to assume that every record ever will have
an #id as its primary key attribute.

Having a #key method available on every AMo object
means that #dom_id can be implemented using

  record.to_model.key # instead of
  record.id

Using this we're able to take composite primary
keys into account (e.g. available in datamapper)
by implementing #dom_id using a newly added

  record_key_for_dom_id(record)

method. The user can overwrite this method to
provide customized versions of the object's key
used in #dom_id.

Also, dealing with more complex keys that can
contain arbitrary strings, means that we need to
make sure that we only provide DOM ids that are
valid according to the spec. For this reason, this
patch sends the key provided through a newly added

  sanitize_dom_id(candidate_id)

method, that makes sure we only produce valid HTML

The reason to not just add #dom_id to the AMo
interface was that it feels like providing a DOM
id should not be a model concern. Adding #dom_id
to the AMo interface would force these concern on
the model, while it's better left to be implemented
in a helper.

Now one could say the same is true for #to_param,
and actually I think that it doesn't really fit
into the model either, but it's used in AR and it's
a main part of integrating into the rails router.

This is different from #dom_id which is only used
in view helpers and can be implemented on top of a
semantically more meaningful method like #key.

2) The #to_param method

Since the rails router relies on #to_param to be
present, AR::Base implements it and returns the
id by default, allowing the user to overwrite the
method if desired.

Now with different ORMs integrating into rails,
every ORM railtie needs to implement it's own
#to_param implementation while already providing
code to be AMo compliant. Since the whole point of
AMo compliance seems to be to integrate any ORM
seamlessly into rails, it seems fair that all we
really need to do as another ORM, is to be AMo
compliant. By including #to_param into the official
interface, we can make sure that this code can be
centralized in the various AMo compliance layers,
and not be added separately by every ORM railtie.

3) All specs pass
2010-02-19 23:31:25 -08:00
Carlhuda
a3c6ad7d5e Fix a bunch of pending tests by providing an introspection mode for the Response object that does up-front parsing of the headers to populate things like @etag 2010-02-19 19:19:20 -08:00
Yehuda Katz
bf8898b49b Revert "i18n translate with arrays issue solved"
This reverts commit e7055e5b084f5e29e9cf8dab8d56943da65ccb43.
2010-02-19 15:05:46 -08:00
Santiago Pastorino
e7055e5b08 i18n translate with arrays issue solved 2010-02-19 13:59:15 -08:00
Santiago Pastorino
e4b910f6a3 require publicize_conversion_method to ensure to_date and to_datetime became public before redefining them (avoid warnings) 2010-02-19 13:36:34 -08:00
Dirkjan Bussink
a0a01d0c98 Remove empty line and trailing hash, breaks documentation generation
Signed-off-by: Yehuda Katz <yehudakatz@YK.local>
2010-02-19 13:10:01 -08:00
Santiago Pastorino
7ad2c5c06f warning: instance variable @_const_missing not initialized fixed 2010-02-19 11:35:03 -08:00
Yehuda Katz
2f821a0a98 Fix test ordering bug related to introducing masked Name class 2010-02-19 10:31:51 -08:00
Yehuda Katz
2f98032fc9 Fix a problem where nil was appearing in the list 2010-02-19 10:12:04 -08:00
Joshua Peek
7d7f9ccfdf Reinstate pending tests that were supposed to be fixed before the
beta.

Shout louder this time so they actually get fixed.
2010-02-19 09:34:22 -06:00
José Valim
be35a1510d Allow to choose the template path and template name used in implicit rendering with ActionMailer. 2010-02-19 10:51:17 +01:00
José Valim
e49f94d71c Revert behavior from a5684dfa3c16472bfa5d5d861ba78cb6dbadcb59 and ensure after_initializer is executed after to_prepare callbacks. 2010-02-19 08:15:49 +01:00
Santiago Pastorino
e2806929ec ruby 1.9 array.to_s returns a string representing an escaped array
Signed-off-by: Yehuda Katz <yehudakatz@YK.local>
2010-02-18 17:11:32 -08:00
Yehuda Katz
e6ce856462 Git fail 2010-02-18 16:48:28 -08:00
Santiago Pastorino
af05420d6b i18n translate with arrays issue solved
Signed-off-by: Yehuda Katz <yehudakatz@YK.local>
2010-02-18 16:41:00 -08:00
Carl Lerche
ae8c384e2c Avoid calling triggering const_missing if const_missing is private when doing constantize 2010-02-18 16:29:32 -08:00
Yehuda Katz
98c299fba5 Don't constantize possible module names when looking for new constants unless they exist 2010-02-18 14:04:26 -08:00
Yehuda Katz
8a1f057a26 Update Renderer 2010-02-18 14:04:26 -08:00
Jeremy Kemper
cc852e2580 Use FileUtils.mv instead of rename to copy in case of cross-device links 2010-02-18 10:48:01 -08:00
José Valim
a5684dfa3c Ensure config.after_initializer is executed before building the middleware stack. 2010-02-18 18:56:11 +01:00
Aaron
1477a6101d Fix called_from under Windows so engines works properly
Signed-off-by: José Valim <jose.valim@gmail.com>
2010-02-18 18:36:55 +01:00
José Valim
7189e3c881 Rename router internal option :namespace to :controller_namespace which is its real purpose. 2010-02-17 18:43:42 +01:00
José Valim
d0454e5766 Add readme as method in Rails::Generators::Actions (as we had in 2.3) 2010-02-17 18:43:40 +01:00
Carl Lerche
e195b48f21 Have CI use the current version of bundler 2010-02-16 17:15:56 -08:00
José Valim
3f948a0e29 Merge master. 2010-02-17 00:48:04 +01:00
Kyle Maxwell
d4e008fd0f Invalid namespace on app generation raises an error
Signed-off-by: José Valim <jose.valim@gmail.com>
2010-02-17 00:38:30 +01:00
José Valim
23fd1f1280 Show deprecation message for rails/init.rb in plugins. 2010-02-17 00:18:12 +01:00
José Valim
e8ef12e39d Make Railties tests green again. 2010-02-17 00:14:49 +01:00
Yehuda Katz
762088a0ef Clear the attribute after done 2010-02-16 15:00:10 -08:00
José Valim
b1edd09662 Ensure render :text => resource first tries to invoke :to_text on it 2010-02-16 23:26:29 +01:00
José Valim
47a236e291 AD::TestProcess relies on request.flash, so let's load it. 2010-02-16 22:54:56 +01:00
José Valim
19787e6259 Should allow symbols in :only and :except in routes. 2010-02-16 22:39:08 +01:00
José Valim
72cb0bf414 Do not swallow controller loading errors unless required. 2010-02-16 22:39:07 +01:00
José Valim
01cd9d66ed Subscriber should not explode if a non namespaced instrumentation is given. 2010-02-16 22:39:07 +01:00
Prem Sichanugrist
f0523f72b4 Rename Rails::Subscriber to Rails::LogSubscriber 2010-02-16 22:36:15 +01:00
Yehuda Katz
ac956c4aee Update AP to start locking down a public API. This work is parallel to some docs I'm working on. 2010-02-16 10:45:59 -08:00
Xavier Noria
2b323b4d03 adds rdoc dependency to generate the API
Signed-off-by: Yehuda Katz <yehudakatz@YK.local>
2010-02-15 10:53:41 -08:00
Joshua Peek
3cecc44cb9 rack-mount 0.5 support 2010-02-15 11:16:56 -06:00
Joshua Peek
546e319a5f CI has a bunch of duplicate load paths 2010-02-15 10:53:44 -06:00
Joshua Peek
4419497e40 Make sure AS test env doesn't have duplicate libs in load path 2010-02-15 10:38:39 -06:00
Joshua Peek
eec2d301d4 Fix test load paths for those not using bundler 2010-02-15 10:20:11 -06:00
Xavier Noria
7cff54f5d3 name.blank? -> anonymous?
Signed-off-by: Yehuda Katz <yehudakatz@YK.local>
2010-02-14 13:09:39 -08:00
Yehuda Katz
38eb2f1454 Right. 2010-02-14 12:13:37 -08:00
Santiago Pastorino and José Ignacio Costa
98a5bf8ff2 Explicit html_escape removed when not needed
Signed-off-by: Yehuda Katz <yehudakatz@YK.local>
2010-02-14 12:03:39 -08:00