├── lib ├── .gitignore ├── rack_request.rb ├── flickr_response.rb ├── dm_pagination.rb ├── flickr_import_migrate.rb ├── flickr_archivr.rb └── flickr_import.rb ├── models ├── .gitignore ├── site_config.rb ├── link_photo_tag.rb ├── link_photo_place.rb ├── link_photo_photoset.rb ├── link_person_photo.rb ├── place.rb ├── tag.rb ├── person.rb ├── user.rb ├── photoset.rb └── photo.rb ├── spec ├── fixtures.rb ├── controller_spec.rb ├── models_spec.rb └── environment.rb ├── views ├── me.erb ├── search.erb ├── error │ ├── 500.erb │ ├── 403.erb │ ├── 404.erb │ └── no-login.erb ├── flickr_error.erb ├── about.erb ├── photos │ ├── recent.erb │ ├── index.erb │ ├── list.erb │ └── view.erb ├── tags.erb ├── index.erb ├── sets.erb ├── people.erb ├── partial │ └── context_table.erb └── layout.erb ├── .gitignore ├── .rvmrc ├── public ├── img │ ├── clear50.png │ ├── fblogin.png │ ├── fllogin.png │ ├── fllogin.psd │ ├── loading.gif │ └── twlogin.png ├── robots.txt ├── js │ ├── site.js │ └── libs │ │ └── bootstrap-dropdown.js └── css │ ├── site.css │ └── bootstrap-1.4.0.min.css ├── images ├── flickr-archivr-tag-view.png ├── flickr-archivr-one-photo.png ├── flickr-archivr-person-view.png └── flickr-archivr-photostream.png ├── config.ru ├── update-sets.sh ├── update.sh ├── helpers.rb ├── start.sh ├── config.yml.template ├── controllers ├── main.rb ├── auth.rb └── photos.rb ├── Gemfile ├── Rakefile ├── environment.rb └── README.markdown /lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/fixtures.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/me.erb: -------------------------------------------------------------------------------- 1 |
Sorry!
7 |Something went wrong!
7 |<%==@error.msg%>
7 |Back up your entire Flickr photostream!
7 |Sorry, whatever it was you were looking for doesn't seem to exist!
7 |Sorry, whatever it was you were looking for doesn't seem to exist
7 |Sorry, this site does not allow other people to sign in! If you'd like to set up your own site,
you can download the source code from Github
| >
44 |
45 | |
48 | <% end %>
49 | <%
50 | if context.length < 5
51 | ((context.length+1)..5).each do |i|
52 | %>![]() | <%
53 | end
54 | end
55 | %>
56 |
Sorry, there are no photos for you here.
27 |<%= @photo.img_tag 'z' %>
10 |<%= format_text @photo.description %>
11 | 12 |