motiro 0.6.9 → 0.6.10

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.
Files changed (77) hide show
  1. data/README +1 -1
  2. data/Rakefile +2 -2
  3. data/app/core/version.rb +1 -1
  4. data/app/helpers/feed_helper.rb +2 -0
  5. data/app/reporters/darcs_reporter.rb +2 -3
  6. data/app/views/events/new.rhtml +14 -0
  7. data/app/views/feed/subversion.rhtml +26 -0
  8. data/app/views/report/events_detail.rhtml +12 -0
  9. data/build/build.rb +29 -0
  10. data/config/boot.rb +104 -14
  11. data/config/environment.rb +35 -38
  12. data/config/environments/development.rb +5 -7
  13. data/config/environments/production.rb +3 -3
  14. data/config/environments/test.rb +5 -2
  15. data/config/initializers/globalize.rb +5 -0
  16. data/config/initializers/inflections.rb +10 -0
  17. data/config/initializers/mime_types.rb +5 -0
  18. data/config/initializers/motiro_core.rb +5 -0
  19. data/config/motiro.yml +4 -4
  20. data/config/report/subversion.yml +26 -0
  21. data/doc/README_FOR_APP +1 -1
  22. data/lib/login_system.rb +2 -2
  23. data/lib/tasks/packaging.rake +4 -4
  24. data/public/404.html +27 -5
  25. data/public/422.html +30 -0
  26. data/public/500.html +27 -5
  27. data/public/dispatch.rb +2 -2
  28. data/public/javascripts/application.js +2 -0
  29. data/public/javascripts/controls.js +532 -319
  30. data/public/javascripts/dragdrop.js +521 -133
  31. data/public/javascripts/effects.js +708 -442
  32. data/public/javascripts/prototype.js +3393 -953
  33. data/public/robots.txt +5 -1
  34. data/public/selenium/tests/TestMainPage.html +42 -0
  35. data/public/selenium/tests/TestReportHTML.html +42 -0
  36. data/public/selenium/tests/TestReportRSS.html +37 -0
  37. data/public/selenium/tests/TestSubversionOnMain.html +32 -0
  38. data/public/selenium/tests/TestSuite.html +26 -0
  39. data/script/about +1 -1
  40. data/script/console +1 -1
  41. data/script/destroy +1 -1
  42. data/script/generate +1 -1
  43. data/script/performance/request +3 -0
  44. data/script/plugin +1 -1
  45. data/script/process/inspector +3 -0
  46. data/script/runner +1 -1
  47. data/script/server +1 -1
  48. data/test/fixtures/headlines.yml +6 -6
  49. data/test/functional/report_controller_test.rb +18 -18
  50. data/test/functional/root_controller_test.rb +1 -1
  51. data/test/test_helper.rb +11 -1
  52. data/test/unit/chief_editor_test.rb +20 -26
  53. data/test/unit/darcs_reporter_test.rb +6 -0
  54. data/test/unit/headline_test.rb +25 -8
  55. data/vendor/plugins/cache_test-0.2/doc/classes/Cosinux/FragmentCacheTest/Assertions.html +364 -0
  56. data/vendor/plugins/cache_test-0.2/doc/classes/Cosinux/PageCacheTest/IntegrationTestMethods.html +261 -0
  57. data/vendor/plugins/cache_test-0.2/doc/created.rid +1 -0
  58. data/vendor/plugins/cache_test-0.2/doc/files/CHANGELOG.html +128 -0
  59. data/vendor/plugins/cache_test-0.2/doc/files/MIT-LICENSE.html +129 -0
  60. data/vendor/plugins/cache_test-0.2/doc/files/README.html +272 -0
  61. data/vendor/plugins/cache_test-0.2/doc/files/init_rb.html +109 -0
  62. data/vendor/plugins/cache_test-0.2/doc/files/lib/fragment_cache_test_rb.html +101 -0
  63. data/vendor/plugins/cache_test-0.2/doc/files/lib/page_cache_test_rb.html +101 -0
  64. data/vendor/plugins/cache_test-0.2/doc/fr_class_index.html +28 -0
  65. data/vendor/plugins/cache_test-0.2/doc/fr_file_index.html +32 -0
  66. data/vendor/plugins/cache_test-0.2/doc/fr_method_index.html +32 -0
  67. data/vendor/plugins/cache_test-0.2/doc/index.html +24 -0
  68. data/vendor/plugins/cache_test-0.2/doc/rdoc-style.css +208 -0
  69. data/vendor/plugins/caching_monkey_patch/init.rb +13 -0
  70. data/vendor/plugins/rails_cron/CHANGELOG +8 -0
  71. data/vendor/plugins/rails_cron/LICENSE +7 -0
  72. data/vendor/plugins/rails_cron/README +77 -0
  73. data/vendor/plugins/rails_cron/init.rb +16 -0
  74. data/vendor/plugins/rails_cron/lib/acts_as_background.rb +14 -0
  75. data/vendor/plugins/rails_cron/lib/rails_cron.rb +128 -0
  76. data/vendor/plugins/rails_cron/tasks/startup.rake +50 -0
  77. metadata +466 -406
