tournament 2.5.1 → 2.5.2

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,12 @@
1
+ == 2.5.2 / 2009-03-29
2
+ * Really fix manifest problems.
3
+ * Adjust webgui install instructions to account for
4
+ config/initializers/site_key.rb creation (don't reuse the
5
+ dev site_keys).
6
+
7
+ == 2.5.1 / 2009-03-26
8
+ * Attempt to fix manifest problems
9
+
1
10
  == 2.5.0 / 2009-03-23
2
11
  * Add rake task for generating possibility report data file.
3
12
  * Bugfix for final four report: work around fact that web gui
data/README.txt CHANGED
@@ -32,9 +32,9 @@ file). For usage, just execute
32
32
 
33
33
  For command specific usage, execute
34
34
 
35
- pool <command> --help
35
+ pool [command] --help
36
36
 
37
- where <command> is one of the available commands described below. The
37
+ where [command] is one of the available commands described below. The
38
38
  pool command saves state in a file called pool.yml by default. This
39
39
  can be overridden in all cases by using the --save-file option.
40
40
 
@@ -142,95 +142,101 @@ The above command will copy the Rails app to the specified directory.
142
142
  There are several options you can provide in addition to --web-dir
143
143
  to control how the application is installed:
144
144
 
145
- * Human readable site name. This appears as the <title> tag content
146
- of pages in the site and is also used in the subject line of any
147
- emails sent by the site (as during user registration).
145
+ * Human readable site name. This appears as the title tag content
146
+ of pages in the site and is also used in the subject line of any
147
+ emails sent by the site (as during user registration).
148
148
 
149
- --site-name="Site Name" (Default: 'Tournament')
149
+ --site-name="Site Name" (Default: 'Tournament')
150
150
 
151
- * Relative url root. If you will be installing the pool site as
152
- a relative url on another virtual host, use this switch. You
153
- will have to configure you virtual host to route requests to this
154
- path to Rails. This is ridiculously easy if you are using
155
- modrails and Apache. Example:
151
+ * Relative url root. If you will be installing the pool site as
152
+ a relative url on another virtual host, use this switch. You
153
+ will have to configure you virtual host to route requests to this
154
+ path to Rails. This is ridiculously easy if you are using
155
+ modrails and Apache. Example:
156
156
 
157
- --relative-root=/my_pool (Default: empty, no root is set)
157
+ --relative-root=/my_pool (Default: empty, no root is set)
158
158
 
159
- * Administrator email address. The web GUI will send emails
160
- when users register for creating entries in a pool. The following
161
- sets the from email address on the emails that are sent.
162
-
163
- --admin-email=admin
164
-
165
- * Email server information. Either edit the config/initializers/pool.rb
166
- file after installation, or provide the following options to configure
167
- a SMTP server available on your domain.
168
-
169
- --email-server=smtp.myisp.com
170
- --email-port=25
171
- --email-domain=mydomain.com
172
- --email-user=myuser
173
- --email-password=mypass
174
- --email-auth=login|plain|cram_md5
175
-
176
- See http://guides.rubyonrails.org/action_mailer_basics.html#_action_mailer_configuration
177
- for more info on how to configure a Rails app for sending email.
178
-
179
- * The web GUI has the ability to print bracket entries by generating
180
- a pdf styled using the web site's bracket stylesheet. It uses a third
181
- party tool called Prince XML to do this. You are not allowed to
182
- use this on a server without paying a license fee, although you
183
- can download a trial version for personal use. It's your call
184
- whether or not you want to use this. Please see http://www.princexml.com/
185
- for more details.
159
+ * Administrator email address. The web GUI will send emails
160
+ when users register for creating entries in a pool. The following
161
+ sets the from email address on the emails that are sent.
162
+
163
+ --admin-email=admin
164
+
165
+ * Email server information. Either edit the config/initializers/pool.rb
166
+ file after installation, or provide the following options to configure
167
+ a SMTP server available on your domain.
168
+
169
+ --email-server=smtp.myisp.com
170
+ --email-port=25
171
+ --email-domain=mydomain.com
172
+ --email-user=myuser
173
+ --email-password=mypass
174
+ --email-auth=login|plain|cram_md5
175
+
176
+ See http://guides.rubyonrails.org/action_mailer_basics.html#_action_mailer_configuration
177
+ for more info on how to configure a Rails app for sending email.
178
+
179
+ * The web GUI has the ability to print bracket entries by generating
180
+ a pdf styled using the web site's bracket stylesheet. It uses a third
181
+ party tool called Prince XML to do this. You are not allowed to
182
+ use this on a server without paying a license fee, although you
183
+ can download a trial version for personal use. It's your call
184
+ whether or not you want to use this. Please see http://www.princexml.com/
185
+ for more details.
186
186
 
