lockdown 0.5.9 → 0.5.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. data/History.txt +8 -0
  2. data/Manifest.txt +1 -2
  3. data/bin/lockdown +3 -1
  4. data/config/hoe.rb +1 -1
  5. data/lib/lockdown/classy-inheritance.rb +153 -0
  6. data/lib/lockdown/version.rb +1 -1
  7. data/rails_generators/lockdown/lockdown_generator.rb +12 -12
  8. data/rails_generators/lockdown/templates/app/controllers/user_groups_controller.rb +1 -1
  9. data/rails_generators/lockdown/templates/app/controllers/users_controller.rb +0 -5
  10. data/rails_generators/lockdown/templates/app/helpers/user_groups_helper.rb +3 -3
  11. data/rails_generators/lockdown/templates/app/helpers/users_helper.rb +12 -12
  12. data/rails_generators/lockdown/templates/app/models/user.rb +8 -11
  13. data/rails_generators/lockdown/templates/app/views/permissions/_data.html.erb +3 -3
  14. data/rails_generators/lockdown/templates/app/views/permissions/index.html.erb +4 -4
  15. data/rails_generators/lockdown/templates/app/views/permissions/show.html.erb +2 -2
  16. data/rails_generators/lockdown/templates/app/views/user_groups/_data.html.erb +29 -5
  17. data/rails_generators/lockdown/templates/app/views/user_groups/_form.html.erb +6 -6
  18. data/rails_generators/lockdown/templates/app/views/user_groups/edit.html.erb +3 -3
  19. data/rails_generators/lockdown/templates/app/views/user_groups/index.html.erb +7 -7
  20. data/rails_generators/lockdown/templates/app/views/user_groups/new.html.erb +2 -2
  21. data/rails_generators/lockdown/templates/app/views/user_groups/show.html.erb +5 -5
  22. data/rails_generators/lockdown/templates/app/views/users/_data.html.erb +34 -10
  23. data/rails_generators/lockdown/templates/app/views/users/_form.html.erb +7 -7
  24. data/rails_generators/lockdown/templates/app/views/users/edit.html.erb +3 -3
  25. data/rails_generators/lockdown/templates/app/views/users/index.html.erb +8 -8
  26. data/rails_generators/lockdown/templates/app/views/users/new.html.erb +2 -2
  27. data/rails_generators/lockdown/templates/app/views/users/show.html.erb +3 -3
  28. data/rails_generators/lockdown/templates/db/migrate/create_admin_user.rb +6 -8
  29. data/website/index.html +8 -264
  30. data/website/index.txt +6 -244
  31. metadata +5 -7
  32. data/website/generator.html +0 -264
  33. data/website/generator.txt +0 -188
@@ -1,5 +1,5 @@
1
1
  <!--
2
- take the style block out. this is duplicated in users/_data.html.erb
2
+ take the style block out. this is duplicated in user_groups/_data.html.erb
3
3
  without this, the user group selection is just no good
4
4
  -->
5
5
  <style>
@@ -8,6 +8,7 @@ without this, the user group selection is just no good
8
8
  border: 1px solid #ccc;
9
9
  list-style: none;
10
10
  height: 300px;
11
+ width: 600px;
11
12
  text-align: left;
12
13
  list-style: none;
13
14
  margin-left: 12px;