@@ -0,0 +1,13 @@
1
+ module ActionController::Caching::Pages
2
+ def cache_page(content = nil, options = params)
3
+ return unless perform_caching && caching_allowed
4
+
5
+ if options.is_a?(Hash)
6
+ path = url_for(options.merge(:only_path => true, :skip_relative_url_root => true, :format => params[:format]))
7
+ else
8
+ path = options
9
+ end
10
+
11
+ self.class.cache_page(content || response.body, path)
12
+ end
13
+ end
@@ -0,0 +1,8 @@
1
+ SVN
2
+ - Acts_as_background
3
+ - Singleton functionality
4
+ - db_sleep
5
+
6
+ 0.1
7
+ - RailsCron AR model
8
+ - Rake tasks
@@ -0,0 +1,7 @@
1
+ Copyright (c) 2005 Kyle Maxwell
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,77 @@
1
+ ** Note: Check out the new RailsCron Wiki at http://wiki.kylemaxwell.com/rails_cron/ **
2
+
3
+ OVERVIEW
4
+ ========
5
+
6
+ RailsCron is a way to execute background tasks using your Ruby on Rails environment. The RailsCron object is an ActiveRecord, so you can manipulate it in familiar ways:
7
+
8
+ RailsCron.create(
9
+ :command => "Object.do_something()",
10
+ :start => 2.minutes.from_now,
11
+ :every => 12.hours, # default: 1.day
12
+ :finish => 2.years.from_now # optional
13
+ )
14
+
15
+ RailsCron.destroy_all
16
+ RailsCron.find_by_command "some_command"
17
+
18
+
19
+ Cron, when used with RoR, has the following shortcomings:
20
+
21
+ * Significant startup resources required
22
+ * Lots of RAM to run simultaneous processes
23
+ * Hard to start/stop/affect the background processes from within Rails.
24
+
25
+ RailsCron addresses these shortcomings by using one RoR instance with threading (Ruby, native to be added later).
26
+
27
+ USING ACTS_AS_BACKGROUND
28
+ ========================
29
+
30
+ RailsCron will let you designate a class method of an ActiveRecord model (or another class that includes ActsAsBackground) to be run in the background. This is useful for asynchronous processing of things like email queues. Note that by default, only one background thread of a given method will be running at any time (override with :concurrent => true).
31
+
32
+ class EmailQueue < ActiveRecord::Base
33
+ background :deliver, :every => 1.minute, :concurrent => true
34
+
35
+ def self.deliver
36
+ #process the queue
37
+ end
38
+ end
39
+
40
+ OPTIONS
41
+ ======
42
+
43
+ RailsCron has a class accessor method called options that takes a hash. The following keys are used:
44
+ * :sleep -- Polling interval in seconds. Tasks will not execute more frequently than this. Default: 1 second.
45
+ * :db_sleep -- Polling interval determines when RailsCron will look in the database for new tasks. Default: 1 minute.
46
+
47
+ STARTING & STOPPING
48
+ ==================
49
+
50
+ RailsCron is started and stopped by Rake. List of Rake tasks:
51
+
52
+ * cron_start -- Starts RailsCron as a daemon
53
+ * cron_foreground -- Starts RailsCron in the foreground
54
+ * cron_stop -- Graceful stop
55
+ * cron_kill
56
+ * cron_graceful -- Graceful restart
57
+ * cron_status
58
+
59
+ These commands are UNIX-oriented. Windows users can start with "ruby script\runner 'RailsCron.start'" and stop with Ctrl-C. I have no idea (or need) of how to make this a Windows service, but the patch would be welcome.
60
+
61
+ The following environment variables are used by the Rake tasks:
62
+
63
+ * RAILSCRON_SUDO -- The background job will sudo as this user. Default: Not used
64
+ * RAILS_ENV -- Default: development
65
+
66
+ INSTALLATION
67
+ ============
68
+
69
+ RailsCron is a standard Ruby on Rails plugin. For information about how to install plugins, type "ruby script/plugin --help" from within a rails project.
70
+
71
+ RailsCron will add a table called 'rails_crons' to your database(s), if it does not already exist.
72
+
73
+ BUGS & FEEDBACK
74
+ ===============
75
+
76
+ Bug reports (as well as patches) and feedback are very welcome. Please send it to
77
+ kyle@kylemaxwell.com
@@ -0,0 +1,16 @@
1
+ require "rails_cron"
2
+ require "acts_as_background"
3
+ ActiveRecord::Base.send :include, ActsAsBackground
4
+
5
+ unless RailsCron.table_exists?
6
+ ActiveRecord::Schema.create_table(RailsCron.table_name) do |t|
7
+ t.column :command, :text
8
+ t.column :start, :integer
9
+ t.column :finish, :integer
10
+ t.column :every, :integer
11
+ end
12
+ end
13
+
14
+ unless RailsCron.content_columns.map{|a|a.name}.include? "concurrent"
15
+ ActiveRecord::Schema.add_column :rails_crons, :concurrent, :boolean
16
+ end
@@ -0,0 +1,14 @@
1
+ module ActsAsBackground
2
+
3
+ def self.append_features(base)
4
+ super
5
+ base.extend(ClassMethods)
6
+ end
7
+
8
+ module ClassMethods
9
+
10
+ def background(method, options = {})
11
+ RailsCron.create_singleton(self, method, options)
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,128 @@
1
+ class RailsCron < ActiveRecord::Base
2
+ cattr_accessor :options
3
+
4
+ @@options = {
5
+ :sleep => 1,
6
+ :db_sleep => 60,
7
+ :allow_concurrency => false
8
+ }
9
+
10
+ validates_presence_of :command, :start
11
+
12
+ def self.start
13
+ ENV.keys.each{|key| @@options[key.downcase.to_sym] = ENV[key]}
14
+
15
+ ActiveRecord::Base.allow_concurrency = @@options[:allow_concurrency]
16
+
17
+ begin
18
+ Signal.trap("USR1") do
19
+ trace "RailsCron shutting down (Caught signal USR1)"
20
+ @@running = false
21
+ end
22
+ rescue ArgumentError
23
+ trace "Graceful restart not supported, ignoring"
24
+ end
25
+
26
+ @@running = true
27
+ threads = {}
28
+
29
+ while @@running
30
+ task_list.each do |job|
31
+ if job.should_run_now
32
+ key = (job.concurrent?) ? (Time.now.to_f + rand) : (job.command)
33
+ threads[key] ||= Thread.new do
34
+ eval job.command
35
+ RailsCron.trace key, job.command
36
+ end
37
+ end
38
+ end
39
+ sleep @@options[:sleep]
40
+ threads = threads.delete_if{|key, value| !value.alive? }
41
+ end
42
+
43
+ threads.each{|t| t.join}
44
+ RailsCron.trace "RailsCron ended gracefully"
45
+ end
46
+
47
+ def self.trace(*args)
48
+ if @@options[:log]
49
+ File.open(File.join(File.expand_path(RAILS_ROOT), "log", "rails_cron.log"), "a") do |f|
50
+ f.puts "#{Time.now}\t#{args.join "\t"}"
51
+ end
52
+ end
53
+ end
54
+
55
+ def self.create_singleton(klass, method, options = {})
56
+ klass = eval klass.to_s
57
+ method = method.to_s
58
+ destroy_singleton klass.to_s, method
59
+
60
+ sr = klass.read_inheritable_attribute(:cron_singleton_methods) ||
61
+ klass.write_inheritable_attribute(:cron_singleton_methods, [])
62
+ sr.push method.to_sym
63
+ klass.write_inheritable_attribute :cron_singleton_methods, sr.uniq
64
+
65
+ RailsCron.create(
66
+ :command => wrap(klass.to_s, method),
67
+ :start => (options[:start] || 0),
68
+ :every => (options[:every] || 10),
69
+ :finish => options[:finish],
70
+ :concurrent => (options[:concurrent] || false)
71
+ )
72
+ end
73
+
74
+ def self.execute_singleton(klass, method)
75
+ klass = eval(klass.to_s)
76
+ method = method.to_sym
77
+ if klass.read_inheritable_attribute(:cron_singleton_methods).include? method
78
+ klass.send method
79
+ end
80
+ rescue Exception => e
81
+ logger.error("Error while executing RailsCron task: " << e.message << "\n\t" << e.backtrace.join("\n\t"))
82
+ end
83
+
84
+ def self.destroy_singleton(klass, method)
85
+ find_all_by_command(wrap(klass, method)).each{|i| i.destroy}
86
+ end
87
+
88
+ # Force db update before next command run
89
+ def self.refresh
90
+ @@last_db_update = 0
91
+ end
92
+
93
+ #Cast times to ints
94
+ %w(start finish every).each do |i|
95
+ class_eval <<-STR
96
+ def #{i}=(arg); self["#{i}"] = arg ? arg.to_i : nil ; end
97
+ STR
98
+ end
99
+
100
+ def should_run_now
101
+ now = Time.now.to_i
102
+ return false if self.start && self.start > now
103
+ return false if self.finish && self.finish < now
104
+
105
+ start = self.start
106
+ every = self.every || 1.day
107
+ proximity = (now - start) % every
108
+ return proximity < @@options[:sleep]
109
+ end
110
+
111
+ protected
112
+
113
+ def self.wrap(klass, method)
114
+ "RailsCron.send :execute_singleton, :#{klass}, :#{method}"
115
+ end
116
+
117
+ def self.task_list
118
+ @@last_db_update ||= 0
119
+ if (Time.now.to_i - @@last_db_update) > @@options[:db_sleep]
120
+ @@last_db_update = Time.now.to_i
121
+ @@task_list = find(:all)
122
+ else
123
+ @@task_list
124
+ end
125
+ end
126
+
127
+ def self.reloadable?; false end
128
+ end
@@ -0,0 +1,50 @@
1
+ require 'active_support'
2
+
3
+ def sudo(cmd)
4
+ ENV['RAILSCRON_SUDO'].blank? ? cmd : "sudo -u #{ENV['RAILSCRON_SUDO']} #{cmd}"
5
+ end
6
+
7
+ desc "Starts RailsCron as a daemon"
8
+ task :cron_start do
9
+ if `#{sudo "ps x | grep RailsCron | grep -v grep"}`.strip.blank?
10
+ mode = ENV['RAILS_ENV'] || "development"
11
+ puts `#{sudo "nohup ruby script/runner -e #{mode} \"RailsCron.start\" > /dev/null 2>&1 &"}`
12
+ else
13
+ puts "RailsCron already started"
14
+ end
15
+ end
16
+
17
+ desc "Starts RailsCron in the foreground"
18
+ task :cron_foreground do
19
+ mode = ENV['RAILS_ENV'] || "development"
20
+ puts `ruby script/runner -e #{mode} \"RailsCron.start\"`
21
+ end
22
+
23
+ desc "Signals RailsCron to stop when the current tasks are finished"
24
+ task :cron_stop do
25
+ `#{sudo "ps x | grep RailsCron | grep -v grep | awk '{print $1}' | xargs kill -USR1"}`
26
+ end
27
+
28
+ desc "Kills RailsCron processes"
29
+ task :cron_kill do
30
+ `#{sudo "ps x | grep RailsCron | grep -v grep | awk '{print $1}' | xargs kill -9"}`
31
+ end
32
+
33
+ desc "Kills and restarts RailsCron"
34
+ task :cron_restart => [:cron_kill, :wait_till_none, :cron_start] do
35
+ end
36
+
37
+ desc "Gracefully restarts RailsCron"
38
+ task :cron_graceful => [:cron_stop, :wait_till_none, :cron_start] do
39
+ end
40
+
41
+ desc "Status of RailsCron"
42
+ task :cron_status do
43
+ puts `#{sudo "ps x | grep RailsCron | grep -v grep"}`
44
+ end
45
+
46
+ task :wait_till_none do
47
+ until `#{sudo "ps x | grep RailsCron | grep -v grep"}`.strip.blank?
48
+ sleep 1
49
+ end
50
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: motiro
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.9
4
+ version: 0.6.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thiago Arrais
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-02-27 00:00:00 -03:00
12
+ date: 2008-03-12 00:00:00 -03:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -19,7 +19,7 @@ dependencies:
19
19
  requirements:
20
20
  - - "="
21
21
  - !ruby/object:Gem::Version
22
- version: 1.2.3
22
+ version: 2.0.2
23
23
  version:
