GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Fork of bousquet/tableau
Description: Open source photo gallery in Rails
Clone URL: git://github.com/kjohnston/tableau.git
Updated source to work with Rails 2.0.2

git-svn-id: svn://code.creativi.st/gallery/trunk@10 
22c876fd-090a-0410-8685-aeedfd4d70f8
robert (author)
Wed Feb 27 18:15:07 -0800 2008
commit  87dd89a7ba42313cf0014b7f065d999ea814a24a
tree    909efb8b4d966eda1da68648d0ad7e6bbb640657
parent  66bc67238bf34163bc24b04e873ee027905bed18
0
...
1
 
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
 
154
...
 
1
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
4
0
@@ -1,153 +1,3 @@
0
-== Welcome to Rails
0
+== TABLEAU
0
 
0
-Rails is a web-application and persistence framework that includes everything
0
-needed to create database-backed web-applications according to the
0
-Model-View-Control pattern of separation. This pattern splits the view (also
0
-called the presentation) into "dumb" templates that are primarily responsible
0
-for inserting pre-built data in between HTML tags. The model contains the
0
-"smart" domain objects (such as Account, Product, Person, Post) that holds all
0
-the business logic and knows how to persist themselves to a database. The
0
-controller handles the incoming requests (such as Save New Account, Update
0
-Product, Show Post) by manipulating the model and directing data to the view.
0
-
0
-In Rails, the model is handled by what's called an object-relational mapping
0
-layer entitled Active Record. This layer allows you to present the data from
0
-database rows as objects and embellish these data objects with business logic
0
-methods. You can read more about Active Record in
0
-link:files/vendor/rails/activerecord/README.html.
0
-
0
-The controller and view are handled by the Action Pack, which handles both
0
-layers by its two parts: Action View and Action Controller. These two layers
0
-are bundled in a single package due to their heavy interdependence. This is
0
-unlike the relationship between the Active Record and Action Pack that is much
0
-more separate. Each of these packages can be used independently outside of
0
-Rails. You can read more about Action Pack in
0
-link:files/vendor/rails/actionpack/README.html.
0
-
0
-
0
-== Getting started
0
-
0
-1. Run the WEBrick servlet: <tt>ruby script/server</tt> (run with --help for options)
0
- ...or if you have lighttpd installed: <tt>ruby script/lighttpd</tt> (it's faster)
0
-2. Go to http://localhost:3000/ and get "Congratulations, you've put Ruby on Rails!"
0
-3. Follow the guidelines on the "Congratulations, you've put Ruby on Rails!" screen
0
-
0
-
0
-== Example for Apache conf
0
-
0
- <VirtualHost *:80>
0
- ServerName rails
0
- DocumentRoot /path/application/public/
0
- ErrorLog /path/application/log/server.log
0
-
0
- <Directory /path/application/public/>
0
- Options ExecCGI FollowSymLinks
0
- AllowOverride all
0
- Allow from all
0
- Order allow,deny
0
- </Directory>
0
- </VirtualHost>
0
-
0
-NOTE: Be sure that CGIs can be executed in that directory as well. So ExecCGI
0
-should be on and ".cgi" should respond. All requests from 127.0.0.1 go
0
-through CGI, so no Apache restart is necessary for changes. All other requests
0
-go through FCGI (or mod_ruby), which requires a restart to show changes.
0
-
0
-
0
-== Debugging Rails
0
-
0
-Have "tail -f" commands running on both the server.log, production.log, and
0
-test.log files. Rails will automatically display debugging and runtime
0
-information to these files. Debugging info will also be shown in the browser
0
-on requests from 127.0.0.1.
0
-
0
-
0
-== Breakpoints
0
-
0
-Breakpoint support is available through the script/breakpointer client. This
0
-means that you can break out of execution at any point in the code, investigate
0
-and change the model, AND then resume execution! Example:
0
-
0
- class WeblogController < ActionController::Base
0
- def index
0
- @posts = Post.find_all
0
- breakpoint "Breaking out from the list"
0
- end
0
- end
0
-
0
-So the controller will accept the action, run the first line, then present you
0
-with a IRB prompt in the breakpointer window. Here you can do things like:
0
-
0
-Executing breakpoint "Breaking out from the list" at .../webrick_server.rb:16 in 'breakpoint'
0
-
0
- >> @posts.inspect
0
- => "[#<Post:0x14a6be8 @attributes={\"title\"=>nil, \"body\"=>nil, \"id\"=>\"1\"}>,
0
- #<Post:0x14a6620 @attributes={\"title\"=>\"Rails you know!\", \"body\"=>\"Only ten..\", \"id\"=>\"2\"}>]"
0
- >> @posts.first.title = "hello from a breakpoint"
0
- => "hello from a breakpoint"
0
-
0
-...and even better is that you can examine how your runtime objects actually work:
0
-
0
- >> f = @posts.first
0
- => #<Post:0x13630c4 @attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>
0
- >> f.
0
- Display all 152 possibilities? (y or n)
0
-
0
-Finally, when you're ready to resume execution, you press CTRL-D
0
-
0
-
0
-== Console
0
-
0
-You can interact with the domain model by starting the console through script/console.
0
-Here you'll have all parts of the application configured, just like it is when the
0
-application is running. You can inspect domain models, change values, and save to the
0
-database. Starting the script without arguments will launch it in the development environment.
0
-Passing an argument will specify a different environment, like <tt>console production</tt>.
0
-
0
-
0
-== Description of contents
0
-
0
-app
0
- Holds all the code that's specific to this particular application.
0
-
0
-app/controllers
0
- Holds controllers that should be named like weblog_controller.rb for
0
- automated URL mapping. All controllers should descend from
0
- ActionController::Base.
0
-
0
-app/models
0
- Holds models that should be named like post.rb.
0
- Most models will descend from ActiveRecord::Base.
0
-
0
-app/views
0
- Holds the template files for the view that should be named like
0
- weblog/index.rhtml for the WeblogController#index action. All views use eRuby
0
- syntax. This directory can also be used to keep stylesheets, images, and so on
0
- that can be symlinked to public.
0
-
0
-app/helpers
0
- Holds view helpers that should be named like weblog_helper.rb.
0
-
0
-config
0
- Configuration files for the Rails environment, the routing map, the database, and other dependencies.
0
-
0
-components
0
- Self-contained mini-applications that can bundle together controllers, models, and views.
0
-
0
-lib
0
- Application specific libraries. Basically, any kind of custom code that doesn't
0
- belong under controllers, models, or helpers. This directory is in the load path.
0
-
0
-public
0
- The directory available for the web server. Contains subdirectories for images, stylesheets,
0
- and javascripts. Also contains the dispatchers and the default HTML files.
0
-
0
-script
0
- Helper scripts for automation and generation.
0
-
0
-test
0
- Unit and functional tests along with fixtures.
0
-
0
-vendor
0
- External libraries that the application depends on. Also includes the plugins subdirectory.
0
- This directory is in the load path.
0
+http://github.com/bousquet/tableau/
0
\ No newline at end of file
...
1
2
 
3
4
5
...
11
12
13
14
 
...
1
 
2
3
4
5
...
11
12
13
 
14
0
@@ -1,5 +1,5 @@
0
 
0
-<%= start_form_tag %>
0
+<% form_tag do %>
0
 <div id="login">
0
   <% if flash[:notice] %>
0
   <div id="errorExplanation"><h2><%= flash[:notice] %></h2></div>
0
@@ -11,4 +11,4 @@
0
   <label>&nbsp;</label>
0
   <%= submit_tag 'Login' %> <%= link_to "Cancel", :controller=>"gallery", :action=>"list" %>
0
 </div>
0
-<%= end_form_tag %>
0
+<% end %>
...
1
 
2
3
4
...
25
26
27
28
 
...
 
1
2
3
4
...
25
26
27
 
28
0
@@ -1,4 +1,4 @@
0
-<%= start_form_tag %>
0
+<% form_tag do %>
0
 <div id="login">
0
 
0
 <%= error_messages_for "user" %>
0
@@ -25,4 +25,4 @@
0
 <%= submit_tag 'Sign up' %> <%= link_to "Cancel", :controller=>"gallery", :action=>"list" %>
0
 </div>
0
 
0
-<%= end_form_tag %>
0
+<% end %>
...
1
2
3
4
 
5
6
7
8
9
 
10
11
...
1
2
3
 
4
5
6
7
8
 
9
10
11
0
@@ -1,10 +1,10 @@
0
 <h1>New Album</h1>
0
 <div id="photos">
0
   <%= error_messages_for "album" %>
0
- <%= start_form_tag %>
0
+ <% form_tag do %>
0
    <label for="album_title">Title</label>
0
    <%= text_field "album", "title" %>
0
    <label>&nbsp;</label>
0
    <%= submit_tag "Save" %> <%= link_to "Cancel", :controller=>"gallery", :action=>"list" %>
0
- <%= end_form_tag %>
0
+ <% end %>
0
 </div>
0
\ No newline at end of file
...
1
2
 
3
...
 
1
2
3
0
@@ -1 +1 @@
0
-<%= link_to(image_tag("images")+" #{album.title} (#{album.photos.size})", :controller=>"gallery", :action=>"album", :id=>album) %>
0
\ No newline at end of file
0
+<%= link_to(image_tag("images.png")+" #{album.title} (#{album.photos.size})", :controller=>"gallery", :action=>"album", :id=>album) %>
0
\ No newline at end of file
...
3
4
5
6
 
7
8
9
10
11
12
13
 
14
15
...
3
4
5
 
6
7
8
9
10
11
12
 
13
14
15
0
@@ -3,12 +3,12 @@
0
 <div id="photos">
0
 <%= error_messages_for "photo" %>
0
 
0
-<%= start_form_tag nil, :multipart=>true %>
0
+<% form_for :photo, @photo, :html => {:multipart=>true} do %>
0
   <label>Title</label>
0
   <%= text_field "photo", "title" %>
0
   <label>Photo</label>
0
   <%= file_field_tag "file" %>
0
   <label>&nbsp;</label>
0
   <%= submit_tag "Upload" %> <%= link_to "Cancel", :controller=>"gallery", :action=>"list" %>
0
-<%= end_form_tag %>
0
+<% end %>
0
 </div>
0
\ No newline at end of file
...
7
8
9
10
11
 
 
12
13
14
...
31
32
33
34
 
35
36
37
...
42
43
44
45
 
46
47
48
...
7
8
9
 
 
10
11
12
13
14
...
31
32
33
 
34
35
36
37
...
42
43
44
 
45
46
47
48
0
@@ -7,8 +7,8 @@
0
         <div id="admin">
0
           <h2>Admin</h2>
0
           <ul>
0
- <li><%= link_to image_tag("images")+" New Album", :controller=>"albums", :action=>"new" %></li>
0
- <li><%= link_to image_tag("image_add")+" New Photo", :controller=>"gallery", :action=>"new" %></li>
0
+ <li><%= link_to image_tag("images.png")+" New Album", :controller=>"albums", :action=>"new" %></li>
0
+ <li><%= link_to image_tag("image_add.png")+" New Photo", :controller=>"gallery", :action=>"new" %></li>
0
             <li id="image_destroy"><%= link_to image_tag("trash.gif")+" Delete Photo", "#" %></li>
0
      <%= drop_receiving_element "image_destroy",
0
          :update => "photos", :url => { :controller=>"gallery", :action=>"destroy" },
0
@@ -31,7 +31,7 @@
0
          :loading => "Element.show('album_spinner')",
0
          :complete => "Element.hide('album_spinner')" if logged_in? %>
0
          <% end %>
0
- <%= content_tag "li", link_to(image_tag("arrow_left")+" Back to gallery", :controller=>"gallery", :action=>"index") if current_page?(:controller=>"gallery", :action=>"album") %>
0
+ <%= content_tag "li", link_to(image_tag("arrow_left.png")+" Back to gallery", :controller=>"gallery", :action=>"index") if current_page?(:controller=>"gallery", :action=>"album") %>
0
         </ul>
0
         <div id="album_spinner" style="display:none;clear:both"><%= image_tag "spinner.gif", :style=>"vertical-align:middle" %> Adding photo to album...</div>  
0
         <p id="login_link"><%= logged_in? ? @curuser.full_name+" "+link_to("Logout", :controller=>"account", :action=>"logout") : link_to("Login", :controller=>"account", :action=>"login") %></p>
0
@@ -42,7 +42,7 @@
0
       <%= @content_for_layout %>
0
       <div style="clear:both"></div>
0
       <div id="footer">
0
- <p>Powered by <%= link_to "Tableau", "http://creativi.st/tableau" %></p>
0
+ <p>Powered by <%= link_to "Tableau", "http://github.com/bousquet/tableau/" %></p>
0
       </div>
0
     </div>
0
   </body>
...
1
2
 
 
3
 
 
 
 
 
 
 
4
5
6
7
8
9
10
11
 
 
 
 
12
13
14
15
16
 
 
17
18
19
20
21
22
23
24
 
 
 
 
 
25
26
27
28
29
30
 
 
 
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
 
 
 
 
 
 
 
 
 
 
46
47
48
...
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
 
 
 
 
15
16
17
18
19
20
21
 
 
22
23
24
25
26
 
 
 
 
 
27
28
29
30
31
32
33
34
 
 
 
35
36
37
38
39
40
41
42
 
 
 
 
 
 
 
 
 
 
43
44
45
46
47
48
49
50
51
52
53
54
55
0
@@ -1,48 +1,55 @@
0
-# This file is autogenerated. Instead of editing this file, please use the
0
-# migrations feature of ActiveRecord to incrementally modify your database, and
0
+# This file is auto-generated from the current state of the database. Instead of editing this file,
0
+# please use the migrations feature of ActiveRecord to incrementally modify your database, and
0
 # then regenerate this schema definition.
0
+#
0
+# Note that this schema.rb definition is the authoritative source for your database schema. If you need
0
+# to create the application database on another system, you should be using db:schema:load, not running
0
+# all the migrations from scratch. The latter is a flawed and unsustainable approach (the more migrations
0
+# you'll amass, the slower it'll run and the greater likelihood for issues).
0
+#
0
+# It's strongly recommended to check this file into your version control system.
0
 
0
 ActiveRecord::Schema.define(:version => 2) do
0
 
0
   create_table "albums", :force => true do |t|
0
- t.column "user_id", :integer
0
- t.column "title", :string
0
- t.column "created_at", :datetime
0
- t.column "position", :integer
0
+ t.integer "user_id"
0
+ t.string "title"
0
+ t.datetime "created_at"
0
+ t.integer "position"
0
   end
0
 
0
   create_table "albums_photos", :id => false, :force => true do |t|
0
- t.column "album_id", :integer
0
- t.column "photo_id", :integer
0
+ t.integer "album_id"
0
+ t.integer "photo_id"
0
   end
0
 
0
   create_table "photos", :force => true do |t|
0
- t.column "user_id", :integer
0
- t.column "title", :string
0
- t.column "position", :integer
0
- t.column "created_at", :datetime
0
- t.column "taken_at", :datetime
0
+ t.integer "user_id"
0
+ t.string "title"
0
+ t.integer "position"
0
+ t.datetime "created_at"
0
+ t.datetime "taken_at"
0
   end
0
 
0
   create_table "sessions", :force => true do |t|
0
- t.column "session_id", :string
0
- t.column "data", :text
0
- t.column "updated_at", :datetime
0
+ t.string "session_id"
0
+ t.text "data"
0
+ t.datetime "updated_at"
0
   end
0
 
0
   add_index "sessions", ["session_id"], :name => "sessions_session_id_index"
0
 
0
   create_table "users", :force => true do |t|
0
- t.column "login", :string
0
- t.column "email", :string
0
- t.column "crypted_password", :string
0
- t.column "salt", :string
0
- t.column "activation_code", :string
0
- t.column "activated_at", :datetime
0
- t.column "created_at", :datetime
0
- t.column "updated_at", :datetime
0
- t.column "first", :string
0
- t.column "last", :string
0
+ t.string "login"
0
+ t.string "email"
0
+ t.string "crypted_password"
0
+ t.string "salt"
0
+ t.string "activation_code"
0
+ t.datetime "activated_at"
0
+ t.datetime "created_at"
0
+ t.datetime "updated_at"
0
+ t.string "first"
0
+ t.string "last"
0
   end
0
 
0
 end

Comments

    No one has commented yet.