refinerycms 1.0.11 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/.rspec DELETED
@@ -1,3 +0,0 @@
1
- --color
2
- --drb
3
- --format Fuubar
data/Gemfile DELETED
@@ -1,60 +0,0 @@
1
- source 'http://rubygems.org'
2
-
3
- gemspec
4
-
5
- # Bundle edge Rails instead:
6
- # gem 'rails', :git => 'git://github.com/rails/rails'
7
-
8
- # Use unicorn as the web server
9
- # gem 'unicorn'
10
- # gem 'mongrel'
11
-
12
- # Deploy with Capistrano
13
- # gem 'capistrano'
14
-
15
- # To use debugger
16
- # gem 'ruby-debug'
17
- # or in 1.9.x:
18
- # gem 'ruby-debug19'
19
-
20
- # For Heroku/s3:
21
- # gem 'fog'
22
-
23
- # REFINERY CMS ================================================================
24
- # Anything you put in here will be overridden when the app gets updated.
25
-
26
- # gem 'refinerycms', '~> 1.0.9'
27
-
28
- =begin #testing
29
- group :development, :test do
30
- # To use refinerycms-testing, uncomment it (if it's commented out) and run 'bundle install'
31
- # Then, run 'rails generate refinerycms_testing' which will copy its support files.
32
- # Finally, run 'rake' to run the tests.
33
- gem 'refinerycms-testing', '~> 1.0.9'
34
- gem 'capybara-webkit'
35
-
36
- if RbConfig::CONFIG['target_os'] =~ /darwin/i
37
- gem 'growl'
38
- end
39
-
40
- gem 'spork', '~> 0.9.0.rc', :platforms => :ruby
41
- gem 'guard-spork', :platforms => :ruby
42
- gem 'guard-rspec', :platforms => :ruby
43
- gem 'generator_spec'
44
- end
45
-
46
- =end #testing
47
-
48
- # END REFINERY CMS ============================================================
49
-
50
- # USER DEFINED
51
-
52
- # Specify additional Refinery CMS Engines here (all optional):
53
- # gem 'refinerycms-inquiries', '~> 1.0'
54
- # gem "refinerycms-news", '~> 1.2'
55
- # gem 'refinerycms-blog', '~> 1.6'
56
- # gem 'refinerycms-page-images', '~> 1.0'
57
-
58
- # Add i18n support (optional, you can remove this if you really want to).
59
- gem 'refinerycms-i18n', '~> 1.0.0'
60
- # END USER DEFINED
data/Guardfile DELETED
@@ -1,36 +0,0 @@
1
- engines = [
2
- 'authentication',
3
- 'core',
4
- 'images',
5
- 'pages',
6
- 'resources',
7
- 'settings'
8
- ]
9
-
10
- guard 'spork', :wait => 60, :cucumber => false, :rspec_env => { 'RAILS_ENV' => 'test' } do
11
- watch('config/application.rb')
12
- watch('config/environment.rb')
13
- watch(%r{^config/environments/.+\.rb$})
14
- watch(%r{^config/initializers/.+\.rb$})
15
- watch('spec/spec_helper.rb')
16
- watch(%r{^spec/support/.+\.rb$})
17
-
18
- engines.each do |engine|
19
- watch(%r{^#{engine}/spec/support/.+\.rb$})
20
- end
21
- end
22
-
23
- guard 'rspec', :version => 2, :spec_paths => ['authentication/spec', 'core/spec', 'images/spec', 'pages/spec', 'resources/spec', 'settings/spec'], :cli => "--format Fuubar --color --drb" do
24
- engines.each do |engine|
25
- watch(%r{^#{engine}/spec/.+_spec\.rb$})
26
- watch(%r{^#{engine}/app/(.+)\.rb$}) { |m| "#{engine}/spec/#{m[1]}_spec.rb" }
27
- watch(%r{^#{engine}/lib/(.+)\.rb$}) { |m| "#{engine}/spec/lib/#{m[1]}_spec.rb" }
28
- watch(%r{^#{engine}/app/controllers/(.+)_(controller)\.rb$}) { |m| ["#{engine}/spec/routing/#{m[1]}_routing_spec.rb", "#{engine}/spec/#{m[2]}s/#{m[1]}_#{m[2]}_spec.rb", "#{engine}/spec/requests/#{m[1]}_spec.rb"] }
29
- watch(%r{^#{engine}/spec/support/(.+)\.rb$}) { "#{engine}/spec" }
30
- watch("#{engine}/spec/spec_helper.rb") { "#{engine}/spec" }
31
- watch("#{engine}/config/routes.rb") { "#{engine}/spec/routing" }
32
- watch("#{engine}/app/controllers/application_controller.rb") { "#{engine}/spec/controllers" }
33
- # Capybara request specs
34
- watch(%r{^#{engine}/app/views/(.+)/.*\.(erb|haml)$}) { |m| "#{engine}/spec/requests/#{m[1]}_spec.rb" }
35
- end
36
- end
data/Rakefile DELETED
@@ -1,13 +0,0 @@
1
- # Ensure that the database has *a* config.
2
- unless File.exist?(db_yml = File.expand_path('../config/database.yml', __FILE__))
3
- require 'fileutils'
4
- FileUtils.cp "#{db_yml}.sqlite3", db_yml
5
- puts "Copied #{db_yml}.sqlite3 to #{db_yml}"
6
- puts "Migrating..."
7
- puts `bundle exec rake -f #{__FILE__} db:migrate`
8
- end
9
-
10
- require File.expand_path('../config/application', __FILE__)
11
- require 'rake'
12
-
13
- RefineryApp::Application.load_tasks
@@ -1,25 +0,0 @@
1
- xml.instruct!
2
-
3
- xml.urlset "xmlns" => "http://www.sitemaps.org/schemas/sitemap/0.9" do
4
-
5
- @locales.each do |locale|
6
- ::I18n.locale = locale
7
- Page.live.in_menu.includes(:parts).each do |page|
8
- # exclude sites that are external to our own domain.
9
- page_url = if page.url.is_a?(Hash)
10
- # This is how most pages work without being overriden by link_url
11
- page.url.merge({:only_path => false})
12
- elsif page.url.to_s !~ /^http/
13
- # handle relative link_url addresses.
14
- [request.protocol, request.host_with_port, page.url].join
15
- end
16
-
17
- # Add XML entry only if there is a valid page_url found above.
18
- xml.url do
19
- xml.loc url_for(page_url)
20
- xml.lastmod page.updated_at.to_date
21
- end if page_url.present? and page.show_in_menu?
22
- end
23
- end
24
-
25
- end
data/autotest/autotest.rb DELETED
@@ -1,17 +0,0 @@
1
- ### uncomment any of the following requires applicable for your system
2
- ### and then copy this to .autotest if you are using the ZenTest autotest.
3
- # require "autotest/restart"
4
- # require "test_notifier/runner/autotest"
5
- # require "redgreen/autotest"
6
- # require "autotest/timestamp"
7
-
8
- # adds exceptions from .gitignore file, please modify exceptions there!
9
- imported_exceptions = IO.readlines('.gitignore').inject([]) do |acc, line|
10
- acc << line.strip if line.to_s[0] != '#' && line.strip != ''; acc
11
- end
12
-
13
- Autotest.add_hook :initialize do |autotest|
14
- imported_exceptions.each do |exception|
15
- autotest.add_exception(exception)
16
- end
17
- end
data/autotest/discover.rb DELETED
@@ -1,2 +0,0 @@
1
- Autotest.add_discovery { "rails" }
2
- Autotest.add_discovery { "rspec2" }
data/changelog.md DELETED
@@ -1,882 +0,0 @@
1
- ## 1.0.11 [18 May 2012]
2
-
3
- * Fixed email escape display bug. [Rob Yurkowski](https://github.com/robyurkowski) and [Uģis Ozols](https://github.com/ugisozols)
4
- * Only clear schema cache if database adaptor allows it. [Philip Arndt](https://github.com/parndt)
5
-
6
- * [See full list](https://github.com/resolve/refinerycms/compare/1.0.10...1.0.11)
7
-
8
- ## 1.0.10 [6 March 2012]
9
-
10
- * Fixed a recursive formatting problem in WYMeditor for webkit. [Philip Arndt](https://github.com/parndt)
11
- * Use `asset_host` for url returned from link_to dialog. [Sergio Cambra](https://github.com/scambra)
12
- * Fix file link not appearing after selecting a new file [Joe Sak](https://github.com/joemsak)
13
- * Move will_paginate config into i18n language files. [Nic Haynes](https://github.com/nicinabox)
14
- * Multi-language fixes. [Miroslav Rachev](https://github.com/mirosr)
15
-
16
- * [See full list](https://github.com/resolve/refinerycms/compare/1.0.9...1.0.10)
17
-
18
- ## 1.0.9 [5 November 2011]
19
-
20
- * `guard` testing strategy ported from edge for testing refinery from its own directory without a dummy app. [Jamie Winsor](https://github.com/resetexistence) & [Joe Sak](https://github.com/joemsak)
21
- * WYMEditor bug fixes [Nic Haynes](https://github.com/nicinabox)
22
- * Bulgarian translations added. [Miroslav Rachev](https://github.com/mirosr)
23
- * Fixed --heroku command. [Garrett Heinlen](https://github.com/gogogarrett)
24
- * Refactored plugins code to add Ruby 1.9.3 support. [Amanda Wagener](https://github.com/awagener)
25
- * [See full list](https://github.com/resolve/refinerycms/compare/1.0.8...1.0.9)
26
-
27
- ## 1.0.8 [1 September 2011]
28
-
29
- * `refinerycms-core` now depends on rails so that users of 1.0.x can be confident of the entire stack being present as before. [Philip Arndt](https://github.com/parndt)
30
- * No longer requiring autotest as a dependency of `refinerycms-testing`. [Philip Arndt](https://github.com/parndt)
31
- * Improved 'wrong rails version' error message on install with a more helpful guide on how to specify a rails version. [Philip Arndt](https://github.com/parndt)
32
- * [See full list](https://github.com/resolve/refinerycms/compare/1.0.7...1.0.8)
33
-
34
- ## 1.0.7 [31 August 2011]
35
-
36
- * No change, just fixing corruption in the 1.0.6 gem caused by Syck. [Philip Arndt](https://github.com/parndt)
37
- * [See full list](https://github.com/resolve/refinerycms/compare/1.0.6...1.0.7)
38
-
39
- ## 1.0.6 [31 August 2011]
40
-
41
- * Added support for Devise `~> 1.4.3`. [Philip Arndt](https://github.com/parndt)
42
- * Removed dependency on Rails but added dependencies to its components, like activerecord, where they are used. [Philip Arndt](https://github.com/parndt)
43
- * [See full list](https://github.com/resolve/refinerycms/compare/1.0.5...1.0.6)
44
-
45
- ## 1.0.5 [31 August 2011]
46
-
47
- * jQuery UI updated to `1.8.15` from `1.8.9`. [Uģis Ozols](https://github.com/ugisozols)
48
- * Removed Duostack hosting option from the installer because the platform isn't online anymore. [Philip Arndt](https://github.com/parndt)
49
- * Fixed non raw output into noscript section of the backend. [Philip Arndt](https://github.com/parndt)
50
- * `will_paginate` updated to `~> 3.0.0` now that it has gone final. [Uģis Ozols](https://github.com/ugisozols)
51
- * [See full list](https://github.com/resolve/refinerycms/compare/1.0.4...1.0.5)
52
-
53
- ## 1.0.4 [11 August 2011]
54
-
55
- * Added support for figuring out dimensions in resized images to `image_fu`. [Philip Arndt](https://github.com/parndt) and [Joe Sak](https://github.com/joemsak)
56
- * Fixed issues installing Refinery due to lack of permissions to the gem directories. [Philip Arndt](https://github.com/parndt)
57
- * Added ability to specify a different database host in the `bin/refinerycms` installer. [Philip Arndt](https://github.com/parndt)
58
- * Lock `will_paginate` to `3.0.pre2` in core gemspec. [Kris Forbes](https://github.com/krisf) and [Uģis Ozols](https://github.com/ugisozols)
59
- * Patch required_label helper so it would pick up I18n model attribute translations. [Uģis Ozols](https://github.com/ugisozols)
60
- * [See full list](https://github.com/resolve/refinerycms/compare/1.0.3...1.0.4)
61
-
62
- ## 1.0.3 [23 June 2011]
63
-
64
- * Fixes corruption in the 1.0.2 gem. [Philip Arndt](https://github.com/parndt)
65
- * [See full list](https://github.com/resolve/refinerycms/compare/1.0.2...1.0.3)
66
-
67
- ## 1.0.2 [23 June 2011]
68
-
69
- * Ensure that `refinerycms-testing` is not enabled by default when installing an application. [Philip Arndt](https://github.com/parndt)
70
- * [See full list](https://github.com/resolve/refinerycms/compare/1.0.1...1.0.2)
71
-
72
- ## 1.0.1 [21 June 2011]
73
-
74
- * Added `-t` / `--testing` option to `bin/refinerycms` which adds `refinerycms-testing` support by default when installing. [Philip Arndt](https://github.com/parndt)
75
- * Set rails dependency to `~> 3.0.9`. [Philip Arndt](https://github.com/parndt)
76
- * Re-enabled the magic `s3_backend` setting controlled by `ENV` variables. [Philip Arndt](https://github.com/parndt)
77
- * `bin/refinerycms` installer now generates rails using `bundle exec` so that you can have multiple Rails versions installed and they won't clash. [Philip Arndt](https://github.com/parndt)
78
- * Fixed problems with `rcov` and `simplecov` in Ruby 1.9.2. [Joe Sak](https://github.com/joemsak)
79
- * Make the catch-all pages route for marketable URLs be controlled by the configuration switch. [Kyle Wilkinson](https://github.com/wikyd)
80
- * [See full list](https://github.com/resolve/refinerycms/compare/1.0.0...1.0.1)
81
-
82
- ## 1.0.0 [28 May 2011]
83
-
84
- * New `::Refinery::Menu` API implemented which speeds up menu generation by many times. [Philip Arndt](https://github.com/parndt)
85
- * Removed caching from menu because it's so much faster now. Probably in future it will be added to `::Refinery::Menu` itself in a transparent manner. [Philip Arndt](https://github.com/parndt)
86
- * Deprecated `Page#[]` in favour of `Page#content_for` e.g. instead of `@page[:body]` use `@page.content_for(:body)`. [Philip Arndt](https://github.com/parndt)
87
- * Noisily deprecated many other features that still function in 1.0.0 but won't be present in 1.1.0. [Philip Arndt](https://github.com/parndt)
88
- * A hidden page can no longer mark the ancestor pages as selected in the menu. [Philip Arndt](https://github.com/parndt)
89
- * Rcov added to `refinerycms-testing` gem. [Rodrigo Dominguez](https://github.com/rorra)
90
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.22...1.0.0)
91
-
92
- ## 0.9.9.22 [22 May 2011]
93
-
94
- * Fixed issue introduced with `rake 0.9.0`. [Philip Arndt](https://github.com/parndt)
95
- * Improved menu performance again including update to `awesome_nested_set 2.0`. [Philip Arndt](https://github.com/parndt) and [Mark Haylock](https://github.com/mhaylock)
96
- * Supporting the new Google Analytics 'site speed' feature. [David Jones](https://github.com/djones)
97
- * Implemented `:translator` role which allows a particular user access only to translate pages. [Philip Arndt](https://github.com/parndt)
98
- * Added support for `Dragonfly 0.9.0` which uses the 'fog' gem. [Jesper Hvirring Henriksen](https://github.com/hvirring)
99
- * Updated all `refinery/admin.js` functions to make use of 'initialised'. [Mark Haylock](https://github.com/mhaylock)
100
- * Using SEO form from `seo_meta` inside pages' advanced options rather than having it duplicated in the RefineryCMS codebase too. [Uģis Ozols](https://github.com/ugisozols)
101
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.21...0.9.9.22)
102
-
103
- ## 0.9.9.21 [03 May 2011]
104
-
105
- * Fixed issue with MySQL2 gem complaining about us being on Rails 3 by specifying `'~> 0.2.7'` in the Gemfile of a generated application. [Philip Arndt](https://github.com/parndt)
106
- * `/registrations` is now `/users`. [Philip Arndt](https://github.com/parndt)
107
- * Added Finnish translation. [Veeti Paananen](https://github.com/veeti)
108
- * Allowed `data` and `data-` attributes in WYMeditor tags using HTML view. [Philip Arndt](https://github.com/parndt)
109
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.20...0.9.9.21)
110
-
111
- ## 0.9.9.20 [28 April 2011]
112
-
113
- * Improved performance of the menu rendering. [Philip Arndt](https://github.com/parndt)
114
- * Fixed UI to allow for how different languages display on the login screen. [Marian André](https://github.com/bitflut)
115
- * Vastly improved specs & spec coverage. [Uģis Ozols](https://github.com/ugisozols)
116
- * Upgraded to `jQuery 1.5.2` and `Dragonfly 0.8.4`. [Philip Arndt](https://github.com/parndt)
117
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.19...0.9.9.20)
118
-
119
- ## 0.9.9.19 [22 April 2011]
120
-
121
- * Removed `rdoc` dependency. [Philip Arndt](https://github.com/parndt)
122
- * Migrate to stable Rails 3.0.7. [Josef Šimánek](https://github.com/simi)
123
- * Use `let()` in rspec specs. [Uģis Ozols](https://github.com/ugisozols)
124
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.18...0.9.9.19)
125
-
126
- ## 0.9.9.18 [16 April 2011]
127
-
128
- * Fixed a backward incompatibility. [Josef Šimánek](https://github.com/simi)
129
- * Reduced calls to `SHOW TABLES` by updating `friendly_id_globalize3`. [Philip Arndt](https://github.com/parndt)
130
- * Switched `/shared/_menu.html.erb` and `/shared/_menu_branch.html.erb` away from `render :partial` with `:collection`, speeding up menu 12~15%. [Philip Arndt](https://github.com/parndt)
131
- * Fixed Refinery.root, Fixed generator templates, Added refinerycms-i18n generator to refinerycms generator if i18n is included. [Mark Haylock](https://github.com/mhaylock)
132
- * Bumped Rails dependency to `~> 3.0.7.rc2`. [Philip Arndt](https://github.com/parndt)
133
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.17...0.9.9.18)
134
-
135
- ## 0.9.9.17 [15 April 2011]
136
-
137
- * Mass assignment protection implemented. [Andreas König](https://github.com/koa)
138
- * Removed deprecated code to prepare for `1.0.0`. [Uģis Ozols](https://github.com/ugisozols)
139
- * Added `Strip Non Ascii` preference to `has_friendly_id`. [Marc Argent](https://github.com/lurcio)
140
- * Bumped Rails dependency to `~> 3.0.7.rc1`. [Philip Arndt](https://github.com/parndt)
141
- * Better support for models in modules for uncrudify. [Josef Šimánek](https://github.com/simi)
142
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.16...0.9.9.17)
143
-
144
- ## 0.9.9.16 [7 April 2011]
145
-
146
- * Improved resource picker. [Will Marshall](https://github.com/willrjmarshall)
147
- * Improved robustness of `Page#expire_page_caching` for both `ActiveSupport::Cache::FileStore` and `ActiveSupport::Cache::MemoryStore`. [Jeff Hall](https://github.com/zenchicken)
148
- * Optimised index sizes on MySQL. [Ruslan Doroshenko](https://github.com/rdoroshenko)
149
- * Changed default cache store to `:memory_store`. [Philip Arndt](https://github.com/parndt)
150
- * `rake db:migrate` and `rake db:rollback` now works consistently when migrations from other engines are in the mix. [Vaughn Draughon](https://github.com/rocksolidwebdesign)
151
- * Re-enable cache when logged in, this avoids slowdown of site when admin logged in. [Mark Haylock](https://github.com/mhaylock)
152
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.15...0.9.9.16)
153
-
154
- ## 0.9.9.15 [1 April 2011]
155
-
156
- * Fixed asset caching of files in `public/stylesheets/`. [Sergio Cambra](https://github.com/scambra)
157
- * All dependencies now have an absolute version dependency (e.g. '= 0.9.9.15' rather than '~> 0.9.9.15') to prevent Refinery auto-updating. [Philip Arndt](https://github.com/parndt)
158
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.14...0.9.9.15)
159
-
160
- ## 0.9.9.14 [31 March 2011]
161
-
162
- * Added `refinery.before_inclusion` for running extra functionality just before Refinery attaches to Rails. [Philip Arndt](https://github.com/parndt)
163
- * Renamed `refinery.after_inclusion` to `refinery.after_inclusion` to match `refinery.before_inclusion`. [Philip Arndt](https://github.com/parndt)
164
- * Moved meta tag responsibility to `seo_meta` library. [Philip Arndt](https://github.com/parndt)
165
- * Added HTML5 tag support to WYMeditor. [Philip Arndt](https://github.com/parndt) and [Nick Hammond](https://github.com/nickhammond)
166
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.13...0.9.9.14)
167
-
168
- ## 0.9.9.13 [28 March 2011]
169
-
170
- * Forcing password reset when migrating from older versions of Devise (sigh). [Philip Arndt](https://github.com/parndt)
171
- * Updated to `refinerycms-i18n 0.9.9.16` - please run `rails generate refinerycms_i18n`. [Philip Arndt](https://github.com/parndt)
172
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.12...0.9.9.13)
173
-
174
- ## 0.9.9.12 [27 March 2011]
175
-
176
- * Removed `password_salt` field from users table and comment out `config.encryptor` in `config/initializers/devise.rb` to handle update to devise 1.2.0. [Uģis Ozols](https://github.com/ugisozols)
177
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.11...0.9.9.12)
178
-
179
- ## 0.9.9.11 [24 March 2011]
180
-
181
- * Translated WYMeditor texts to Japanese. [Hiro Asari](https://github.com/BanzaiMan)
182
- * Supporting `cucumber-rails 0.4.0`. [Philip Arndt](https://github.com/parndt)
183
- * Added an option to link in the `page_title` enabling easier breadcrumbs. [Sergio Cambra](https://github.com/scambra)
184
- * Fixed support for `asset_file_path` in upcoming Rails 3.1. [Philip Arndt](https://github.com/parndt)
185
- * Updated copyright notice to include the current year. [David Jones](https://github.com/djones)
186
- * Fixed site bar switch link. [Philip Arndt](https://github.com/parndt)
187
- * Added support for translating Javascript strings. [Philip Arndt](https://github.com/parndt)
188
- * Added `refinery.on_attach` for running extra functionality just after Refinery attaches to Rails. Functions similarly to `config.to_prepare`. [Philip Arndt](https://github.com/parndt)
189
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.10...0.9.9.11)
190
-
191
- ## 0.9.9.10 [17 March 2011]
192
-
193
- * Excluded caching option for menus when logged in. [Philip Arndt](https://github.com/parndt)
194
- * Fixed site bar translation logic. [Philip Arndt](https://github.com/parndt)
195
- * Removed `config/settings.rb` file. [Philip Arndt](https://github.com/parndt)
196
- * Added a default `features/support/paths.rb` file in the `Rails.root` for your paths. [Philip Arndt](https://github.com/parndt)
197
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.9...0.9.9.10)
198
-
199
- ## 0.9.9.9 [15 March 2011]
200
-
201
- * Added Japanese translation. [Hiro Asari](https://github.com/BanzaiMan)
202
- * Improved menu rendering performance. [Philip Arndt](https://github.com/parndt)
203
- * Added caching to site menu and pages backend (DISABLED by default). [Philip Arndt](https://github.com/parndt)
204
- * Added `Page#by_title` to filter pages results by title using `Page::Translation`. [Philip Arndt](https://github.com/parndt)
205
- * Added migration to remove already translated fields from the pages table. [Philip Arndt](https://github.com/parndt)
206
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.8...0.9.9.9)
207
-
208
- ## 0.9.9.8 [11 March 2011]
209
-
210
- * Fixed several user interface bugs reported by Patrick Morrow. [Philip Arndt](https://github.com/parndt)
211
- * Looser dependency on `moretea-awesome_nested_set` (now `~> 1.4`). [Philip Arndt](https://github.com/parndt)
212
- * Corrected `ajax-loader.gif` path. [Maurizio](https://github.com/ProGNOMmers)
213
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.7...0.9.9.8)
214
-
215
- ## 0.9.9.7 [10 March 2011]
216
-
217
- * Added `:per_page` option to `crudify` for overriding the number of items to display per page with will_paginate. [Josef Šimánek](https://github.com/simi)
218
- * Deprecated `rake refinery:update` in favour of rails `generate refinerycms --update`. [Philip Arndt](https://github.com/parndt)
219
- * Added `--skip-db` option to `bin/refinerycms` installer which doesn't automate any database creation/migration and skips the `rails generate refinerycms` generator. [Philip Arndt](https:/github.com/parndt)
220
- * Exchanged (help) links for the information.png 'refinery icon'. This will happen automatically if you used `refinery_help_tag`. [Philip Arndt](https://github.com/parndt)
221
- * Added `xhr_paging` as an option in crudify which handles the server-side usage of the HTML5 History API. [Philip Arndt](https://github.com/parndt)
222
- * Looser Bundler dependency (now `~> 1.0`). [Terence Lee](https://github.com/hone)
223
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.6...0.9.9.7)
224
-
225
- ## 0.9.9.6 [7 March 2011]
226
-
227
- * Fixed an issue that caused the installer to fail on some systems. [Philip Arndt](https://github.com/parndt)
228
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.5...0.9.9.6)
229
-
230
- ## 0.9.9.5 [7 March 2011]
231
-
232
- * Added `<div class='inner'>` to `_content_page` for better control over CSS for each section. Please see [086abfcae2c83330346e28d1e40004cff8a27720](https://github.com/resolve/refinerycms/commit/086abfcae2c83330346e28d1e40004cff8a27720) for what changed if this affects you. [Stefan Mielke](https://github.com/caplod)
233
- * Menu performance improvements. [David Reese](https://github.com/whatcould)
234
- * Removed `--update` from `bin/refinerycms` because it's no longer relevant. [Philip Arndt](https://github.com/parndt)
235
- * Added support for --ident in the installation task which uses ident authentication at the database level by commenting out the username and password credentials. [Philip Arndt](https://github.com/parndt)
236
- * Changed the default `cache_store` to `:file_store` for better thread safety with passenger. [Philip Arndt](https://github.com/parndt)
237
- * WYMeditor Internet Explorer improvements. [Philip Arndt](https://github.com/parndt)
238
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.4...0.9.9.5)
239
-
240
- ## 0.9.9.4 [24 February 2011]
241
-
242
- * Added `doc/guides` for textile based guides that power [the guides at refinerycms.com/guides](http://refinerycms.com/guides). [Steven Heidel](https://github.com/stevenheidel) and [Philip Arndt](https://github.com/parndt)
243
- * Allowed multiple resource pickers on one form. [Phil Spitler](https://github.com/philspitler)
244
- * Solved YAML parsing issues introduced by change to Psych. [Aaron Patterson](https://github.com/tenderlove) and [Uģis Ozols](https://github.com/ugisozols)
245
- * Updated page to use a localized cache key if frontend translations are enabled. [Bryan Mahoney](https://github.com/DynamoMTL)
246
- * Upgraded modernizr to version 1.7. [Jon Roberts](https://github.com/emptyflask)
247
- * Fixed an issue with the 'add page parts' functionality inserting new parts in the wrong place. [Philip Arndt](https://github.com/parndt)
248
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.3...0.9.9.4)
249
-
250
- ## 0.9.9.3 [17 February 2011]
251
-
252
- * Fixed faulty require statement that tried to load rack/cache before dragonfly. [Philip Arndt](https://github.com/parndt)
253
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.2...0.9.9.3)
254
-
255
- ## 0.9.9.2 [17 February 2011]
256
-
257
- * Removed `activesupport` requirement from `bin/refinerycms`. [Philip Arndt](https://github.com/parndt)
258
- * Fixed an issue in some browsers with a particular jQuery selector. [Philip Arndt](https://github.com/parndt)
259
- * Modified some existing migrations to behave better when creating new applications. [Philip Arndt](https://github.com/parndt)
260
- * Fixed `-u` and `-p` support for `bin/refinerycms`. [Philip Arndt](https://github.com/parndt)
261
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9.1...0.9.9.2)
262
-
263
- ## 0.9.9.1 [15 February 2011]
264
-
265
- * Fixed Firefox issue with WYMeditor. [Amanda Wagener](https:/github.com/awagener)
266
- * Gracefully exit `bin/refinerycms` on error. [Alexandre Girard](https://github.com/alx) and [Brian Stevens](https://github.com/bdstevens) and [Philip Arndt](https://github.com/parndt)
267
- * Added basic single table inheritance support to crudify. [Ken Nordquist](https://github.com/kenphused)
268
- * Removed most of the 0.9.8.9 specific `--update` logic in `bin/refinerycms`. [Philip Arndt](https://github.com/parndt)
269
- * Added `refinerycms-testing` engine which reduces the main Gemfile complexity. [Philip Arndt](https://github.com/parndt)
270
- * Split the project into 10 separately released gems that include their own dependencies. [Philip Arndt](https://github.com/parndt)
271
- * New Vietnamese translation files added. [Alex Nguyen](https://github.com/tiendung) and Stefan N and Mario Nguyen
272
- * Improved JRuby support as well as the way that commands run in any ruby implementation. [Hiro Asari](https://github.com/BanzaiMan)
273
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.9...0.9.9.1)
274
-
275
- ## 0.9.9 [27 January 2011]
276
-
277
- * Better, more semantic HTML5. [Joe Sak](https://github.com/joemsak)
278
- * Added `role` selection for `admin/users#edit`. [Hez Ronningen](https://github.com/hez)
279
- * Fixed WYMeditor bug regarding adding links, helped with persistent testing by [Marko Hriberšek](https://github.com/markoh). [Philip Arndt](https://github.com/parndt)
280
- * Better `RSpec` coverage [Joe Sak](https://github.com/joemsak) and [Philip Arndt](https://github.com/parndt) and [Uģis Ozols](https://github.com/ugisozols) and [PeRo ICT Solutions](https://github.com/pero-ict)
281
- * Superusers now get access to all backend tabs by default. [Philip Arndt](https://github.com/parndt)
282
- * Introduced LOLcat translation (yes, seriously) as an easter egg. [Steven Heidel](https://github.com/stevenheidel)
283
- * Fixed several missing translations. [Johan Bruning](https://github.com/GidoGeek)
284
- * Solved several i18n inconsistencies. [Jonas Hartmann](https://github.com/ionas)
285
- * Made `UserPlugin` dependent on `User` which solves a data redundancy proble.m [Maarten Hoogendoorn](https://github.com/moretea)
286
- * Fixed issue with finding where engines are located on the disk using `Plugin::pathname`. [Lele](https://github.com/leleintercom)
287
- * Add `rescue_not_found` option to turn on/off 404 rendering. [Ryan Bigg](https://github.com/radar)
288
- * Full review of the French translations. [Jérémie Horhant](https://github.com/Titinux)
289
- * Now using `mail()` to send emails. [J. Edward Dewyea](https://github.com/commuter)
290
- * Refactored backend HTML & CSS, reduced complexity and added a loading animation when you click Save on forms. [Philip Arndt](https://github.com/parndt)
291
- * Improved the speed of the menu especially related to scaling through reusing collections rather then revisiting the database. [Amanda Wagener](https://github.com/awagener)
292
- * Implemented an API for the `pages` form's tabs. [David Jones](https://github.com/djones)
293
- * Use the rails naming convention for translations that contain html markup. Escaping translations not marked as `html_safe` in the `refinery_help_tag` helper. [Jérémie Horhant](https://github.com/Titinux)
294
- * Full review of the Italian translations. [Mirco Veltri](https://github.com/indaco)
295
- * Deprecated `/admin` in favour of `/refinery` and put in a message to display to the user when they use it. [Philip Arndt](https://github.com/parndt)
296
- * Full review of the Russian translations as well as work with articles / genders in grammar. [Semyon Perepelitsa](https://github.com/semaperepelitsa)
297
- * Full review of routes and the Latvian translations. [Uģis Ozols](https://github.com/ugisozols)
298
- * Implemented better support for `rails.js`, using standard `:method` and `:confirm` `link_to` options. [Semyon Perepelitsa](https://github.com/semaperepelitsa)
299
- * Locked jQuery to 1.4.2 and jQuery UI to 1.8.5, fixed errors with dialogues and tested. [Philip Arndt](https://github.com/parndt) and [Phillip Miller](https://github.com/philmill) and [Sam Beam](https://github.com/sbeam)
300
- * Added multiple file upload for images and resources using HTML5. [Philip Arndt](https://github.com/parndt)
301
- * Deprecated `content_for :head` in favour of `content_for :meta`, `content_for :stylesheets` and `content_for :javascripts`. [Philip Arndt](https://github.com/parndt)
302
- * Improved client-side responsiveness of backend and frontend. [Philip Arndt](https://github.com/parndt)
303
- * No more RMagick dependency [Philip Arndt](https://github.com/parndt)
304
- * Added `rake refinery:override stylesheet=somefile` and `rake refinery:override javascript=somefile` commands to override stylesheets and javascripts. [Oliver Ponder](https://github.com/oponder)
305
- * Restructed the project to remove `vendor/refinerycms` and put all engines in the application root. [Kamil K. Lemański](https://github.com/kml)
306
- * Force no resource caching on non-writable file systems (like Heroku). [Philip Arndt](https://github.com/parndt)
307
- * Refinery can now attach itself to a Rails application simply by including the refinerycms gem in the `Gemfile`. [Philip Arndt](https://github.com/parndt)
308
- * Added core support for `globalize3` so that pages can be translated into multiple languages. [Philip Arndt](https://github.com/parndt) and [Maarten Hoogendoorn](https://github.com/moretea)
309
- * Refactored `group_by_date` into a helper method which is called in the view layer and not in the controller because it is entirely presentation. [Philip Arndt](https://github.com/parndt)
310
- * Applied HTML5 history pagination to all core engines. [Philip Arndt](https://github.com/parndt)
311
- * Converted translate calls to use `:scope`. [Uģis Ozols](https://github.com/ugisozols)
312
- * Fixed issues where errors would only show up in English for some models and updated Russian translations. [Semyon Perepelitsa](https://github.com/semaperepelitsa)
313
- * Converted to devise for authentication, requiring password resets. [Philip Arndt](https://github.com/parndt) and [Uģis Ozols](https://github.com/ugisozols)
314
- * Sped up WYMeditor load times. [Philip Arndt](https://github.com/parndt)
315
- * Fixed several issues for Internet Explorer. [Josef Šimánek](https://github.com/simi)
316
- * Added installation option for [Duostack](http://duostack.com) hosting service. [Philip Arndt](https://github.com/parndt) and [David E. Chen](https://github.com/dchen)
317
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.8.9...0.9.9)
318
-
319
- ## 0.9.8.9 [21 December 2010]
320
-
321
- * Fixed error in the inquiries engine seeds. [Philip Arndt](https://github.com/parndt)
322
- * Separate each error message into its own `<li>`. [Uģis Ozols](https://github.com/ugisozols)
323
- * Add `rescue_not_found` option to turn on/off 404 rendering. [Ryan Bigg](https://github.com/radar)
324
- * Add `:from` key to `UserMailer` for password reset. [Earle Clubb](https://github.com/eclubb)
325
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.8.8...0.9.8.9)
326
-
327
- ## 0.9.8.8 [16 December 2010]
328
-
329
- * Prevented RefinerySetting from accessing its database table before it is created. [Philip Arndt](https://github.com/parndt)
330
- * Added more options to `bin/refinerycms` like ability to specify database username and password. [Philip Arndt](https://github.com/parndt)
331
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.8.7...0.9.8.8)
332
-
333
- ## 0.9.8.7 [15 December 2010]
334
-
335
- * Fixed a problem with migration number clashes. [Philip Arndt](https://github.com/parndt)
336
- * Fixed problems with `db:migrate` for a new app on Postgres. [Jacob Buys](https://github.com/wjbuys)
337
- * Back-ported the changes made to the images dialogue which speed it up significantly. [Philip Arndt](https://github.com/parndt)
338
- * Sort file names in the `refinery_engine` generator so attribute types don't get changed before `_form.html.erb` generation. [Phil Spitler](https://github.com/philspitler)
339
- * Added `approximate_ascii` setting, defaulted to true, for pages so that characters won't appear strangely in the address bar of some web browsers. [Uģis Ozols](https://github.com/ugisozols)
340
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.8.6...0.9.8.7)
341
-
342
- ## 0.9.8.6 [3 December 2010]
343
-
344
- * Backported lots of functionality from 0.9.9 and later like:
345
- * Fixed reordering for trees and non-trees [Philip Arndt](https://github.com/parndt)
346
- * Better `RSpec` coverage [Joe Sak](https://github.com/joemsak) and [Philip Arndt](https://github.com/parndt) and [Uģis Ozols](https://github.com/ugisozols) and [PeRo ICT Solutions](https://github.com/pero-ict)
347
- * Fixed issue with finding where engines are located on the disk using `Plugin::pathname`. [Lele](https://github.com/leleintercom)
348
- * Improved the speed of the menu especially related to scaling through reusing collections rather then revisiting the database. [Amanda Wagener](https://github.com/awagener)
349
- * No more RMagick dependency [Philip Arndt](https://github.com/parndt)
350
- * Added helper methods to expose some of the options in crud. [David Jones](https://github.com/djones)
351
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.8.5...0.9.8.6)
352
-
353
- ## 0.9.8.5 [21 September 2010](https://github.com/parndt)
354
-
355
- * Fixed an issue with the engine generator that was putting a comma in the wrong place breaking the call to `crudify`. [Maarten Hoogendoorn](https://github.com/moretea)
356
- * Made the delete messages consistent. [Uģis Ozols](https://github.com/ugisozols)
357
- * `zh-CN` was overriding en locale in core locale file, fixed. [Philip Arndt](https://github.com/parndt)
358
- * Changed verbiage from created to added, create to add as it describes it better for things like images. [Philip Arndt](https://github.com/parndt)
359
- * `image_fu` no longer gives you the width and height of the image due to performance problems. [Philip Arndt](https://github.com/parndt) and [David Jones](https://github.com/djones)
360
- * Implemented a standardised API for the engine generator. The core now includes a standard engine install generator. Engines generate a readme file explaining how to build an engine as a gem. [David Jones](https://github.com/djones)
361
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.8.4...0.9.8.5)
362
-
363
- ## 0.9.8.4 [17 September 2010]
364
-
365
- * Recursive deletion of page parts. [primerano](https://github.com/primerano)
366
- * Move around the default pages. [Philip Arndt](https://github.com/parndt)
367
- * Extraction of windows check to `Refinery::WINDOWS`. [Steven Heidel](https://github.com/stevenheidel)
368
- * Updated the changelog for several previous releases. [Steven Heidel](https://github.com/stevenheidel)
369
- * Made the menu more flexible so that it can be used in many places in your layout without caching over the top of itself. [Philip Arndt](https://github.com/parndt)
370
- * Added search feature to Refinery Settings. [Matt McMahand](https://github.com/invalidusrname)
371
- * Ensure that in `crudify` that we use `:per_page` properly for `will_paginate`. [Philip Arndt](https://github.com/parndt)
372
- * Reduce the number of routes that we respond to in the `pages` engine as they were unused. [Philip Arndt](https://github.com/parndt)
373
- * Fixed a case where page links weren't generating properly when inside an engine such as the news engine which made use of `params[:id]`. Took a lot of perserverance on the part of Hez - thank you very much Hez! [Hez Ronningen](https://github.com/hez) and [Philip Arndt](https://github.com/parndt)
374
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.8.3...0.9.8.4)
375
-
376
- ## 0.9.8.3 [14 September 2010]
377
- * German translation improvements. [Andre Lohan](https://github.com/dc5ala)
378
- * Fix bug with `bin/refinerycms` and windows commands. [Philip Arndt](https://github.com/parndt)
379
- * DRY up `crudify` and also switch to ARel. [Philip Arndt](https://github.com/parndt)
380
- * Several fixes to make things much easier on windows. [Philip Arndt](https://github.com/parndt)
381
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.8.2...0.9.8.3)
382
-
383
- ## 0.9.8.2 [13 September 2010]
384
- * Update `readme.md` [David Jones](https://github.com/djones)
385
- * Speed improvements to menu with nested_set. [Maarten Hoogendoorn](https://github.com/moretea)
386
- * More speed improvements by optimising slugs. [Philip Arndt](https://github.com/parndt)
387
- * Fix `-h` flag on `bin/refinerycms` to display the help. [Steven Heidel](https://github.com/stevenheidel)
388
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.8.1...0.9.8.2)
389
-
390
- ## 0.9.8.1 [9 September 2010]
391
- * Convert to `awesome_nested_set`. [Maarten Hoogendoorn](https://github.com/moretea) and [Philip Arndt](https://github.com/parndt)
392
- * Allow passing `-g` to the bin task for extra gems. [Tomás Senart](https://github.com/tsenart)
393
- * Update documentation for engines, not plugins. [David Jones](https://github.com/djones)
394
- * Several more documentation fixes. [Steven Heidel](https://github.com/stevenheidel)
395
- * Better use of dragonfly resizing. [Philip Arndt](https://github.com/parndt)
396
- * Partial Latvian translation. [Uģis Ozols](https://github.com/ugisozols)
397
- * Review Portugese translation. [Kivanio Barbosa](https://github.com/kivanio)
398
- * Bugfix with wymeditor in the engine generator. [Karmen Blake](https://github.com/kblake)
399
- * Split `application_helper` into smaller, more usable files. [Philip Arndt](https://github.com/parndt)
400
- * Move features and specs to each engine directory. [Philip Arndt](https://github.com/parndt)
401
- * Bugfixes to ensure that reordering works under `awesome_nested_set`. [Maarten Hoogendoorn](https://github.com/moretea) and [Philip Arndt](https://github.com/parndt)
402
- * Update engines to not have a special :require in the Gemfile. [Johan Bruning](https://github.com/GidoGeek)
403
- * Make cache sweepers work. [Philip Arndt](https://github.com/parndt)
404
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.8...0.9.8.1)
405
-
406
- ## 0.9.8 [30 August 2010]
407
-
408
- * Rails 3 support!
409
- - [Philip Arndt](https://github.com/parndt)
410
- - [Alex Coles](https://github.com/myabc)
411
- - [Steven Heidel](https://github.com/stevenheidel)
412
- - [David Jones](https://github.com/djones)
413
- - [Uģis Ozols](https://github.com/ugisozols)
414
- - [Maarten Hoogendoorn](https://github.com/moretea)
415
- * [See our blog post](http://refinerycms.com/blog/refinery-cms-supports-rails-3)
416
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.7.13...0.9.8)
417
-
418
- ## 0.9.7.13 [23 August 2010]
419
-
420
- * Russian language support (RU). [Sun](https://github.com/sunchess)
421
- * We <3 HTML5 (better supported HTML5 semantics) [Joe Sak](https://github.com/joemsak) and [Philip Arndt](https://github.com/parndt)
422
- * Fixed issue with Refinery's 404 page. [Philip Arndt](https://github.com/parndt)
423
- * Fixed recent inquiries display on dashboard when HTML present. [Steven Heidel](https://github.com/stevenheidel)
424
- * Better dutch (NL) translations. [Michael van Rooijen](https://github.com/meskyanichi)
425
- * Fixed for IE and added fixes to WYMeditor from the core project. [Philip Arndt](https://github.com/parndt)
426
- * Added pagination for search results to the plugin generator. [Amanda Wagener](https://github.com/awagener)
427
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.7.12...0.9.7.13)
428
-
429
- ## 0.9.7.12 [11 August 2010]
430
-
431
- * Smoothed the sortable list in the admin UI. [Joe Sak](https://github.com/joemsak)
432
- * Binding link dialogue URL checker to paste action. [Joe Sak](https://github.com/joemsak)
433
- * Kill hidden overflow on dialogues for smaller browser windows. [Joe Sak](https://github.com/joemsak) and [Philip Arndt](https://github.com/parndt)
434
- * Refactored the `parse_branch` method to speed up reordering on the server. [Joshua Davey](https://github.com/jgdavey)
435
- * Running `refinerycms` with `-v` or `--version` will now output the version number. [Steven Heidel](https://github.com/stevenheidel)
436
- * Made the core codebase not rely so heavily on `@page[:body]` by adding `Page.default_parts` and using `.first` on that instead. [Philip Arndt](https://github.com/parndt)
437
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.7.11...0.9.7.12)
438
-
439
- ## 0.9.7.11 [07 August 2010]
440
-
441
- * Removed `app/controllers/application.rb` due to its serious deprecation. Fixed deprecations in how we use acts_as_indexed. [Philip Arndt](https://github.com/parndt)
442
- * Added passing cucumber features for search for: [Uģis Ozols](https://github.com/ugisozols)
443
- - Images
444
- - Files
445
- - Inquiries
446
- - Pages
447
- * Moved HTML5 enabling script to a partial so that IE always runs it first. [Philip Arndt](https://github.com/parndt)
448
- * Fixed some invalid HTML. [Bo Frederiksen](https://github.com/bofrede)
449
- * Added Danish translation for WYMeditor. [Bo Frederiksen](https://github.com/bofrede)
450
- * Fixes for Tooltips [Philip Arndt](https://github.com/parndt)
451
- - Tooltips were not showing in dialogues, they now are.
452
- - Tooltips would not position properly above links, they now do.
453
- - The Tooltips' nibs (the arrow) would not sit properly centered above the element if the tooltip had to move for the browser window size, they now do.
454
- * Lots of fixes for translations. [Uģis Ozols](https://github.com/ugisozols)
455
- * Fix XSS vulnerability on page meta information by escaping the relevant fields properly [David Jones](https://github.com/djones)
456
- * Ensure that the generator script grabs the first attribute that is a string, not just the first attribute, when choosing the field for Dashboard activity. [Joe Sak](https://github.com/joemsak)
457
- * Updated `json-pure` to `1.4.5`, now using the actual gem [Philip Arndt](https://github.com/parndt)
458
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.7.10...0.9.7.11)
459
-
460
-
461
- ## 0.9.7.10 [02 August 2010]
462
-
463
- * Added options to site_bar partial to allow particular components to be disabled (CSS, JS, jQuery or cornering script) so that they don't interfere with these already being included in the theme. [Philip Arndt](https://github.com/parndt)
464
- * Fixed the schema file as it was invalid somehow. [Steven Heidel](https://github.com/stevenheidel)
465
- * Made search more consistent and added it to Spam/Ham. [Uģis Ozols](https://github.com/ugisozols)
466
- * Fixed a bug with adding new resources. [Steven Heidel](https://github.com/stevenheidel)
467
- * Fixed a range of issues with translation keys and grammar between different languages. [Uģis Ozols](https://github.com/ugisozols)
468
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.7.9...0.9.7.10)
469
-
470
- ## 0.9.7.9 [30 July 2010]
471
-
472
- * Added a theme generator to create the basic file structure of a new theme. [David Jones](https://github.com/djones) and [Levi Cole](https://github.com/levicole)
473
- * Renamed `script/generate refinery` to `script/generate refinery_plugin`. [David Jones](https://github.com/djones)
474
- * Add deprecation notice to `script/generate refinery`. [David Jones](https://github.com/djones)
475
- * Updated documentation to reflect new generator changes. [David Jones](https://github.com/djones)
476
- * Added tests for both plugin and theme generators. [David Jones](https://github.com/djones) and [Levi Cole](https://github.com/levicole)
477
- * Refactored the `refinerycms` & `refinery-upgrade-097-to-097` tasks to make better use of Pathname. [Philip Arndt](https://github.com/parndt)
478
- * Added more cucumber features and tagged existing ones. [Philip Arndt](https://github.com/parndt), [James Fiderlick](https://github.com/jamesfid) and [Steven Heidel](https://github.com/stevenheidel)
479
- * Removed mysterious `page_translations` table if you had it. [Philip Arndt](https://github.com/parndt)
480
- * Added workaround for tests that involve dialogues. [Uģis Ozols](https://github.com/ugisozols)
481
- * Added as default the ability for forms to know whether they are inside a modal / dialog. [Philip Arndt](https://github.com/parndt)
482
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.7.8...0.9.7.9)
483
-
484
- ## 0.9.7.8 [23 July 2010]
485
-
486
- * Refactored Amazon S3 and gem installation to make it easier to install on Heroku. [Steven Heidel](https://github.com/stevenheidel)
487
- * Made project more testable. Renamed rake refinery:test_all to rake test:refinery [Philip Arndt](https://github.com/parndt)
488
- * Documentation improved [David Jones](https://github.com/djones), [Philip Arndt](https://github.com/parndt) and [Steven Heidel](https://github.com/stevenheidel)
489
- * Installed spork for use with systems that support forking for performance improvements. Doesn't run on Windows. [Philip Arndt](https://github.com/parndt) and [James Fiderlick](https://github.com/jamesfid)
490
- * Improvements and new translations for Norsk Bokmål localisation. [Ken Paulsen](https://github.com/ken-guru)
491
- * Ensured that RefinerySetting restrictions work properly using a before_save handler. [Joe Sak](https://github.com/joemsak)
492
- * Updated jquery-html5-placeholder-shim to latest version. [Amanda Wagener](https://github.com/awagener)
493
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.7.7...0.9.7.8)
494
-
495
- ## 0.9.7.7 [20 July 2010]
496
-
497
- * Fixed an issue in the plugin generator that saw locales being created with singular_name not the interpreted version. [Philip Arndt](https://github.com/parndt) and [Joe Sak](https://github.com/joemsak)
498
- * Fixed an issue with non-MySQL databases. [Lee Irving](https://github.com/magpieuk)
499
- * Refactored versioning and .gitignore file so that both are easier to follow and use. [Steven Heidel](https://github.com/stevenheidel)
500
- * Added rake refinery:test_all command to run all tests Refinery has. [Steven Heidel](https://github.com/stevenheidel)
501
- * Fixed deprecation warnings with translate rake tasks. [Steven Heidel](https://github.com/stevenheidel)
502
- * Bugfixes, some IE compatibility. [Philip Arndt](https://github.com/parndt)
503
- * Fix syntax errors in existing resource dialog. [David Jones](https://github.com/djones)
504
- * Identified and fixed a positioning bug in dialogues [Joe Sak](https://github.com/joemsak) and [Philip Arndt](https://github.com/parndt)
505
- * Fixed issue that was causing Refinery to load in rake tasks twice if they lived under `"#{Rails.root}/vendor/plugins"`. [David Jones](https://github.com/djones) and [Philip Arndt](https://github.com/parndt)
506
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.7.6...0.9.7.7)
507
-
508
- ## 0.9.7.6 [15 July 2010]
509
-
510
- * Bugfixes, fixed some failing tests. [Philip Arndt](https://github.com/parndt)
511
- * More pt-BR translation keys translated. [Kivanio Barbosa](https://github.com/kivanio)
512
- * Locked gems using `Gemfile.lock`. [David Jones](https://github.com/djones)
513
- * Changed 'refinery' task to 'refinerycms' as that is our gem's name. [Steven Heidel](https://github.com/stevenheidel)
514
- * Fixed bug where settings were still considered restricted if NULL. [Steven Heidel](https://github.com/stevenheidel)
515
- * Ensures that bundler is available before creating an application from a gem. [Philip Arndt](https://github.com/parndt)
516
- * Application generator (from gem) and application upgrade bin task. (from 0.9.6) is now Ruby 1.9.2 compatible. [Philip Arndt](https://github.com/parndt)
517
- * bin/refinery-upgrade-from-096-to-097 will no longer allow you to run it if Gemfile is present and thus signifying an upgraded app. [Philip Arndt](https://github.com/parndt)
518
- * Cleaned up syntax, changed CSS involving dialogues. [Philip Arndt](https://github.com/parndt)
519
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.7.5...0.9.7.6)
520
-
521
- ## 0.9.7.5 [08 July 2010]
522
-
523
- * Wrote an upgrade task for migrating from 0.9.6.x releases of RefineryCMS. Just run refinery-update-096-to-097 inside your application's directory. [Philip Arndt](https://github.com/parndt)
524
- * Improved code used to include gem rake tasks and script/generate tasks into the Refinery application to fix issue with these tasks not being found. [Philip Arndt](https://github.com/parndt)
525
- * Fixed a broken migration that would mean pages were missing upon upgrading. [Jesper Hvirring Henriksen](https://github.com/hvirring)
526
- * More pt-BR translation keys translated. [Kivanio Barbosa](https://github.com/kivanio)
527
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.7.4...0.9.7.5)
528
-
529
- ## 0.9.7.4 [07 July 2010]
530
-
531
- * Fixed critical issue in the i18n routing pattern that was matching prefixes like /news/ as a locale incorrectly. [Philip Arndt](https://github.com/parndt)
532
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.7.3...0.9.7.4)
533
-
534
- ## 0.9.7.3 [07 July 2010]
535
-
536
- * Falls back to default locale when a translation key can not be located in the current locale, only in production mode. [Philip Arndt](https://github.com/parndt)
537
- * Fixed issue creating a Refinery site using bin/refinery where directory paths contained spaces. [Philip Arndt](https://github.com/parndt)
538
- * Fixed issue when using script/generate refinery surrounding the migration incorrectly using the plugin's title. [Philip Arndt](https://github.com/parndt)
539
- * Added verbose=true option when running rake refinery:update that prints out everything it's doing. [Philip Arndt](https://github.com/parndt)
540
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.7.2...0.9.7.3)
541
-
542
- ## 0.9.7.2 [06 July 2010]
543
-
544
- * Bugfixes with users and roles. [Philip Arndt](https://github.com/parndt) and [Amanda Wagener](https://github.com/awagener)
545
- * Fixed the rake translate:lost_in_translation LOCALE=en and rake translate:lost_in_translation_all tasks so that they accurately reflect the missing i18n translation keys. [Philip Arndt](https://github.com/parndt)
546
- * Refactored routing of i18n to allow different default frontend and backend locales. [Philip Arndt](https://github.com/parndt)
547
- * Added better grammar support for some i18n. [Halan Pinheiro](https://github.com/halan)
548
- * Improved output of rake refinery:update task and removed bin/refinery-update-core task. [Steven Heidel](https://github.com/stevenheidel)
549
- * Set config.ru to run in production RAILS_ENV by default. [Philip Arndt](https://github.com/parndt)
550
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.7.1...0.9.7.2)
551
-
552
- ## 0.9.7.1 [03 July 2010]
553
-
554
- * Bugfixes in the gem installation method process. [Philip Arndt](https://github.com/parndt)
555
- * Made installing from gem faster. [Philip Arndt](https://github.com/parndt)
556
- * Provided example files for sqlite3, mysql and postgresql. [Philip Arndt](https://github.com/parndt)
557
- * Created option for specifying a database adapter (sqlite3, mysql or postgresql) when creating from Gem. [Philip Arndt](https://github.com/parndt)
558
- * Other bugfixes including UI consistency around signup. [Philip Arndt](https://github.com/parndt)
559
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.7...0.9.7.1)
560
-
561
- ## 0.9.7 [02 July 2010]
562
-
563
- * Full backend internationalisation (i18n) support and frontend i18n routing. [Maarten Hoogendoorn](https://github.com/moretea) and [Philip Arndt](https://github.com/parndt) and many others
564
- * Marketable URLs, such as "/contact". [Joshua Davey](https://github.com/jgdavey) and [Joe Sak](https://github.com/joemsak).
565
- * Switched to bundler and rack. [Alex Coles](https://github.com/myabc) and [Philip Arndt](https://github.com/parndt)
566
- * Added options to Refinery Settings :restricted, :scoping, :callback_proc_as_string. [Steven Heidel](https://github.com/stevenheidel) and [Philip Arndt](https://github.com/parndt)
567
- * Added caching abilities to frontend and to RefinerySetting to drastically speed up the application under certain conditions. [Philip Arndt](https://github.com/parndt)
568
- * Added spam filtering to contact form. [David Jones](https://github.com/djones)
569
- * Full Refinery UI redesign. [Resolve Digital](https://github.com/resolve)
570
- * User Role support. [Amanda Wagener](https://github.com/awagener) and [Philip Arndt](https://github.com/parndt)
571
- * [See full list](https://github.com/resolve/refinerycms/compare/0.9.6.34...0.9.7)
572
- * [See blog post](http://refinerycms.com/blog/refinery-cms-0-9-7-released)
573
-
574
- ## 0.9.6.34 [09 May 2010]
575
-
576
- * Bugfixes.
577
-
578
- ## 0.9.6.33 [06 May 2010]
579
-
580
- * Bugfixes.
581
-
582
- ## 0.9.6.32 [05 May 2010]
583
-
584
- * Bugfixes.
585
-
586
- ## 0.9.6.31 [19 April 2010]
587
-
588
- * Bugfixes.
589
-
590
- ## 0.9.6.30 [15 April 2010]
591
-
592
- * Bugfixes.
593
-
594
- ## 0.9.6.29 [14 April 2010]
595
-
596
- * Bugfixes.
597
-
598
- ## 0.9.6.28 [12 April 2010]
599
-
600
- * Bugfixes.
601
-
602
- ## 0.9.6.27 [12 April 2010]
603
-
604
- * Bugfixes.
605
-
606
- ## 0.9.6.26 [07 April 2010]
607
-
608
- * Bugfixes.
609
-
610
- ## 0.9.6.25 [01 April 2010]
611
-
612
- * Bugfixes.
613
-
614
- ## 0.9.6.24 [26 March 2010]
615
-
616
- * Bugfixes.
617
-
618
- ## 0.9.6.23 [26 March 2010]
619
-
620
- * Bugfixes.
621
-
622
- ## 0.9.6.22 [26 March 2010]
623
-
624
- * Bugfixes.
625
-
626
- ## 0.9.6.21 [23 March 2010]
627
-
628
- * Bugfixes.
629
-
630
- ## 0.9.6.19 [03 March 2010]
631
-
632
- * Bugfixes.
633
-
634
- ## 0.9.6.18 [02 March 2010]
635
-
636
- * Bugfixes.
637
-
638
- ## 0.9.6.17 [02 March 2010]
639
-
640
- * Bugfixes.
641
-
642
- ## 0.9.6.16 [02 March 2010]
643
-
644
- * Bugfixes.
645
-
646
- ## 0.9.6.15 [01 March 2010]
647
-
648
- * Bugfixes.
649
-
650
- ## 0.9.6.14 [24 February 2010]
651
-
652
- * Bugfixes.
653
-
654
- ## 0.9.6.13 [23 February 2010]
655
-
656
- * Bugfixes.
657
-
658
- ## 0.9.6.12 [16 February 2010]
659
-
660
- * Bugfixes.
661
-
662
- ## 0.9.6.11 [16 February 2010]
663
-
664
- * Bugfixes.
665
-
666
- ## 0.9.6.10 [15 February 2010]
667
-
668
- * Bugfixes.
669
-
670
- ## 0.9.6.9 [15 February 2010]
671
-
672
- * Bugfixes.
673
-
674
- ## 0.9.6.8 [14 February 2010]
675
-
676
- * Bugfixes.
677
-
678
- ## 0.9.6.7 [10 February 2010]
679
-
680
- * Bugfixes.
681
-
682
- ## 0.9.6.6 [10 February 2010]
683
-
684
- * Bugfixes.
685
-
686
- ## 0.9.6.5 [08 February 2010]
687
-
688
- * Bugfixes.
689
-
690
- ## 0.9.6.4 [07 February 2010]
691
-
692
- * Bugfixes.
693
-
694
- ## 0.9.6.3 [07 February 2010]
695
-
696
- * Bugfixes.
697
-
698
- ## 0.9.6.2 [04 February 2010]
699
-
700
- * Bugfixes.
701
-
702
- ## 0.9.6.1 [04 February 2010]
703
-
704
- * Bugfixes.
705
-
706
- ## 0.9.6 [04 February 2010]
707
-
708
- * Minor release.
709
-
710
- ## 0.9.5.31 [27 January 2010]
711
-
712
- * Bugfixes.
713
-
714
- ## 0.9.5.30 [24 January 2010]
715
-
716
- * Bugfixes.
717
-
718
- ## 0.9.5.29 [23 December 2009]
719
-
720
- * Bugfixes.
721
-
722
- ## 0.9.5.28 [17 December 2009]
723
-
724
- * Bugfixes.
725
-
726
- ## 0.9.5.27 [16 December 2009]
727
-
728
- * Bugfixes.
729
-
730
- ## 0.9.5.26 [13 December 2009]
731
-
732
- * Bugfixes.
733
-
734
- ## 0.9.5.25 [09 December 2009]
735
-
736
- * Bugfixes.
737
-
738
- ## 0.9.5.24 [08 December 2009]
739
-
740
- * Bugfixes.
741
-
742
- ## 0.9.5.23 [07 December 2009]
743
-
744
- * Bugfixes.
745
-
746
- ## 0.9.5.22 [07 December 2009]
747
-
748
- * Bugfixes.
749
-
750
- ## 0.9.5.21 [06 December 2009]
751
-
752
- * Bugfixes.
753
-
754
- ## 0.9.5.20 [03 December 2009]
755
-
756
- * Bugfixes.
757
-
758
- ## 0.9.5.19 [30 November 2009]
759
-
760
- * Bugfixes.
761
-
762
- ## 0.9.5.18 [29 November 2009]
763
-
764
- * Bugfixes.
765
-
766
- ## 0.9.5.16 [26 November 2009]
767
-
768
- * Bugfixes.
769
-
770
- ## 0.9.5.15 [22 November 2009]
771
-
772
- * Bugfixes.
773
-
774
- ## 0.9.5.14 [19 November 2009]
775
-
776
- * Bugfixes.
777
-
778
- ## 0.9.5.13 [18 November 2009]
779
-
780
- * Bugfixes.
781
-
782
- ## 0.9.5.12 [18 November 2009]
783
-
784
- * Bugfixes.
785
-
786
- ## 0.9.5.11 [18 November 2009]
787
-
788
- * Bugfixes.
789
-
790
- ## 0.9.5.10 [17 November 2009]
791
-
792
- * Bugfixes.
793
-
794
- ## 0.9.5.9 [16 November 2009]
795
-
796
- * Bugfixes.
797
-
798
- ## 0.9.5.8 [15 November 2009]
799
-
800
- * Bugfixes.
801
-
802
- ## 0.9.5.7 [09 November 2009]
803
-
804
- * Bugfixes.
805
-
806
- ## 0.9.5.6 [09 November 2009]
807
-
808
- * Bugfixes.
809
-
810
- ## 0.9.5.5 [08 November 2009]
811
-
812
- * Bugfixes.
813
-
814
- ## 0.9.5.4 [04 November 2009]
815
-
816
- * Bugfixes.
817
-
818
- ## 0.9.5.3 [04 November 2009]
819
-
820
- * Bugfixes.
821
-
822
- ## 0.9.5.2 [04 November 2009]
823
-
824
- * Bugfixes.
825
-
826
- ## 0.9.5.1 [03 November 2009]
827
-
828
- * Bugfixes.
829
-
830
- ## 0.9.5 [03 November 2009]
831
-
832
- * Minor release.
833
-
834
- ## 0.9.4.4 [29 October 2009]
835
-
836
- * Bugfixes.
837
-
838
- ## 0.9.4.3 [19 October 2009]
839
-
840
- * Bugfixes.
841
-
842
- ## 0.9.4.2 [19 October 2009]
843
-
844
- * Bugfixes.
845
-
846
- ## 0.9.4 [15 October 2009]
847
-
848
- * Minor release.
849
-
850
- ## 0.9.3 [11 October 2009]
851
-
852
- * Optimise loading of WYM Editors.
853
- * Supported more plugins' menu matches.
854
-
855
- ## 0.9.2.2 [08 October 2009]
856
-
857
- * Bugfixes.
858
-
859
- ## 0.9.2.1 [08 October 2009]
860
-
861
- * Fix bug with using instance_methods vs using methods to detect whether friendly_id is present.
862
-
863
- ## 0.9.2 [08 October 2009]
864
-
865
- * Update rails gem requirement to 2.3.4.
866
-
867
- ## 0.9.1.2 [07 October 2009]
868
-
869
- * Updated JS libraries and added lots of convenience methods.
870
-
871
- ## 0.9.1.1 [05 October 2009]
872
-
873
- * HTML & CSS changes.
874
-
875
- ## 0.9.1 [04 October 2009]
876
-
877
- * Bugfixes.
878
- * Renamed project from Refinery to refinerycms and released as a gem.
879
-
880
- ## 0.9 [29 May 2009]
881
-
882
- * Initial public release.