24
24
  - !ruby/object:Gem::Dependency
25
25
  name: daemons
@@ -28,7 +28,7 @@ dependencies:
28
28
  requirements:
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 1.0.4
31
+ version: 1.0.6
32
32
  version:
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: sqlite3-ruby
@@ -46,7 +46,7 @@ dependencies:
46
46
  requirements:
47
47
  - - ">="
48
48
  - !ruby/object:Gem::Version
49
- version: "0.5"
49
+ version: 0.6.1
50
50
  version:
51
51
  - !ruby/object:Gem::Dependency
52
52
  name: rails-app-installer
@@ -75,496 +75,556 @@ extensions: []
75
75
  extra_rdoc_files: []
76
76
 
77
77
  files:
78
- - README
79
- - public
80
- - public/dispatch.fcgi
81
- - public/javascripts
82
- - public/javascripts/effects.js
83
- - public/javascripts/dragdrop.js
84
- - public/javascripts/controls.js
85
- - public/javascripts/prototype.js
86
- - public/dispatch.rb
87
- - public/favicon.ico
88
- - public/dispatch.cgi
89
- - public/404.html
90
- - public/500.html
91
- - public/robots.txt
92
- - public/images
93
- - public/images/not-done.png
94
- - public/images/done.png
95
- - public/images/rss.png
96
- - public/images/calendar.png
97
- - public/stylesheets
98
- - public/stylesheets/scaffold.css
99
- - public/stylesheets/niftyCorners.css
100
- - public/stylesheets/motiro.css
101
- - README.en
102
- - config
103
- - config/boot.rb
104
- - config/routes.rb
105
- - config/environment.rb
106
- - config/motiro.yml
107
- - config/database.yml
108
- - config/environments
109
- - config/environments/test.rb
110
- - config/environments/production.rb
111
- - config/environments/development.rb
112
- - README.pt-br
113
78
  - components
114
- - LICENSE
115
- - AUTHORS
116
- - vendor
79
+ - installer
80
+ - installer/rails_installer_defaults.yml
81
+ - script
82
+ - script/runner
83
+ - script/generate
84
+ - script/server
85
+ - script/about
86
+ - script/destroy
87
+ - script/performance
88
+ - script/performance/request
89
+ - script/performance/benchmarker
90
+ - script/performance/profiler
91
+ - script/plugin
92
+ - script/ticker
93
+ - script/process
94
+ - script/process/spinner
95
+ - script/process/spawner
96
+ - script/process/reaper
97
+ - script/process/inspector
98
+ - script/console
99
+ - script/breakpointer
100
+ - Rakefile
101
+ - build
102
+ - build/build.rb
117
103
  - db
118
- - db/schema_version
119
104
  - db/motirodb.sqlite.initial
105
+ - db/schema_version
106
+ - db/translation
107
+ - db/translation/pt-BR.rb
120
108
  - db/migrate
109
+ - db/migrate/018_drop_redundant_page_columns.rb
110
+ - db/migrate/013_nullify_initial_page_attributes.rb
111
+ - db/migrate/017_revision_mimics_page.rb
112
+ - db/migrate/009_add_page_original_author.rb
113
+ - db/migrate/020_fix_modification_dates_for_old_pages.rb
114
+ - db/migrate/015_migrate_previous_event_data.rb
121
115
  - db/migrate/3_drop_articles.rb
122
- - db/migrate/025_add_page_references.rb
123
- - db/migrate/027_register_page_references.rb
124
- - db/migrate/022_provide_revision_position.rb
125
- - db/migrate/016_create_revisions.rb
116
+ - db/migrate/023_increment_revision_positions.rb
126
117
  - db/migrate/021_drop_type_column_from_pages_table.rb
127
- - db/migrate/020_fix_modification_dates_for_old_pages.rb
118
+ - db/migrate/022_provide_revision_position.rb
119
+ - db/migrate/4_add_page_editing.rb
120
+ - db/migrate/006_remove_headline_title.rb
121
+ - db/migrate/024_add_feature_status.rb
128
122
  - db/migrate/019_move_event_date_to_revision.rb
123
+ - db/migrate/010_remove_empty_string_defaults_from_pages.rb
124
+ - db/migrate/027_register_page_references.rb
129
125
  - db/migrate/007_stretch_rid.rb
130
- - db/migrate/012_page_modification_info.rb
131
126
  - db/migrate/008_add_page_editors.rb
127
+ - db/migrate/025_add_page_references.rb
128
+ - db/migrate/012_page_modification_info.rb
129
+ - db/migrate/014_events_are_wiki_pages.rb
132
130
  - db/migrate/011_add_title_and_kind_to_pages.rb
133
- - db/migrate/1_initial_structure.rb
134
- - db/migrate/4_add_page_editing.rb
135
- - db/migrate/018_drop_redundant_page_columns.rb
136
- - db/migrate/010_remove_empty_string_defaults_from_pages.rb
137
- - db/migrate/015_migrate_previous_event_data.rb
138
131
  - db/migrate/2_add_authentication.rb
139
- - db/migrate/024_add_feature_status.rb
140
- - db/migrate/009_add_page_original_author.rb
141
- - db/migrate/013_nullify_initial_page_attributes.rb
142
- - db/migrate/014_events_are_wiki_pages.rb
143
- - db/migrate/017_revision_mimics_page.rb
144
- - db/migrate/005_globalize_migration.rb
145
132
  - db/migrate/026_convert_link_syntax.rb
146
- - db/migrate/006_remove_headline_title.rb
147
- - db/migrate/023_increment_revision_positions.rb
148
- - db/translation
149
- - db/translation/pt-BR.rb
133
+ - db/migrate/1_initial_structure.rb
134
+ - db/migrate/005_globalize_migration.rb
135
+ - db/migrate/016_create_revisions.rb
136
+ - README.en
137
+ - README
138
+ - config
139
+ - config/boot.rb
140
+ - config/environment.rb
141
+ - config/environments
142
+ - config/environments/test.rb
143
+ - config/environments/development.rb
144
+ - config/environments/production.rb
145
+ - config/database.yml
146
+ - config/initializers
147
+ - config/initializers/motiro_core.rb
148
+ - config/initializers/inflections.rb
149
+ - config/initializers/globalize.rb
150
+ - config/initializers/mime_types.rb
151
+ - config/motiro.yml
152
+ - config/report
153
+ - config/report/subversion.yml
154
+ - config/routes.rb
155
+ - bin
156
+ - bin/motiro
157
+ - app
158
+ - app/views
159
+ - app/views/wiki
160
+ - app/views/wiki/diff.rhtml
161
+ - app/views/wiki/_editbar.rhtml
162
+ - app/views/wiki/sourcediff.rhtml
163
+ - app/views/wiki/history.rhtml
164
+ - app/views/wiki/page_feed.rxml
165
+ - app/views/wiki/_show_feature.rhtml
166
+ - app/views/wiki/_diffbar.rhtml
167
+ - app/views/wiki/_properties_show.rhtml
168
+ - app/views/wiki/_edit_feature.rhtml
169
+ - app/views/wiki/properties_edit.rhtml
170
+ - app/views/wiki/_edit_event.rhtml
171
+ - app/views/wiki/edit.rhtml
172
+ - app/views/wiki/show.rhtml
173
+ - app/views/wiki/_show_event.rhtml
174
+ - app/views/wiki/_properties_edit.rhtml
175
+ - app/views/wiki/_editor.rhtml
176
+ - app/views/events
177
+ - app/views/events/new.rhtml
178
+ - app/views/account
179
+ - app/views/account/_availability.rhtml
180
+ - app/views/account/logout.rhtml
181
+ - app/views/account/availability.rhtml
182
+ - app/views/account/login.rhtml
183
+ - app/views/account/_authorization.rhtml
184
+ - app/views/javascript
185
+ - app/views/javascript/niftycube.rjs
186
+ - app/views/javascript/motiro.rjs
187
+ - app/views/root
188
+ - app/views/root/index.rhtml
189
+ - app/views/layouts
190
+ - app/views/layouts/_bottom.rhtml
191
+ - app/views/layouts/_header.rhtml
192
+ - app/views/layouts/wiki_edit.rhtml
193
+ - app/views/layouts/_top.rhtml
194
+ - app/views/layouts/application.rhtml
195
+ - app/views/layouts/scaffold.rhtml
196
+ - app/views/feed
197
+ - app/views/feed/subversion.rhtml
198
+ - app/views/report
199
+ - app/views/report/rss.rxml
200
+ - app/views/report/list.rhtml
201
+ - app/views/report/events_detail.rhtml
202
+ - app/views/report/older.rhtml
203
+ - app/views/report/show.rhtml
204
+ - app/core
205
+ - app/core/settings.rb
206
+ - app/core/cache_reporter_fetcher.rb
207
+ - app/core/version.rb
208
+ - app/core/reporter.rb
209
+ - app/core/wiki_reporter.rb
210
+ - app/core/reporter_driver.rb
211
+ - app/core/cache_reporter.rb
212
+ - app/core/chief_editor.rb
213
+ - app/core/reporter_fetcher.rb
214
+ - app/core/wiki_page_not_found.rb
215
+ - app/models
216
+ - app/models/revision.rb
217
+ - app/models/wiki_reference.rb
218
+ - app/models/feed_observer.rb
219
+ - app/models/user.rb
220
+ - app/models/wiki_sweeper.rb
221
+ - app/models/page.rb
222
+ - app/models/change.rb
223
+ - app/models/headline.rb
224
+ - app/models/chunk.rb
225
+ - app/ports
226
+ - app/ports/chdir_runner.rb
227
+ - app/ports/reporter_loader.rb
228
+ - app/ports/runner.rb
229
+ - app/helpers
230
+ - app/helpers/wiki_helper.rb
231
+ - app/helpers/application_helper.rb
232
+ - app/helpers/report_helper.rb
233
+ - app/helpers/feed_helper.rb
234
+ - app/helpers/root_helper.rb
235
+ - app/helpers/account_helper.rb
236
+ - app/helpers/default_page_provider.rb
237
+ - app/reporters
238
+ - app/reporters/svn_connection.rb
239
+ - app/reporters/svn_settings.rb
240
+ - app/reporters/darcs_settings.rb
241
+ - app/reporters/darcs_reporter.rb
242
+ - app/reporters/subversion_reporter.rb
243
+ - app/reporters/darcs_connection.rb
244
+ - app/reporters/darcs_temp_repo.rb
245
+ - app/reporters/features_reporter.rb
246
+ - app/reporters/events_reporter.rb
247
+ - app/controllers
248
+ - app/controllers/wiki_controller.rb
249
+ - app/controllers/report_controller.rb
250
+ - app/controllers/account_controller.rb
251
+ - app/controllers/javascript_controller.rb
252
+ - app/controllers/root_controller.rb
253
+ - app/controllers/application.rb
254
+ - lib
255
+ - lib/diff_chunk_builder.rb
256
+ - lib/tick_daemon.rb
257
+ - lib/array_extensions.rb
258
+ - lib/import_translations.rb
259
+ - lib/translator.rb
260
+ - lib/stub_hash.rb
261
+ - lib/relative_time.rb
262
+ - lib/login_system.rb
263
+ - lib/wiki_link_handler.rb
264
+ - lib/tasks
265
+ - lib/tasks/packaging.rake
266
+ - lib/tasks/testing.rake
267
+ - lib/differ.rb
268
+ - lib/wiki_renderer.rb
269
+ - lib/string_extensions.rb
270
+ - AUTHORS
150
271
  - doc