187
- --use-princexml=/full/path/to/prince
187
+ --use-princexml=/full/path/to/prince
188
188
 
189
- If prince is not available on the path you specify, the princexml
190
- distribution will be downloaded and installed using the distribution's
191
- install.sh script. In order to do this, the tar program must be
192
- available on your installation system.
189
+ If prince is not available on the path you specify, the princexml
190
+ distribution will be downloaded and installed using the distribution's
191
+ install.sh script. In order to do this, the tar program must be
192
+ available on your installation system.
193
193
 
194
- * If you use the --use-princexml option, the install script needs to write
195
- files to a temp directory, /tmp by default. Use the --tmp-dir option to
196
- change this default. If the specified temp dir does not exist, it will
197
- be created.
194
+ * If you use the --use-princexml option, the install script needs to write
195
+ files to a temp directory, /tmp by default. Use the --tmp-dir option to
196
+ change this default. If the specified temp dir does not exist, it will
197
+ be created.
198
198
 
199
- --tmp-dir=/path/to/tmp/dir
199
+ --tmp-dir=/path/to/tmp/dir
200
200
 
201
201
  === POST-INSTALLATION:
202
202
 
203
203
  Before being able to run the web gui for the first time, you have to
204
- prepare the sqlite database and create an admin account. To do this,
205
- change to the installation directory and run the following command:
204
+ generate the web site authorization keys, prepare the sqlite database
205
+ and create an admin account. Change to the website installation
206
+ directory and perform the following steps.
206
207
 
207
- RAILS_ENV=production rake db:migrate
208
+ 1. Generate the web site authorization keys
208
209
 
209
- To create the admin account, change to the web gui installation directory
210
- and run the following command:
210
+ RAILS_ENV=production rake auth:gen:site_key
211
211
 
212
- RAILS_ENV=production rake "admin:create[login,email,name,password]"
212
+ 2. Prepare the sqlite database
213
213
 
214
- In the above command, substitute "login" for the desired admin user's login
215
- name, "email" for the administrators email address, "name" for the
216
- admin user's name (eg, "Joe Admin"), and "password" for the desired
217
- admin account password
214
+ RAILS_ENV=production rake db:migrate
215
+
216
+ 3. Create the admin account
217
+
218
+ RAILS_ENV=production rake "admin:create[login,email,name,password]"
219
+
220
+ In the above command, substitute "login" for the desired admin user's login
221
+ name, "email" for the administrators email address, "name" for the
222
+ admin user's name (eg, "Joe Admin"), and "password" for the desired
223
+ admin account password
218
224
 
219
225
  === UPDATING THE WEB GUI:
220
226
 
221
227
  If the tournament gem is updated, you can pull in the changes as follows:
222
228
 
223
- 1. Update your tournament gem
229
+ 1. Update your tournament gem
224
230
 
225
- sudo gem update tournament
231
+ sudo gem update tournament
226
232
 
227
- 2. Rerun the same pool install_webgui command you used to install originally
233
+ 2. Rerun the same pool install_webgui command you used to install originally
228
234
 
229
- 3. Pull in any released db migrations:
235
+ 3. Pull in any released db migrations:
230
236
 
231
- cd $install_dir; RAILS_ENV=production rake db:migrate
237
+ cd $install_dir; RAILS_ENV=production rake db:migrate
232
238
 
233
- 4. Reload your web server configuration (nginx, apache, etc.)
239
+ 4. Reload your web server configuration (nginx, apache, etc.)
234
240
 
235
241
  === USING THE WEB GUI:
236
242
 
data/Rakefile CHANGED
@@ -20,7 +20,7 @@ PROJ.authors = 'Douglas A. Seifert'
20
20
  PROJ.email = 'doug+rubyforge@dseifert.net'
21
21
  PROJ.url = 'http://www.dseifert.net/code/tournament'
22
22
  PROJ.rubyforge.name = 'tournament'
