Skip to content

Commit

Permalink
no idea
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Fiorini committed Sep 6, 2008
1 parent 6019484 commit 1a29b99
Show file tree
Hide file tree
Showing 2,205 changed files with 55 additions and 37 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Expand Up @@ -11,4 +11,6 @@ joe
.DS_Store .DS_Store
tmp/* tmp/*
*.tmproj *.tmproj
twitter_creds twitter_creds
swp*
*.swp
Empty file modified Rakefile 100644 → 100755
Empty file.
21 changes: 6 additions & 15 deletions app/controllers/application.rb 100644 → 100755
Expand Up @@ -9,22 +9,13 @@ def tweets_enabled
false false
end end


protected def for_users_by_type
def for_admin_only if @current_user
unless @current_user yield :admin
redirect_to(root_url) else
else yield :anonymous
yield
end
end

def for_users_by_type
if @current_user
yield :admin
else
yield :anonymous
end
end end
end


private private
def retrieve_user def retrieve_user
Expand Down
Empty file modified app/controllers/comments_controller.rb 100644 → 100755
Empty file.
Empty file modified app/controllers/events_controller.rb 100644 → 100755
Empty file.
Empty file modified app/controllers/locations_controller.rb 100644 → 100755
Empty file.
Empty file modified app/controllers/logging_controller.rb 100644 → 100755
Empty file.
4 changes: 3 additions & 1 deletion app/controllers/posts_controller.rb 100644 → 100755
Expand Up @@ -29,7 +29,7 @@ class PostsController < ResourceController::Base
if request.request_uri.downcase =~ /home/ if request.request_uri.downcase =~ /home/
render :html => @posts render :html => @posts
else else
render :template => 'admin/posts/index', :html => @posts render :template => 'admin/posts/index', :html => @posts, :layout => "admin"
end end
end end
end end
Expand Down Expand Up @@ -69,6 +69,8 @@ def object
def load_collection def load_collection
if params[:tag] if params[:tag]
@posts = Post.find_tagged_with params[:tag] @posts = Post.find_tagged_with params[:tag]
elsif @current_user
@posts = Post.posts_per_date
else else
@posts = Post.not_sticky.all :limit => 10, :order => "created_at desc" @posts = Post.not_sticky.all :limit => 10, :order => "created_at desc"
end end
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/sessions_controller.rb 100644 → 100755
@@ -1,5 +1,5 @@
class SessionsController < ApplicationController class SessionsController < ApplicationController

layout "admin"
def new def new


end end
Expand Down
Empty file modified app/controllers/temporary_content_controller.rb 100644 → 100755
Empty file.
10 changes: 9 additions & 1 deletion app/helpers/application_helper.rb 100644 → 100755
Expand Up @@ -8,7 +8,15 @@ def format_date_short(date)
date.to_s(:short_date_only) date.to_s(:short_date_only)
end end


def for_admin_only
unless @current_user
redirect_to(root_url)
else
yield
end
end

def feedburner_link_tag(burned_name) def feedburner_link_tag(burned_name)
auto_discovery_link_tag :rss, "http://feeds.feedburner.com/#{burned_name.to_s}", :title => 'faithfulgeek.org in syndication' auto_discovery_link_tag :rss, "http://feeds.feedburner.com/#{burned_name.to_s}", :title => 'faithfulgeek.org in syndication'
end end
end end
Empty file modified app/helpers/comments_helper.rb 100644 → 100755
Empty file.
Empty file modified app/helpers/events_helper.rb 100644 → 100755
Empty file.
Empty file modified app/helpers/locations_helper.rb 100644 → 100755
Empty file.
Empty file modified app/helpers/posts_helper.rb 100644 → 100755
Empty file.
Empty file modified app/helpers/sessions_helper.rb 100644 → 100755
Empty file.
Empty file modified app/helpers/temporary_content_helper.rb 100644 → 100755
Empty file.
Empty file modified app/models/Comment.rb 100644 → 100755
Empty file.
Empty file modified app/models/Twitter/Status.rb 100644 → 100755
Empty file.
Empty file modified app/models/event.rb 100644 → 100755
Empty file.
Empty file modified app/models/location.rb 100644 → 100755
Empty file.
6 changes: 6 additions & 0 deletions app/models/post.rb 100644 → 100755
Expand Up @@ -5,6 +5,12 @@ class Post < ActiveRecord::Base
acts_as_taggable acts_as_taggable
named_scope :sticky, :conditions => ["sticky = 't' and ((type = 'Event' and start_time > ?) or type is null)", DateTime.now], :order => 'start_time desc' named_scope :sticky, :conditions => ["sticky = 't' and ((type = 'Event' and start_time > ?) or type is null)", DateTime.now], :order => 'start_time desc'
named_scope :not_sticky, :conditions => {:sticky => false} named_scope :not_sticky, :conditions => {:sticky => false}
named_scope :published#not respecting draft status yet, :conditions => {:is_published => true, :is_published => false, :is_published => nil}

def self.posts_per_date
published.to_set.classify { |post| post.created_at.to_date }
end

def generate_permalink def generate_permalink
#raise self.attributes.to_s #raise self.attributes.to_s
if self.permalink.nil? if self.permalink.nil?
Expand Down
Empty file modified app/models/user.rb 100644 → 100755
Empty file.
24 changes: 16 additions & 8 deletions app/views/admin/posts/index.html.haml 100644 → 100755
@@ -1,8 +1,16 @@
%ol %h1 Overview
- @posts.each do |post| #listing
%li %ol#article-listing
= format_date_short(post.created_at) - @posts.each do |key, value|
&ndash; %li
= link_to post.title, post_url(post) %p.date
= link_to '[edit]', edit_post_url(post) = key.to_s :short_date_only
= link_to '[delete]', post_url(post), :method => :delete, :confirm => "Are you sure you want to delete this post?" - value.each do |post|
%p
.tools
= link_to '[edit]', edit_post_url(post), :class => "icon edit", :title => 'Edit'
= link_to '[delete]', post_url(post), :method => :delete, :confirm => "Are you sure you want to delete this post?", :class => "icon delete", :title => 'Delete'
.title= link_to post.title, post_url(post)
= render :partial => 'creation_tools'


Empty file modified app/views/events/index.html.haml 100644 → 100755
Empty file.
4 changes: 0 additions & 4 deletions app/views/layouts/application.html.haml 100644 → 100755
Expand Up @@ -12,10 +12,6 @@
%body %body
#container #container
#mast #mast
- if @current_user
#welcome_message
= "Logged in as: " + @current_user.name
= link_to 'Logout', logout_url
#logo #logo
%a{ :href => "/" } %a{ :href => "/" }
%span %span
Expand Down
Empty file modified app/views/locations/new.html.haml 100644 → 100755
Empty file.
Empty file modified app/views/locations/show.html.haml 100644 → 100755
Empty file.
Empty file modified app/views/posts/_form.html.haml 100644 → 100755
Empty file.
Empty file modified app/views/posts/_post.html.haml 100644 → 100755
Empty file.
Empty file modified app/views/posts/edit.html.haml 100644 → 100755
Empty file.
Empty file modified app/views/posts/index.atom.builder 100644 → 100755
Empty file.
Empty file modified app/views/posts/index.html.haml 100644 → 100755
Empty file.
Empty file modified app/views/posts/new.html.erb 100644 → 100755
Empty file.
Empty file modified app/views/posts/show.html.haml 100644 → 100755
Empty file.
9 changes: 6 additions & 3 deletions app/views/sessions/new.html.haml 100644 → 100755
@@ -1,6 +1,9 @@
= flash[:error] = flash[:error]


- form_tag(session_url) do - form_tag(session_url) do
= label :openid_url, "OpenId URL:" .login
= text_field_tag :openid_url, '', :class => 'openid-login' = label :sesion, :openid_url, "OpenID "
= submit_tag 'Sign in', :disable_with => 'Signing in&hellip;' = text_field_tag :openid_url, '', :class => 'openid-login'
= submit_tag 'Sign in', :disable_with => 'Signing in&hellip;'
%p
%em Please login using your OpenID.
Empty file modified config/boot.rb 100644 → 100755
Empty file.
Empty file modified config/database.example.yml 100644 → 100755
Empty file.
Empty file modified config/environment.rb 100644 → 100755
Empty file.
Empty file modified config/environments/development.rb 100644 → 100755
Empty file.
Empty file modified config/environments/production.rb 100644 → 100755
Empty file.
Empty file modified config/environments/test.rb 100644 → 100755
Empty file.
Empty file modified config/gmaps_api_key.yml 100644 → 100755
Empty file.
Empty file modified config/initializers/inflections.rb 100644 → 100755
Empty file.
Empty file modified config/initializers/mime_types.rb 100644 → 100755
Empty file.
Empty file modified config/initializers/rakismet.rb 100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion config/routes.rb 100644 → 100755
@@ -1,6 +1,6 @@
ActionController::Routing::Routes.draw do |map| ActionController::Routing::Routes.draw do |map|
map.resources :locations map.resources :locations

map.resources :events


map.root :controller => 'posts' map.root :controller => 'posts'
map.meetings '/meetings', :controller => 'Events', :action => 'index' map.meetings '/meetings', :controller => 'Events', :action => 'index'
Expand Down
Empty file modified db/development_structure.sql 100644 → 100755
Empty file.
Empty file modified db/migrate/001_create_posts.rb 100644 → 100755
Empty file.
Empty file modified db/migrate/002_create_comments.rb 100644 → 100755
Empty file.
Empty file modified db/migrate/003_add_post_id_to_comments.rb 100644 → 100755
Empty file.
Empty file modified db/migrate/004_add_open_id_authentication_tables.rb 100644 → 100755
Empty file.
Empty file modified db/migrate/005_create_users.rb 100644 → 100755
Empty file.
Empty file modified db/migrate/006_remove_comments.rb 100644 → 100755
Empty file.
Empty file modified db/migrate/007_create_commentable_schema.rb 100644 → 100755
Empty file.
Empty file modified db/migrate/008_add_author_to_post.rb 100644 → 100755
Empty file.
Empty file modified db/migrate/009_add_email_to_user.rb 100644 → 100755
Empty file.
Empty file modified db/migrate/010_acts_as_taggable_migration.rb 100644 → 100755
Empty file.
Empty file.
Empty file modified db/migrate/20080515004142_add_fields_for_spam_tracking.rb 100644 → 100755
Empty file.
Empty file modified db/migrate/20080530145539_add_permalink_to_post.rb 100644 → 100755
Empty file.
Empty file modified db/migrate/20080626223817_create_locations.rb 100644 → 100755
Empty file.
Empty file modified db/migrate/20080627012835_create_location.rb 100644 → 100755
Empty file.
Empty file modified db/migrate/20080814001121_create_events.rb 100644 → 100755
Empty file.
Empty file modified db/migrate/20080814002941_add_type_field_to_post.rb 100644 → 100755
Empty file.
Empty file modified db/migrate/20080814003528_drop_events_table.rb 100644 → 100755
Empty file.
Empty file modified db/migrate/20080814003543_add_events_columns_to_posts.rb 100644 → 100755
Empty file.
Empty file modified db/migrate/20080814004513_add_presenter_column_to_events.rb 100644 → 100755
Empty file.
Empty file modified db/migrate/20080814005733_add_sticky_field_to_posts.rb 100644 → 100755
Empty file.
Empty file modified db/migrate/20080814020252_add_location_url.rb 100644 → 100755
Empty file.
Empty file modified doc/README_FOR_APP 100644 → 100755
Empty file.
Empty file modified lib/ActionView/base.rb 100644 → 100755
Empty file.
Empty file modified lib/Utils/TwitterAPI.rb 100644 → 100755
Empty file.
Empty file modified lib/string.rb 100644 → 100755
Empty file.
Empty file modified public/images/bg - Copy.jpg 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/bg.jpg 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/glasses.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/gravatar.jpg 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/header.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/header.xcf 100644 → 100755
Empty file.
Empty file modified public/images/icons/12-em-check.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/12-em-cross.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/12-em-down.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/12-em-pencil.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/12-em-plus.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/12-em-up.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/16-arrow-down.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/16-arrow-left.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/16-arrow-right.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/16-arrow-up.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/16-circle-blue-add.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/16-circle-blue-check.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/16-circle-blue-delete.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/16-circle-blue-remove.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/16-circle-blue.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/16-circle-green-add.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/16-circle-green-check.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/16-circle-green-delete.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/16-circle-green-remove.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/16-circle-green.png 100644 → 100755
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified public/images/icons/16-circle-red-add.png 100644 → 100755
Empty file modified public/images/icons/16-circle-red-check.png 100644 → 100755
Empty file modified public/images/icons/16-circle-red-delete.png 100644 → 100755
Empty file modified public/images/icons/16-circle-red-remove.png 100644 → 100755
Empty file modified public/images/icons/16-circle-red.png 100644 → 100755
Empty file modified public/images/icons/16-clock.png 100644 → 100755
Empty file modified public/images/icons/16-cube-blue.png 100644 → 100755
Empty file modified public/images/icons/16-cube-green.png 100644 → 100755
Empty file modified public/images/icons/16-cube-red.png 100644 → 100755
Empty file modified public/images/icons/16-em-check.png 100644 → 100755
Empty file modified public/images/icons/16-em-cross.png 100644 → 100755
Empty file modified public/images/icons/16-em-down.png 100644 → 100755
Empty file modified public/images/icons/16-em-open.png 100644 → 100755
Empty file modified public/images/icons/16-em-pencil.png 100644 → 100755
Empty file modified public/images/icons/16-em-plus.png 100644 → 100755
Empty file modified public/images/icons/16-file-archive.png 100644 → 100755
Empty file modified public/images/icons/16-file-page.png 100644 → 100755
Empty file modified public/images/icons/16-heart-gold-l.png 100644 → 100755
Empty file modified public/images/icons/16-heart-gold-m.png 100644 → 100755
Empty file modified public/images/icons/16-heart-gold-s.png 100644 → 100755
Empty file modified public/images/icons/16-heart-gold-xs.png 100644 → 100755
Empty file modified public/images/icons/16-heart-gold-xxs.png 100644 → 100755
Empty file modified public/images/icons/16-heart-red-l.png 100644 → 100755
Empty file modified public/images/icons/16-heart-red-m.png 100644 → 100755
Empty file modified public/images/icons/16-heart-red-s.png 100644 → 100755
Empty file modified public/images/icons/16-heart-red-xs.png 100644 → 100755
Empty file modified public/images/icons/16-heart-red-xxs.png 100644 → 100755
Empty file modified public/images/icons/16-heart-silver-l.png 100644 → 100755
Empty file modified public/images/icons/16-heart-silver-m.png 100644 → 100755
Empty file modified public/images/icons/16-heart-silver-s.png 100644 → 100755
Empty file modified public/images/icons/16-heart-silver-xs.png 100644 → 100755
Empty file modified public/images/icons/16-heart-silver-xxs.png 100644 → 100755
Empty file modified public/images/icons/16-image-add.png 100644 → 100755
Empty file modified public/images/icons/16-image-check.png 100644 → 100755
Empty file modified public/images/icons/16-image-remove.png 100644 → 100755
Empty file modified public/images/icons/16-image.png 100644 → 100755
Empty file modified public/images/icons/16-member-add.png 100644 → 100755
Empty file modified public/images/icons/16-member-heart.png 100644 → 100755
Empty file modified public/images/icons/16-member-profile.png 100644 → 100755
Empty file modified public/images/icons/16-member-remove.png 100644 → 100755
Empty file modified public/images/icons/16-member.png 100644 → 100755
Empty file modified public/images/icons/16-message-info.png 100644 → 100755
Empty file modified public/images/icons/16-message-warn.png 100644 → 100755
Empty file modified public/images/icons/16-security-key.png 100644 → 100755
Empty file modified public/images/icons/16-security-lock-open.png 100644 → 100755
Empty file modified public/images/icons/16-security-lock.png 100644 → 100755
Empty file modified public/images/icons/16-square-blue-add.png 100644 → 100755
Empty file modified public/images/icons/16-square-blue-check.png 100644 → 100755
Empty file modified public/images/icons/16-square-blue-delete.png 100644 → 100755
Empty file modified public/images/icons/16-square-blue-remove.png 100644 → 100755
Empty file modified public/images/icons/16-square-blue.png 100644 → 100755
Empty file modified public/images/icons/16-square-green-add.png 100644 → 100755
Empty file modified public/images/icons/16-square-green-check.png 100644 → 100755
Empty file modified public/images/icons/16-square-green-delete.png 100644 → 100755
Empty file modified public/images/icons/16-square-green-remove.png 100644 → 100755
Empty file modified public/images/icons/16-square-green.png 100644 → 100755
Empty file modified public/images/icons/16-square-red-add.png 100644 → 100755
Empty file modified public/images/icons/16-square-red-check.png 100644 → 100755
Empty file modified public/images/icons/16-square-red-delete.png 100644 → 100755
Empty file modified public/images/icons/16-square-red-remove.png 100644 → 100755
Empty file modified public/images/icons/16-square-red.png 100644 → 100755
Empty file modified public/images/icons/16-star-cold.png 100644 → 100755
Empty file modified public/images/icons/16-star-hot.png 100644 → 100755
Empty file modified public/images/icons/16-tag-add.png 100644 → 100755
Empty file modified public/images/icons/16-tag-check.png 100644 → 100755
Empty file modified public/images/icons/16-tag-cold.png 100644 → 100755
Empty file modified public/images/icons/16-tag-cross.png 100644 → 100755
Empty file modified public/images/icons/16-tag-hot.png 100644 → 100755
Empty file modified public/images/icons/16-tag-pencil.png 100644 → 100755
Empty file modified public/images/icons/16-tool-a.png 100644 → 100755
Empty file modified public/images/icons/16-tool-b.png 100644 → 100755
Empty file modified public/images/icons/16-tool-c.png 100644 → 100755
Empty file modified public/images/icons/16-tool-d.png 100644 → 100755
Empty file modified public/images/icons/16-zoom.png 100644 → 100755
Empty file modified public/images/icons/24-arrow-back.png 100644 → 100755
Empty file modified public/images/icons/24-arrow-first.png 100644 → 100755
Empty file modified public/images/icons/24-arrow-forward.png 100644 → 100755
Empty file modified public/images/icons/24-arrow-last.png 100644 → 100755
Empty file modified public/images/icons/24-arrow-next.png 100644 → 100755
Empty file modified public/images/icons/24-arrow-previous.png 100644 → 100755
Empty file modified public/images/icons/24-book-blue-add.png 100644 → 100755
Empty file modified public/images/icons/24-book-blue-check.png 100644 → 100755
Empty file modified public/images/icons/24-book-blue-mark.png 100644 → 100755
Empty file modified public/images/icons/24-book-blue-open.png 100644 → 100755
Empty file modified public/images/icons/24-book-blue-remove.png 100644 → 100755
Empty file modified public/images/icons/24-book-blue.png 100644 → 100755
Empty file modified public/images/icons/24-book-green-add.png 100644 → 100755
Empty file modified public/images/icons/24-book-green-check.png 100644 → 100755
Empty file modified public/images/icons/24-book-green-mark.png 100644 → 100755
Empty file modified public/images/icons/24-book-green-open.png 100644 → 100755
Empty file modified public/images/icons/24-book-green-remove.png 100644 → 100755
Empty file modified public/images/icons/24-book-green.png 100644 → 100755
Empty file modified public/images/icons/24-book-red-add.png 100644 → 100755
Empty file modified public/images/icons/24-book-red-check.png 100644 → 100755
Empty file modified public/images/icons/24-book-red-mark.png 100644 → 100755
Empty file modified public/images/icons/24-book-red-open.png 100644 → 100755
Empty file modified public/images/icons/24-book-red-remove.png 100644 → 100755
Empty file modified public/images/icons/24-book-red.png 100644 → 100755
Empty file modified public/images/icons/24-columns.png 100644 → 100755
Empty file modified public/images/icons/24-control-pause.png 100644 → 100755
Empty file modified public/images/icons/24-control-stop.png 100644 → 100755
Empty file modified public/images/icons/24-em-check.png 100644 → 100755
Empty file modified public/images/icons/24-em-cross.png 100644 → 100755
Empty file modified public/images/icons/24-em-down.png 100644 → 100755
Empty file modified public/images/icons/24-em-plus.png 100644 → 100755
Empty file modified public/images/icons/24-em-up.png 100644 → 100755
Empty file modified public/images/icons/24-frame-add.png 100644 → 100755
Empty file modified public/images/icons/24-frame-close.png 100644 → 100755
Empty file modified public/images/icons/24-frame-open.png 100644 → 100755
Empty file modified public/images/icons/24-frame.png 100644 → 100755
Empty file modified public/images/icons/24-heart-gold.png 100644 → 100755
Empty file modified public/images/icons/24-heart-red.png 100644 → 100755
Empty file modified public/images/icons/24-heart-silver.png 100644 → 100755
Empty file modified public/images/icons/24-image-add.png 100644 → 100755
Empty file modified public/images/icons/24-image-check.png 100644 → 100755
Empty file modified public/images/icons/24-image-open.png 100644 → 100755
Empty file modified public/images/icons/24-image-remove.png 100644 → 100755
Empty file modified public/images/icons/24-image.png 100644 → 100755
Empty file modified public/images/icons/24-imageset-add.png 100644 → 100755
Empty file modified public/images/icons/24-imageset-check.png 100644 → 100755
Empty file modified public/images/icons/24-imageset-open.png 100644 → 100755
Empty file modified public/images/icons/24-imageset-remove.png 100644 → 100755
Empty file modified public/images/icons/24-imageset.png 100644 → 100755
Empty file modified public/images/icons/24-member-add.png 100644 → 100755
Empty file modified public/images/icons/24-member-heart.png 100644 → 100755
Empty file modified public/images/icons/24-member-remove.png 100644 → 100755
Empty file modified public/images/icons/24-member.png 100644 → 100755
Empty file modified public/images/icons/24-message-info.png 100644 → 100755
Empty file modified public/images/icons/24-message-warn.png 100644 → 100755
Empty file modified public/images/icons/24-security-key.png 100644 → 100755
Empty file modified public/images/icons/24-security-lock-open.png 100644 → 100755
Empty file modified public/images/icons/24-security-lock.png 100644 → 100755
Empty file modified public/images/icons/24-settings-blue.png 100644 → 100755
Empty file modified public/images/icons/24-settings-orange.png 100644 → 100755
Empty file modified public/images/icons/24-settings-silver.png 100644 → 100755
Empty file modified public/images/icons/24-settings.png 100644 → 100755
Empty file modified public/images/icons/24-sidebar.png 100644 → 100755
Empty file modified public/images/icons/24-tab-add.png 100644 → 100755
Empty file modified public/images/icons/24-tab-close.png 100644 → 100755
Empty file modified public/images/icons/24-tab-open.png 100644 → 100755
Empty file modified public/images/icons/24-tab.png 100644 → 100755
Empty file modified public/images/icons/24-tag-add.png 100644 → 100755
Empty file modified public/images/icons/24-tag-check.png 100644 → 100755
Empty file modified public/images/icons/24-tag-cold.png 100644 → 100755
Empty file modified public/images/icons/24-tag-hot.png 100644 → 100755
Empty file modified public/images/icons/24-tag-manager.png 100644 → 100755
Empty file modified public/images/icons/24-tag-pencil.png 100644 → 100755
Empty file modified public/images/icons/24-tag-remove.png 100644 → 100755
Empty file modified public/images/icons/24-tool-a.png 100644 → 100755
Empty file modified public/images/icons/24-tool-b.png 100644 → 100755
Empty file modified public/images/icons/24-tool-c.png 100644 → 100755
Empty file modified public/images/icons/24-tools.png 100644 → 100755
Empty file modified public/images/icons/24-zoom-actual.png 100644 → 100755
Empty file modified public/images/icons/24-zoom-fill.png 100644 → 100755
Empty file modified public/images/icons/24-zoom-in.png 100644 → 100755
Empty file modified public/images/icons/24-zoom-out.png 100644 → 100755
Empty file modified public/images/icons/24-zoom.png 100644 → 100755
Empty file modified public/images/icons/8-em-check.png 100644 → 100755
Empty file modified public/images/icons/8-em-cross.png 100644 → 100755
Empty file modified public/images/icons/8-em-heart.png 100644 → 100755
Empty file modified public/images/icons/8-em-pencil.png 100644 → 100755
Empty file modified public/images/icons/8-em-plus.png 100644 → 100755
Empty file modified public/images/logo.png 100644 → 100755
Empty file modified public/images/masthead.png 100644 → 100755
Empty file modified public/images/openid-logo.gif 100644 → 100755
Empty file modified public/images/rails.png 100644 → 100755
Empty file modified public/javascripts/application.js 100644 → 100755
Empty file.
Empty file modified public/javascripts/clusterer.js 100644 → 100755
Empty file.
Empty file modified public/javascripts/controls.js 100644 → 100755
Empty file.
Empty file modified public/javascripts/dragdrop.js 100644 → 100755
Empty file.
Empty file modified public/javascripts/effects.js 100644 → 100755
Empty file.
Empty file modified public/javascripts/geoRssOverlay.js 100644 → 100755
Empty file.
Empty file modified public/javascripts/markerGroup.js 100644 → 100755
Empty file.
Empty file modified public/javascripts/prototype.js 100644 → 100755
Empty file.
Empty file modified public/javascripts/wms-gs.js 100644 → 100755
Empty file.
Empty file modified public/javascripts/ym4r-gm.js 100644 → 100755
Empty file.
Empty file modified public/stylesheets/reset.css 100644 → 100755
Empty file.
Empty file removed public/stylesheets/single.css
Empty file.
6 changes: 4 additions & 2 deletions public/stylesheets/site.css 100644 → 100755
Expand Up @@ -47,7 +47,6 @@ div#navigation


strong.chicklet { strong.chicklet {
background-color: #b4130a; background-color: #b4130a;
/* border: solid 1px black; */
color: white; color: white;
font-size: .8em; font-size: .8em;
text-transform: uppercase; text-transform: uppercase;
Expand Down Expand Up @@ -83,6 +82,8 @@ div#map_div { border: solid 1px black;}
#location h1 { font-size: 2.25em; } #location h1 { font-size: 2.25em; }
#location div#address { text-indent: 40px; } #location div#address { text-indent: 40px; }