151
272
  - doc/README_FOR_APP
152
- - installer
153
- - installer/rails_installer_defaults.yml
154
- - script
155
- - script/plugin
156
- - script/performance
157
- - script/performance/profiler
158
- - script/performance/benchmarker
159
- - script/process
160
- - script/process/spawner
161
- - script/process/spinner
162
- - script/process/reaper
163
- - script/ticker
164
- - script/server
165
- - script/runner
166
- - script/destroy
167
- - script/console
168
- - script/about
169
- - script/generate
170
- - script/breakpointer
273
+ - public
274
+ - public/selenium
275
+ - public/selenium/tests
276
+ - public/selenium/tests/TestMainPage.html
277
+ - public/selenium/tests/TestSubversionOnMain.html
278
+ - public/selenium/tests/TestSuite.html
279
+ - public/selenium/tests/TestReportRSS.html
280
+ - public/selenium/tests/TestReportHTML.html
281
+ - public/422.html
282
+ - public/dispatch.fcgi
283
+ - public/dispatch.rb
284
+ - public/favicon.ico
285
+ - public/images
286
+ - public/images/rss.png
287
+ - public/images/done.png
288
+ - public/images/not-done.png
289
+ - public/images/calendar.png
290
+ - public/stylesheets
291
+ - public/stylesheets/niftyCorners.css
292
+ - public/stylesheets/scaffold.css
293
+ - public/stylesheets/motiro.css
294
+ - public/robots.txt
295
+ - public/javascripts
296
+ - public/javascripts/dragdrop.js
297
+ - public/javascripts/application.js
298
+ - public/javascripts/effects.js
299
+ - public/javascripts/controls.js
300
+ - public/javascripts/prototype.js
301
+ - public/500.html
302
+ - public/dispatch.cgi
303
+ - public/404.html
304
+ - LICENSE
305
+ - README.pt-br
171
306
  - test
172
- - test/test_helper.rb
173
- - test/mocks
174
- - test/mocks/development
175
- - test/mocks/test
176
- - test/mocks/svn_reporter.rb
177
- - test/mocks/headline.rb
178
307
  - test/acceptance
179
- - test/acceptance/account_test.rb
308
+ - test/acceptance/events_test.rb
309
+ - test/acceptance/subversion_test.rb
180
310
  - test/acceptance/wiki_test.rb
181
311
  - test/acceptance/ts_all_suites.rb
312
+ - test/acceptance/account_test.rb
182
313
  - test/acceptance/main_page_test.rb
183
- - test/acceptance/subversion_test.rb
184
- - test/acceptance/events_test.rb
185
- - test/acceptance/darcs_test.rb
186
- - test/functional
187
- - test/functional/root_controller_test.rb
188
- - test/functional/report_features_test.rb
189
- - test/functional/account_controller_test.rb
190
- - test/functional/report_subversion_test.rb
191
- - test/functional/report_controller_test.rb
192
- - test/functional/wiki_controller_test.rb
193
- - test/stubs
194
- - test/stubs/wiki_link_handler.rb
195
- - test/stubs/svn_settings.rb
314
+ - test/acceptance/darcs_test.rb
315
+ - test/mocks
316
+ - test/mocks/svn_reporter.rb
317
+ - test/mocks/headline.rb
318
+ - test/mocks/test
319
+ - test/mocks/development
196
320
  - test/meta
197
- - test/meta/local_svn_test.rb
198
321
  - test/meta/platform_thread_test.rb
322
+ - test/meta/darcs_repo_test.rb
199
323
  - test/meta/configuration_test.rb
324
+ - test/meta/local_svn_test.rb
200
325
  - test/meta/stubio_test.rb
201
- - test/meta/darcs_repo_test.rb
202
326
  - test/contract
203
327
  - test/contract/remote_darcs_test.rb
204
328
  - test/contract/svn_test.rb
205
329
  - test/contract/darcs_test.rb
206
330
  - test/unit
331
+ - test/unit/darcs_connection_test.rb
332
+ - test/unit/reporter_driver_test.rb
333
+ - test/unit/darcs_settings_test.rb
334
+ - test/unit/chief_editor_test.rb
335
+ - test/unit/wiki_renderer_test.rb
336
+ - test/unit/diff_chunk_builder_test.rb
337
+ - test/unit/wiki_link_handler_test.rb
207
338
  - test/unit/darcs_reporter_test.rb
339
+ - test/unit/wiki_reporter_test.rb
208
340
  - test/unit/headline_test.rb
209
- - test/unit/runner_test.rb
210
- - test/unit/wiki_renderer_test.rb
211
- - test/unit/chief_editor_test.rb
212
- - test/unit/relative_time_test.rb
213
- - test/unit/caching_test.rb
214
- - test/unit/default_page_provider_test.rb
341
+ - test/unit/svn_reporter_test.rb
342
+ - test/unit/page_test.rb
343
+ - test/unit/reporter_test.rb
215
344
  - test/unit/svn_reporter_interaction_test.rb
216
- - test/unit/darcs_settings_test.rb
217
- - test/unit/user_test.rb
218
- - test/unit/wiki_link_handler_test.rb
219
- - test/unit/diff_chunk_builder_test.rb
345
+ - test/unit/darcs_temp_repo_test.rb
346
+ - test/unit/relative_time_test.rb
347
+ - test/unit/change_test.rb
348
+ - test/unit/runner_test.rb
349
+ - test/unit/chdir_runner_test.rb
220
350
  - test/unit/cache_reporter_fetcher_test.rb
221
- - test/unit/reporter_fetcher_test.rb
351
+ - test/unit/user_test.rb
352
+ - test/unit/translator_test.rb
353
+ - test/unit/cache_reporter_test.rb
222
354
  - test/unit/svn_settings_test.rb
223
355
  - test/unit/string_extensions_test.rb