23
- PROJ.version = '2.5.1'
23
+ PROJ.version = '2.5.2'
24
24
  PROJ.group_id = 5863
25
25
 
26
26
  PROJ.spec.opts << '--color'
@@ -28,6 +28,10 @@ PROJ.spec.opts << '--color'
28
28
  PROJ.exclude = %w(tmp$ bak$ ~$ CVS \.svn ^pkg ^doc bin/fake bin/gui_v2.rb)
29
29
  PROJ.exclude << '^tags$'
30
30
 
31
- PROJ.rdoc.opts = ["--line-numbers", "--inline-source"]
32
- PROJ.rdoc.template = "tasks/jamis.rb"
31
+ PROJ.rdoc.opts = ["--line-numbers", "--force-update", "-W", "http://tournament.rubyforge.org/svn/trunk/%s"]
32
+ PROJ.rdoc.exclude = [
33
+ "webgui\/vendor\/plugins\/restful_authentication\/notes\/.+\.txt",
34
+ "webgui\/db\/migrate\/teams.txt",
35
+ "webgui\/public\/robots.txt"
36
+ ]
33
37
  # EOF
data/bin/pool CHANGED
@@ -142,6 +142,9 @@ Main do
142
142
  puts "You should now change to #{installer.install_dir} and"
143
143
  puts "perform the following steps:"
144
144
  puts " 1. RAILS_ENV=production rake db:migrate"
145
+ puts "If this is the first time you have installed the web gui, you"
146
+ puts "Should also perform these steps:"
147
+ puts " 1. RAILS_ENV=production rake auth:gen:site_key"
145
148
  puts " 2. RAILS_ENV=production rake \"admin:create[admin,#{params['admin-email'].value},Joe Admin,password]\""
146
149
  puts " You should substitute your desired admin user login, name and password."
147
150
  end
data/webgui/log/README ADDED
@@ -0,0 +1 @@
1
+ # Web log files stored here
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tournament
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.1
4
+ version: 2.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Douglas A. Seifert
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-03-26 00:00:00 -07:00
12
+ date: 2009-03-29 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -73,23 +73,12 @@ extensions: []
73
73
 
74
74
  extra_rdoc_files:
75
75
  - History.txt
76
- - Manifest.txt
77
76
  - README.txt
78
77
  - bin/benchmark_pool
79
78
  - bin/picker
80
79
  - bin/pool
81
- - webgui/db/migrate/teams.txt
82
- - webgui/public/robots.txt
83
- - webgui/vendor/plugins/restful_authentication/notes/AccessControl.txt
84
- - webgui/vendor/plugins/restful_authentication/notes/Authentication.txt
85
- - webgui/vendor/plugins/restful_authentication/notes/Authorization.txt
86
- - webgui/vendor/plugins/restful_authentication/notes/RailsPlugins.txt
87
- - webgui/vendor/plugins/restful_authentication/notes/SecurityPatterns.txt
88
- - webgui/vendor/plugins/restful_authentication/notes/Tradeoffs.txt
89
- - webgui/vendor/plugins/restful_authentication/notes/Trustification.txt
90
80
  files:
91
81
  - History.txt
92
- - Manifest.txt
93
82
  - README.txt
94
83
  - Rakefile
95
84
  - bin/benchmark_pool
@@ -107,20 +96,6 @@ files:
107
96
  - spec/spec_helper.rb
108
97
  - spec/tournament_spec.rb
109
98
  - static/shoes-icon.png
110
- - tasks/ann.rake
111
- - tasks/bones.rake
112
- - tasks/gem.rake
113
- - tasks/git.rake
114
- - tasks/jamis.rb
115
- - tasks/manifest.rake
116
- - tasks/notes.rake
117
- - tasks/post_load.rake
118
- - tasks/rdoc.rake
119
- - tasks/rubyforge.rake
120
- - tasks/setup.rb
121
- - tasks/spec.rake
122
- - tasks/svn.rake
123
- - tasks/test.rake
124
99
  - test/test_tournament.rb
125
100
  - test/test_webgui_installer.rb
126
101
  - webgui/README
@@ -179,7 +154,6 @@ files:
179
154
  - webgui/config/boot.rb
180
155
  - webgui/config/database.yml
181
156
  - webgui/config/environment.rb
182
- - webgui/config/environments/development.rb
183
157
  - webgui/config/environments/production.rb