@@ -30,34 +31,57 @@ li.odd_checked{
30
31
 
31
32
  <p>
32
33
  <b>First name</b><br />
33
- <%= profile_first_name_value %>
34
+ <%%= user_first_name_value %>
34
35
  </p>
35
36
  <p>
36
37
  <b>Last name</b><br />
37
- <%= profile_last_name_value %>
38
+ <%%= user_last_name_value %>
38
39
  </p>
39
40
  <p>
40
41
  <b>Email</b><br />
41
- <%= profile_email_value %>
42
+ <%%= user_email_value %>
42
43
  </p>
43
44
  <p>
44
45
  <b><span>L</span>ogin</b><br />
45
- <%= user_login_value %>
46
+ <%%= user_login_value %>
46
47
  </p>
47
48
 
48
- <% unless action_name == "show" -%>
49
+ <%% unless <%= action_name %> == "show" -%>
49
50
  <p>
50
51
  <b><span>P</span>assword</b><br />
51
- <%= user_password_value %>
52
+ <%%= user_password_value %>
52
53
  </p>
53
54
  <p>
54
55
  <b><span>P</span>assword confirmation</b><br />
55
- <%= user_password_confirmation_value %>
56
+ <%%= user_password_confirmation_value %>
56
57
  </p>
57
- <% end -%>
58
+ <%% end -%>
58
59
 
59
60
  <p>
60
61
  <b>User Groups</b><br />
61
- <%= user_user_groups_value %>
62
+ <%%= user_user_groups_value %>
62
63
  </p>
63
64
 
65
+ <!--
66
+ Take this out and place in your application.js.
67
+ This is duplicated in user_groups/_data.html.erb
68
+ -->
69
+ <script type="text/javascript">
70
+
71
+ function do_highlight(id){
72
+ li = document.getElementById("li_"+id);
73
+ i = document.getElementById(id);
74
+ if (i.checked){
75
+ li.style.backgroundColor = "#ddd";
76
+ li.style.color = "#fff";
77
+ }else{
78
+ if (li.className == "odd"){
79
+ li.style.backgroundColor = "#fff";
80
+ }else{
81
+ li.style.backgroundColor = "#ccc";
82
+ }
83
+ li.style.color = "#000";
84
+ }
85
+ }
86
+ </script>
87
+
@@ -1,12 +1,12 @@
1
- <%
1
+ <%%
2
2
  submit_label = "Update"
3
3
  submit_label = "Create" if @user.new_record?
4
4
  -%>
5
5
 
6
- <%= error_messages_for :profile %>
7
- <%= error_messages_for :user %>
6
+ <%%= error_messages_for :profile %>
7
+ <%%= error_messages_for :user %>
8
8
 
9
- <% form_for(@user) do |f| %>
10
- <%= render :partial => "data", :locals => {:f => f} %>
11
- <p> <%= f.submit submit_label %> </p>
12
- <% end %>
9
+ <%% form_for(@user) do |f| %>
10
+ <%%= render :partial => "data" %>
11
+ <p> <%%= f.submit submit_label %> </p>
12
+ <%% end %>
@@ -1,6 +1,6 @@
1
1
  <h1>Editing User</h1>
2
2
 
3
- <%= render :partial => "form" %>
3
+ <%%= render :partial => "form" %>
4
4
 
5
- <%= link_to 'Show', @user %> |
6
- <%= link_to 'Back', users_path %>
5
+ <%%= link_to 'Show', @user %> |
6
+ <%%= link_to 'Back', users_path %>
@@ -6,17 +6,17 @@
6
6
  <th>Name</th>
7
7
  </tr>
8
8
 
9
- <% @users.each do |user| %>
9
+ <%% @users.each do |user| %>
10
10
  <tr>
11
- <td><%=h user.login %></td>
12
- <td><%=h user.full_name %></td>
13
- <td><%= link_to 'Show', user %></td>
14
- <td><%= link_to 'Edit', edit_user_path(user) %></td>
15
- <td><%= link_to 'Destroy', user, :confirm => 'Are you sure?', :method => :delete %></td>
11
+ <td><%%=h user.login %></td>
12
+ <td><%%=h user.full_name %></td>
13
+ <td><%%= link_to 'Show', user %></td>
14
+ <td><%%= link_to 'Edit', edit_user_path(user) %></td>
15
+ <td><%%= link_to 'Destroy', user, :confirm => 'Are you sure?', :method => :delete %></td>
16
16
  </tr>
17
- <% end %>
17
+ <%% end %>
18
18
  </table>
19
19
 
20
20
  <br />
21
21
 
22
- <%= link_to 'New User', new_user_path %>
22
+ <%%= link_to 'New User', new_user_path %>
@@ -1,5 +1,5 @@
1
1
  <h1>New User</h1>
2
2
 
3
- <%= render :partial => "form" %>
3
+ <%%= render :partial => "form" %>
4
4
 
5
- <%= link_to 'Back', users_path %>
5
+ <%%= link_to 'Back', users_path %>
@@ -1,4 +1,4 @@
1
- <%= render :partial => "data", :locals => {:f => nil} %>
1
+ <%%= render :partial => "data" %>
2
2
 
3
- <%= link_to 'Edit', edit_user_path(@user) %> |
4
- <%= link_to 'Back', users_path %>
3
+ <%%= link_to 'Edit', edit_user_path(@user) %> |
4
+ <%%= link_to 'Back', users_path %>
@@ -1,14 +1,12 @@
1
1
  class CreateAdminUser < ActiveRecord::Migration
2
2
  def self.up
3
3
  # TODO: Change the password
4
- u = User.new( :password => "password",
5
- :password_confirmation => "password",
6
- :login => "admin")
7
-
8
- u.profile = Profile.create(:first_name => "Administrator",
9
- :last_name => "User",
10
- :email => "administrator@a.com")
11
- u.save
4
+ u = User.create(:password => "password",
5
+ :password_confirmation => "password",
6
+ :first_name => "Administrator",
7
+ :last_name => "User",
8
+ :email => "administrator@a.com",
9
+ :login => "admin")
12
10
 
13
11
  Lockdown::System.make_user_administrator(u)
14
12
  end
data/website/index.html CHANGED
@@ -33,7 +33,7 @@
33
33
  <h1>Lockdown</h1>
34
34
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/lockdown"; return false'>
35
35
  <p>Get Version</p>
36
- <a href="http://rubyforge.org/projects/lockdown" class="numbers">0.5.9</a>
36
+ <a href="http://rubyforge.org/projects/lockdown" class="numbers">0.5.10</a>
37
37
  </div>
38
38
  <h2>What</h2>
39
39
 
@@ -41,281 +41,25 @@
41
41
  <p>Lockdown is a authentication/authorization system for RubyOnRails (ver 2.x). While Merb functionality is in place, it is not complete. There will be a release solely focused on getting the Merb functionality up to par with Rails.</p>
42
42
 
43
43
 
44
- <h2>Consolidation of information</h2>
44
+ <h2>New Home</h2>
45
45
 
46
46
 
47
47
  <p>Maintaining this page, the wiki at GitHub, the Google Group and no issue tracker is not an ideal setup. So, everything is moving to <a href="http://stonean.com">stonean.com</a> where I&#8217;m giving <a href="http://redmine.org">Redmine</a> a shot a running everything for me. I&#8217;ll be posting release announcements to the news feed for each project and keeping the docs up-to-date. Hopefully this will be better for everyone.</p>
48
48
 
49
49
 
50
- <p>Thanks for your interest in Lockdown,<br/>
51
- -andy</p>
52
-
53
-
54
- <h2>Installing</h2>
55
-
56
-
57
- <pre>
58
- $ sudo gem install lockdown
59
- $ cd &lt;your_project_directory&gt;
60
- $ lockdown .
61
- </pre>
62
-
63
- <p>This will create a &#8220;lockdown&#8221; directory in the lib dir add two files: init.rb and session.rb.
64
- Modify init.rb to set configuration options and define the permissions and user groups that apply to your system.</p>
65
-
66
-
67
- <p><strong> Please keep the following in mind:</strong>
68
- <ul>
69
- <li><strong>All Permissions are defined in init.rb, they cannot be defined via the administration screens.</strong></li>
70
- <li><strong>All User Groups should be defined in init.rb. The administration screens can be used to create user groups, but doing so should be reserved for the unexpected. Creating User Groups via the administration screens will only add more work for you if you want to run tests using those groups.</strong></li>
71
- <li><strong>Lockdown will sync up the rules (Permissions and User Groups) defined in init.rb with your database. You can turn off this feature.</strong></li>
72
- </ul></p>
73
-
74
-
75
- <p>To help you with your new application, Lockdown comes with a generator called lockdown that has various options for you to pick which templates you desire.</p>
76
-
77
-
78
- <pre>
79
- $ cd &lt;your_project_directory&gt;
80
- $ ./script/generate lockdown --all
81
- </pre>
82
-
83
- This will install resources such as:
84
- <ul>
85
- <li>Models</li>
86
- <li>Controllers</li>
87
- <li>Views</li>
88
- <li>Helpers</li>
89
- <li>Migrations</li>
90
- <li>Routes</li>
91
- </ul>
92
-
93
- <p>Please refer to the <a href="generator.html">generator page</a> for more detail.</p>
94
-
95
-
96
- <h2>How it works</h2>
97
-
98
-
99
- When Lockdown is installed, it adds the following line to your environment.rb (init.rb for Merb):
100
- <pre>
101
- require "lockdown/init"
102
- </pre>
103
- This is the default init.rb included with Lockdown:
104
- <pre class='syntax'>
105
- <span class="ident">require</span> <span class="punct">&quot;</span><span class="string">lockdown</span><span class="punct">&quot;</span>
106
- <span class="ident">require</span> <span class="constant">File</span><span class="punct">.</span><span class="ident">join</span><span class="punct">(</span><span class="constant">File</span><span class="punct">.</span><span class="ident">dirname</span><span class="punct">(</span><span class="constant">__FILE__</span><span class="punct">),</span> <span class="punct">&quot;</span><span class="string">session</span><span class="punct">&quot;)</span>
107
-
108
- <span class="constant">Lockdown</span><span class="punct">::</span><span class="constant">System</span><span class="punct">.</span><span class="ident">configure</span> <span class="keyword">do</span>
109
-
110
- <span class="comment">#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span>
111
- <span class="comment"># Configuration Options</span>
112
- <span class="comment">#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span>
113
- <span class="comment"># Options with defaults:</span>
114
- <span class="comment">#</span>
115
- <span class="comment"># Set timeout to 1 hour:</span>
116
- <span class="comment"># options[:session_timeout] = (60 * 60)</span>
117
- <span class="comment">#</span>
118
- <span class="comment"># Set system to logout if unauthorized access is attempted:</span>
119
- <span class="comment"># options[:logout_on_access_violation] = false</span>
120
- <span class="comment">#</span>
121
- <span class="comment"># Set redirect to path on unauthorized access attempt:</span>
122
- <span class="comment"># options[:access_denied_path] = &quot;/&quot;</span>
123
- <span class="comment">#</span>
124
- <span class="comment"># Set redirect to path on successful login:</span>
125
- <span class="comment"># options[:successful_login_path] = &quot;/&quot;</span>
126
- <span class="comment">#</span>
127
- <span class="comment"># Set the system to sync the Permissions and UserGroups defined here</span>
128
- <span class="comment"># with the database. </span>
129
- <span class="comment"># options[:sync_init_rb_with_db] = true</span>
130
- <span class="comment">#</span>
131
- <span class="comment">#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span>
132
- <span class="comment"># Define permissions</span>
133
- <span class="comment">#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span>
134
- <span class="comment">#</span>
135
- <span class="comment"># set_permission(:product_management, all_methods(:products))</span>
136
- <span class="comment">#</span>
137
- <span class="comment"># :product_management is the name of the permission which is later</span>
138
- <span class="comment"># referenced by the set_user_group method</span>
139
- <span class="comment">#</span>
140
- <span class="comment"># :all_methods(:products) will return an array of all controller actions</span>
141
- <span class="comment"># for the products controller</span>
142
- <span class="comment">#</span>
143
- <span class="comment"># if products is your standard RESTful resource you'll get:</span>
144
- <span class="comment"># [&quot;products/index , &quot;products/show&quot;,</span>
145
- <span class="comment"># &quot;products/new&quot;, &quot;products/edit&quot;,</span>
146
- <span class="comment"># &quot;products/create&quot;, &quot;products/update&quot;,</span>
147
- <span class="comment"># &quot;products/destroy&quot;]</span>
148
- <span class="comment">#</span>
149
- <span class="comment"># You can pass multiple parameters to concat permissions such as:</span>
150
- <span class="comment"># </span>
151
- <span class="comment"># set_permission(:security_management,all_methods(:users),</span>
152
- <span class="comment"># all_methods(:user_groups),</span>
153
- <span class="comment"># all_methods(:permissions) )</span>
154
- <span class="comment">#</span>
155
- <span class="comment"># In addition to all_methods(:controller) there are:</span>
156
- <span class="comment">#</span>
157
- <span class="comment"># only_methods(:controller, :only_method_1, :only_method_2)</span>
158
- <span class="comment">#</span>
159
- <span class="comment"># all_except_methods(:controller, :except_method_1, :except_method_2)</span>
160
- <span class="comment">#</span>
161
- <span class="comment"># Some other sample permissions:</span>
162
- <span class="comment"># </span>
163
- <span class="comment"># set_permission(:sessions, all_methods(:sessions))</span>
164
- <span class="comment"># set_permission(:my_account, only_methods(:users, :edit, :update, :show))</span>
165
- <span class="comment"># </span>
166
- <span class="comment"># Define your permissions here:</span>
167
-
168
- <span class="comment">#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span>
169
- <span class="comment"># Built-in user groups</span>
170
- <span class="comment">#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span>
171
- <span class="comment"># You can assign the above permission to one of the built-in user groups</span>
172
- <span class="comment"># by using the following:</span>
173
- <span class="comment"># </span>
174
- <span class="comment"># To allow public access on the permissions :sessions and :home:</span>
175
- <span class="comment"># set_public_access :sessions, :home</span>
176
- <span class="comment"># </span>
177
- <span class="comment"># Restrict :my_account access to only authenticated users:</span>
178
- <span class="comment"># set_protected_access :my_account</span>
179
- <span class="comment">#</span>
180
- <span class="comment"># Define the built-in user groups here:</span>
181
-
182
- <span class="comment">#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span>
183
- <span class="comment"># Define user groups</span>
184
- <span class="comment">#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</span>
185
- <span class="comment">#</span>
186
- <span class="comment"># set_user_group(:catalog_management, :category_management, </span>
187
- <span class="comment"># :product_management) </span>
188
- <span class="comment">#</span>
189
- <span class="comment"># :catalog_management is the name of the user group</span>
190
- <span class="comment"># :category_management and :product_management refer to permission names</span>
191
- <span class="comment">#</span>
192
- <span class="comment"># </span>
193
- <span class="comment"># Define your user groups here:</span>
194
-
195
- <span class="keyword">end</span>
196
- </pre>
197
-
198
- As you can see, the first line requires lockdown. This will load the Lockdown system which consists of various parts:
199
- <ul>
200
- <li>
201
- Controller<br/>
202
- <p>The controller functionality will add before filters to test each request agains the defined access_rights for the current user. If the current request is not in the access_rights list, access right is denied.</p>
203
- </li>
204
- <li>
205
- Model<br/>
206
- <p>The model functionality will automatically set the updated_by/created_by fields of your model to the current_profile_id.</p>
207
- </li>
208
- <li>
209
- View<br/>
210
- <p>The view functionality intercepts the link_to method (aliases it). If the current user does not have rights to the link, the link will not show.<br/>There is also a link_to_or_show method (same params as link_to) that will print out just the name of the link (no anchor tag) if the current user does not have access. </p>
211
- </li>
212
- </ul>
213
-
214
- When referring to access rights: if you have a standard <span class="caps">REST</span> users controller, the access rights would be:
215
- <pre>
216
- users/index
217
- users/show
218
- users/edit
219
- users/update
220
- users/new
221
- users/create
222
- users/destroy (delete for Merb)
223
- </pre>
224
-
225
- <h2>The internals</h2>
226
-
50
+ <h2>Quick links</h2>
227
51
 
228
- <p>All configuration of Lockdown (Permissions and User Groups) are done in lib/lockdown/init.rb. The database functionality is merely an extension of the definitions to allow for the dynamic creation of User Groups. Permissions can not be created via the administration screens.</p>
229
52
 
53
+ <p><a href="http://stonean.com/wiki/lockdown">Wiki</a></p>
230
54
 
231
- <p>Lockdown doesn&#8217;t have a concept of Roles. Instead, Lockdown users can be associated to one or many User Groups to allow for flexibility. In addition, you can use the admin screens to add new User Groups to the database. User groups are nothing more than a grouping mechanism for Permissions to ease management.</p>
232
55
 
56
+ <p><a href="http://stonean.com/projects/lockdown/boards">Forum</a></p>
233
57
 
234
- <p>Here are the parts to Lockdown:</p>
235
58
 
236
-
237
- <div style="text-align:center">
238
- <img src="model.jpg" alt="" />
239
- </div>
240
-
241
- <ul>
242
- <li><strong>Profiles</strong><br/>
243
- <p>The profile model contains all non-user information related to person. Lockdown uses the profile record as the reference for updated_by and created_by. This allows you to remove the user record completely when you want to revoke access, but you still retain the foreign key for history.<br/>Here are the fields you have to start with:</p>
244
- <ul>
245
- <li>first_name : string</li>
246
- <li>last_name : string</li>
247
- <li>email : string</li>
248
- </ul>
249
- <br/>
250
- </li>
251
- <li><strong>Users</strong><br/>
252
- <p>The user model contains all user information related to person.<br/>Here are the fields you have to start with:</p>
253
- <ul>
254
- <li>login : string</li>
255
- <li>crypted_password : string</li>
256
- <li>salt : string</li>
257
- <li>profile_id : integer</li>
258
- </ul>
259
- <br/>
260
- </li>
261
- <li><strong>User Groups</strong><br/>
262
- <p>User Groups exist only to group Permissions. All functionality for your site should be covered by the user groups you define in init.rb. You can use the admin screen to create new user groups if the need arises. The database model only has one field: </p>
263
- <ul>
264
- <li>name : string</li>
265
- </ul>
266
- <br/>
267
- </li>
268
- <li><strong>Permissions</strong><br/>
269
- <p>Permissions are the security building blocks of your system and are defined in init.rb. A permission maps to controller(s)/action(s) in your system. Please refer back to the documenation in init.rb on how to create permissions.
270
- As permissions relate to system functionality, they cannot be created via the admin screen. The database model only has one field: </p>
271
- <ul>
272
- <li>name : string</li>
273
- </ul>
274
- </li>
275
- </ul>
276
-
277
- <h2>Roadmap to 1.0</h2>
278
-
279
-
280
- <p><strong>**this is tentative and the feature order may change</strong></p>
281
-
282
-
283
- <ul>
284
- <li><strong>0.5.0: </strong>More generators to ease installation into existing projects</li>
285
- <li><strong>0.6.0: </strong>Password reset/reminder, Registration page template generators</li>
286
- <li><strong>0.7.0: </strong>OpenId support</li>
287
- <li><strong>0.8.0: </strong>RSpec tests and helper methods for your application</li>
288
- <li><strong>0.9.0: </strong>Merb Support</li>
289
- <li><strong>1.0.0: </strong>Model level security</li>
290
- </ul>
291
-
292
- <h2>Github</h2>
293
-
294
-
295
- <p>The Clone <span class="caps">URL</span>: git://github.com/stonean/lockdown.git</p>
296
-
297
-
298
- <p>Read the <a href="http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/">8 steps for fixing other people&#8217;s code</a>.</p>
299
-
300
-
301
- <p>I&#8217;m new to git and this whole opensource project admin gig, so please be patient with my stumbling around.</p>
302
-
303
-
304
- <h2>Contact</h2>
305
-
306
-
307
- <p>Please use the <a href="http://stonean.com/projects/lockdown/boards">forum</a> to ask questions and the <a href="http://stonean.com/projects/lockdown/issues">issue tracker</a> to report problems or submit a pull request.</p>
308
-
309
-
310
- <h2>License</h2>
311
-
312
-
313
- <p>This code is free to use under the terms of the <span class="caps">MIT</span> license.</p>
314
-
315
-
316
- <p>Copyright&#169; 2008 Andrew Stone</p>
59
+ <p>Thanks for your interest in Lockdown,<br/>
60
+ -andy</p>
317
61
  <p class="coda">
318
- 11th June 2008<br/>
62
+ 24th June 2008<br/>
319
63
  Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
320
64
  </p>
321
65
  </div>