224
- - test/unit/chdir_runner_test.rb
225
- - test/unit/translator_test.rb
226
- - test/unit/settings_test.rb
227
- - test/unit/reporter_driver_test.rb
228
356
  - test/unit/svn_connection_test.rb
229
- - test/unit/page_test.rb
230
- - test/unit/array_extensions_test.rb
231
- - test/unit/darcs_temp_repo_test.rb
232
357
  - test/unit/revision_test.rb
233
- - test/unit/svn_reporter_test.rb
234
- - test/unit/change_test.rb
235
- - test/unit/darcs_connection_test.rb
236
- - test/unit/reporter_test.rb
237
- - test/unit/cache_reporter_test.rb
238
- - test/unit/wiki_reporter_test.rb
358
+ - test/unit/reporter_fetcher_test.rb
359
+ - test/unit/caching_test.rb
360
+ - test/unit/settings_test.rb
361
+ - test/unit/default_page_provider_test.rb
362
+ - test/unit/array_extensions_test.rb
363
+ - test/stubs
364
+ - test/stubs/svn_settings.rb
365
+ - test/stubs/wiki_link_handler.rb
239
366
  - test/fixtures
367
+ - test/fixtures/revisions.yml
368
+ - test/fixtures/pages.yml
240
369
  - test/fixtures/users.yml
370
+ - test/fixtures/headlines.yml
241
371
  - test/fixtures/wiki_references.yml
242
- - test/fixtures/pages.yml
243
- - test/fixtures/revisions.yml
244
372
  - test/fixtures/changes.yml
245
- - test/fixtures/headlines.yml
246
373
  - test/lib
247
- - test/lib/local_svn.rb
374
+ - test/lib/configuration.rb
375
+ - test/lib/darcs_repo.rb
376
+ - test/lib/svn_excerpts.rb
248
377
  - test/lib/webserver.rb
249
- - test/lib/netutils.rb
250
- - test/lib/acceptance_test_case.rb
251
378
  - test/lib/hash_extensions.rb
252
- - test/lib/live_mode_test.rb
253
- - test/lib/configuration.rb
254
- - test/lib/platform_thread.rb
255
379
  - test/lib/selenium_extensions.rb
256
- - test/lib/svn_excerpts.rb
257
- - test/lib/stubio.rb
258
- - test/lib/darcs_repo.rb
259
380
  - test/lib/test_configuration.rb
260
- - test/lib/repoutils.rb
261
381
  - test/lib/darcs_excerpts.rb
262
- - bin
263
- - bin/motiro
264
- - lib
265
- - lib/relative_time.rb
266
- - lib/array_extensions.rb
267
- - lib/string_extensions.rb
268
- - lib/diff_chunk_builder.rb
269
- - lib/import_translations.rb
270
- - lib/wiki_link_handler.rb
271
- - lib/tick_daemon.rb
272
- - lib/tasks
273
- - lib/tasks/testing.rake
274
- - lib/tasks/packaging.rake
275
- - lib/translator.rb
276
- - lib/wiki_renderer.rb
277
- - lib/differ.rb
278
- - lib/stub_hash.rb
279
- - lib/login_system.rb
280
- - Rakefile
281
- - app
282
- - app/models
283
- - app/models/chunk.rb
284
- - app/models/wiki_reference.rb
285
- - app/models/user.rb
286
- - app/models/feed_observer.rb
287
- - app/models/wiki_sweeper.rb
288
- - app/models/page.rb
289
- - app/models/revision.rb
290
- - app/models/change.rb
291
- - app/models/headline.rb
292
- - app/helpers
293
- - app/helpers/root_helper.rb
294
- - app/helpers/report_helper.rb
295
- - app/helpers/wiki_helper.rb
296
- - app/helpers/default_page_provider.rb
297
- - app/helpers/account_helper.rb
298
- - app/helpers/application_helper.rb
299
- - app/ports
300
- - app/ports/runner.rb
301
- - app/ports/chdir_runner.rb
302
- - app/ports/reporter_loader.rb
303
- - app/core
304
- - app/core/version.rb
305
- - app/core/reporter_driver.rb
306
- - app/core/chief_editor.rb
307
- - app/core/cache_reporter_fetcher.rb
308
- - app/core/cache_reporter.rb
309
- - app/core/reporter.rb
310
- - app/core/reporter_fetcher.rb
311
- - app/core/settings.rb
312
- - app/core/wiki_page_not_found.rb
313
- - app/core/wiki_reporter.rb
314
- - app/views
315
- - app/views/javascript
316
- - app/views/javascript/niftycube.rjs
317
- - app/views/javascript/motiro.rjs
318
- - app/views/report
319
- - app/views/report/list.rhtml
320
- - app/views/report/older.rhtml
321
- - app/views/report/show.rhtml
322
- - app/views/report/rss.rxml
323
- - app/views/wiki
324
- - app/views/wiki/_editbar.rhtml
325
- - app/views/wiki/_editor.rhtml
326
- - app/views/wiki/properties_edit.rhtml
327
- - app/views/wiki/_edit_feature.rhtml
328
- - app/views/wiki/_diffbar.rhtml
329
- - app/views/wiki/_properties_edit.rhtml
330
- - app/views/wiki/_edit_event.rhtml
331
- - app/views/wiki/page_feed.rxml
332
- - app/views/wiki/sourcediff.rhtml
333
- - app/views/wiki/_show_feature.rhtml
334
- - app/views/wiki/_show_event.rhtml
335
- - app/views/wiki/history.rhtml
336
- - app/views/wiki/_properties_show.rhtml
337
- - app/views/wiki/show.rhtml
338
- - app/views/wiki/edit.rhtml
339
- - app/views/wiki/diff.rhtml
340
- - app/views/root
341
- - app/views/root/index.rhtml
342
- - app/views/layouts
343
- - app/views/layouts/_bottom.rhtml
344
- - app/views/layouts/application.rhtml
345
- - app/views/layouts/_header.rhtml
346
- - app/views/layouts/_top.rhtml
347
- - app/views/layouts/wiki_edit.rhtml
348
- - app/views/layouts/scaffold.rhtml
349
- - app/views/account
350
- - app/views/account/availability.rhtml
351
- - app/views/account/_authorization.rhtml
352
- - app/views/account/login.rhtml
353
- - app/views/account/logout.rhtml
354
- - app/views/account/_availability.rhtml
355
- - app/reporters
356
- - app/reporters/darcs_settings.rb
357
- - app/reporters/svn_settings.rb
358
- - app/reporters/svn_connection.rb
359
- - app/reporters/events_reporter.rb
360
- - app/reporters/darcs_connection.rb
361
- - app/reporters/darcs_reporter.rb
362
- - app/reporters/darcs_temp_repo.rb
363
- - app/reporters/subversion_reporter.rb
364
- - app/reporters/features_reporter.rb
365
- - app/controllers
366
- - app/controllers/wiki_controller.rb
367
- - app/controllers/account_controller.rb
368
- - app/controllers/report_controller.rb
369
- - app/controllers/application.rb
370
- - app/controllers/javascript_controller.rb
371
- - app/controllers/root_controller.rb
372
- - vendor/plugins/global_routing
373
- - vendor/plugins/global_routing/init.rb
382
+ - test/lib/acceptance_test_case.rb
383
+ - test/lib/repoutils.rb
384
+ - test/lib/local_svn.rb
385
+ - test/lib/stubio.rb
386
+ - test/lib/platform_thread.rb
387
+ - test/lib/live_mode_test.rb
388
+ - test/lib/netutils.rb
389
+ - test/integration
390
+ - test/test_helper.rb
391
+ - test/functional
392
+ - test/functional/report_controller_test.rb
393
+ - test/functional/report_subversion_test.rb
394
+ - test/functional/root_controller_test.rb
395
+ - test/functional/report_features_test.rb
396
+ - test/functional/wiki_controller_test.rb
397
+ - test/functional/account_controller_test.rb
398
+ - vendor
374
399
  - vendor/plugins/test_xml
400
+ - vendor/plugins/test_xml/Rakefile
401
+ - vendor/plugins/test_xml/init.rb
375
402
  - vendor/plugins/test_xml/README
403
+ - vendor/plugins/test_xml/lib
404
+ - vendor/plugins/test_xml/lib/xml_assertions.rb
376
405
  - vendor/plugins/test_xml/MIT-LICENSE
377
- - vendor/plugins/test_xml/init.rb
378
406
  - vendor/plugins/test_xml/test
379
407
  - vendor/plugins/test_xml/test/test_xml_test.rb