184
158
  - webgui/config/environments/test.rb
185
159
  - webgui/config/initializers/inflections.rb
@@ -187,12 +161,8 @@ files:
187
161
  - webgui/config/initializers/new_rails_defaults.rb
188
162
  - webgui/config/initializers/ordinal.rb
189
163
  - webgui/config/initializers/pool.rb
190
- - webgui/config/initializers/site_keys.rb
191
164
  - webgui/config/locales/en.yml
192
165
  - webgui/config/routes.rb
193
- - webgui/db/development.sql
194
- - webgui/db/development.sqlite3
195
- - webgui/db/foo.yml
196
166
  - webgui/db/migrate/20090216015836_create_entries.rb
197
167
  - webgui/db/migrate/20090217001611_add_tie_break_to_entry.rb
198
168
  - webgui/db/migrate/20090217004039_create_users.rb
@@ -214,11 +184,7 @@ files:
214
184
  - webgui/db/migrate/20090301090511_create_regions.rb
215
185
  - webgui/db/migrate/20090316023841_change_illinois_short_name.rb
216
186
  - webgui/db/migrate/teams.txt
217
- - webgui/db/old_development.sqlite3
218
- - webgui/db/pool.yml
219
187
  - webgui/db/schema.rb
220
- - webgui/db/stats.yml
221
- - webgui/db/test.sqlite3
222
188
  - webgui/doc/README_FOR_APP
223
189
  - webgui/lib/authenticated_system.rb
224
190
  - webgui/lib/authenticated_test_helper.rb
@@ -228,8 +194,7 @@ files:
228
194
  - webgui/lib/saves_picks.rb
229
195
  - webgui/lib/tasks/admin.rake
230
196
  - webgui/lib/tasks/possibility.rake
231
- - webgui/log/development.log
232
- - webgui/log/test.log
197
+ - webgui/log/README
233
198
  - webgui/public/404.html
234
199
  - webgui/public/422.html
235
200
  - webgui/public/500.html
@@ -376,7 +341,9 @@ homepage: http://www.dseifert.net/code/tournament
376
341
  post_install_message:
377
342
  rdoc_options:
378
343
  - --line-numbers
379
- - --inline-source
344
+ - --force-update
345
+ - -W
346
+ - http://tournament.rubyforge.org/svn/trunk/%s
380
347
  - --main
381
348
  - README.txt
382
349
  require_paths:
