Skip to content
This repository has been archived by the owner on Aug 15, 2018. It is now read-only.

Commit

Permalink
Merge branch 'knewter/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
jamescook committed Sep 13, 2008
2 parents f5ba175 + 1503d29 commit b1e028e
Show file tree
Hide file tree
Showing 923 changed files with 1,634 additions and 107 deletions.
31 changes: 24 additions & 7 deletions app/controllers/admin/pages_controller.rb
Expand Up @@ -29,7 +29,7 @@ def update
flash.now[:message] = 'Page Updated Successfully'
@preview_url = @page.ancestor_path + @page.name
@page_id = @page.id
render :template => 'preview'
render :action => 'preview'
else
render :action => 'edit'
end
Expand All @@ -44,10 +44,19 @@ def new
def create
@page.name = @page.name.gsub(' ', '_')
if @page.save
flash.now[:message] = 'Page Added Successfully'
message = 'Page Added Successfully'
@preview_url = @page.ancestor_path + @page.name
@page_id = @page.id
render 'preview', "<h1>Page Added Successfully</h1>"
respond_to do |format|
format.html{
flash[:notice] = message
redirect_to admin_pages_path
}
format.js{
flash.now[:message] = message
render 'preview', "<h1>Page Added Successfully</h1>"
}
end
else
render :action => 'new'
end
Expand All @@ -59,8 +68,15 @@ def destroy
sub.parent_id = 0
sub.save
end
page_name = @page.name
@page.destroy
manage_tree
respond_to do |format|
format.html{
flash[:notice] = "Page: #{page_name} was deleted"
redirect_to admin_pages_path
}
format.js{ manage_tree }
end
end

def menu
Expand All @@ -76,9 +92,10 @@ def menu
def shift_order
@page.swap! params[:shift].to_i if @page and params[:shift]
params[:parent_id] = @page.parent_id
manage_tree
#rescue
# render_text "An Error has occured!" # Add something more graceful later
respond_to do |format|
format.html{ redirect_to admin_pages_path }
format.js{ manage_tree }
end
end

def manage_tree
Expand Down
31 changes: 31 additions & 0 deletions app/controllers/admin/site_settings_controller.rb
@@ -0,0 +1,31 @@
class Admin::SiteSettingsController < Admin::BaseController
include ThemesManagementHelper
before_filter :get_settings
before_filter :get_themes, :only => [:edit]

protected
def get_settings
@settings = settings # This is defined in site_settings_helper
end

def get_themes
@themes = list_themes
end

public
def show
end

def edit
end

def update
if @settings.update_attributes(params[:site_setting])
flash[:notice] = "Site Settings were updated successfully."
redirect_to :action => 'show'
else
flash.now[:error] = "There was a problem updating the site settings."
render :action => 'edit'
end
end
end
2 changes: 2 additions & 0 deletions app/controllers/application.rb
@@ -1,7 +1,9 @@
class ApplicationController < ActionController::Base
include AuthenticatedSystem
include SiteSettingsHelper
before_filter :login_from_cookie, :setup_plugin_nav, :set_layout_variables
helper :all
theme :get_theme_setting

def set_layout_variables
@root = Page.root
Expand Down
5 changes: 5 additions & 0 deletions app/helpers/fam_fam_fam_helper.rb
@@ -0,0 +1,5 @@
module FamFamFamHelper
def famfamfam_icon name
image_tag('famfamfam_icons/' + name + '.png')
end
end
23 changes: 23 additions & 0 deletions app/helpers/flashes_helper.rb
@@ -0,0 +1,23 @@
module FlashesHelper
include FamFamFamHelper