380
- - vendor/plugins/test_xml/lib
381
- - vendor/plugins/test_xml/lib/xml_assertions.rb
382
- - vendor/plugins/test_xml/Rakefile
408
+ - vendor/plugins/rails_cron
409
+ - vendor/plugins/rails_cron/CHANGELOG
410
+ - vendor/plugins/rails_cron/init.rb
411
+ - vendor/plugins/rails_cron/README
412
+ - vendor/plugins/rails_cron/tasks
413
+ - vendor/plugins/rails_cron/tasks/startup.rake
414
+ - vendor/plugins/rails_cron/lib
415
+ - vendor/plugins/rails_cron/lib/rails_cron.rb
416
+ - vendor/plugins/rails_cron/lib/acts_as_background.rb
417
+ - vendor/plugins/rails_cron/LICENSE
418
+ - vendor/plugins/caching_monkey_patch
419
+ - vendor/plugins/caching_monkey_patch/init.rb
420
+ - vendor/plugins/cache_test-0.2
421
+ - vendor/plugins/cache_test-0.2/CHANGELOG
422
+ - vendor/plugins/cache_test-0.2/init.rb
423
+ - vendor/plugins/cache_test-0.2/README
424
+ - vendor/plugins/cache_test-0.2/lib
425
+ - vendor/plugins/cache_test-0.2/lib/page_cache_test.rb
426
+ - vendor/plugins/cache_test-0.2/lib/fragment_cache_test.rb
427
+ - vendor/plugins/cache_test-0.2/doc
428
+ - vendor/plugins/cache_test-0.2/doc/files
429
+ - vendor/plugins/cache_test-0.2/doc/files/init_rb.html
430
+ - vendor/plugins/cache_test-0.2/doc/files/README.html
431
+ - vendor/plugins/cache_test-0.2/doc/files/CHANGELOG.html
432
+ - vendor/plugins/cache_test-0.2/doc/files/lib
433
+ - vendor/plugins/cache_test-0.2/doc/files/lib/fragment_cache_test_rb.html
434
+ - vendor/plugins/cache_test-0.2/doc/files/lib/page_cache_test_rb.html
435
+ - vendor/plugins/cache_test-0.2/doc/files/MIT-LICENSE.html
436
+ - vendor/plugins/cache_test-0.2/doc/fr_method_index.html
437
+ - vendor/plugins/cache_test-0.2/doc/rdoc-style.css
438
+ - vendor/plugins/cache_test-0.2/doc/fr_file_index.html
439
+ - vendor/plugins/cache_test-0.2/doc/created.rid
440
+ - vendor/plugins/cache_test-0.2/doc/classes
441
+ - vendor/plugins/cache_test-0.2/doc/classes/Cosinux
442
+ - vendor/plugins/cache_test-0.2/doc/classes/Cosinux/FragmentCacheTest
443
+ - vendor/plugins/cache_test-0.2/doc/classes/Cosinux/FragmentCacheTest/Assertions.html
444
+ - vendor/plugins/cache_test-0.2/doc/classes/Cosinux/PageCacheTest
445
+ - vendor/plugins/cache_test-0.2/doc/classes/Cosinux/PageCacheTest/IntegrationTestMethods.html
446
+ - vendor/plugins/cache_test-0.2/doc/fr_class_index.html
447
+ - vendor/plugins/cache_test-0.2/doc/index.html
448
+ - vendor/plugins/cache_test-0.2/MIT-LICENSE
449
+ - vendor/plugins/global_routing
450
+ - vendor/plugins/global_routing/init.rb
383
451
  - vendor/plugins/globalize
452
+ - vendor/plugins/globalize/generators
453
+ - vendor/plugins/globalize/generators/globalize
454
+ - vendor/plugins/globalize/generators/globalize/USAGE
455
+ - vendor/plugins/globalize/generators/globalize/templates
456
+ - vendor/plugins/globalize/generators/globalize/templates/tiny_migration.rb.gz
457
+ - vendor/plugins/globalize/generators/globalize/templates/migration.rb.gz
458
+ - vendor/plugins/globalize/generators/globalize/globalize_generator.rb
459
+ - vendor/plugins/globalize/init.rb
460
+ - vendor/plugins/globalize/data
461
+ - vendor/plugins/globalize/data/country_data.csv
462
+ - vendor/plugins/globalize/data/translation_data.csv
463
+ - vendor/plugins/globalize/data/language_data.csv
384
464
  - vendor/plugins/globalize/populators
465
+ - vendor/plugins/globalize/populators/pop_migration.rb
385
466
  - vendor/plugins/globalize/populators/pop_dates.rb
386
467
  - vendor/plugins/globalize/populators/pop_seps.rb
387
468
  - vendor/plugins/globalize/populators/pop_pluralization.rb
388
- - vendor/plugins/globalize/populators/pop_migration.rb
389
469
  - vendor/plugins/globalize/README
390
- - vendor/plugins/globalize/data
391
- - vendor/plugins/globalize/data/country_data.csv
392
- - vendor/plugins/globalize/data/translation_data.csv
393
- - vendor/plugins/globalize/data/language_data.csv
470
+ - vendor/plugins/globalize/tasks
471
+ - vendor/plugins/globalize/tasks/data.rake
472
+ - vendor/plugins/globalize/lib
473
+ - vendor/plugins/globalize/lib/globalize
474
+ - vendor/plugins/globalize/lib/globalize/localization
475
+ - vendor/plugins/globalize/lib/globalize/localization/locale.rb
476
+ - vendor/plugins/globalize/lib/globalize/localization/rfc_3066.rb
477
+ - vendor/plugins/globalize/lib/globalize/localization/core_ext.rb
478
+ - vendor/plugins/globalize/lib/globalize/localization/db_view_translator.rb
479
+ - vendor/plugins/globalize/lib/globalize/localization/core_ext_hooks.rb
480
+ - vendor/plugins/globalize/lib/globalize/localization/db_translate.rb
481
+ - vendor/plugins/globalize/lib/globalize/models
482
+ - vendor/plugins/globalize/lib/globalize/models/country.rb
483
+ - vendor/plugins/globalize/lib/globalize/models/view_translation.rb
484
+ - vendor/plugins/globalize/lib/globalize/models/translation.rb
485
+ - vendor/plugins/globalize/lib/globalize/models/model_translation.rb
486
+ - vendor/plugins/globalize/lib/globalize/models/currency.rb
487
+ - vendor/plugins/globalize/lib/globalize/models/language.rb
488
+ - vendor/plugins/globalize/lib/globalize/rails
489
+ - vendor/plugins/globalize/lib/globalize/rails/active_record_helper.rb
490
+ - vendor/plugins/globalize/lib/globalize/rails/action_mailer.rb
491
+ - vendor/plugins/globalize/lib/globalize/rails/active_record.rb
492
+ - vendor/plugins/globalize/lib/globalize/rails/action_view.rb
394
493
  - vendor/plugins/globalize/LICENSE
395
- - vendor/plugins/globalize/generators
396
- - vendor/plugins/globalize/generators/globalize
397
- - vendor/plugins/globalize/generators/globalize/USAGE
398
- - vendor/plugins/globalize/generators/globalize/templates
399
- - vendor/plugins/globalize/generators/globalize/templates/tiny_migration.rb.gz
400
- - vendor/plugins/globalize/generators/globalize/templates/migration.rb.gz
401
- - vendor/plugins/globalize/generators/globalize/globalize_generator.rb
402
- - vendor/plugins/globalize/tasks
403
- - vendor/plugins/globalize/tasks/data.rake
404
- - vendor/plugins/globalize/init.rb
405
494
  - vendor/plugins/globalize/test
406
- - vendor/plugins/globalize/test/test_helper.rb
407
- - vendor/plugins/globalize/test/log
408
- - vendor/plugins/globalize/test/standard_data_test_helper.rb
409
- - vendor/plugins/globalize/test/mime_responds_test.rb
410
- - vendor/plugins/globalize/test/config
411
- - vendor/plugins/globalize/test/config/database.yml.default
412
- - vendor/plugins/globalize/test/config/database.yml.example
413
- - vendor/plugins/globalize/test/view_picking_test.rb
414
- - vendor/plugins/globalize/test/test_standard_data.rb
415
- - vendor/plugins/globalize/test/validation_test.rb
416
- - vendor/plugins/globalize/test/locale_test.rb
417
- - vendor/plugins/globalize/test/core_ext_test.rb
418
- - vendor/plugins/globalize/test/view_translation_test.rb
419
- - vendor/plugins/globalize/test/db
420
- - vendor/plugins/globalize/test/db/schema.rb
421
- - vendor/plugins/globalize/test/db/migrate
422
- - vendor/plugins/globalize/test/action_mailer_test
423
- - vendor/plugins/globalize/test/action_mailer_test/globalize_mailer
424
- - vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.en-US.plain.text.rhtml
425
- - vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.en.plain.text.rhtml
426
- - vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.he.plain.text.rhtml
427
- - vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.plain.text.rhtml
428
- - vendor/plugins/globalize/test/date_helper_test.rb
429
- - vendor/plugins/globalize/test/action_mailer_test.rb
430
- - vendor/plugins/globalize/test/currency_test.rb
431
495
  - vendor/plugins/globalize/test/views