a.icon { display: block; width: 16px; height: 16px; text-indent: -1000px; }

/*********** Comment Form **********/ /*********** Comment Form **********/


/* this is the honeypot captcha to catch spam bots */ /* this is the honeypot captcha to catch spam bots */
Expand All @@ -98,4 +99,5 @@ a, a:link, a:visited, a:active { color: #900; font-family: helvetica; }
a:hover { color: #908a8a; } a:hover { color: #908a8a; }


/*********** Footer ***********/ /*********** Footer ***********/
div#footer { margin-top: 40px; } div#footer { margin-top: 40px; }

Empty file modified spec/controllers/comments_controller_spec.rb 100644 → 100755
Empty file.
Empty file modified spec/controllers/posts_controller_spec.rb 100644 → 100755
Empty file.
Empty file modified spec/controllers/posts_routing_spec.rb 100644 → 100755
Empty file.
Empty file modified spec/fixtures/comments.yml 100644 → 100755
Empty file.
Empty file modified spec/fixtures/posts.yml 100644 → 100755
Empty file.
Empty file modified spec/fixtures/users.yml 100644 → 100755
Empty file.
Empty file modified spec/helpers/comments_helper_spec.rb 100644 → 100755
Empty file.
Empty file modified spec/helpers/posts_helper_spec.rb 100644 → 100755
Empty file.
Empty file modified spec/helpers/sessions_helper_spec.rb 100644 → 100755
Empty file.
Empty file modified spec/models/post_spec.rb 100644 → 100755
Empty file.
Empty file modified spec/models/user_spec.rb 100644 → 100755
Empty file.
Empty file modified spec/rcov.opts 100644 → 100755
Empty file.
Empty file modified spec/spec.opts 100644 → 100755
Empty file.
Empty file modified spec/spec_helper.rb 100644 → 100755
Empty file.
Empty file modified spec/views/posts/edit.html.erb_spec.rb 100644 → 100755
Empty file.
Empty file modified spec/views/posts/index.html.haml_spec.rb 100644 → 100755
Empty file.
Empty file modified spec/views/posts/new.html.erb_spec.rb 100644 → 100755
Empty file.
Empty file modified spec/views/posts/show.html.haml_spec.rb 100644 → 100755
Empty file.
Empty file modified spec/views/sessions/create.html.erb_spec.rb 100644 → 100755
Empty file.
Empty file modified stories/all.rb 100644 → 100755
Empty file.
Empty file modified stories/helper.rb 100644 → 100755
Empty file.

0 comments on commit 1a29b99

Please sign in to comment.