def display_standard_flashes(message = 'There were some problems with your submission:')
if flash[:notice]
flash_to_display, level, icon = flash[:notice], 'notice', 'tick'
elsif flash[:warning]
flash_to_display, level, icon = flash[:warning], 'warning', 'delete'
elsif flash[:error]
level = 'error'
if flash[:error].instance_of? ActiveRecord::Errors
flash_to_display = message
flash_to_display << activerecord_error_list(flash[:error])
else
flash_to_display = flash[:error]
end
icon = 'error'
else
return
end
content_tag 'div', famfamfam_icon(icon) + ' ' + flash_to_display, :class => "flash #{level}"
end
end
6 changes: 2 additions & 4 deletions app/helpers/page_admin_helper.rb
Expand Up @@ -77,14 +77,12 @@ def tree_ul(acts_as_tree_set, init=true, &block)
acts_as_tree_set.collect do |item|
next if item.parent_id && init
ret << '<li>'
ret += yield item
ret << ' (page controls partial)'
ret << yield(item)
ret << render(:partial => 'page_controls', :locals => { :page => item })
ret << tree_ul(item.children, false, &block) if item.children.size > 0
ret << '</li>'
end
ret << '</ul>'
end
end


end
6 changes: 6 additions & 0 deletions app/models/site_setting.rb
@@ -0,0 +1,6 @@
class SiteSetting < ActiveRecord::Base
def get_theme_setting
theme_setting = self.send(:user_theme_name)
theme_setting.blank? ? 'default' : theme_setting
end
end
@@ -1,11 +1,13 @@
<% if logged_in? %>
<div id="hd">
<ul>
<li><%= create_tab('Manage Pages', '/admin/pages') %></li>
<li><%= create_tab('List Plugins', '/admin/plugins') %></li>
<%= render :partial => "admin/page_plugins/admin_plugins_nav" -%>
<ul id='base-links'>
<li><%= create_tab('Manage Pages', '/admin/pages') %></li>
<li><%= create_tab('Site Settings', '/admin/site_settings') %></li>
<li><%= create_tab('List Plugins', '/admin/plugins') %></li>
<li><%= create_tab('Account Settings', '/admin/account/update') %></li>
<li><%= create_tab('Logout', '/admin/account/logout') %></li>
</ul>
<%= render :partial => "admin/page_plugins/admin_plugins_nav" -%>
<div class='clear'></div>
</div>
<% end %>
2 changes: 1 addition & 1 deletion app/views/admin/page_plugins/_admin_plugins_nav.html.erb
@@ -1,5 +1,5 @@
<ul id='admin-plugins-nav'>
<% @admin_plugin_nav.each do |text, url| -%>
<li><%= link_to text, url -%></li>
<li><%= create_tab text, url -%></span></li>
<% end -%>
</ul>
6 changes: 6 additions & 0 deletions app/views/admin/pages/_page_controls.html.erb
@@ -0,0 +1,6 @@
<span class='page_controls'>
<%= link_to 'dn', shift_order_admin_page_path(:id => page.id, :shift => 1) -%>
<%= link_to 'up', shift_order_admin_page_path(:id => page.id, :shift => -1) -%>
<%= link_to("X", admin_page_path(page), :method => :delete, :confirm => 'Are you sure? This will delete this page permanently and all sub-pages will be orphaned!') -%>
<%= link_to("Add", new_admin_page_path(:parent_id => page.id)) -%>
</span>
45 changes: 29 additions & 16 deletions app/views/admin/pages/edit.html.erb
@@ -1,20 +1,33 @@
<h1>Edit Page</h1>
<% form_remote_tag :url => { :action => 'update', :id => @page.id },
:update => 'main',
:complete => remote_function(
:update => "item#{@page.parent_id}",
:url => { :action => 'manage_tree', :parent_id => @page.parent_id, :tree_post_id => @post_id },
:complete => 'refresh_visibility()'),
:html => { 'name' => 'page_form' } do -%>
<%= render :partial => 'form' %>
<%= submit_tag 'Update', :class => 'submit' -%>
<% content_for :sidebar do -%>
<% form_remote_tag :url => admin_page_path(@page),
:update => 'main',
:method => :put,
:complete => remote_function(
:update => "item#{@page.parent_id}",
:url => { :action => 'manage_tree', :parent_id => @page.parent_id, :tree_post_id => @post_id },
:complete => 'refresh_visibility()'),
:html => { 'name' => 'page_form' } do -%>
<%= render :partial => 'form' %>
<%= submit_tag 'Update', :class => 'submit' -%>
<% end -%>
<% end -%>
<% content_for :sidebar do -%>
<h2>Plugins on this page</h2>
<ul id="page_plugins" class='page_plugins'>
<% @page.page_plugins.each do |plugin| -%>
<li><%= link_to(plugin.module_type, plugin.module.edit_path, :class => 'edit_page_plugin') -%></li>
<% end -%>
</ul>
<%= link_to "Add Plugin", new_admin_page_plugin_path(:page_id => @page.id) -%>
<% end -%>
<div id="modal" class="jqmWindow"></div>