432
- - vendor/plugins/globalize/test/views/test2.he.rhtml
433
- - vendor/plugins/globalize/test/views/test.rhtml
434
- - vendor/plugins/globalize/test/views/test2.rhtml
496
+ - vendor/plugins/globalize/test/views/test.he-IL.rhtml
497
+ - vendor/plugins/globalize/test/views/layouts
498
+ - vendor/plugins/globalize/test/views/layouts/standard.rhtml
435
499
  - vendor/plugins/globalize/test/views/respond_to
436
- - vendor/plugins/globalize/test/views/respond_to/using_defaults.fr.rxml
437
- - vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.en.rhtml
500
+ - vendor/plugins/globalize/test/views/respond_to/using_defaults.en.rjs
438
501
  - vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.rxml
439
- - vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.rjs
440
- - vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.en.rjs
441
- - vendor/plugins/globalize/test/views/respond_to/all_types_with_layout.rhtml
442
- - vendor/plugins/globalize/test/views/respond_to/all_types_with_layout.rjs
443
- - vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.fr.rxml
444
- - vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.fr.rhtml
445
- - vendor/plugins/globalize/test/views/respond_to/using_defaults.fr.rhtml
446
502
  - vendor/plugins/globalize/test/views/respond_to/using_defaults.fr.rjs
447
- - vendor/plugins/globalize/test/views/respond_to/using_defaults.rhtml
448
- - vendor/plugins/globalize/test/views/respond_to/using_defaults.en.rjs
449
- - vendor/plugins/globalize/test/views/respond_to/using_defaults.rxml
503
+ - vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.fr.rxml
504
+ - vendor/plugins/globalize/test/views/respond_to/using_defaults.rjs
505
+ - vendor/plugins/globalize/test/views/respond_to/using_defaults.fr.rxml
450
506
  - vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.en.rxml
451
- - vendor/plugins/globalize/test/views/respond_to/using_defaults.en.rhtml
507
+ - vendor/plugins/globalize/test/views/respond_to/using_defaults.rxml
452
508
  - vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.fr.rjs
453
- - vendor/plugins/globalize/test/views/respond_to/using_defaults.en.rxml
454
- - vendor/plugins/globalize/test/views/respond_to/using_defaults.rjs
509
+ - vendor/plugins/globalize/test/views/respond_to/using_defaults.en.rhtml
510
+ - vendor/plugins/globalize/test/views/respond_to/all_types_with_layout.rjs
511
+ - vendor/plugins/globalize/test/views/respond_to/all_types_with_layout.rhtml
512
+ - vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.rjs
513
+ - vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.en.rjs
455
514
  - vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.rhtml
456
- - vendor/plugins/globalize/test/views/test.he-IL.rhtml
457
- - vendor/plugins/globalize/test/views/layouts
458
- - vendor/plugins/globalize/test/views/layouts/standard.rhtml
515
+ - vendor/plugins/globalize/test/views/respond_to/using_defaults.rhtml
516
+ - vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.en.rhtml
517
+ - vendor/plugins/globalize/test/views/respond_to/using_defaults.fr.rhtml
518
+ - vendor/plugins/globalize/test/views/respond_to/using_defaults.en.rxml
519
+ - vendor/plugins/globalize/test/views/respond_to/using_defaults_with_type_list.fr.rhtml
520
+ - vendor/plugins/globalize/test/views/test2.rhtml
521
+ - vendor/plugins/globalize/test/views/test.rhtml
522
+ - vendor/plugins/globalize/test/views/test2.he.rhtml
523
+ - vendor/plugins/globalize/test/model_test.rb
524
+ - vendor/plugins/globalize/test/core_ext_test.rb
525
+ - vendor/plugins/globalize/test/action_mailer_test
526
+ - vendor/plugins/globalize/test/action_mailer_test/globalize_mailer
527
+ - vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.plain.text.rhtml
528
+ - vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.en-US.plain.text.rhtml
529
+ - vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.he.plain.text.rhtml
530
+ - vendor/plugins/globalize/test/action_mailer_test/globalize_mailer/test.en.plain.text.rhtml
531
+ - vendor/plugins/globalize/test/locale_test.rb
532
+ - vendor/plugins/globalize/test/db
533
+ - vendor/plugins/globalize/test/db/migrate
534
+ - vendor/plugins/globalize/test/db/schema.rb
535
+ - vendor/plugins/globalize/test/view_picking_test.rb
459
536
  - vendor/plugins/globalize/test/unit
537
+ - vendor/plugins/globalize/test/currency_test.rb
460
538
  - vendor/plugins/globalize/test/db_translation_test.rb
461
- - vendor/plugins/globalize/test/model_test.rb
539
+ - vendor/plugins/globalize/test/view_translation_test.rb
540
+ - vendor/plugins/globalize/test/date_helper_test.rb
541
+ - vendor/plugins/globalize/test/standard_data_test_helper.rb
542
+ - vendor/plugins/globalize/test/action_mailer_test.rb
543
+ - vendor/plugins/globalize/test/test_standard_data.rb
544
+ - vendor/plugins/globalize/test/config
545
+ - vendor/plugins/globalize/test/config/database.yml.example
546
+ - vendor/plugins/globalize/test/config/database.yml.default
462
547
  - vendor/plugins/globalize/test/fixtures
463
- - vendor/plugins/globalize/test/fixtures/globalize_categories.yml
464
- - vendor/plugins/globalize/test/fixtures/globalize_countries.yml
465
- - vendor/plugins/globalize/test/fixtures/globalize_categories_products.yml
466
- - vendor/plugins/globalize/test/fixtures/globalize_manufacturers.yml
467
548
  - vendor/plugins/globalize/test/fixtures/globalize_translations.yml
468
549
  - vendor/plugins/globalize/test/fixtures/globalize_languages.yml
550
+ - vendor/plugins/globalize/test/fixtures/globalize_categories.yml
469
551
  - vendor/plugins/globalize/test/fixtures/globalize_products.yml
470
552
  - vendor/plugins/globalize/test/fixtures/globalize_simples.yml
471
- - vendor/plugins/globalize/lib
472
- - vendor/plugins/globalize/lib/globalize
473
- - vendor/plugins/globalize/lib/globalize/localization
474
- - vendor/plugins/globalize/lib/globalize/localization/locale.rb
475
- - vendor/plugins/globalize/lib/globalize/localization/db_translate.rb
476
- - vendor/plugins/globalize/lib/globalize/localization/db_view_translator.rb
477
- - vendor/plugins/globalize/lib/globalize/localization/core_ext.rb
478
- - vendor/plugins/globalize/lib/globalize/localization/rfc_3066.rb
479
- - vendor/plugins/globalize/lib/globalize/localization/core_ext_hooks.rb
480
- - vendor/plugins/globalize/lib/globalize/models
481
- - vendor/plugins/globalize/lib/globalize/models/translation.rb
482
- - vendor/plugins/globalize/lib/globalize/models/currency.rb
483
- - vendor/plugins/globalize/lib/globalize/models/country.rb
484
- - vendor/plugins/globalize/lib/globalize/models/language.rb
485
- - vendor/plugins/globalize/lib/globalize/models/model_translation.rb
486
- - vendor/plugins/globalize/lib/globalize/models/view_translation.rb
487
- - vendor/plugins/globalize/lib/globalize/rails
488
- - vendor/plugins/globalize/lib/globalize/rails/action_view.rb
489
- - vendor/plugins/globalize/lib/globalize/rails/active_record_helper.rb
490
- - vendor/plugins/globalize/lib/globalize/rails/active_record.rb
491
- - vendor/plugins/globalize/lib/globalize/rails/action_mailer.rb
492
- - vendor/plugins/cache_test-0.2
493
- - vendor/plugins/cache_test-0.2/CHANGELOG
494
- - vendor/plugins/cache_test-0.2/README
495
- - vendor/plugins/cache_test-0.2/MIT-LICENSE
496
- - vendor/plugins/cache_test-0.2/init.rb
497
- - vendor/plugins/cache_test-0.2/lib
498
- - vendor/plugins/cache_test-0.2/lib/fragment_cache_test.rb
499
- - vendor/plugins/cache_test-0.2/lib/page_cache_test.rb
553
+ - vendor/plugins/globalize/test/fixtures/globalize_categories_products.yml
554
+ - vendor/plugins/globalize/test/fixtures/globalize_manufacturers.yml
555
+ - vendor/plugins/globalize/test/fixtures/globalize_countries.yml
556
+ - vendor/plugins/globalize/test/log
557
+ - vendor/plugins/globalize/test/validation_test.rb
558
+ - vendor/plugins/globalize/test/mime_responds_test.rb
559
+ - vendor/plugins/globalize/test/test_helper.rb
560
+ - vendor/mediacloth-trunk/Rakefile
561
+ - vendor/mediacloth-trunk/mediacloth.gemspec
562
+ - vendor/mediacloth-trunk/mediacloth.kdevelop
500
563
  - vendor/mediacloth-trunk/setup.rb
