├── .gitignore ├── .slugignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── README.md ├── Rakefile ├── app ├── controllers │ ├── admin │ │ ├── application_controller.rb │ │ └── users_controller.rb │ ├── albums_controller.rb │ ├── application_controller.rb │ ├── authentications_controller.rb │ ├── collections_controller.rb │ ├── photos_controller.rb │ ├── tags_controller.rb │ ├── user_sessions_controller.rb │ └── users_controller.rb ├── helpers │ ├── albums_helper.rb │ ├── application_helper.rb │ └── users_helper.rb ├── middleware │ └── flash_session_cookie_middleware.rb ├── models │ ├── album.rb │ ├── authentication.rb │ ├── collection.rb │ ├── collection_album.rb │ ├── permission.rb │ ├── photo.rb │ ├── photo_tag.rb │ ├── role.rb │ ├── role_membership.rb │ ├── tag.rb │ ├── user.rb │ └── user_session.rb ├── uploaders │ └── file_uploader.rb └── views │ ├── admin │ └── users │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── albums │ ├── _album.html.erb │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── show.html.erb │ ├── show.pdf.erb │ └── untouched.html.erb │ ├── collections │ ├── _form.html.erb │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ ├── show.html.erb │ └── show.pdf.erb │ ├── layouts │ └── application.html.erb │ ├── photos │ ├── _form.html.erb │ ├── _photo.pdf.erb │ ├── _thumb.html.erb │ ├── edit.html.erb │ ├── edit_multiple.html.erb │ ├── index.html.erb │ ├── show.html.erb │ ├── untouched.html.erb │ └── upload.html.erb │ ├── tags │ └── index.html.erb │ ├── user_sessions │ └── new.html.erb │ └── users │ ├── _form.html.erb │ ├── edit.html.erb │ ├── new.html.erb │ └── show.html.erb ├── config.ru ├── config ├── application.rb ├── balder.rb ├── boot.rb ├── database.example.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── arel.rb │ ├── backtrace_silencers.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── omniauth.rb │ ├── s3.rb │ ├── secret_token.rb │ └── session_store.rb ├── locales │ ├── en.yml │ └── no-NB.yml ├── routes.rb └── unicorn.rb ├── db ├── migrate │ ├── 20090520163842_create_album.rb │ ├── 20090520165238_create_photos.rb │ ├── 20090520230047_add_path_to_album_and_photo.rb │ ├── 20090522131931_create_users.rb │ ├── 20090522190515_create_tags.rb │ ├── 20090522190622_create_photo_tags.rb │ ├── 20090528143605_add_location_to_album.rb │ ├── 20090528152114_add_name_to_user.rb │ ├── 20090529155414_add_note_to_album.rb │ ├── 20090602120344_add_location_to_photo.rb │ ├── 20090602131321_create_collections.rb │ ├── 20090602131547_create_collection_albums.rb │ ├── 20090604202928_create_permissions.rb │ ├── 20090604202929_create_role_memberships.rb │ ├── 20090604202930_create_roles.rb │ ├── 20091011222125_add_indexes.rb │ ├── 20100412220801_add_file_to_photo.rb │ └── 20130119020645_create_authentications.rb ├── schema.rb └── seeds.rb ├── lib ├── acts_as_permissible.rb └── scan.rb ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── images │ ├── delete-24x24.png │ └── rails.png ├── javascripts │ ├── balder.js │ ├── controls.js │ ├── dragdrop.js │ ├── effects.js │ ├── jquery-1.4.2.js │ ├── jquery-1.4.2.min.js │ ├── jquery.livequery.js │ ├── plupload │ │ ├── changelog.txt │ │ ├── js │ │ │ ├── i18n │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ko.js │ │ │ │ ├── lv.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sr.js │ │ │ │ └── sv.js │ │ │ ├── jquery.plupload.queue │ │ │ │ ├── css │ │ │ │ │ └── jquery.plupload.queue.css │ │ │ │ ├── img │ │ │ │ │ ├── backgrounds.gif │ │ │ │ │ ├── buttons-disabled.png │ │ │ │ │ ├── buttons.png │ │ │ │ │ ├── delete.gif │ │ │ │ │ ├── done.gif │ │ │ │ │ ├── error.gif │ │ │ │ │ ├── throbber.gif │ │ │ │ │ └── transp50.png │ │ │ │ └── jquery.plupload.queue.js │ │ │ ├── jquery.ui.plupload │ │ │ │ ├── css │ │ │ │ │ └── jquery.ui.plupload.css │ │ │ │ ├── img │ │ │ │ │ ├── plupload-bw.png │ │ │ │ │ └── plupload.png │ │ │ │ └── jquery.ui.plupload.js │ │ │ ├── plupload.browserplus.js │ │ │ ├── plupload.flash.js │ │ │ ├── plupload.flash.swf │ │ │ ├── plupload.full.js │ │ │ ├── plupload.gears.js │ │ │ ├── plupload.html4.js │ │ │ ├── plupload.html5.js │ │ │ ├── plupload.js │ │ │ ├── plupload.silverlight.js │ │ │ └── plupload.silverlight.xap │ │ ├── license.txt │ │ └── readme.md │ ├── prototype.js │ ├── rails.js │ └── tag │ │ └── tag.js ├── robots.txt └── stylesheets │ └── application.css ├── resources └── DummyHTML │ ├── album.html │ ├── css │ ├── blueprint │ │ ├── ie.css │ │ ├── plugins │ │ │ ├── buttons │ │ │ │ ├── icons │ │ │ │ │ ├── cross.png │ │ │ │ │ ├── key.png │ │ │ │ │ └── tick.png │ │ │ │ ├── readme.txt │ │ │ │ └── screen.css │ │ │ ├── fancy-type │ │ │ │ ├── readme.txt │ │ │ │ └── screen.css │ │ │ ├── link-icons │ │ │ │ ├── icons │ │ │ │ │ ├── doc.png │ │ │ │ │ ├── email.png │ │ │ │ │ ├── external.png │ │ │ │ │ ├── feed.png │ │ │ │ │ ├── im.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ ├── visited.png │ │ │ │ │ └── xls.png │ │ │ │ ├── readme.txt │ │ │ │ └── screen.css │ │ │ └── rtl │ │ │ │ ├── readme.txt │ │ │ │ └── screen.css │ │ ├── print.css │ │ ├── screen.css │ │ └── src │ │ │ ├── forms.css │ │ │ ├── grid.css │ │ │ ├── grid.png │ │ │ ├── ie.css │ │ │ ├── print.css │ │ │ ├── reset.css │ │ │ └── typography.css │ ├── joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e │ │ ├── .gitignore │ │ ├── AUTHORS.textile │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── README.textile │ │ ├── TUTORIAL.textile │ │ ├── doc │ │ │ ├── classes │ │ │ │ ├── Blueprint.html │ │ │ │ ├── Blueprint │ │ │ │ │ ├── CSSParser.html │ │ │ │ │ ├── CSSParser.src │ │ │ │ │ │ ├── M000011.html │ │ │ │ │ │ ├── M000012.html │ │ │ │ │ │ └── M000013.html │ │ │ │ │ ├── Compressor.html │ │ │ │ │ ├── Compressor.src │ │ │ │ │ │ ├── M000027.html │ │ │ │ │ │ ├── M000028.html │ │ │ │ │ │ └── M000029.html │ │ │ │ │ ├── CustomLayout.html │ │ │ │ │ ├── CustomLayout.src │ │ │ │ │ │ ├── M000020.html │ │ │ │ │ │ ├── M000021.html │ │ │ │ │ │ ├── M000022.html │ │ │ │ │ │ ├── M000023.html │ │ │ │ │ │ ├── M000024.html │ │ │ │ │ │ ├── M000025.html │ │ │ │ │ │ └── M000026.html │ │ │ │ │ ├── GridBuilder.html │ │ │ │ │ ├── GridBuilder.src │ │ │ │ │ │ ├── M000014.html │ │ │ │ │ │ └── M000015.html │ │ │ │ │ ├── Namespace.html │ │ │ │ │ ├── Namespace.src │ │ │ │ │ │ ├── M000016.html │ │ │ │ │ │ ├── M000017.html │ │ │ │ │ │ ├── M000018.html │ │ │ │ │ │ └── M000019.html │ │ │ │ │ ├── SemanticClassNames.html │ │ │ │ │ ├── SemanticClassNames.src │ │ │ │ │ │ ├── M000009.html │ │ │ │ │ │ └── M000010.html │ │ │ │ │ ├── Validator.html │ │ │ │ │ └── Validator.src │ │ │ │ │ │ ├── M000007.html │ │ │ │ │ │ └── M000008.html │ │ │ │ ├── File.html │ │ │ │ ├── File.src │ │ │ │ │ ├── M000001.html │ │ │ │ │ └── M000002.html │ │ │ │ ├── String.html │ │ │ │ └── String.src │ │ │ │ │ ├── M000003.html │ │ │ │ │ ├── M000004.html │ │ │ │ │ ├── M000005.html │ │ │ │ │ └── M000006.html │ │ │ ├── created.rid │ │ │ ├── files │ │ │ │ └── lib │ │ │ │ │ ├── blueprint │ │ │ │ │ ├── blueprint_rb.html │ │ │ │ │ ├── compressor_rb.html │ │ │ │ │ ├── core_ext_rb.html │ │ │ │ │ ├── css_parser_rb.html │ │ │ │ │ ├── custom_layout_rb.html │ │ │ │ │ ├── grid_builder_rb.html │ │ │ │ │ ├── namespace_rb.html │ │ │ │ │ ├── semantic_class_names_rb.html │ │ │ │ │ └── validator_rb.html │ │ │ │ │ ├── compress_rb.html │ │ │ │ │ └── validate_rb.html │ │ │ ├── fr_class_index.html │ │ │ ├── fr_file_index.html │ │ │ ├── fr_method_index.html │ │ │ ├── index.html │ │ │ └── rdoc-style.css │ │ ├── lib │ │ │ ├── blueprint │ │ │ │ ├── blueprint.rb │ │ │ │ ├── compressor.rb │ │ │ │ ├── core_ext.rb │ │ │ │ ├── css_parser.rb │ │ │ │ ├── custom_layout.rb │ │ │ │ ├── grid.css.erb │ │ │ │ ├── grid_builder.rb │ │ │ │ ├── namespace.rb │ │ │ │ ├── semantic_class_names.rb │ │ │ │ ├── validate │ │ │ │ │ ├── COPYRIGHT.html │ │ │ │ │ ├── JIGSAW_COPYRIGHT │ │ │ │ │ ├── README.html │ │ │ │ │ ├── XERCES_COPYING.txt │ │ │ │ │ ├── css-validator-javadoc.jar │ │ │ │ │ ├── css-validator.jar │ │ │ │ │ ├── jigsaw.jar │ │ │ │ │ └── xerces.jar │ │ │ │ └── validator.rb │ │ │ ├── compress.rb │ │ │ ├── settings.example.yml │ │ │ └── validate.rb │ │ └── tests │ │ │ ├── index.html │ │ │ └── parts │ │ │ ├── elements.html │ │ │ ├── forms.html │ │ │ ├── grid.html │ │ │ ├── sample.html │ │ │ ├── test-small.jpg │ │ │ ├── test.jpg │ │ │ └── valid.png │ └── style.css │ ├── images │ ├── project.jpg │ ├── project2.jpg │ ├── project3.jpg │ ├── project4.jpg │ ├── test.jpg │ ├── test2.jpg │ ├── test3.jpg │ └── test4.jpg │ ├── index.html │ ├── projects.html │ └── single.html ├── script └── rails ├── spec ├── factories.rb ├── fixtures │ ├── permissions.yml │ ├── role_memberships.yml │ └── roles.yml └── models │ ├── acts_as_permissible_spec.rb │ ├── permission_spec.rb │ ├── role_membership_spec.rb │ └── role_spec.rb ├── test └── test_helper.rb └── vendor └── plugins ├── acts_as_permissible ├── .gitignore ├── MIT-LICENSE ├── README ├── Rakefile ├── generators │ └── permissible │ │ ├── USAGE │ │ ├── permissible_generator.rb │ │ └── templates │ │ ├── acts_as_permissible.rb │ │ ├── acts_as_permissible_spec.rb │ │ ├── fixtures.yml │ │ ├── initializer.rb │ │ ├── migration.rb │ │ ├── model.rb │ │ ├── model_spec.rb │ │ ├── role_membership_migration.rb │ │ ├── role_membership_model.rb │ │ ├── role_membership_model_fixtures.yml │ │ ├── role_membership_model_spec.rb │ │ ├── role_migration.rb │ │ ├── role_model.rb │ │ ├── role_model_fixtures.yml │ │ └── role_model_spec.rb ├── init.rb ├── install.rb ├── lib │ ├── .gitignore │ └── tasks │ │ └── acts_as_permissible_tasks.rake ├── test │ └── acts_as_permissible_test.rb └── uninstall.rb ├── dynamic_form ├── MIT-LICENSE ├── README ├── Rakefile ├── init.rb ├── lib │ └── action_view │ │ ├── helpers │ │ └── dynamic_form.rb │ │ └── locale │ │ └── en.yml └── test │ ├── dynamic_form_i18n_test.rb │ ├── dynamic_form_test.rb │ └── test_helper.rb └── princely ├── MIT-LICENSE ├── README ├── Rakefile ├── init.rb └── lib ├── pdf_helper.rb └── prince.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/.gitignore -------------------------------------------------------------------------------- /.slugignore: -------------------------------------------------------------------------------- 1 | /test -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/Rakefile -------------------------------------------------------------------------------- /app/controllers/admin/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/controllers/admin/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/controllers/admin/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/albums_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/controllers/albums_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/authentications_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/controllers/authentications_controller.rb -------------------------------------------------------------------------------- /app/controllers/collections_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/controllers/collections_controller.rb -------------------------------------------------------------------------------- /app/controllers/photos_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/controllers/photos_controller.rb -------------------------------------------------------------------------------- /app/controllers/tags_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/controllers/tags_controller.rb -------------------------------------------------------------------------------- /app/controllers/user_sessions_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/controllers/user_sessions_controller.rb -------------------------------------------------------------------------------- /app/controllers/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/controllers/users_controller.rb -------------------------------------------------------------------------------- /app/helpers/albums_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/helpers/albums_helper.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/helpers/application_helper.rb -------------------------------------------------------------------------------- /app/helpers/users_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/helpers/users_helper.rb -------------------------------------------------------------------------------- /app/middleware/flash_session_cookie_middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/middleware/flash_session_cookie_middleware.rb -------------------------------------------------------------------------------- /app/models/album.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/models/album.rb -------------------------------------------------------------------------------- /app/models/authentication.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/models/authentication.rb -------------------------------------------------------------------------------- /app/models/collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/models/collection.rb -------------------------------------------------------------------------------- /app/models/collection_album.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/models/collection_album.rb -------------------------------------------------------------------------------- /app/models/permission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/models/permission.rb -------------------------------------------------------------------------------- /app/models/photo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/models/photo.rb -------------------------------------------------------------------------------- /app/models/photo_tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/models/photo_tag.rb -------------------------------------------------------------------------------- /app/models/role.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/models/role.rb -------------------------------------------------------------------------------- /app/models/role_membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/models/role_membership.rb -------------------------------------------------------------------------------- /app/models/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/models/tag.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/user_session.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/models/user_session.rb -------------------------------------------------------------------------------- /app/uploaders/file_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/uploaders/file_uploader.rb -------------------------------------------------------------------------------- /app/views/admin/users/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/admin/users/_form.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/admin/users/edit.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/admin/users/index.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/admin/users/new.html.erb -------------------------------------------------------------------------------- /app/views/admin/users/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/admin/users/show.html.erb -------------------------------------------------------------------------------- /app/views/albums/_album.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/albums/_album.html.erb -------------------------------------------------------------------------------- /app/views/albums/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/albums/_form.html.erb -------------------------------------------------------------------------------- /app/views/albums/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/albums/edit.html.erb -------------------------------------------------------------------------------- /app/views/albums/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/albums/index.html.erb -------------------------------------------------------------------------------- /app/views/albums/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/albums/new.html.erb -------------------------------------------------------------------------------- /app/views/albums/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/albums/show.html.erb -------------------------------------------------------------------------------- /app/views/albums/show.pdf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/albums/show.pdf.erb -------------------------------------------------------------------------------- /app/views/albums/untouched.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/albums/untouched.html.erb -------------------------------------------------------------------------------- /app/views/collections/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/collections/_form.html.erb -------------------------------------------------------------------------------- /app/views/collections/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/collections/edit.html.erb -------------------------------------------------------------------------------- /app/views/collections/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/collections/index.html.erb -------------------------------------------------------------------------------- /app/views/collections/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/collections/new.html.erb -------------------------------------------------------------------------------- /app/views/collections/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/collections/show.html.erb -------------------------------------------------------------------------------- /app/views/collections/show.pdf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/collections/show.pdf.erb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /app/views/photos/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/photos/_form.html.erb -------------------------------------------------------------------------------- /app/views/photos/_photo.pdf.erb: -------------------------------------------------------------------------------- 1 | <%= image_tag photo.file.single.url %>
-------------------------------------------------------------------------------- /app/views/photos/_thumb.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/photos/_thumb.html.erb -------------------------------------------------------------------------------- /app/views/photos/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/photos/edit.html.erb -------------------------------------------------------------------------------- /app/views/photos/edit_multiple.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/photos/edit_multiple.html.erb -------------------------------------------------------------------------------- /app/views/photos/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/photos/index.html.erb -------------------------------------------------------------------------------- /app/views/photos/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/photos/show.html.erb -------------------------------------------------------------------------------- /app/views/photos/untouched.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/photos/untouched.html.erb -------------------------------------------------------------------------------- /app/views/photos/upload.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/photos/upload.html.erb -------------------------------------------------------------------------------- /app/views/tags/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/tags/index.html.erb -------------------------------------------------------------------------------- /app/views/user_sessions/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/user_sessions/new.html.erb -------------------------------------------------------------------------------- /app/views/users/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/users/_form.html.erb -------------------------------------------------------------------------------- /app/views/users/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/users/edit.html.erb -------------------------------------------------------------------------------- /app/views/users/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/users/new.html.erb -------------------------------------------------------------------------------- /app/views/users/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/app/views/users/show.html.erb -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/balder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/balder.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/database.example.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/arel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/initializers/arel.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/omniauth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/initializers/omniauth.rb -------------------------------------------------------------------------------- /config/initializers/s3.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/initializers/s3.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/no-NB.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/locales/no-NB.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/unicorn.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/config/unicorn.rb -------------------------------------------------------------------------------- /db/migrate/20090520163842_create_album.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/migrate/20090520163842_create_album.rb -------------------------------------------------------------------------------- /db/migrate/20090520165238_create_photos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/migrate/20090520165238_create_photos.rb -------------------------------------------------------------------------------- /db/migrate/20090520230047_add_path_to_album_and_photo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/migrate/20090520230047_add_path_to_album_and_photo.rb -------------------------------------------------------------------------------- /db/migrate/20090522131931_create_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/migrate/20090522131931_create_users.rb -------------------------------------------------------------------------------- /db/migrate/20090522190515_create_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/migrate/20090522190515_create_tags.rb -------------------------------------------------------------------------------- /db/migrate/20090522190622_create_photo_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/migrate/20090522190622_create_photo_tags.rb -------------------------------------------------------------------------------- /db/migrate/20090528143605_add_location_to_album.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/migrate/20090528143605_add_location_to_album.rb -------------------------------------------------------------------------------- /db/migrate/20090528152114_add_name_to_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/migrate/20090528152114_add_name_to_user.rb -------------------------------------------------------------------------------- /db/migrate/20090529155414_add_note_to_album.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/migrate/20090529155414_add_note_to_album.rb -------------------------------------------------------------------------------- /db/migrate/20090602120344_add_location_to_photo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/migrate/20090602120344_add_location_to_photo.rb -------------------------------------------------------------------------------- /db/migrate/20090602131321_create_collections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/migrate/20090602131321_create_collections.rb -------------------------------------------------------------------------------- /db/migrate/20090602131547_create_collection_albums.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/migrate/20090602131547_create_collection_albums.rb -------------------------------------------------------------------------------- /db/migrate/20090604202928_create_permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/migrate/20090604202928_create_permissions.rb -------------------------------------------------------------------------------- /db/migrate/20090604202929_create_role_memberships.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/migrate/20090604202929_create_role_memberships.rb -------------------------------------------------------------------------------- /db/migrate/20090604202930_create_roles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/migrate/20090604202930_create_roles.rb -------------------------------------------------------------------------------- /db/migrate/20091011222125_add_indexes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/migrate/20091011222125_add_indexes.rb -------------------------------------------------------------------------------- /db/migrate/20100412220801_add_file_to_photo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/migrate/20100412220801_add_file_to_photo.rb -------------------------------------------------------------------------------- /db/migrate/20130119020645_create_authentications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/migrate/20130119020645_create_authentications.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/acts_as_permissible.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/lib/acts_as_permissible.rb -------------------------------------------------------------------------------- /lib/scan.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/lib/scan.rb -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/images/delete-24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/images/delete-24x24.png -------------------------------------------------------------------------------- /public/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/images/rails.png -------------------------------------------------------------------------------- /public/javascripts/balder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/balder.js -------------------------------------------------------------------------------- /public/javascripts/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/controls.js -------------------------------------------------------------------------------- /public/javascripts/dragdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/dragdrop.js -------------------------------------------------------------------------------- /public/javascripts/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/effects.js -------------------------------------------------------------------------------- /public/javascripts/jquery-1.4.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/jquery-1.4.2.js -------------------------------------------------------------------------------- /public/javascripts/jquery-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/jquery-1.4.2.min.js -------------------------------------------------------------------------------- /public/javascripts/jquery.livequery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/jquery.livequery.js -------------------------------------------------------------------------------- /public/javascripts/plupload/changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/changelog.txt -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/cs.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/da.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/de.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/el.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/es.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/et.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/fa.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/fi.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/fr-ca.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/fr.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/hr.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/hu.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/it.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/ja.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/ko.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/lv.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/nl.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/pl.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/pt-br.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/ro.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/ru.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/sr.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/i18n/sv.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/jquery.plupload.queue/css/jquery.plupload.queue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/jquery.plupload.queue/css/jquery.plupload.queue.css -------------------------------------------------------------------------------- /public/javascripts/plupload/js/jquery.plupload.queue/img/backgrounds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/jquery.plupload.queue/img/backgrounds.gif -------------------------------------------------------------------------------- /public/javascripts/plupload/js/jquery.plupload.queue/img/buttons-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/jquery.plupload.queue/img/buttons-disabled.png -------------------------------------------------------------------------------- /public/javascripts/plupload/js/jquery.plupload.queue/img/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/jquery.plupload.queue/img/buttons.png -------------------------------------------------------------------------------- /public/javascripts/plupload/js/jquery.plupload.queue/img/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/jquery.plupload.queue/img/delete.gif -------------------------------------------------------------------------------- /public/javascripts/plupload/js/jquery.plupload.queue/img/done.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/jquery.plupload.queue/img/done.gif -------------------------------------------------------------------------------- /public/javascripts/plupload/js/jquery.plupload.queue/img/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/jquery.plupload.queue/img/error.gif -------------------------------------------------------------------------------- /public/javascripts/plupload/js/jquery.plupload.queue/img/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/jquery.plupload.queue/img/throbber.gif -------------------------------------------------------------------------------- /public/javascripts/plupload/js/jquery.plupload.queue/img/transp50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/jquery.plupload.queue/img/transp50.png -------------------------------------------------------------------------------- /public/javascripts/plupload/js/jquery.plupload.queue/jquery.plupload.queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/jquery.plupload.queue/jquery.plupload.queue.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/jquery.ui.plupload/css/jquery.ui.plupload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/jquery.ui.plupload/css/jquery.ui.plupload.css -------------------------------------------------------------------------------- /public/javascripts/plupload/js/jquery.ui.plupload/img/plupload-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/jquery.ui.plupload/img/plupload-bw.png -------------------------------------------------------------------------------- /public/javascripts/plupload/js/jquery.ui.plupload/img/plupload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/jquery.ui.plupload/img/plupload.png -------------------------------------------------------------------------------- /public/javascripts/plupload/js/jquery.ui.plupload/jquery.ui.plupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/jquery.ui.plupload/jquery.ui.plupload.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/plupload.browserplus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/plupload.browserplus.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/plupload.flash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/plupload.flash.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/plupload.flash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/plupload.flash.swf -------------------------------------------------------------------------------- /public/javascripts/plupload/js/plupload.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/plupload.full.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/plupload.gears.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/plupload.gears.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/plupload.html4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/plupload.html4.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/plupload.html5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/plupload.html5.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/plupload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/plupload.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/plupload.silverlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/plupload.silverlight.js -------------------------------------------------------------------------------- /public/javascripts/plupload/js/plupload.silverlight.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/js/plupload.silverlight.xap -------------------------------------------------------------------------------- /public/javascripts/plupload/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/license.txt -------------------------------------------------------------------------------- /public/javascripts/plupload/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/plupload/readme.md -------------------------------------------------------------------------------- /public/javascripts/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/prototype.js -------------------------------------------------------------------------------- /public/javascripts/rails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/rails.js -------------------------------------------------------------------------------- /public/javascripts/tag/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/javascripts/tag/tag.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/public/stylesheets/application.css -------------------------------------------------------------------------------- /resources/DummyHTML/album.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/album.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/ie.css -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/plugins/buttons/icons/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/plugins/buttons/icons/cross.png -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/plugins/buttons/icons/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/plugins/buttons/icons/key.png -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/plugins/buttons/icons/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/plugins/buttons/icons/tick.png -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/plugins/buttons/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/plugins/buttons/readme.txt -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/plugins/buttons/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/plugins/buttons/screen.css -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/plugins/fancy-type/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/plugins/fancy-type/readme.txt -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/plugins/fancy-type/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/plugins/fancy-type/screen.css -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/plugins/link-icons/icons/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/plugins/link-icons/icons/doc.png -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/plugins/link-icons/icons/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/plugins/link-icons/icons/email.png -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/plugins/link-icons/icons/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/plugins/link-icons/icons/external.png -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/plugins/link-icons/icons/feed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/plugins/link-icons/icons/feed.png -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/plugins/link-icons/icons/im.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/plugins/link-icons/icons/im.png -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/plugins/link-icons/icons/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/plugins/link-icons/icons/pdf.png -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/plugins/link-icons/icons/visited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/plugins/link-icons/icons/visited.png -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/plugins/link-icons/icons/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/plugins/link-icons/icons/xls.png -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/plugins/link-icons/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/plugins/link-icons/readme.txt -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/plugins/link-icons/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/plugins/link-icons/screen.css -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/plugins/rtl/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/plugins/rtl/readme.txt -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/plugins/rtl/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/plugins/rtl/screen.css -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/print.css -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/screen.css -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/src/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/src/forms.css -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/src/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/src/grid.css -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/src/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/src/grid.png -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/src/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/src/ie.css -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/src/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/src/print.css -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/src/reset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/src/reset.css -------------------------------------------------------------------------------- /resources/DummyHTML/css/blueprint/src/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/blueprint/src/typography.css -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/.gitignore: -------------------------------------------------------------------------------- 1 | *.svn 2 | *.DS_Store 3 | tmp/* 4 | lib/settings.yml -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/AUTHORS.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/AUTHORS.textile -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/CHANGELOG -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/LICENSE -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/README.textile -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/TUTORIAL.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/TUTORIAL.textile -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CSSParser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CSSParser.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CSSParser.src/M000011.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CSSParser.src/M000011.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CSSParser.src/M000012.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CSSParser.src/M000012.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CSSParser.src/M000013.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CSSParser.src/M000013.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Compressor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Compressor.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Compressor.src/M000027.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Compressor.src/M000027.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Compressor.src/M000028.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Compressor.src/M000028.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Compressor.src/M000029.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Compressor.src/M000029.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CustomLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CustomLayout.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CustomLayout.src/M000020.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CustomLayout.src/M000020.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CustomLayout.src/M000021.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CustomLayout.src/M000021.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CustomLayout.src/M000022.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CustomLayout.src/M000022.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CustomLayout.src/M000023.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CustomLayout.src/M000023.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CustomLayout.src/M000024.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CustomLayout.src/M000024.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CustomLayout.src/M000025.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CustomLayout.src/M000025.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CustomLayout.src/M000026.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/CustomLayout.src/M000026.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/GridBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/GridBuilder.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/GridBuilder.src/M000014.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/GridBuilder.src/M000014.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/GridBuilder.src/M000015.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/GridBuilder.src/M000015.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Namespace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Namespace.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Namespace.src/M000016.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Namespace.src/M000016.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Namespace.src/M000017.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Namespace.src/M000017.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Namespace.src/M000018.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Namespace.src/M000018.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Namespace.src/M000019.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Namespace.src/M000019.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/SemanticClassNames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/SemanticClassNames.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/SemanticClassNames.src/M000009.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/SemanticClassNames.src/M000009.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/SemanticClassNames.src/M000010.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/SemanticClassNames.src/M000010.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Validator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Validator.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Validator.src/M000007.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Validator.src/M000007.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Validator.src/M000008.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/Blueprint/Validator.src/M000008.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/File.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/File.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/File.src/M000001.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/File.src/M000001.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/File.src/M000002.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/File.src/M000002.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/String.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/String.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/String.src/M000003.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/String.src/M000003.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/String.src/M000004.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/String.src/M000004.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/String.src/M000005.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/String.src/M000005.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/String.src/M000006.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/classes/String.src/M000006.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/created.rid: -------------------------------------------------------------------------------- 1 | Thu, 21 Feb 2008 20:15:33 -0500 2 | -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/blueprint/blueprint_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/blueprint/blueprint_rb.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/blueprint/compressor_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/blueprint/compressor_rb.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/blueprint/core_ext_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/blueprint/core_ext_rb.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/blueprint/css_parser_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/blueprint/css_parser_rb.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/blueprint/custom_layout_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/blueprint/custom_layout_rb.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/blueprint/grid_builder_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/blueprint/grid_builder_rb.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/blueprint/namespace_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/blueprint/namespace_rb.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/blueprint/semantic_class_names_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/blueprint/semantic_class_names_rb.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/blueprint/validator_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/blueprint/validator_rb.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/compress_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/compress_rb.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/validate_rb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/files/lib/validate_rb.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/fr_class_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/fr_class_index.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/fr_file_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/fr_file_index.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/fr_method_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/fr_method_index.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/index.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/rdoc-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/doc/rdoc-style.css -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/blueprint.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/blueprint.rb -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/compressor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/compressor.rb -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/core_ext.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/core_ext.rb -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/css_parser.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/css_parser.rb -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/custom_layout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/custom_layout.rb -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/grid.css.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/grid.css.erb -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/grid_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/grid_builder.rb -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/namespace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/namespace.rb -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/semantic_class_names.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/semantic_class_names.rb -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/validate/COPYRIGHT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/validate/COPYRIGHT.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/validate/JIGSAW_COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/validate/JIGSAW_COPYRIGHT -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/validate/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/validate/README.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/validate/XERCES_COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/validate/XERCES_COPYING.txt -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/validate/css-validator-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/validate/css-validator-javadoc.jar -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/validate/css-validator.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/validate/css-validator.jar -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/validate/jigsaw.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/validate/jigsaw.jar -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/validate/xerces.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/validate/xerces.jar -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/blueprint/validator.rb -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/compress.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/compress.rb -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/settings.example.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/settings.example.yml -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/validate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/lib/validate.rb -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/tests/index.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/tests/parts/elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/tests/parts/elements.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/tests/parts/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/tests/parts/forms.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/tests/parts/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/tests/parts/grid.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/tests/parts/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/tests/parts/sample.html -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/tests/parts/test-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/tests/parts/test-small.jpg -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/tests/parts/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/tests/parts/test.jpg -------------------------------------------------------------------------------- /resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/tests/parts/valid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/joshuaclayton-blueprint-css-05312a805eca539ab85e435cfd94bdedfd12ab2e/tests/parts/valid.png -------------------------------------------------------------------------------- /resources/DummyHTML/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/css/style.css -------------------------------------------------------------------------------- /resources/DummyHTML/images/project.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/images/project.jpg -------------------------------------------------------------------------------- /resources/DummyHTML/images/project2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/images/project2.jpg -------------------------------------------------------------------------------- /resources/DummyHTML/images/project3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/images/project3.jpg -------------------------------------------------------------------------------- /resources/DummyHTML/images/project4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/images/project4.jpg -------------------------------------------------------------------------------- /resources/DummyHTML/images/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/images/test.jpg -------------------------------------------------------------------------------- /resources/DummyHTML/images/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/images/test2.jpg -------------------------------------------------------------------------------- /resources/DummyHTML/images/test3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/images/test3.jpg -------------------------------------------------------------------------------- /resources/DummyHTML/images/test4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/images/test4.jpg -------------------------------------------------------------------------------- /resources/DummyHTML/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/index.html -------------------------------------------------------------------------------- /resources/DummyHTML/projects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/projects.html -------------------------------------------------------------------------------- /resources/DummyHTML/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/resources/DummyHTML/single.html -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/script/rails -------------------------------------------------------------------------------- /spec/factories.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/spec/factories.rb -------------------------------------------------------------------------------- /spec/fixtures/permissions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/spec/fixtures/permissions.yml -------------------------------------------------------------------------------- /spec/fixtures/role_memberships.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/spec/fixtures/role_memberships.yml -------------------------------------------------------------------------------- /spec/fixtures/roles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/spec/fixtures/roles.yml -------------------------------------------------------------------------------- /spec/models/acts_as_permissible_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/spec/models/acts_as_permissible_spec.rb -------------------------------------------------------------------------------- /spec/models/permission_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/spec/models/permission_spec.rb -------------------------------------------------------------------------------- /spec/models/role_membership_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/spec/models/role_membership_spec.rb -------------------------------------------------------------------------------- /spec/models/role_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/spec/models/role_spec.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/MIT-LICENSE -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/README -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/Rakefile -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/generators/permissible/USAGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/generators/permissible/USAGE -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/generators/permissible/permissible_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/generators/permissible/permissible_generator.rb -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/generators/permissible/templates/acts_as_permissible.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/generators/permissible/templates/acts_as_permissible.rb -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/generators/permissible/templates/acts_as_permissible_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/generators/permissible/templates/acts_as_permissible_spec.rb -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/generators/permissible/templates/fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/generators/permissible/templates/fixtures.yml -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/generators/permissible/templates/initializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/generators/permissible/templates/initializer.rb -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/generators/permissible/templates/migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/generators/permissible/templates/migration.rb -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/generators/permissible/templates/model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/generators/permissible/templates/model.rb -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/generators/permissible/templates/model_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/generators/permissible/templates/model_spec.rb -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/generators/permissible/templates/role_membership_migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/generators/permissible/templates/role_membership_migration.rb -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/generators/permissible/templates/role_membership_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/generators/permissible/templates/role_membership_model.rb -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/generators/permissible/templates/role_membership_model_fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/generators/permissible/templates/role_membership_model_fixtures.yml -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/generators/permissible/templates/role_membership_model_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/generators/permissible/templates/role_membership_model_spec.rb -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/generators/permissible/templates/role_migration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/generators/permissible/templates/role_migration.rb -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/generators/permissible/templates/role_model.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/generators/permissible/templates/role_model.rb -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/generators/permissible/templates/role_model_fixtures.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/generators/permissible/templates/role_model_fixtures.yml -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/generators/permissible/templates/role_model_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/generators/permissible/templates/role_model_spec.rb -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/init.rb -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/install.rb -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/lib/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/lib/tasks/acts_as_permissible_tasks.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/lib/tasks/acts_as_permissible_tasks.rake -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/test/acts_as_permissible_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/acts_as_permissible/test/acts_as_permissible_test.rb -------------------------------------------------------------------------------- /vendor/plugins/acts_as_permissible/uninstall.rb: -------------------------------------------------------------------------------- 1 | # Uninstall hook code here 2 | -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/dynamic_form/MIT-LICENSE -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/dynamic_form/README -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/dynamic_form/Rakefile -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/dynamic_form/init.rb -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/lib/action_view/helpers/dynamic_form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/dynamic_form/lib/action_view/helpers/dynamic_form.rb -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/lib/action_view/locale/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/dynamic_form/lib/action_view/locale/en.yml -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/test/dynamic_form_i18n_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/dynamic_form/test/dynamic_form_i18n_test.rb -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/test/dynamic_form_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/dynamic_form/test/dynamic_form_test.rb -------------------------------------------------------------------------------- /vendor/plugins/dynamic_form/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/dynamic_form/test/test_helper.rb -------------------------------------------------------------------------------- /vendor/plugins/princely/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/princely/MIT-LICENSE -------------------------------------------------------------------------------- /vendor/plugins/princely/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/princely/README -------------------------------------------------------------------------------- /vendor/plugins/princely/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/princely/Rakefile -------------------------------------------------------------------------------- /vendor/plugins/princely/init.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/princely/init.rb -------------------------------------------------------------------------------- /vendor/plugins/princely/lib/pdf_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/princely/lib/pdf_helper.rb -------------------------------------------------------------------------------- /vendor/plugins/princely/lib/prince.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/espen/balder/HEAD/vendor/plugins/princely/lib/prince.rb --------------------------------------------------------------------------------