<h2>Plugins on this page</h2>
<ul id="page_plugins" class='page_plugins'>
<% if @page.display_title %>
<h2><%= @page.full_title %></h2>
<% end %>
<% if @page.page_plugins.any? -%>
<% @page.page_plugins.each do |plugin| -%>
<li><%= link_to(plugin.module_type, plugin.module.edit_path, :class => 'edit_page_plugin') -%></li>
<%= render :partial => plugin.module_class.view_partial, :locals => { :plugin_module => plugin.module } -%>
<% end -%>
</ul>
<%= link_to "Add Plugin", new_admin_page_plugin_path(:page_id => @page.id) -%>
<div id="modal" class="jqmWindow"></div>
<% end -%>
4 changes: 2 additions & 2 deletions app/views/admin/pages/index.html.erb
@@ -1,3 +1,3 @@
<div id="tree">
<%= tree_ul(@page_hierarchy) {|item| link_to h(item.name), :action => 'edit', :id => item } %>
</div>
<%= tree_ul(@page_hierarchy) {|item| link_to h(item.name), edit_admin_page_path(item) } %>
</div>
8 changes: 1 addition & 7 deletions app/views/admin/pages/new.html.erb
@@ -1,13 +1,7 @@
<h1 style="text-align:center;">Create a New Page</h1>
<% form_remote_tag :url => { :action => 'create'} ,
:update => 'main',
:complete => remote_function(
:update => "item#{@page.parent_id}",
:url => { :action => 'manage_tree', :parent_id => @page.parent_id, :tree_post_id => @postId } ),
:html => { 'name' => 'page_form' } do %>
<% form_tag admin_pages_path, :html => { 'name' => 'page_form' } do %>
<%= hidden_field 'page', 'parent_id' %>
<%= hidden_field 'page', 'page_order' %>
<%= render :partial => 'form' %>
<%= submit_tag 'Create', :class => 'submit' %>
<% end -%>