501
564
  - vendor/mediacloth-trunk/README
565
+ - vendor/mediacloth-trunk/lib
566
+ - vendor/mediacloth-trunk/lib/mediacloth.rb
567
+ - vendor/mediacloth-trunk/lib/mediacloth
568
+ - vendor/mediacloth-trunk/lib/mediacloth/mediawikihtmlgenerator.rb
569
+ - vendor/mediacloth-trunk/lib/mediacloth/mediawikilexer.rb
570
+ - vendor/mediacloth-trunk/lib/mediacloth/mediawikiparser.rb
571
+ - vendor/mediacloth-trunk/lib/mediacloth/mediawikiparser.y
572
+ - vendor/mediacloth-trunk/lib/mediacloth/mediawikiwalker.rb
573
+ - vendor/mediacloth-trunk/lib/mediacloth/mediawikiast.rb
574
+ - vendor/mediacloth-trunk/lib/mediacloth/mediawikilinkhandler.rb
575
+ - vendor/mediacloth-trunk/lib/mediacloth/mediawikiparams.rb
502
576
  - vendor/mediacloth-trunk/MIT-LICENSE
503
- - vendor/mediacloth-trunk/mediacloth.kdevelop
504
- - vendor/mediacloth-trunk/mediacloth.gemspec
505
577
  - vendor/mediacloth-trunk/test
506
- - vendor/mediacloth-trunk/test/dataproducers
507
- - vendor/mediacloth-trunk/test/dataproducers/html.rb
508
- - vendor/mediacloth-trunk/test/dataproducers/lex.rb
578
+ - vendor/mediacloth-trunk/test/lexer.rb
579
+ - vendor/mediacloth-trunk/test/testhelper.rb
509
580
  - vendor/mediacloth-trunk/test/data
510
- - vendor/mediacloth-trunk/test/data/lex5
511
- - vendor/mediacloth-trunk/test/data/lex4
581
+ - vendor/mediacloth-trunk/test/data/html10
512
582
  - vendor/mediacloth-trunk/test/data/input4
513
- - vendor/mediacloth-trunk/test/data/input12
514
- - vendor/mediacloth-trunk/test/data/input5
515
- - vendor/mediacloth-trunk/test/data/lex13
516
- - vendor/mediacloth-trunk/test/data/html9
517
- - vendor/mediacloth-trunk/test/data/input8
518
- - vendor/mediacloth-trunk/test/data/html1
519
- - vendor/mediacloth-trunk/test/data/html5
520
- - vendor/mediacloth-trunk/test/data/input13
521
- - vendor/mediacloth-trunk/test/data/html2
583
+ - vendor/mediacloth-trunk/test/data/html7
584
+ - vendor/mediacloth-trunk/test/data/input1
585
+ - vendor/mediacloth-trunk/test/data/lex10
522
586
  - vendor/mediacloth-trunk/test/data/lex11
523
- - vendor/mediacloth-trunk/test/data/lex2
587
+ - vendor/mediacloth-trunk/test/data/input6
588
+ - vendor/mediacloth-trunk/test/data/html5
589
+ - vendor/mediacloth-trunk/test/data/html1
590
+ - vendor/mediacloth-trunk/test/data/html4
524
591
  - vendor/mediacloth-trunk/test/data/input7
525
- - vendor/mediacloth-trunk/test/data/html13
592
+ - vendor/mediacloth-trunk/test/data/lex6
526
593
  - vendor/mediacloth-trunk/test/data/input11
527
- - vendor/mediacloth-trunk/test/data/input9
528
- - vendor/mediacloth-trunk/test/data/html8
529
- - vendor/mediacloth-trunk/test/data/html12
530
- - vendor/mediacloth-trunk/test/data/html11
531
- - vendor/mediacloth-trunk/test/data/result1
532
- - vendor/mediacloth-trunk/test/data/html4
594
+ - vendor/mediacloth-trunk/test/data/lex12
595
+ - vendor/mediacloth-trunk/test/data/input8
596
+ - vendor/mediacloth-trunk/test/data/input13
597
+ - vendor/mediacloth-trunk/test/data/lex13
598
+ - vendor/mediacloth-trunk/test/data/html9
599
+ - vendor/mediacloth-trunk/test/data/input2
600
+ - vendor/mediacloth-trunk/test/data/html3
533
601
  - vendor/mediacloth-trunk/test/data/lex7
534
- - vendor/mediacloth-trunk/test/data/lex9
535
- - vendor/mediacloth-trunk/test/data/input6
536
- - vendor/mediacloth-trunk/test/data/lex6
537
- - vendor/mediacloth-trunk/test/data/lex1
602
+ - vendor/mediacloth-trunk/test/data/html8
538
603
  - vendor/mediacloth-trunk/test/data/input3
539
- - vendor/mediacloth-trunk/test/data/input10
540
- - vendor/mediacloth-trunk/test/data/html7
604
+ - vendor/mediacloth-trunk/test/data/html13
605
+ - vendor/mediacloth-trunk/test/data/html11
541
606
  - vendor/mediacloth-trunk/test/data/html6
542
- - vendor/mediacloth-trunk/test/data/html3
543
- - vendor/mediacloth-trunk/test/data/lex12
544
- - vendor/mediacloth-trunk/test/data/input2
607
+ - vendor/mediacloth-trunk/test/data/lex5
608
+ - vendor/mediacloth-trunk/test/data/html12
609
+ - vendor/mediacloth-trunk/test/data/lex4
610
+ - vendor/mediacloth-trunk/test/data/input5
611
+ - vendor/mediacloth-trunk/test/data/input9
612
+ - vendor/mediacloth-trunk/test/data/lex9
545
613
  - vendor/mediacloth-trunk/test/data/lex3
546
- - vendor/mediacloth-trunk/test/data/lex10
547
- - vendor/mediacloth-trunk/test/data/html10
548
- - vendor/mediacloth-trunk/test/data/input1
614
+ - vendor/mediacloth-trunk/test/data/lex2
615
+ - vendor/mediacloth-trunk/test/data/html2
616
+ - vendor/mediacloth-trunk/test/data/result1
549
617
  - vendor/mediacloth-trunk/test/data/lex8
550
- - vendor/mediacloth-trunk/test/parser.rb
551
- - vendor/mediacloth-trunk/test/lexer.rb
552
- - vendor/mediacloth-trunk/test/testhelper.rb
553
- - vendor/mediacloth-trunk/test/linkhandler.rb
618
+ - vendor/mediacloth-trunk/test/data/lex1
619
+ - vendor/mediacloth-trunk/test/data/input10
620
+ - vendor/mediacloth-trunk/test/data/input12
621
+ - vendor/mediacloth-trunk/test/dataproducers
622
+ - vendor/mediacloth-trunk/test/dataproducers/lex.rb
623
+ - vendor/mediacloth-trunk/test/dataproducers/html.rb
554
624
  - vendor/mediacloth-trunk/test/debugwalker.rb
555
625
  - vendor/mediacloth-trunk/test/htmlgenerator.rb
556
- - vendor/mediacloth-trunk/lib
557
- - vendor/mediacloth-trunk/lib/mediacloth.rb
558
- - vendor/mediacloth-trunk/lib/mediacloth
559
- - vendor/mediacloth-trunk/lib/mediacloth/mediawikiparser.rb
560
- - vendor/mediacloth-trunk/lib/mediacloth/mediawikiparams.rb
561
- - vendor/mediacloth-trunk/lib/mediacloth/mediawikiast.rb
562
- - vendor/mediacloth-trunk/lib/mediacloth/mediawikilexer.rb
563
- - vendor/mediacloth-trunk/lib/mediacloth/mediawikilinkhandler.rb
564
- - vendor/mediacloth-trunk/lib/mediacloth/mediawikiparser.y
565
- - vendor/mediacloth-trunk/lib/mediacloth/mediawikiwalker.rb
566
- - vendor/mediacloth-trunk/lib/mediacloth/mediawikihtmlgenerator.rb
567
- - vendor/mediacloth-trunk/Rakefile
626
+ - vendor/mediacloth-trunk/test/linkhandler.rb
627
+ - vendor/mediacloth-trunk/test/parser.rb
568
628
  - vendor/mediacloth.rb
569
629
  - log/.keepdir
570
630
  - vendor/motiro-installer.rb