data/Manifest.txt DELETED
@@ -1,277 +0,0 @@
1
- History.txt
2
- Manifest.txt
3
- README.txt
4
- Rakefile
5
- bin/benchmark_pool
6
- bin/gui.rb
7
- bin/picker
8
- bin/pool
9
- lib/tournament.rb
10
- lib/tournament/bracket.rb
11
- lib/tournament/entry.rb
12
- lib/tournament/pool.rb
13
- lib/tournament/possibility.rb
14
- lib/tournament/scoring_strategy.rb
15
- lib/tournament/team.rb
16
- lib/tournament/webgui_installer.rb
17
- spec/spec_helper.rb
18
- spec/tournament_spec.rb
19
- static/shoes-icon.png
20
- tasks/ann.rake
21
- tasks/bones.rake
22
- tasks/gem.rake
23
- tasks/git.rake
24
- tasks/jamis.rb
25
- tasks/manifest.rake
26
- tasks/notes.rake
27
- tasks/post_load.rake
28
- tasks/rdoc.rake
29
- tasks/rubyforge.rake
30
- tasks/setup.rb
31
- tasks/spec.rake
32
- tasks/svn.rake
33
- tasks/test.rake
34
- test/test_tournament.rb
35
- test/test_webgui_installer.rb
36
- webgui/README
37
- webgui/Rakefile
38
- webgui/app/controllers/admin_controller.rb
39
- webgui/app/controllers/application.rb
40
- webgui/app/controllers/entry_controller.rb
41
- webgui/app/controllers/pool_controller.rb
42
- webgui/app/controllers/reports_controller.rb
43
- webgui/app/controllers/sessions_controller.rb
44
- webgui/app/controllers/teams_controller.rb
45
- webgui/app/controllers/users_controller.rb
46
- webgui/app/helpers/admin_helper.rb
47
- webgui/app/helpers/application_helper.rb
48
- webgui/app/helpers/entry_helper.rb
49
- webgui/app/helpers/pool_helper.rb
50
- webgui/app/helpers/reports_helper.rb
51
- webgui/app/helpers/sessions_helper.rb
52
- webgui/app/helpers/teams_helper.rb
53
- webgui/app/helpers/users_helper.rb
54
- webgui/app/models/entry.rb
55
- webgui/app/models/pool.rb
56
- webgui/app/models/region.rb
57
- webgui/app/models/role.rb
58
- webgui/app/models/seeding.rb
59
- webgui/app/models/team.rb
60
- webgui/app/models/user.rb
61
- webgui/app/models/user_mailer.rb
62
- webgui/app/views/admin/bracket.html.erb
63
- webgui/app/views/admin/entries.html.erb
64
- webgui/app/views/admin/index.html.erb
65
- webgui/app/views/admin/pool.html.erb
66
- webgui/app/views/admin/recap.html.erb
67
- webgui/app/views/entry/index.html.erb
68
- webgui/app/views/entry/print.erb
69
- webgui/app/views/entry/print.html.erb
70
- webgui/app/views/entry/show.html.erb
71
- webgui/app/views/layouts/bracket.html.erb
72
- webgui/app/views/layouts/default.html.erb
73
- webgui/app/views/layouts/print.html.erb
74
- webgui/app/views/layouts/report.html.erb
75
- webgui/app/views/pool/index.html.erb
76
- webgui/app/views/reports/_leader.html.erb
77
- webgui/app/views/reports/_possibility.html.erb
78
- webgui/app/views/reports/_report.html.erb
79
- webgui/app/views/reports/show.html.erb
80
- webgui/app/views/sessions/new.html.erb
81
- webgui/app/views/shared/_admins.html.erb
82
- webgui/app/views/shared/_bracket.html.erb
83
- webgui/app/views/teams/choose.html.erb
84
- webgui/app/views/user_mailer/activation.erb
85
- webgui/app/views/user_mailer/recap.erb
86
- webgui/app/views/user_mailer/signup_notification.erb
87
- webgui/app/views/users/_user_bar.html.erb
88
- webgui/app/views/users/new.html.erb
89
- webgui/config/boot.rb
90
- webgui/config/database.yml
91
- webgui/config/environment.rb
92
- webgui/config/environments/development.rb
93
- webgui/config/environments/production.rb
94
- webgui/config/environments/test.rb
95
- webgui/config/initializers/inflections.rb
96
- webgui/config/initializers/mime_types.rb
97
- webgui/config/initializers/new_rails_defaults.rb
98
- webgui/config/initializers/ordinal.rb
99
- webgui/config/initializers/pool.rb
100
- webgui/config/initializers/site_keys.rb
101
- webgui/config/locales/en.yml
102
- webgui/config/routes.rb
103
- webgui/db/development.sqlite3
104
- webgui/db/migrate/20090216015836_create_entries.rb
105
- webgui/db/migrate/20090217001611_add_tie_break_to_entry.rb
106
- webgui/db/migrate/20090217004039_create_users.rb
107
- webgui/db/migrate/20090217014940_relate_entry_and_user.rb
108
- webgui/db/migrate/20090218024350_create_roles.rb
109
- webgui/db/migrate/20090218024657_add_postition_to_roles.rb
110
- webgui/db/migrate/20090218025240_add_admin_role.rb
111
- webgui/db/migrate/20090225022928_create_pools.rb
112
- webgui/db/migrate/20090225030346_associate_pool_and_entry.rb
113
- webgui/db/migrate/20090225072358_change_pool_data_column.rb
114
- webgui/db/migrate/20090225072849_add_completed_to_entries.rb
115
- webgui/db/migrate/20090225074149_add_pool_id_index_to_entries.rb
116
- webgui/db/migrate/20090225084414_add_user_id_to_pool.rb
117
- webgui/db/migrate/20090226021913_add_active_to_pools.rb
118
- webgui/db/migrate/20090226142240_rename_bracket_column_to_data.rb
119
- webgui/db/migrate/20090301014710_create_teams.rb
120
- webgui/db/migrate/20090301025902_add_more_teams.rb
121
- webgui/db/migrate/20090301041526_create_seedings.rb
122
- webgui/db/migrate/20090301090511_create_regions.rb
123
- webgui/db/migrate/20090316023841_change_illinois_short_name.rb
124
- webgui/db/migrate/teams.txt
125
- webgui/db/pool.yml
126
- webgui/db/schema.rb
127
- webgui/db/test.sqlite3
128
- webgui/doc/README_FOR_APP
129
- webgui/lib/authenticated_system.rb
130
- webgui/lib/authenticated_test_helper.rb
131
- webgui/lib/form_object.rb
132
- webgui/lib/pdf_helper.rb
133
- webgui/lib/prince.rb
134
- webgui/lib/saves_picks.rb
135
- webgui/lib/tasks/admin.rake
136
- webgui/lib/tasks/possibility.rake
137
- webgui/public/404.html
138
- webgui/public/422.html
139
- webgui/public/500.html
140
- webgui/public/dispatch.cgi
141
- webgui/public/dispatch.fcgi
142
- webgui/public/dispatch.rb
143
- webgui/public/favicon.ico
144
- webgui/public/images/2009FinalFour.png
145
- webgui/public/images/rails.png
146
- webgui/public/javascripts/application.js
147
- webgui/public/javascripts/bracket.js
148
- webgui/public/javascripts/controls.js
149
- webgui/public/javascripts/dragdrop.js
150
- webgui/public/javascripts/effects.js
151
- webgui/public/javascripts/prototype.js
152
- webgui/public/robots.txt
153
- webgui/public/stylesheets/bracket-print.css
154
- webgui/public/stylesheets/bracket.css
155
- webgui/public/stylesheets/main.css
156
- webgui/public/stylesheets/prince.css
157
- webgui/public/stylesheets/prince_landscape.css
158
- webgui/public/stylesheets/reports.css
159
- webgui/script/about
160
- webgui/script/console
161
- webgui/script/dbconsole
162
- webgui/script/destroy
163
- webgui/script/generate
164
- webgui/script/performance/benchmarker
165
- webgui/script/performance/profiler
166
- webgui/script/performance/request
167
- webgui/script/plugin
168
- webgui/script/process/inspector
169
- webgui/script/process/reaper
170
- webgui/script/process/spawner
171
- webgui/script/runner
172
- webgui/script/server
173
- webgui/test/fixtures/entries.yml
174
- webgui/test/fixtures/pools.yml
175
- webgui/test/fixtures/regions.yml
176
- webgui/test/fixtures/roles.yml
177
- webgui/test/fixtures/roles_users.yml
178
- webgui/test/fixtures/seedings.yml
179
- webgui/test/fixtures/teams.yml
180
- webgui/test/fixtures/users.yml
181
- webgui/test/functional/admin_controller_test.rb
182
- webgui/test/functional/entry_controller_test.rb
183
- webgui/test/functional/pool_controller_test.rb
184
- webgui/test/functional/reports_controller_test.rb
185
- webgui/test/functional/sessions_controller_test.rb
186
- webgui/test/functional/teams_controller_test.rb
187
- webgui/test/functional/users_controller_test.rb
188
- webgui/test/performance/browsing_test.rb
189
- webgui/test/test_helper.rb
190
- webgui/test/unit/entry_test.rb
191
- webgui/test/unit/pool_test.rb
192
- webgui/test/unit/region_test.rb
193
- webgui/test/unit/role_test.rb
194
- webgui/test/unit/seeding_test.rb
195
- webgui/test/unit/team_test.rb
196
- webgui/test/unit/user_mailer_test.rb
197
- webgui/test/unit/user_test.rb
198
- webgui/vendor/plugins/auto_complete/README
199
- webgui/vendor/plugins/auto_complete/Rakefile
200
- webgui/vendor/plugins/auto_complete/init.rb
201
- webgui/vendor/plugins/auto_complete/lib/auto_complete.rb
202
- webgui/vendor/plugins/auto_complete/lib/auto_complete_macros_helper.rb
203
- webgui/vendor/plugins/auto_complete/test/auto_complete_test.rb
204
- webgui/vendor/plugins/enumerations_mixin/ATTENTION
205
- webgui/vendor/plugins/enumerations_mixin/LICENSE
206
- webgui/vendor/plugins/enumerations_mixin/README_ENUMERATIONS
207
- webgui/vendor/plugins/enumerations_mixin/init.rb
208
- webgui/vendor/plugins/enumerations_mixin/lib/active_record/acts/enumerated.rb
209
- webgui/vendor/plugins/enumerations_mixin/lib/active_record/aggregations/has_enumerated.rb
210
- webgui/vendor/plugins/enumerations_mixin/lib/active_record/virtual_enumerations.rb
211
- webgui/vendor/plugins/enumerations_mixin/virtual_enumerations_sample.rb
212
- webgui/vendor/plugins/restful_authentication/.gitignore
213
- webgui/vendor/plugins/restful_authentication/CHANGELOG
214
- webgui/vendor/plugins/restful_authentication/README.textile
215
- webgui/vendor/plugins/restful_authentication/Rakefile
216
- webgui/vendor/plugins/restful_authentication/TODO
217
- webgui/vendor/plugins/restful_authentication/generators/authenticated/USAGE
218
- webgui/vendor/plugins/restful_authentication/generators/authenticated/authenticated_generator.rb
219
- webgui/vendor/plugins/restful_authentication/generators/authenticated/lib/insert_routes.rb
220
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/_model_partial.html.erb
221
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/activation.erb
222
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/authenticated_system.rb
223
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/authenticated_test_helper.rb
224
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/controller.rb
225
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/helper.rb
226
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/login.html.erb
227
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/mailer.rb
228
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/migration.rb
229
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/model.rb
230
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/model_controller.rb
231
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/model_helper.rb
232
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/model_helper_spec.rb
233
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/observer.rb
234
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/signup.html.erb
235
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/signup_notification.erb
236
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/site_keys.rb
237
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/controllers/access_control_spec.rb
238
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/controllers/authenticated_system_spec.rb
239
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/controllers/sessions_controller_spec.rb
240
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/controllers/users_controller_spec.rb
241
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/fixtures/users.yml
242
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/helpers/users_helper_spec.rb
243
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/spec/models/user_spec.rb
244
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/stories/rest_auth_stories.rb
245
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/stories/rest_auth_stories_helper.rb
246
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/stories/steps/ra_navigation_steps.rb
247
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/stories/steps/ra_resource_steps.rb
248
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/stories/steps/ra_response_steps.rb
249
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/stories/steps/user_steps.rb
250
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/stories/users/accounts.story
251
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/stories/users/sessions.story
252
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/test/functional_test.rb
253
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/test/mailer_test.rb
254
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/test/model_functional_test.rb
255
- webgui/vendor/plugins/restful_authentication/generators/authenticated/templates/test/unit_test.rb
256
- webgui/vendor/plugins/restful_authentication/init.rb
257
- webgui/vendor/plugins/restful_authentication/install.rb
258
- webgui/vendor/plugins/restful_authentication/lib/authentication.rb
259
- webgui/vendor/plugins/restful_authentication/lib/authentication/by_cookie_token.rb
260
- webgui/vendor/plugins/restful_authentication/lib/authentication/by_password.rb
261
- webgui/vendor/plugins/restful_authentication/lib/authorization.rb
262
- webgui/vendor/plugins/restful_authentication/lib/authorization/aasm_roles.rb
263
- webgui/vendor/plugins/restful_authentication/lib/authorization/stateful_roles.rb
264
- webgui/vendor/plugins/restful_authentication/lib/trustification.rb
265
- webgui/vendor/plugins/restful_authentication/lib/trustification/email_validation.rb
266
- webgui/vendor/plugins/restful_authentication/notes/AccessControl.txt
267
- webgui/vendor/plugins/restful_authentication/notes/Authentication.txt
268
- webgui/vendor/plugins/restful_authentication/notes/Authorization.txt
269
- webgui/vendor/plugins/restful_authentication/notes/RailsPlugins.txt
270
- webgui/vendor/plugins/restful_authentication/notes/SecurityFramework.graffle
271
- webgui/vendor/plugins/restful_authentication/notes/SecurityFramework.png
272
- webgui/vendor/plugins/restful_authentication/notes/SecurityPatterns.txt
273
- webgui/vendor/plugins/restful_authentication/notes/Tradeoffs.txt
274
- webgui/vendor/plugins/restful_authentication/notes/Trustification.txt
275
- webgui/vendor/plugins/restful_authentication/rails/init.rb
276
- webgui/vendor/plugins/restful_authentication/restful-authentication.gemspec
277
- webgui/vendor/plugins/restful_authentication/tasks/auth.rake