7 changes: 7 additions & 0 deletions app/views/admin/site_settings/edit.html.erb
@@ -0,0 +1,7 @@
<h1>Edit Site Settings</h1>
<% form_tag 'update' do -%>
<% fields_for @settings do |f| -%>
<%= f.select(:user_theme_name, @themes) -%>
<%= submit_tag 'Update' -%>
<% end -%>
<% end -%>
5 changes: 5 additions & 0 deletions app/views/admin/site_settings/show.html.erb
@@ -0,0 +1,5 @@
<h1>Site Settings</h1>
<% content_for :sidebar do -%>
<%= link_to 'Edit Settings', edit_admin_site_settings_path -%>
<% end -%>
User Theme: <%= @settings.get_theme_setting -%>
17 changes: 11 additions & 6 deletions app/views/layouts/admin.html.erb
Expand Up @@ -8,12 +8,10 @@
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta name="description" content="Ansuz Content Management System" />
<meta name="keywords" content="Ansuz Content Management System" />
<link rel="shortcut icon" href="favicon.ico" type="image/vnd.microsoft.icon" />
<link rel="icon" href="favicon.ico" type="image/vnd.microsoft.icon" />
<%= stylesheet_link_tag 'reset-fonts-grids' %>
<%= stylesheet_link_tag 'sprite' %>
<%= stylesheet_link_tag 'base' %>
<%= stylesheet_link_tag 'admin' %>
<%= stylesheet_link_tag 'jqmodal' %>
<%= javascript_include_tag :defaults, 'jquery', 'jqModal', 'jquery.growl.js', 'ansuz/growls' %>
<%= javascript_include_tag 'show_and_hide' %>
<%= javascript_include_tag 'fckeditor/fckeditor' %>
Expand All @@ -23,11 +21,16 @@
<div id='header'>
<h1>
<span class='logo'></span>
<span>Ansuz CMS: Admin [ Currently Editing: <b><%= current_database %></b> ]</span>
<span>Ansuz CMS: Admin</span>
</h1>
</div>
<div id='toolbar'>
<%= render :partial => "/admin/tabs" %>
</div>
<div id='sidebar'>
<%= yield :sidebar -%>
</div>
<div id="doc2" class="yui-t7">
<%= render :partial => "/admin/pages/tabs" %>
<div id="bd">
<div class="yui-g">
<%# TODO: I need to use the helper I use to print all flash messages here, way more stylable / useful -ja -%>
Expand All @@ -37,7 +40,9 @@
<%= @content_for_layout %>
</div>
</div>
<div id="ft">Add a Plugin</div>
<div id="ft">
[ Currently Editing: <b><%= current_database %></b> ]
</div>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion app/views/layouts/page.html.erb
Expand Up @@ -14,7 +14,7 @@
<%= stylesheet_link_tag 'base' -%>
<%= stylesheet_link_tag 'sprite' -%>
<%= stylesheet_link_tag 'lightbox' -%>
<%= javascript_include_tag :defaults, 'effects', 'builder', 'lightbox', 'niftycube', 'handle_rounded_corners', 'jquery', 'jqModal', , 'jquery.growl.js' -%>
<%= javascript_include_tag :defaults, 'effects', 'builder', 'lightbox', 'niftycube', 'handle_rounded_corners', 'jquery', 'jqModal', 'jquery.growl.js', 'ansuz/growls' -%>
<!--[if lt IE 7.]><%= javascript_include_tag 'pngfix.js' %><![endif]-->
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion app/views/page/_top_nav.html.erb
Expand Up @@ -9,5 +9,5 @@
</li>
<% end %>
</ul>
<%= render :partial => "page_plugins/plugins_nav" -%>
<%= render :partial => "/admin/page_plugins/plugins_nav" -%>
</div>
3 changes: 2 additions & 1 deletion config/routes.rb
Expand Up @@ -6,11 +6,12 @@

map.resources :users
map.namespace :admin do |admin|
admin.resources :pages
admin.resources :pages, :member => [:shift_order]
admin.resources :page_plugins
admin.resources :plugins
admin.resource :account
admin.connect 'account/:action/:id', :controller => 'account'
admin.resource :site_settings
end
map.connect '/admin', :controller => 'admin/pages'

Expand Down
14 changes: 14 additions & 0 deletions db/migrate/20080913132029_create_site_settings.rb
@@ -0,0 +1,14 @@
class CreateSiteSettings < ActiveRecord::Migration
def self.up
create_table :site_settings do |t|
t.string :name
t.string :user_theme_name

t.timestamps
end
end

def self.down
drop_table :site_settings
end
end
13 changes: 13 additions & 0 deletions lib/site_settings_helper.rb
@@ -0,0 +1,13 @@
module SiteSettingsHelper
def get_setting(name)
settings.send(name)
end

def get_theme_setting
settings.get_theme_setting
end

def settings
SiteSetting.find_or_create_by_name(:default)
end
end
2 changes: 1 addition & 1 deletion lib/tasks/utils.rake
Expand Up @@ -10,4 +10,4 @@ namespace :utils do
puts "Initial user already exists, exiting"
end
end
end
end
9 changes: 9 additions & 0 deletions lib/themes_management_helper.rb
@@ -0,0 +1,9 @@
module ThemesManagementHelper
def list_themes
themes_dir.entries.sort.delete_if{|e| e =~ /^\.$|^\.\.$/ }
end

