aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-06-16 06:46:22 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-06-16 06:46:22 +0000
commitbdf51f958250fe5ed2c3c2f4f79ca6eb1e3dc5b1 (patch)
treef76aaed13d0a4343384497e4f8eb05f68de6a15a
parent253a2bbefb707fa5f16c61c8db978790cac777d1 (diff)
downloadrails-bdf51f958250fe5ed2c3c2f4f79ca6eb1e3dc5b1.tar.gz
rails-bdf51f958250fe5ed2c3c2f4f79ca6eb1e3dc5b1.tar.bz2
rails-bdf51f958250fe5ed2c3c2f4f79ca6eb1e3dc5b1.zip
Revealed the man behind the mask!
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1443 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r--actionmailer/CHANGELOG2
-rw-r--r--actionpack/CHANGELOG30
-rw-r--r--activerecord/CHANGELOG42
-rw-r--r--activesupport/CHANGELOG8
-rw-r--r--railties/CHANGELOG24
5 files changed, 53 insertions, 53 deletions
diff --git a/actionmailer/CHANGELOG b/actionmailer/CHANGELOG
index 59a4e40ed2..c3f4dae792 100644
--- a/actionmailer/CHANGELOG
+++ b/actionmailer/CHANGELOG
@@ -120,7 +120,7 @@
* Consolidated the server configuration options into Base#server_settings= and expanded that with controls for authentication and more [Marten]
NOTE: This is an API change that could potentially break your application if you used the old application form. Please do change!
-* Added Base#deliveries as an accessor for an array of emails sent out through that ActionMailer class when using the :test delivery option. [bitsweat]
+* Added Base#deliveries as an accessor for an array of emails sent out through that ActionMailer class when using the :test delivery option. [Jeremy Kemper]
* Added Base#perform_deliveries= which can be set to false to turn off the actual delivery of the email through smtp or sendmail.
This is especially useful for functional testing that shouldn't send off real emails, but still trigger delivery_* methods.
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 53e6fb0ceb..1be2ac66ef 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -81,7 +81,7 @@
* Added Serbia and Montenegro to the country_select #1239 [todd@robotcoop.com]
-* Fixed Request#remote_ip in testing #1251 [bitsweat]
+* Fixed Request#remote_ip in testing #1251 [Jeremy Kemper]
* Fixed that compute_public_path should recognize external URLs, so image_tag("http://www.example.com/images/icon.gif") is not prefixed with the relative url path #1254 [victor-ronr-trac@carotena.net]
@@ -306,7 +306,7 @@
* Added pagination for scaffolding (10 items per page) #964 [mortonda@dgrmm.net]
-* Added assert_no_cookie and fixed assert_cookie_equal to deal with non-existing cookies #979 [bitsweat]
+* Added assert_no_cookie and fixed assert_cookie_equal to deal with non-existing cookies #979 [Jeremy Kemper]
* Fixed :overwrite_param so it doesn't delete but reject elements from @request.parameters #982 [raphinou@yahoo.com]
@@ -433,7 +433,7 @@
* Removed the reliance on PATH_INFO as it was causing problems for caching and inhibited the new non-vhost support #822 [Nicholas Seckar]
-* Added assigns shortcut for @response.template.assigns to controller test cases [bitsweat]. Example:
+* Added assigns shortcut for @response.template.assigns to controller test cases [Jeremy Kemper]. Example:
Before:
@@ -472,7 +472,7 @@
* Removed the default border on link_image_to (it broke xhtml strict) -- can be specified with :border => 0 #517 [?/caleb]
-* Fixed that form helpers would treat string and symbol keys differently in html_options (and possibly create duplicate entries) #112 [bitsweat]
+* Fixed that form helpers would treat string and symbol keys differently in html_options (and possibly create duplicate entries) #112 [Jeremy Kemper]
* Fixed that broken pipe errors (clients disconnecting in mid-request) could bring down a fcgi process
@@ -589,7 +589,7 @@
* Added TestResponse#binary_content that'll return as a string the data sent through send_data/send_file for testing #500 [Alexey]
-* Added @request.env['RAW_POST_DATA'] for people who need access to the data before Ruby's CGI has parsed it #505 [bitsweat]
+* Added @request.env['RAW_POST_DATA'] for people who need access to the data before Ruby's CGI has parsed it #505 [Jeremy Kemper]
* Fixed that a default fragment store wan't being set to MemoryStore as intended.
@@ -649,7 +649,7 @@
* Fixed that controller tests can now assert on the use of cookies #466 [Alexey]
-* Fixed that send_file would "remember" all the files sent by adding to the headers again and again #458 [bitsweat]
+* Fixed that send_file would "remember" all the files sent by adding to the headers again and again #458 [Jeremy Kemper]
* Fixed url rewriter confusion when the controller or action name was a substring of the controller_prefix or action_prefix
@@ -819,7 +819,7 @@
and partials that make use of a counter can be called without problems from both render_collection_of_partials as well as
render_partial #295 [marcel]
-* Fixed CgiRequest#out to fall back to #write if $stdout doesn't have #syswrite [bitsweat]
+* Fixed CgiRequest#out to fall back to #write if $stdout doesn't have #syswrite [Jeremy Kemper]
* Fixed all helpers so that they use XHTML compliant double quotes for values instead of single quotes [htonl/bitsweat]
@@ -869,7 +869,7 @@
* Added options to tailor header tag, div id, and div class on ActiveRecordHelper#error_messages_for [josh]
-* Added graceful handling of non-alphanumeric names and misplaced brackets in input parameters [bitsweat]
+* Added graceful handling of non-alphanumeric names and misplaced brackets in input parameters [Jeremy Kemper]
* Added a new container for cookies that makes them more intuative to use. The old methods of cookie and @cookies have been deprecated.
@@ -893,7 +893,7 @@
* Added Request#ssl? which is shorthand for @request.protocol == "https://"
-* Added the choice to call form_tag with no arguments (resulting in a form posting to current action) [bitsweat]
+* Added the choice to call form_tag with no arguments (resulting in a form posting to current action) [Jeremy Kemper]
* Upgraded to Builder 1.2.1
@@ -942,7 +942,7 @@
*0.9.5* (28)
-* Added helper_method to designate that a given private or protected method you should available as a helper in the view. [bitsweat]
+* Added helper_method to designate that a given private or protected method you should available as a helper in the view. [Jeremy Kemper]
* Fixed assert_rendered_file so it actually verifies if that was the rendered file [htonl]
@@ -950,19 +950,19 @@
* Fixed that Russia was named twice in country_select [alexey]
-* Fixed request_origin to use remote_ip instead of remote_addr [bitsweat]
+* Fixed request_origin to use remote_ip instead of remote_addr [Jeremy Kemper]
* Fixed link_to breakage when nil was passed for html_options [alexey]
* Fixed redirect_to on a virtual server setup with apache with a port other than the default where it would forget the port number [seanohalpin]
-* Fixed that auto-loading webrick on Windows would cause file uploads to fail [bitsweat]
+* Fixed that auto-loading webrick on Windows would cause file uploads to fail [Jeremy Kemper]
-* Fixed issues with sending files on WEBrick by setting the proper binmode [bitsweat]
+* Fixed issues with sending files on WEBrick by setting the proper binmode [Jeremy Kemper]
-* Added send_data as an alternative to send_file when the stream is not read off the filesystem but from a database or generated live [bitsweat]
+* Added send_data as an alternative to send_file when the stream is not read off the filesystem but from a database or generated live [Jeremy Kemper]
-* Added a new way to include helpers that doesn't require the include hack and can go without the explicit require. [bitsweat]
+* Added a new way to include helpers that doesn't require the include hack and can go without the explicit require. [Jeremy Kemper]
Before:
diff --git a/activerecord/CHANGELOG b/activerecord/CHANGELOG
index 6391dda560..1ba537dce0 100644
--- a/activerecord/CHANGELOG
+++ b/activerecord/CHANGELOG
@@ -1,6 +1,6 @@
*SVN*
-* Allow any Enumerable, not just Array, to work as bind variables #1344 [bitsweat]
+* Allow any Enumerable, not just Array, to work as bind variables #1344 [Jeremy Kemper]
* Added actual database-changing behavior to collection assigment for has_many and has_and_belongs_to_many #1425 [Sebastian Kanthak].
Example:
@@ -66,7 +66,7 @@
* Fixed that :delete_sql in has_and_belongs_to_many associations couldn't access record properties #1299 [Rick Olson]
-* Fixed that clone would break when an aggregate had the same name as one of its attributes #1307 [bitsweat]
+* Fixed that clone would break when an aggregate had the same name as one of its attributes #1307 [Jeremy Kemper]
* Changed that destroying an object will only freeze the attributes hash, which keeps the object from having attributes changed (as that wouldn't make sense), but allows for the querying of associations after it has been destroyed.
@@ -177,7 +177,7 @@
* Fixed boolean queries for t/f fields in PostgreSQL #995 [dave@cherryville.org]
-* Added that model.items.delete(child) will delete the child, not just set the foreign key to nil, if the child is dependent on the model #978 [bitsweat]
+* Added that model.items.delete(child) will delete the child, not just set the foreign key to nil, if the child is dependent on the model #978 [Jeremy Kemper]
* Fixed auto-stamping of dates (created_on/updated_on) for PostgreSQL #985 [dave@cherryville.org]
@@ -253,7 +253,7 @@
* Fixed that postgresql adapter would fails when reading bytea fields with null value #771 [rodrigo k]
-* Added transactional fixtures that uses rollback to undo changes to fixtures instead of DELETE/INSERT -- it's much faster. See documentation under Fixtures #760 [bitsweat]
+* Added transactional fixtures that uses rollback to undo changes to fixtures instead of DELETE/INSERT -- it's much faster. See documentation under Fixtures #760 [Jeremy Kemper]
* Added destruction of dependent objects in has_one associations when a new assignment happens #742 [mindel]. Example:
@@ -341,7 +341,7 @@
* Fixed that the dynamic finder like find_all_by_something_boolean(false) didn't work #649 [lmarlow@yahoo.com]
-* Added validates_each that validates each specified attribute against a block #610 [bitsweat]. Example:
+* Added validates_each that validates each specified attribute against a block #610 [Jeremy Kemper]. Example:
class Person < ActiveRecord::Base
validates_each :first_name, :last_name do |record, attr|
@@ -349,7 +349,7 @@
end
end
-* Added :allow_nil as an explicit option for validates_length_of, so unless that's set to true having the attribute as nil will also return an error if a range is specified as :within #610 [bitsweat]
+* Added :allow_nil as an explicit option for validates_length_of, so unless that's set to true having the attribute as nil will also return an error if a range is specified as :within #610 [Jeremy Kemper]
* Added that validates_* now accept blocks to perform validations #618 [Tim Bates]. Example:
@@ -389,7 +389,7 @@
* Fixed that the dynamic finders didn't treat nil as a "IS NULL" but rather "= NULL" case #515 [Demetrius]
-* Added bind-named arrays for interpolating a group of ids or strings in conditions #528 [bitsweat]
+* Added bind-named arrays for interpolating a group of ids or strings in conditions #528 [Jeremy Kemper]
* Added that has_and_belongs_to_many associations with additional attributes also can be created between unsaved objects and only committed to the database when Base#save is called on the associator #524 [Eric Anderson]
@@ -472,7 +472,7 @@
* Added Base#reload that reloads the attributes of an object from the database #422 [Andreas Schwarz]
-* Added SQLite3 compatibility through the sqlite3-ruby adapter by Jamis Buck #381 [bitsweat]
+* Added SQLite3 compatibility through the sqlite3-ruby adapter by Jamis Buck #381 [Jeremy Kemper]
* Added support for the new protocol spoken by MySQL 4.1.1+ servers for the Ruby/MySQL adapter that ships with Rails #440 [Matt Mower]
@@ -543,7 +543,7 @@
<tt>Payment.find_all_by_amount(50)</tt> that is turned into <tt>Payment.find_all(["amount = ?", 50])</tt>. This is something not as equally useful,
though, as it's not possible to specify the order in which the objects are returned.
-* Added block-style for callbacks #332 [bitsweat].
+* Added block-style for callbacks #332 [Jeremy Kemper].
Before:
before_destroy(Proc.new{ |record| Person.destroy_all "firm_id = #{record.id}" })
@@ -564,7 +564,7 @@
* Added the final touches to the Microsoft SQL Server adapter by Joey Gibson that makes it suitable for actual use #394 [DeLynn Barry]
-* Added that Base#find takes an optional options hash, including :conditions. Base#find_on_conditions deprecated in favor of #find with :conditions #407 [bitsweat]
+* Added that Base#find takes an optional options hash, including :conditions. Base#find_on_conditions deprecated in favor of #find with :conditions #407 [Jeremy Kemper]
* Added HasManyAssociation#count that works like Base#count #413 [intinig]
@@ -573,7 +573,7 @@
* Fixed a bug in the Ruby/MySQL that caused binary content to be escaped badly and come back mangled #405 [Tobias Luetke]
* Fixed that the const_missing autoload assumes the requested constant is set by require_association and calls const_get to retrieve it.
- If require_association did not set the constant then const_get will call const_missing, resulting in an infinite loop #380 [bitsweat]
+ If require_association did not set the constant then const_get will call const_missing, resulting in an infinite loop #380 [Jeremy Kemper]
* Fixed broken transactions that were actually only running object-level and not db level transactions [andreas]
@@ -613,7 +613,7 @@
* Added Base#clear_association_cache to empty all the cached associations #347 [Tobias Luetke]
-* Added more informative exceptions in establish_connection #356 [bitsweat]
+* Added more informative exceptions in establish_connection #356 [Jeremy Kemper]
* Added Base#update_attributes that'll accept a hash of attributes and save the record (returning true if it passed validation, false otherwise).
@@ -630,7 +630,7 @@
* Added higher_item and lower_item as public methods for acts_as_list #342 [Tobias Luetke]
-* Fixed that options[:counter_sql] was overwritten with interpolated sql rather than original sql #355 [bitsweat]
+* Fixed that options[:counter_sql] was overwritten with interpolated sql rather than original sql #355 [Jeremy Kemper]
* Fixed that overriding an attribute's accessor would be disregarded by add_on_empty and add_on_boundary_breaking because they simply used
the attributes[] hash instead of checking for @base.respond_to?(attr.to_s). [Marten]
@@ -794,12 +794,12 @@
* Fixed has_and_belongs_to_many guessing of foreign key so that keys are generated correctly for models like SomeVerySpecialClient
[Florian Weber]
-* Added counter_sql option for has_many associations [bitsweat]. Documentation:
+* Added counter_sql option for has_many associations [Jeremy Kemper]. Documentation:
<tt>:counter_sql</tt> - specify a complete SQL statement to fetch the size of the association. If +:finder_sql+ is
specified but +:counter_sql+, +:counter_sql+ will be generated by replacing SELECT ... FROM with SELECT COUNT(*) FROM.
-* Fixed that methods wrapped in callbacks still return their original result #260 [bitsweat]
+* Fixed that methods wrapped in callbacks still return their original result #260 [Jeremy Kemper]
* Fixed the Inflector to handle the movie/movies pair correctly #261 [Scott Baron]
@@ -825,7 +825,7 @@
* Added reverse order of deleting fixtures, so referential keys can be maintained #247 [Tim Bates]
-* Added relative path search for sqlite dbfiles in database.yml (if RAILS_ROOT is defined) #233 [bitsweat]
+* Added relative path search for sqlite dbfiles in database.yml (if RAILS_ROOT is defined) #233 [Jeremy Kemper]
* Added option to establish_connection where you'll be able to leave out the parameter to have it use the RAILS_ENV environment variable
@@ -924,17 +924,17 @@
NOTE: The categories table doesn't have a added_on column, it's the categories_post join table that does!
-* Fixed that :exclusively_dependent and :dependent can't be activated at the same time on has_many associations [bitsweat]
+* Fixed that :exclusively_dependent and :dependent can't be activated at the same time on has_many associations [Jeremy Kemper]
-* Fixed that database passwords couldn't be all numeric [bitsweat]
+* Fixed that database passwords couldn't be all numeric [Jeremy Kemper]
-* Fixed that calling id would create the instance variable for new_records preventing them from being saved correctly [bitsweat]
+* Fixed that calling id would create the instance variable for new_records preventing them from being saved correctly [Jeremy Kemper]
* Added sanitization feature to HasManyAssociation#find_all so it works just like Base.find_all [Sam Stephenson/bitsweat]
-* Added that you can pass overlapping ids to find without getting duplicated records back [bitsweat]
+* Added that you can pass overlapping ids to find without getting duplicated records back [Jeremy Kemper]
-* Added that Base.benchmark returns the result of the block [bitsweat]
+* Added that Base.benchmark returns the result of the block [Jeremy Kemper]
* Fixed problem with unit tests on Windows with SQLite [paterno]
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index e24736646f..e33746f82b 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -34,7 +34,7 @@
*1.0.3* (27th March, 2005)
-* Fixed Inflector.pluralize to handle capitalized words #932 [bitsweat]
+* Fixed Inflector.pluralize to handle capitalized words #932 [Jeremy Kemper]
* Added Object#suppress which allows you to make a saner choice around with exceptions to swallow #980. Example:
@@ -113,7 +113,7 @@
* Added Inflector.humanize to turn attribute names like employee_salary into "Employee salary". Used by automated error reporting in AR.
-* Added availability of class inheritable attributes to the masses #477 [bitsweat]
+* Added availability of class inheritable attributes to the masses #477 [Jeremy Kemper]
class Foo
class_inheritable_reader :read_me
@@ -131,13 +131,13 @@
Bar.read_and_write_me = 'bar'
Bar.read_and_write_me != Foo.read_and_write_me
-* Added Inflections as an extension on String, so Inflector.pluralize(Inflector.classify(name)) becomes name.classify.pluralize #476 [bitsweat]
+* Added Inflections as an extension on String, so Inflector.pluralize(Inflector.classify(name)) becomes name.classify.pluralize #476 [Jeremy Kemper]
* Added Byte operations to Numeric, so 5.5.megabytes + 200.kilobytes #461 [Marcel Molina]
* Fixed that Dependencies.reload can't load the same file twice #420 [Kent Sibilev]
-* Added Fixnum#ago/until, Fixnum#since/from_now #450 [bitsweat]
+* Added Fixnum#ago/until, Fixnum#since/from_now #450 [Jeremy Kemper]
* Added that Inflector now accepts Symbols and Classes by calling .to_s on the word supplied
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index bd8eb1c33d..e3e6801316 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -14,9 +14,9 @@
* Made dispatch.fcgi more robust by catching fluke errors and retrying unless its a permanent condition. [Jamis Buck]
-* Added console --profile for profiling an IRB session #1154 [bitsweat]
+* Added console --profile for profiling an IRB session #1154 [Jeremy Kemper]
-* Changed console_sandbox into console --sandbox #1154 [bitsweat]
+* Changed console_sandbox into console --sandbox #1154 [Jeremy Kemper]
*0.12.1* (20th April, 2005)
@@ -153,17 +153,17 @@
Views : components/list/items/show.rhtml
-* Added --sandbox option to script/console that'll roll back all changes made to the database when you quit #672 [bitsweat]
+* Added --sandbox option to script/console that'll roll back all changes made to the database when you quit #672 [Jeremy Kemper]
-* Added 'recent' as a rake target that'll run tests for files that changed in the last 10 minutes #612 [bitsweat]
+* Added 'recent' as a rake target that'll run tests for files that changed in the last 10 minutes #612 [Jeremy Kemper]
-* Changed script/console to default to development environment and drop --no-inspect #650 [bitsweat]
+* Changed script/console to default to development environment and drop --no-inspect #650 [Jeremy Kemper]
-* Added that the 'fixture :posts' syntax can be used for has_and_belongs_to_many fixtures where a model doesn't exist #572 [bitsweat]
+* Added that the 'fixture :posts' syntax can be used for has_and_belongs_to_many fixtures where a model doesn't exist #572 [Jeremy Kemper]
* Added that running test_units and test_functional now performs the clone_structure_to_test as well #566 [rasputnik]
-* Added new generator framework that informs about its doings on generation and enables updating and destruction of generated artifacts. See the new script/destroy and script/update for more details #487 [bitsweat]
+* Added new generator framework that informs about its doings on generation and enables updating and destruction of generated artifacts. See the new script/destroy and script/update for more details #487 [Jeremy Kemper]
* Added Action Web Service as a new add-on framework for Action Pack [Leon Bredt]
@@ -367,7 +367,7 @@
Nothing changes inside the files themselves.
-* Fixed a few references in the tests generated by new_mailer [bitsweat]
+* Fixed a few references in the tests generated by new_mailer [Jeremy Kemper]
* Added support for mocks in testing with test/mocks
@@ -376,7 +376,7 @@
*0.8.5* (9)
-* Made dev-util available to all tests, so you can insert breakpoints in any test case to get an IRB prompt at that point [bitsweat]:
+* Made dev-util available to all tests, so you can insert breakpoints in any test case to get an IRB prompt at that point [Jeremy Kemper]:
def test_complex_stuff
@david.projects << @new_project
@@ -385,11 +385,11 @@
You need to install dev-utils yourself for this to work ("gem install dev-util").
-* Added shared generator behavior so future upgrades should be possible without manually copying over files [bitsweat]
+* Added shared generator behavior so future upgrades should be possible without manually copying over files [Jeremy Kemper]
-* Added the new helper style to both controller and helper templates [bitsweat]
+* Added the new helper style to both controller and helper templates [Jeremy Kemper]
-* Added new_crud generator for creating a model and controller at the same time with explicit scaffolding [bitsweat]
+* Added new_crud generator for creating a model and controller at the same time with explicit scaffolding [Jeremy Kemper]
* Added configuration of Test::Unit::TestCase.fixture_path to test_helper to concide with the new AR fixtures style