public
Description: El Dorado is a full-stack community web application written in Ruby/Rails.
Homepage: http://almosteffortless.com/eldorado/
Clone URL: git://github.com/trevorturk/el-dorado.git
adding version 0.9.1 tag

git-svn-id: http://eldorado.googlecode.com/svn/tags/rel-0.9.1@638 
9c008b19-a030-0410-9975-d76d301b4276
trevorturk (author)
Sun Jan 27 11:13:09 -0800 2008
commit  ffe59118ed18cbf0b574bf2fea534dca2bd24f71
tree    4aefa6521a5a03e70cc4481defde0ccf197af543
parent  768b7885dfc8d5489730551fc2ddf47a1780ec30
...
1
 
2
3
4
...
 
1
2
3
4
0
@@ -1,4 +1,4 @@
0
-Copyright (c) 2006 Trevor Turk
0
+Copyright (c) 2006-2008 Trevor Turk
0
 
0
 Permission is hereby granted, free of charge, to any person
0
 obtaining a copy of this software and associated documentation
0
...
9
10
11
12
 
13
14
15
...
19
20
21
22
 
23
24
 
25
26
27
28
29
30
31
32
 
33
34
35
...
9
10
11
 
12
13
14
15
...
19
20
21
 
22
23
 
24
25
 
 
 
 
 
 
 
26
27
28
29
0
@@ -9,7 +9,7 @@ El Dorado is a full-stack community web application written in Ruby/Rails.
0
 3) Run "rake db:schema:load" ("rake db:schema:load RAILS_ENV=production" for a live site)
0
 4) Start the web server ("script/server") and visit the new site to create your first user account
0
 
0
-== Importing from PunBB (version 1.2.15)
0
+== Importing from PunBB (version 1.2.16)
0
 
0
 1) Fill in the "import" section of config/database.yml and run "rake import:database"
0
 2) Run optional rake tasks as necessary: import:avatars, import:headers, and import:files
0
@@ -19,17 +19,11 @@ El Dorado is a full-stack community web application written in Ruby/Rails.
0
 Visit http://almosteffortless.com and http://code.google.com/p/eldorado/source for updates and news.
0
 Use "rake db:migrate" to upgrade your database after new releases (use "cap deploy:migrations" if you're using Capistrano).
0
 
0
-== License
0
+== About
0
 
0
-Released under the MIT License, Copyright 2006 Trevor Turk (see LICENSE file for details).
0
+Contributors: Trevor Turk, Josh Peek, and Wilhelm Chung.
0
 
0
-== Contributors
0
-
0
-Trevor Turk, Josh Peek, and Wilhelm Chung.
0
-
0
-== Thanks
0
-
0
-NewAthens.org, Matt Brent, Artie Jordan, Max Mearsheimer, Timothy O'Connell, Matz et a. (Ruby),
0
+Thanks: NewAthens.org, Matt Brent, Artie Jordan, Max Mearsheimer, Timothy O'Connell, Matz et a. (Ruby),
0
 DHH et al. (Rails), Rick Olson, Josh Goebel, Justin Palmer, Rickard Andersson (PunBB),
0
 Matt Mullenweg et al. (Wordpress), and Michael Heilemann et al. (k2).
0
 
...
20
21
22
23
 
 
 
 
 
24
25
26
27
...
20
21
22
 
23
24
25
26
27
28
29
30
31
0
@@ -20,7 +20,11 @@
0
       </p>
0
       <p>
0
         <%= submit_tag "Save Changes", :disable_with => "Save Changes" %>&nbsp;
0
- <%= link_to('Cancel', root_path) %>
0
+ <%= link_to('Cancel', root_path) %> &nbsp;
0
+ <span class="detail">
0
+ El Dorado Version: <%= APPLICATION_VERSION %> &nbsp;
0
+ Database Schema Version : <%= ActiveRecord::Migrator.current_version %>
0
+ </span>
0
       </p>
0
     </div>
0
 <% end %>
0
\ No newline at end of file
...
1
2
 
 
3
4
5
...
17
18
19
20
 
21
...
1
 
2
3
4
5
6
...
18
19
20
 
21
22
0
@@ -1,5 +1,6 @@
0
 # Specifies gem version of Rails to use when vendor/rails is not present
0
-RAILS_GEM_VERSION = '2.0.2' unless defined? RAILS_GEM_VERSION
0
+RAILS_GEM_VERSION = '2.0.2' unless defined? RAILS_GEM_VERSION
0
+APPLICATION_VERSION = '0.9.1'
0
 
0
 require File.join(File.dirname(__FILE__), 'boot')
0
 
0
@@ -17,4 +18,4 @@ Rails::Initializer.run do |config|
0
     :secret => db[RAILS_ENV]['secret']
0
   }
0
   
0
-end
0
+end
0
\ No newline at end of file

Comments

    No one has commented yet.