def themes_dir
Dir.new("#{RAILS_ROOT}/themes")
end
end
Binary file added public/images/famfamfam_icons/accept.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/famfamfam_icons/add.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/famfamfam_icons/anchor.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/famfamfam_icons/application.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/famfamfam_icons/application_add.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/famfamfam_icons/application_delete.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/famfamfam_icons/application_double.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/famfamfam_icons/application_edit.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/famfamfam_icons/application_error.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/famfamfam_icons/application_form.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/famfamfam_icons/application_get.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/famfamfam_icons/application_go.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/famfamfam_icons/application_home.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/famfamfam_icons/application_key.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/famfamfam_icons/application_link.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/famfamfam_icons/application_osx.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/famfamfam_icons/application_put.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/famfamfam_icons/application_split.png
Binary file added public/images/famfamfam_icons/application_xp.png
Binary file added public/images/famfamfam_icons/arrow_branch.png
Binary file added public/images/famfamfam_icons/arrow_divide.png
Binary file added public/images/famfamfam_icons/arrow_down.png
Binary file added public/images/famfamfam_icons/arrow_down_merge.png
Binary file added public/images/famfamfam_icons/arrow_in.png
Binary file added public/images/famfamfam_icons/arrow_inout.png
Binary file added public/images/famfamfam_icons/arrow_join.png
Binary file added public/images/famfamfam_icons/arrow_left.png
Binary file added public/images/famfamfam_icons/arrow_merge.png
Binary file added public/images/famfamfam_icons/arrow_out.png
Binary file added public/images/famfamfam_icons/arrow_redo.png
Binary file added public/images/famfamfam_icons/arrow_refresh.png
Binary file added public/images/famfamfam_icons/arrow_right.png
Binary file added public/images/famfamfam_icons/arrow_switch.png
Binary file added public/images/famfamfam_icons/arrow_turn_left.png
Binary file added public/images/famfamfam_icons/arrow_turn_right.png
Binary file added public/images/famfamfam_icons/arrow_undo.png
Binary file added public/images/famfamfam_icons/arrow_up.png
Binary file added public/images/famfamfam_icons/asterisk_orange.png
Binary file added public/images/famfamfam_icons/asterisk_yellow.png
Binary file added public/images/famfamfam_icons/attach.png
Binary file added public/images/famfamfam_icons/basket.png
Binary file added public/images/famfamfam_icons/basket_add.png
Binary file added public/images/famfamfam_icons/basket_delete.png
Binary file added public/images/famfamfam_icons/basket_edit.png
Binary file added public/images/famfamfam_icons/basket_error.png
Binary file added public/images/famfamfam_icons/basket_go.png
Binary file added public/images/famfamfam_icons/basket_put.png
Binary file added public/images/famfamfam_icons/basket_remove.png
Binary file added public/images/famfamfam_icons/bell.png
Binary file added public/images/famfamfam_icons/bell_add.png
Binary file added public/images/famfamfam_icons/bell_delete.png
Binary file added public/images/famfamfam_icons/bell_error.png
Binary file added public/images/famfamfam_icons/bell_go.png
Binary file added public/images/famfamfam_icons/bell_link.png
Binary file added public/images/famfamfam_icons/bin.png
Binary file added public/images/famfamfam_icons/bin_closed.png
Binary file added public/images/famfamfam_icons/bin_empty.png
Binary file added public/images/famfamfam_icons/bomb.png
Binary file added public/images/famfamfam_icons/book.png
Binary file added public/images/famfamfam_icons/book_add.png
Binary file added public/images/famfamfam_icons/book_addresses.png
Binary file added public/images/famfamfam_icons/book_delete.png
Binary file added public/images/famfamfam_icons/book_edit.png
Binary file added public/images/famfamfam_icons/book_error.png
Binary file added public/images/famfamfam_icons/book_go.png
Binary file added public/images/famfamfam_icons/book_key.png
Binary file added public/images/famfamfam_icons/book_link.png
Binary file added public/images/famfamfam_icons/book_next.png
Binary file added public/images/famfamfam_icons/book_open.png
Binary file added public/images/famfamfam_icons/book_previous.png
Binary file added public/images/famfamfam_icons/box.png
Binary file added public/images/famfamfam_icons/brick.png
Binary file added public/images/famfamfam_icons/brick_add.png
Binary file added public/images/famfamfam_icons/brick_delete.png
Binary file added public/images/famfamfam_icons/brick_edit.png
Binary file added public/images/famfamfam_icons/brick_error.png
Binary file added public/images/famfamfam_icons/brick_go.png
Binary file added public/images/famfamfam_icons/brick_link.png
Binary file added public/images/famfamfam_icons/bricks.png
Binary file added public/images/famfamfam_icons/briefcase.png
Binary file added public/images/famfamfam_icons/building.png
Binary file added public/images/famfamfam_icons/building_add.png
Binary file added public/images/famfamfam_icons/building_delete.png
Binary file added public/images/famfamfam_icons/building_edit.png
Binary file added public/images/famfamfam_icons/building_error.png
Binary file added public/images/famfamfam_icons/building_go.png
Binary file added public/images/famfamfam_icons/building_key.png
Binary file added public/images/famfamfam_icons/building_link.png
Binary file added public/images/famfamfam_icons/bullet_add.png
Binary file added public/images/famfamfam_icons/bullet_arrow_down.png
Binary file added public/images/famfamfam_icons/bullet_arrow_top.png
Binary file added public/images/famfamfam_icons/bullet_arrow_up.png
Binary file added public/images/famfamfam_icons/bullet_black.png
Binary file added public/images/famfamfam_icons/bullet_blue.png
Binary file added public/images/famfamfam_icons/bullet_delete.png
Binary file added public/images/famfamfam_icons/bullet_disk.png
Binary file added public/images/famfamfam_icons/bullet_error.png
Binary file added public/images/famfamfam_icons/bullet_feed.png
Binary file added public/images/famfamfam_icons/bullet_go.png
Binary file added public/images/famfamfam_icons/bullet_green.png
Binary file added public/images/famfamfam_icons/bullet_key.png
Binary file added public/images/famfamfam_icons/bullet_orange.png
Binary file added public/images/famfamfam_icons/bullet_picture.png
Binary file added public/images/famfamfam_icons/bullet_pink.png
Binary file added public/images/famfamfam_icons/bullet_purple.png
Binary file added public/images/famfamfam_icons/bullet_red.png
Binary file added public/images/famfamfam_icons/bullet_star.png
Binary file added public/images/famfamfam_icons/bullet_toggle_plus.png
Binary file added public/images/famfamfam_icons/bullet_white.png
Binary file added public/images/famfamfam_icons/bullet_wrench.png
Binary file added public/images/famfamfam_icons/bullet_yellow.png
Binary file added public/images/famfamfam_icons/cake.png
Binary file added public/images/famfamfam_icons/calculator.png
Binary file added public/images/famfamfam_icons/calculator_add.png
Binary file added public/images/famfamfam_icons/calculator_delete.png
Binary file added public/images/famfamfam_icons/calculator_edit.png
Binary file added public/images/famfamfam_icons/calculator_error.png
Binary file added public/images/famfamfam_icons/calculator_link.png
Binary file added public/images/famfamfam_icons/calendar.png
Binary file added public/images/famfamfam_icons/calendar_add.png
Binary file added public/images/famfamfam_icons/calendar_delete.png
Binary file added public/images/famfamfam_icons/calendar_edit.png
Binary file added public/images/famfamfam_icons/calendar_link.png
Binary file added public/images/famfamfam_icons/calendar_view_day.png
Binary file added public/images/famfamfam_icons/calendar_view_week.png
Binary file added public/images/famfamfam_icons/camera.png
Binary file added public/images/famfamfam_icons/camera_add.png
Binary file added public/images/famfamfam_icons/camera_delete.png
Binary file added public/images/famfamfam_icons/camera_edit.png
Binary file added public/images/famfamfam_icons/camera_error.png
Binary file added public/images/famfamfam_icons/camera_go.png
Binary file added public/images/famfamfam_icons/camera_link.png
Binary file added public/images/famfamfam_icons/camera_small.png
Binary file added public/images/famfamfam_icons/cancel.png
Binary file added public/images/famfamfam_icons/car.png
Binary file added public/images/famfamfam_icons/car_add.png
Binary file added public/images/famfamfam_icons/car_delete.png
Binary file added public/images/famfamfam_icons/cart.png
Binary file added public/images/famfamfam_icons/cart_add.png
Binary file added public/images/famfamfam_icons/cart_delete.png
Binary file added public/images/famfamfam_icons/cart_edit.png
Binary file added public/images/famfamfam_icons/cart_error.png
Binary file added public/images/famfamfam_icons/cart_go.png
Binary file added public/images/famfamfam_icons/cart_put.png
Binary file added public/images/famfamfam_icons/cart_remove.png
Binary file added public/images/famfamfam_icons/cd.png
Binary file added public/images/famfamfam_icons/cd_add.png
Binary file added public/images/famfamfam_icons/cd_burn.png
Binary file added public/images/famfamfam_icons/cd_delete.png
Binary file added public/images/famfamfam_icons/cd_edit.png
Binary file added public/images/famfamfam_icons/cd_eject.png
Binary file added public/images/famfamfam_icons/cd_go.png
Binary file added public/images/famfamfam_icons/chart_bar.png
Binary file added public/images/famfamfam_icons/chart_bar_add.png
Binary file added public/images/famfamfam_icons/chart_bar_delete.png
Binary file added public/images/famfamfam_icons/chart_bar_edit.png
Binary file added public/images/famfamfam_icons/chart_bar_error.png
Binary file added public/images/famfamfam_icons/chart_bar_link.png
Binary file added public/images/famfamfam_icons/chart_curve.png
Binary file added public/images/famfamfam_icons/chart_curve_add.png
Binary file added public/images/famfamfam_icons/chart_curve_delete.png
Binary file added public/images/famfamfam_icons/chart_curve_edit.png
Binary file added public/images/famfamfam_icons/chart_curve_error.png
Binary file added public/images/famfamfam_icons/chart_curve_go.png
Binary file added public/images/famfamfam_icons/chart_curve_link.png
Binary file added public/images/famfamfam_icons/chart_line.png
Binary file added public/images/famfamfam_icons/chart_line_add.png
Binary file added public/images/famfamfam_icons/chart_line_delete.png
Binary file added public/images/famfamfam_icons/chart_line_edit.png
Binary file added public/images/famfamfam_icons/chart_line_error.png
Binary file added public/images/famfamfam_icons/chart_line_link.png
Binary file added public/images/famfamfam_icons/chart_organisation.png
Binary file added public/images/famfamfam_icons/chart_pie.png
Binary file added public/images/famfamfam_icons/chart_pie_add.png
Binary file added public/images/famfamfam_icons/chart_pie_delete.png
Binary file added public/images/famfamfam_icons/chart_pie_edit.png
Binary file added public/images/famfamfam_icons/chart_pie_error.png
Binary file added public/images/famfamfam_icons/chart_pie_link.png
Binary file added public/images/famfamfam_icons/clock.png
Binary file added public/images/famfamfam_icons/clock_add.png
Binary file added public/images/famfamfam_icons/clock_delete.png
Binary file added public/images/famfamfam_icons/clock_edit.png
Binary file added public/images/famfamfam_icons/clock_error.png
Binary file added public/images/famfamfam_icons/clock_go.png
Binary file added public/images/famfamfam_icons/clock_link.png
Binary file added public/images/famfamfam_icons/clock_pause.png
Binary file added public/images/famfamfam_icons/clock_play.png
Binary file added public/images/famfamfam_icons/clock_red.png
Binary file added public/images/famfamfam_icons/clock_stop.png
Binary file added public/images/famfamfam_icons/cog.png
Binary file added public/images/famfamfam_icons/cog_add.png
Binary file added public/images/famfamfam_icons/cog_delete.png
Binary file added public/images/famfamfam_icons/cog_edit.png
Binary file added public/images/famfamfam_icons/cog_error.png
Binary file added public/images/famfamfam_icons/cog_go.png
Binary file added public/images/famfamfam_icons/coins.png
Binary file added public/images/famfamfam_icons/coins_add.png
Binary file added public/images/famfamfam_icons/coins_delete.png
Binary file added public/images/famfamfam_icons/color_swatch.png
Binary file added public/images/famfamfam_icons/color_wheel.png
Binary file added public/images/famfamfam_icons/comment.png
Binary file added public/images/famfamfam_icons/comment_add.png
Binary file added public/images/famfamfam_icons/comment_delete.png
Binary file added public/images/famfamfam_icons/comment_edit.png
Binary file added public/images/famfamfam_icons/comments.png
Binary file added public/images/famfamfam_icons/comments_add.png
Binary file added public/images/famfamfam_icons/comments_delete.png
Binary file added public/images/famfamfam_icons/compress.png
Binary file added public/images/famfamfam_icons/computer.png
Binary file added public/images/famfamfam_icons/computer_add.png
Binary file added public/images/famfamfam_icons/computer_delete.png
Binary file added public/images/famfamfam_icons/computer_edit.png
Binary file added public/images/famfamfam_icons/computer_error.png
Binary file added public/images/famfamfam_icons/computer_go.png
Binary file added public/images/famfamfam_icons/computer_key.png
Binary file added public/images/famfamfam_icons/computer_link.png
Binary file added public/images/famfamfam_icons/connect.png
Binary file added public/images/famfamfam_icons/contrast.png
Binary file added public/images/famfamfam_icons/contrast_decrease.png
Binary file added public/images/famfamfam_icons/contrast_high.png
Binary file added public/images/famfamfam_icons/contrast_increase.png
Binary file added public/images/famfamfam_icons/contrast_low.png
Binary file added public/images/famfamfam_icons/creditcards.png
Binary file added public/images/famfamfam_icons/cross.png
Binary file added public/images/famfamfam_icons/css.png
Binary file added public/images/famfamfam_icons/css_add.png
Binary file added public/images/famfamfam_icons/css_delete.png
Binary file added public/images/famfamfam_icons/css_go.png
Binary file added public/images/famfamfam_icons/css_valid.png
Binary file added public/images/famfamfam_icons/cup.png
Binary file added public/images/famfamfam_icons/cup_add.png
Binary file added public/images/famfamfam_icons/cup_delete.png
Binary file added public/images/famfamfam_icons/cup_edit.png
Binary file added public/images/famfamfam_icons/cup_error.png
Binary file added public/images/famfamfam_icons/cup_go.png
Binary file added public/images/famfamfam_icons/cup_key.png
Binary file added public/images/famfamfam_icons/cup_link.png
Binary file added public/images/famfamfam_icons/cursor.png
Binary file added public/images/famfamfam_icons/cut.png
Binary file added public/images/famfamfam_icons/cut_red.png
Binary file added public/images/famfamfam_icons/database.png
Binary file added public/images/famfamfam_icons/database_add.png
Binary file added public/images/famfamfam_icons/database_connect.png
Binary file added public/images/famfamfam_icons/database_delete.png
Binary file added public/images/famfamfam_icons/database_edit.png
Binary file added public/images/famfamfam_icons/database_error.png
Binary file added public/images/famfamfam_icons/database_gear.png

0 comments on commit b1e028e

Please sign in to comment.