commit 8f3164027bd9a5d240244d8be0d2c7e83b63a674 Author: Connor Turland Date: Sat Sep 22 22:39:12 2012 -0400 added all files diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..eb3489a9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +# See http://help.github.com/ignore-files/ for more about ignoring files. +# +# If you find yourself ignoring temporary files generated by your text editor +# or operating system, you probably want to add a global ignore instead: +# git config --global core.excludesfile ~/.gitignore_global + +# Ignore bundler config +/.bundle + +# Ignore the default SQLite database. +/db/*.sqlite3 + +# Ignore all logfiles and tempfiles. +/log/*.log +/tmp diff --git a/Gemfile b/Gemfile new file mode 100644 index 00000000..53318cf6 --- /dev/null +++ b/Gemfile @@ -0,0 +1,42 @@ +source 'https://rubygems.org' + +gem 'rails', '3.2.1' + +# Bundle edge Rails instead: +# gem 'rails', :git => 'git://github.com/rails/rails.git' + +gem 'pg' +gem 'authlogic' +gem 'cancan' +gem 'formula' +gem 'formtastic' + + +# Gems used only for assets and not required +# in production environments by default. +group :assets do + gem 'sass-rails', '~> 3.2.3' + gem 'coffee-rails', '~> 3.2.1' + + # See https://github.com/sstephenson/execjs#readme for more supported runtimes + # gem 'therubyracer' + + gem 'uglifier', '>= 1.0.3' +end + +gem 'jquery-rails' + +# To use ActiveModel has_secure_password +# gem 'bcrypt-ruby', '~> 3.0.0' + +# To use Jbuilder templates for JSON +# gem 'jbuilder' + +# Use unicorn as the web server +# gem 'unicorn' + +# Deploy with Capistrano +# gem 'capistrano' + +# To use debugger +# gem 'ruby-debug19', :require => 'ruby-debug' diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 00000000..63866d32 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,123 @@ +GEM + remote: https://rubygems.org/ + specs: + actionmailer (3.2.1) + actionpack (= 3.2.1) + mail (~> 2.4.0) + actionpack (3.2.1) + activemodel (= 3.2.1) + activesupport (= 3.2.1) + builder (~> 3.0.0) + erubis (~> 2.7.0) + journey (~> 1.0.1) + rack (~> 1.4.0) + rack-cache (~> 1.1) + rack-test (~> 0.6.1) + sprockets (~> 2.1.2) + activemodel (3.2.1) + activesupport (= 3.2.1) + builder (~> 3.0.0) + activerecord (3.2.1) + activemodel (= 3.2.1) + activesupport (= 3.2.1) + arel (~> 3.0.0) + tzinfo (~> 0.3.29) + activeresource (3.2.1) + activemodel (= 3.2.1) + activesupport (= 3.2.1) + activesupport (3.2.1) + i18n (~> 0.6) + multi_json (~> 1.0) + arel (3.0.2) + authlogic (3.1.0) + activerecord (>= 3.0.7) + activerecord (>= 3.0.7) + builder (3.0.3) + cancan (1.6.7) + coffee-rails (3.2.2) + coffee-script (>= 2.2.0) + railties (~> 3.2.0) + coffee-script (2.2.0) + coffee-script-source + execjs + coffee-script-source (1.3.3) + erubis (2.7.0) + execjs (1.4.0) + multi_json (~> 1.0) + formtastic (2.0.2) + rails (~> 3.0) + formula (0.3.3) + rails (> 3.0.0) + hike (1.2.1) + i18n (0.6.1) + journey (1.0.4) + jquery-rails (2.1.2) + railties (>= 3.1.0, < 5.0) + thor (~> 0.14) + json (1.7.5) + mail (2.4.4) + i18n (>= 0.4.0) + mime-types (~> 1.16) + treetop (~> 1.4.8) + mime-types (1.19) + multi_json (1.3.6) + pg (0.12.2-x86-mingw32) + polyglot (0.3.3) + rack (1.4.1) + rack-cache (1.2) + rack (>= 0.4) + rack-ssl (1.3.2) + rack + rack-test (0.6.1) + rack (>= 1.0) + rails (3.2.1) + actionmailer (= 3.2.1) + actionpack (= 3.2.1) + activerecord (= 3.2.1) + activeresource (= 3.2.1) + activesupport (= 3.2.1) + bundler (~> 1.0) + railties (= 3.2.1) + railties (3.2.1) + actionpack (= 3.2.1) + activesupport (= 3.2.1) + rack-ssl (~> 1.3.2) + rake (>= 0.8.7) + rdoc (~> 3.4) + thor (~> 0.14.6) + rake (0.9.2.2) + rdoc (3.12) + json (~> 1.4) + sass (3.2.1) + sass-rails (3.2.5) + railties (~> 3.2.0) + sass (>= 3.1.10) + tilt (~> 1.3) + sprockets (2.1.3) + hike (~> 1.2) + rack (~> 1.0) + tilt (~> 1.1, != 1.3.0) + thor (0.14.6) + tilt (1.3.3) + treetop (1.4.10) + polyglot + polyglot (>= 0.3.1) + tzinfo (0.3.33) + uglifier (1.3.0) + execjs (>= 0.3.0) + multi_json (>= 1.0.2, ~> 1.0) + +PLATFORMS + x86-mingw32 + +DEPENDENCIES + authlogic + cancan + coffee-rails (~> 3.2.1) + formtastic + formula + jquery-rails + pg + rails (= 3.2.1) + sass-rails (~> 3.2.3) + uglifier (>= 1.0.3) diff --git a/README.rdoc b/README.rdoc new file mode 100644 index 00000000..7c36f235 --- /dev/null +++ b/README.rdoc @@ -0,0 +1,261 @@ +== Welcome to Rails + +Rails is a web-application framework that includes everything needed to create +database-backed web applications according to the Model-View-Control pattern. + +This pattern splits the view (also called the presentation) into "dumb" +templates that are primarily responsible for inserting pre-built data in between +HTML tags. The model contains the "smart" domain objects (such as Account, +Product, Person, Post) that holds all the business logic and knows how to +persist themselves to a database. The controller handles the incoming requests +(such as Save New Account, Update Product, Show Post) by manipulating the model +and directing data to the view. + +In Rails, the model is handled by what's called an object-relational mapping +layer entitled Active Record. This layer allows you to present the data from +database rows as objects and embellish these data objects with business logic +methods. You can read more about Active Record in +link:files/vendor/rails/activerecord/README.html. + +The controller and view are handled by the Action Pack, which handles both +layers by its two parts: Action View and Action Controller. These two layers +are bundled in a single package due to their heavy interdependence. This is +unlike the relationship between the Active Record and Action Pack that is much +more separate. Each of these packages can be used independently outside of +Rails. You can read more about Action Pack in +link:files/vendor/rails/actionpack/README.html. + + +== Getting Started + +1. At the command prompt, create a new Rails application: + rails new myapp (where myapp is the application name) + +2. Change directory to myapp and start the web server: + cd myapp; rails server (run with --help for options) + +3. Go to http://localhost:3000/ and you'll see: + "Welcome aboard: You're riding Ruby on Rails!" + +4. Follow the guidelines to start developing your application. You can find +the following resources handy: + +* The Getting Started Guide: http://guides.rubyonrails.org/getting_started.html +* Ruby on Rails Tutorial Book: http://www.railstutorial.org/ + + +== Debugging Rails + +Sometimes your application goes wrong. Fortunately there are a lot of tools that +will help you debug it and get it back on the rails. + +First area to check is the application log files. Have "tail -f" commands +running on the server.log and development.log. Rails will automatically display +debugging and runtime information to these files. Debugging info will also be +shown in the browser on requests from 127.0.0.1. + +You can also log your own messages directly into the log file from your code +using the Ruby logger class from inside your controllers. Example: + + class WeblogController < ActionController::Base + def destroy + @weblog = Weblog.find(params[:id]) + @weblog.destroy + logger.info("#{Time.now} Destroyed Weblog ID ##{@weblog.id}!") + end + end + +The result will be a message in your log file along the lines of: + + Mon Oct 08 14:22:29 +1000 2007 Destroyed Weblog ID #1! + +More information on how to use the logger is at http://www.ruby-doc.org/core/ + +Also, Ruby documentation can be found at http://www.ruby-lang.org/. There are +several books available online as well: + +* Programming Ruby: http://www.ruby-doc.org/docs/ProgrammingRuby/ (Pickaxe) +* Learn to Program: http://pine.fm/LearnToProgram/ (a beginners guide) + +These two books will bring you up to speed on the Ruby language and also on +programming in general. + + +== Debugger + +Debugger support is available through the debugger command when you start your +Mongrel or WEBrick server with --debugger. This means that you can break out of +execution at any point in the code, investigate and change the model, and then, +resume execution! You need to install ruby-debug to run the server in debugging +mode. With gems, use sudo gem install ruby-debug. Example: + + class WeblogController < ActionController::Base + def index + @posts = Post.all + debugger + end + end + +So the controller will accept the action, run the first line, then present you +with a IRB prompt in the server window. Here you can do things like: + + >> @posts.inspect + => "[#nil, "body"=>nil, "id"=>"1"}>, + #"Rails", "body"=>"Only ten..", "id"=>"2"}>]" + >> @posts.first.title = "hello from a debugger" + => "hello from a debugger" + +...and even better, you can examine how your runtime objects actually work: + + >> f = @posts.first + => #nil, "body"=>nil, "id"=>"1"}> + >> f. + Display all 152 possibilities? (y or n) + +Finally, when you're ready to resume execution, you can enter "cont". + + +== Console + +The console is a Ruby shell, which allows you to interact with your +application's domain model. Here you'll have all parts of the application +configured, just like it is when the application is running. You can inspect +domain models, change values, and save to the database. Starting the script +without arguments will launch it in the development environment. + +To start the console, run rails console from the application +directory. + +Options: + +* Passing the -s, --sandbox argument will rollback any modifications + made to the database. +* Passing an environment name as an argument will load the corresponding + environment. Example: rails console production. + +To reload your controllers and models after launching the console run +reload! + +More information about irb can be found at: +link:http://www.rubycentral.org/pickaxe/irb.html + + +== dbconsole + +You can go to the command line of your database directly through rails +dbconsole. You would be connected to the database with the credentials +defined in database.yml. Starting the script without arguments will connect you +to the development database. Passing an argument will connect you to a different +database, like rails dbconsole production. Currently works for MySQL, +PostgreSQL and SQLite 3. + +== Description of Contents + +The default directory structure of a generated Ruby on Rails application: + + |-- app + | |-- assets + | |-- images + | |-- javascripts + | `-- stylesheets + | |-- controllers + | |-- helpers + | |-- mailers + | |-- models + | `-- views + | `-- layouts + |-- config + | |-- environments + | |-- initializers + | `-- locales + |-- db + |-- doc + |-- lib + | `-- tasks + |-- log + |-- public + |-- script + |-- test + | |-- fixtures + | |-- functional + | |-- integration + | |-- performance + | `-- unit + |-- tmp + | |-- cache + | |-- pids + | |-- sessions + | `-- sockets + `-- vendor + |-- assets + `-- stylesheets + `-- plugins + +app + Holds all the code that's specific to this particular application. + +app/assets + Contains subdirectories for images, stylesheets, and JavaScript files. + +app/controllers + Holds controllers that should be named like weblogs_controller.rb for + automated URL mapping. All controllers should descend from + ApplicationController which itself descends from ActionController::Base. + +app/models + Holds models that should be named like post.rb. Models descend from + ActiveRecord::Base by default. + +app/views + Holds the template files for the view that should be named like + weblogs/index.html.erb for the WeblogsController#index action. All views use + eRuby syntax by default. + +app/views/layouts + Holds the template files for layouts to be used with views. This models the + common header/footer method of wrapping views. In your views, define a layout + using the layout :default and create a file named default.html.erb. + Inside default.html.erb, call <% yield %> to render the view using this + layout. + +app/helpers + Holds view helpers that should be named like weblogs_helper.rb. These are + generated for you automatically when using generators for controllers. + Helpers can be used to wrap functionality for your views into methods. + +config + Configuration files for the Rails environment, the routing map, the database, + and other dependencies. + +db + Contains the database schema in schema.rb. db/migrate contains all the + sequence of Migrations for your schema. + +doc + This directory is where your application documentation will be stored when + generated using rake doc:app + +lib + Application specific libraries. Basically, any kind of custom code that + doesn't belong under controllers, models, or helpers. This directory is in + the load path. + +public + The directory available for the web server. Also contains the dispatchers and the + default HTML files. This should be set as the DOCUMENT_ROOT of your web + server. + +script + Helper scripts for automation and generation. + +test + Unit and functional tests along with fixtures. When using the rails generate + command, template test files will be generated for you and placed in this + directory. + +vendor + External libraries that the application depends on. Also includes the plugins + subdirectory. If the app has frozen rails, those gems also go here, under + vendor/rails/. This directory is in the load path. diff --git a/Rakefile b/Rakefile new file mode 100644 index 00000000..b21a66b9 --- /dev/null +++ b/Rakefile @@ -0,0 +1,7 @@ +#!/usr/bin/env rake +# Add your own tasks in files placed in lib/tasks ending in .rake, +# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. + +require File.expand_path('../config/application', __FILE__) + +ISSAD::Application.load_tasks diff --git a/app/assets/images/action.png b/app/assets/images/action.png new file mode 100644 index 00000000..91b6755c Binary files /dev/null and b/app/assets/images/action.png differ diff --git a/app/assets/images/experience.png b/app/assets/images/experience.png new file mode 100644 index 00000000..decf6f47 Binary files /dev/null and b/app/assets/images/experience.png differ diff --git a/app/assets/images/group.png b/app/assets/images/group.png new file mode 100644 index 00000000..1557b554 Binary files /dev/null and b/app/assets/images/group.png differ diff --git a/app/assets/images/idea.png b/app/assets/images/idea.png new file mode 100644 index 00000000..e9e14533 Binary files /dev/null and b/app/assets/images/idea.png differ diff --git a/app/assets/images/intention.png b/app/assets/images/intention.png new file mode 100644 index 00000000..9a177111 Binary files /dev/null and b/app/assets/images/intention.png differ diff --git a/app/assets/images/location.png b/app/assets/images/location.png new file mode 100644 index 00000000..b3481869 Binary files /dev/null and b/app/assets/images/location.png differ diff --git a/app/assets/images/opinion.png b/app/assets/images/opinion.png new file mode 100644 index 00000000..07e20f76 Binary files /dev/null and b/app/assets/images/opinion.png differ diff --git a/app/assets/images/person.png b/app/assets/images/person.png new file mode 100644 index 00000000..96e76bcc Binary files /dev/null and b/app/assets/images/person.png differ diff --git a/app/assets/images/question.png b/app/assets/images/question.png new file mode 100644 index 00000000..03115a77 Binary files /dev/null and b/app/assets/images/question.png differ diff --git a/app/assets/images/reference.png b/app/assets/images/reference.png new file mode 100644 index 00000000..67f23d87 Binary files /dev/null and b/app/assets/images/reference.png differ diff --git a/app/assets/images/resource.png b/app/assets/images/resource.png new file mode 100644 index 00000000..ca1a288d Binary files /dev/null and b/app/assets/images/resource.png differ diff --git a/app/assets/images/tool.png b/app/assets/images/tool.png new file mode 100644 index 00000000..c4cac463 Binary files /dev/null and b/app/assets/images/tool.png differ diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js new file mode 100644 index 00000000..a03e1acb --- /dev/null +++ b/app/assets/javascripts/application.js @@ -0,0 +1,19 @@ +// This is a manifest file that'll be compiled into application.js, which will include all the files +// listed below. +// +// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts, +// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path. +// +// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the +// the compiled file. +// +// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD +// GO AFTER THE REQUIRES BELOW. +// +//= require jquery +//= require jquery_ujs +//= require_tree . + + $(document).ready(function() { + $('.nodemargin').css('padding-top',$('.focus').css('height')); + }); diff --git a/app/assets/javascripts/groups.js.coffee b/app/assets/javascripts/groups.js.coffee new file mode 100644 index 00000000..76156794 --- /dev/null +++ b/app/assets/javascripts/groups.js.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/ diff --git a/app/assets/javascripts/items.js.coffee b/app/assets/javascripts/items.js.coffee new file mode 100644 index 00000000..76156794 --- /dev/null +++ b/app/assets/javascripts/items.js.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/ diff --git a/app/assets/javascripts/main.js.coffee b/app/assets/javascripts/main.js.coffee new file mode 100644 index 00000000..76156794 --- /dev/null +++ b/app/assets/javascripts/main.js.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/ diff --git a/app/assets/javascripts/people.js.coffee b/app/assets/javascripts/people.js.coffee new file mode 100644 index 00000000..76156794 --- /dev/null +++ b/app/assets/javascripts/people.js.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/ diff --git a/app/assets/javascripts/sessions.js.coffee b/app/assets/javascripts/sessions.js.coffee new file mode 100644 index 00000000..76156794 --- /dev/null +++ b/app/assets/javascripts/sessions.js.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/ diff --git a/app/assets/javascripts/users.js.coffee b/app/assets/javascripts/users.js.coffee new file mode 100644 index 00000000..76156794 --- /dev/null +++ b/app/assets/javascripts/users.js.coffee @@ -0,0 +1,3 @@ +# Place all the behaviors and hooks related to the matching controller here. +# All this logic will automatically be available in application.js. +# You can use CoffeeScript in this file: http://jashkenas.github.com/coffee-script/ diff --git a/app/assets/stylesheets/application.css b/app/assets/stylesheets/application.css new file mode 100644 index 00000000..547a4d12 --- /dev/null +++ b/app/assets/stylesheets/application.css @@ -0,0 +1,58 @@ +/* + * This is a manifest file that'll be compiled into application.css, which will include all the files + * listed below. + * + * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets, + * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path. + * + * You're free to add application-wide styles to this file and they'll appear at the top of the + * compiled file, but it's generally better to create a new file per style scope. + * + *= require_self + *= require_tree . +*/ + +/* clear styles */ +html, body, div, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, blockquote, +pre, form, fieldset, table, th, td, legend { margin: 0; padding: 0; } +img {border:0; padding:0; margin:0; display:block; text-indent:-9999px;} + +html { } +body { background:#031924; font-family:Arial, Helvetica, sans-serif; background-attachment:fixed; color:#FFF; } + +h1 {display:block; text-align:left; } +h2 {display:block; text-align:center; background: #333; font-size:24px;} + +a {color:#2d6a5d; text-decoration:none;} +.clearfloat {clear:both;} + +.contentarea p, .contentarea ul , .contentarea ol, .contentarea table {font-size:14px; line-height:1.55em; padding:0.5em 0} +.contentarea ul li {padding:0.2em 0; } +.contentarea ol li {padding:0.2em 0; } +.contentarea ul {margin:0 0 0 1em; } +.contentarea ol {margin:0 0 0 1.3em; } + +.main { } + +.headertop { display:block; position:fixed; top:0; left:0; z-index:10; height:38px; width:100%; min-width:622px; background:#000; } +#mainTitle { float: left; } +#mainTitle a { color:#FFF; } +.headertop ul { display:block; float: right; } +.headertop ul li {display:block; float:right; margin:10px 5px 0 5px; } + +.wrapper {display:block; height:100%; margin:50px 0; } + +.nodemargin { padding-top:120px; } + +.focus { position:fixed; top:0; left:0; width:90%; z-index:10; display: block; min-width:533px; margin: 50px 50px 25px 50px; background: #D1D1D1; border-radius: 20px; color:#000; border:1px solid #000; } +.focusleft, .focusmiddle, .focusright { display:block; float:left; } +.focusleft { width:20%; min-width:70px; text-align:center; } +.focusmiddle { display:block; width:49%; min-height:100px; border-right:2px solid #000; border-left:2px solid #000;} +.focusright { width:30%; min-width:150px; } +.focus .focusleft p { font-weight:bold; font-size:16px; line-height:20px; padding:10px 0 5px 0; } +.focus .focusright p { font-weight:bold; font-size:16px; line-height:20px; padding:10px 0 5px 10px; } +.focus .icon { margin:0 auto; } +.focus .title { font-size:22px; line-height:25px; border-bottom:2px solid #000; padding:10px; } +.focus .desc { font-style:italic; padding:10px; } +.focus .desc h3 { font-style:normal; } +.focus .link { padding:0 0 0 10px; display:block; width:90%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } diff --git a/app/assets/stylesheets/groups.css.scss b/app/assets/stylesheets/groups.css.scss new file mode 100644 index 00000000..ebfd0b05 --- /dev/null +++ b/app/assets/stylesheets/groups.css.scss @@ -0,0 +1,16 @@ +// Place all the styles related to the groups controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ + +.group { display:block; float:left; position:relative; width:155px; height:265px; padding:10px 10px 10px 35px; background:#d1d1d1; border-radius:15px; margin:15px 0 15px 50px; color:#000; } + +.group .icon { position:absolute; top:117px; left:-25px; } + +.group .title { font-size:22px; line-height:25px; display:block; border-bottom:2px solid #000; padding-bottom:5px; } + +.group .desc { font-style:italic; } +.group .desc h3 { font-style:normal; margin-top:5px; } + +.group .link { position:absolute; width:155px; top:260px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } + + diff --git a/app/assets/stylesheets/items.css.scss b/app/assets/stylesheets/items.css.scss new file mode 100644 index 00000000..dab98508 --- /dev/null +++ b/app/assets/stylesheets/items.css.scss @@ -0,0 +1,15 @@ +// Place all the styles related to the items controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ + +.item { display:block; float:left; position:relative; width:155px; height:265px; padding:10px 10px 10px 35px; background:#d1d1d1; border-radius:15px; margin:15px 0 15px 50px; color:#000; } + +.item .icon { position:absolute; top:117px; left:-25px; } + +.item .title { font-size:22px; line-height:25px; display:block; border-bottom:2px solid #000; padding-bottom:5px; } + +.item .desc { font-style:italic; } +.item .desc h3 { font-style:normal; margin-top:5px; } + +.item .link { position:absolute; width:155px; top:260px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } + diff --git a/app/assets/stylesheets/main.css.scss b/app/assets/stylesheets/main.css.scss new file mode 100644 index 00000000..a0d94c17 --- /dev/null +++ b/app/assets/stylesheets/main.css.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the main controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/assets/stylesheets/people.css.scss b/app/assets/stylesheets/people.css.scss new file mode 100644 index 00000000..c9b8e210 --- /dev/null +++ b/app/assets/stylesheets/people.css.scss @@ -0,0 +1,14 @@ +// Place all the styles related to the people controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ + +.person { display:block; float:left; position:relative; width:155px; height:265px; padding:10px 10px 10px 35px; background:#d1d1d1; border-radius:15px; margin:15px 0 15px 50px; color:#000; } + +.person .icon { position:absolute; top:117px; left:-25px; } + +.person .title { font-size:22px; line-height:25px; display:block; border-bottom:2px solid #000; padding-bottom:5px; } + +.person .desc { font-style:italic; } +.person .desc h3 { font-style:normal; margin-top:5px; } + +.person .link { position:absolute; width:155px; top:260px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } \ No newline at end of file diff --git a/app/assets/stylesheets/sessions.css.scss b/app/assets/stylesheets/sessions.css.scss new file mode 100644 index 00000000..7bef9cf8 --- /dev/null +++ b/app/assets/stylesheets/sessions.css.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the sessions controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/assets/stylesheets/users.css.scss b/app/assets/stylesheets/users.css.scss new file mode 100644 index 00000000..1efc835c --- /dev/null +++ b/app/assets/stylesheets/users.css.scss @@ -0,0 +1,3 @@ +// Place all the styles related to the users controller here. +// They will automatically be included in application.css. +// You can use Sass (SCSS) here: http://sass-lang.com/ diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb new file mode 100644 index 00000000..067bda4a --- /dev/null +++ b/app/controllers/application_controller.rb @@ -0,0 +1,54 @@ +class ApplicationController < ActionController::Base + protect_from_forgery + + helper_method :user + helper_method :authenticated? + +private + + def require_no_user + if authenticated? + flash[:warning] = "You must be logged out." + store and redirect_to edit_user_path + return false + end + end + + def require_user + unless authenticated? + flash[:warning] = "You must be logged in." + store and redirect_to new_user_path + return false + end + end + + def current_user + return @current_user if defined?(@current_user) + @current_user = current_session && current_session.user + end + + def current_session + return @current_session if defined?(@current_session) + @current_session = Session.find + end + + def user + current_user + end + + + def authenticated? + current_user + end + + def store + session[:location] = request.fullpath + end + + def restore(options) + location = session[:location] || options[:default] + session[:location] = nil + return location + end + +end diff --git a/app/controllers/groups_controller.rb b/app/controllers/groups_controller.rb new file mode 100644 index 00000000..d76430be --- /dev/null +++ b/app/controllers/groups_controller.rb @@ -0,0 +1,77 @@ +class GroupsController < ApplicationController + + before_filter :require_user, only: [:new, :create, :edit, :update] + + respond_to :html, :js, :json + + # GET /groups + def index + @user = current_user + @groups = Group.all + + respond_with(@groups) + end + + # Get /groups/new + def new + @group = Group.new + @user = current_user + + respond_with(@group) + end + + # GET /groups/:id + def show + @group = Group.find(params[:id]) + + @gparents = @group.parent_groups + @gchildren = @group.child_groups + @pchildren = @group.people + @ichildren = @group.items + + respond_with(@group, @gparents, @gchildren, @pchildren, @ichildren) + end + + # POST /groups + def create + + @user = current_user + @group = Group.create(params[:group]) + @group.user = @user + + @group.save + + respond_to do |format| + format.html {render :index} + format.js { respond_with(@group) } + end + + end + + # GET /groups/:id/edit + def edit + @group = Group.find_by_id(params[:id]) + + respond_with(@group) + end + + # PUT /groups/:id + def update + @user = current_user + @group = Group.find_by_id(params[:id]) + @group.attributes = params[:group] if @group + + @group.save if @group + + respond_with(@user, location: restore(default: root_url)) do |format| + end + end + + # DELETE /groups/:id + def destroy + @group = Group.find_by_id(params[:id]) + + @group.delete + end + +end diff --git a/app/controllers/items_controller.rb b/app/controllers/items_controller.rb new file mode 100644 index 00000000..f9aded64 --- /dev/null +++ b/app/controllers/items_controller.rb @@ -0,0 +1,81 @@ +class ItemsController < ApplicationController + + before_filter :require_user, only: [:new, :create, :edit, :update] + + respond_to :html, :js, :json + + # GET /items + def index + @user = current_user + @items = Item.all + + respond_with(@items) + end + + # Get /item/new + def new + @item = Item.new + @user = current_user + + respond_with(@item) + end + + # GET /item/:id + def show + @item = Item.find(params[:id]) + + @gparents = @item.groups + @pparents = @item.people + @iparents = @item.parent_items + @ichildren = @item.child_items + + respond_with(@item, @gparents, @pparents, @iparents, @ichildren) + end + + # POST /items + def create + + @user = current_user + @item = Item.new() + @item.name = params[:item][:name] + @item.desc = params[:item][:desc] + @item.link = params[:item][:link] + @item.item_category = ItemCategory.find(params[:category]) + @item.user = @user + + @item.save + + respond_to do |format| + format.html {render :index} + format.js { respond_with(@item) } + end + + end + + # GET /items/:id/edit + def edit + @item = Item.find_by_id(params[:id]) + + respond_with(@item) + end + + # PUT /actions/:id + def update + @user = current_user + @item = Item.find_by_id(params[:id]) + @item.attributes = params[:action] if @item + + @item.save if @item + + respond_with(@user, location: restore(default: root_url)) do |format| + end + end + + # DELETE /actions/:id + def destroy + @item = Item.find_by_id(params[:id]) + + @item.delete + end + +end diff --git a/app/controllers/main_controller.rb b/app/controllers/main_controller.rb new file mode 100644 index 00000000..de3e4546 --- /dev/null +++ b/app/controllers/main_controller.rb @@ -0,0 +1,13 @@ +class MainController < ApplicationController + + respond_to :html, :js, :json + + def home + @current_user = current_user + + @all = Group.all + Person.all + Item.all + + respond_with(@all) + end + +end diff --git a/app/controllers/people_controller.rb b/app/controllers/people_controller.rb new file mode 100644 index 00000000..b48d9697 --- /dev/null +++ b/app/controllers/people_controller.rb @@ -0,0 +1,86 @@ +class PeopleController < ApplicationController + + before_filter :require_user, only: [:new, :create, :edit, :update] + + respond_to :html, :js, :json + + # GET /people + def index + @user = current_user + @people = Person.all + + respond_with(@people) + end + + # Get /people/new + def new + @person = Person.new + @user = current_user + + respond_with(@person) + end + + # GET /people/:id + def show + @person = Person.find(params[:id]) + + @gparents = @person.groups + @ichildren = @person.items + + respond_with(@person, @gparents, @ichildren) + end + + # POST /people + def create + + @user = current_user + @person = Person.new() + @person.name = params[:person][:name] + @person.desc = params[:person][:desc] + @person.link = params[:person][:link] + @person.user = @user + + @person.save + + @groups = Group.find(params[:ingroups]) + @groups.each do |g| + belongs = Groupperson.new + belongs.group_id = g.id + belongs.person_id = @person.id + belongs.save! + end + + respond_to do |format| + format.html {render :index} + format.js { respond_with(@person) } + end + + end + + # GET /people/:id/edit + def edit + @person = Person.find_by_id(params[:id]) + + respond_with(@person) + end + + # PUT /people/:id + def update + @user = current_user + @person = Person.find_by_id(params[:id]) + @person.attributes = params[:person] if @person + + @person.save if @person + + respond_with(@user, location: restore(default: root_url)) do |format| + end + end + + # DELETE /people/:id + def destroy + @person = Person.find_by_id(params[:id]) + + @person.delete + end + +end diff --git a/app/controllers/sessions_controller.rb b/app/controllers/sessions_controller.rb new file mode 100644 index 00000000..edce363d --- /dev/null +++ b/app/controllers/sessions_controller.rb @@ -0,0 +1,41 @@ +class SessionsController < ApplicationController + + before_filter :require_no_user, only: [:new, :create] + before_filter :require_user, only: [:destroy] + + respond_to :html, :json + + def show + end + + # GET /session/new + def new + @session = Session.new + + + respond_with(@session) + end + + # POST /session + def create + @session = Session.create(params[:session]) + + @user = User.new + + respond_with(@user, @session, location: restore(default: root_url)) do |format| + + end + end + + # DELETE /session + def destroy + @session = Session.find + @session.destroy + + respond_to do |format| + format.html { respond_with(@session, location: restore(default: root_url)) } + end + + end + +end diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb new file mode 100644 index 00000000..3f67c1f1 --- /dev/null +++ b/app/controllers/users_controller.rb @@ -0,0 +1,54 @@ +class UsersController < ApplicationController + + before_filter :require_no_user, only: [:new, :create] + before_filter :require_user, only: [:edit, :show, :update] + + respond_to :html, :json + + # GET /user/new + def new + @user = User.new + + respond_with(@user) + end + + # GET /user/edit + def edit + @user = current_user + + respond_with(@user) + end + + # GET /user + def show + @user = current_user + + respond_with(@user) + end + + # POST /user + def create + @session = Session.create(params[:user]) + + redirect_to(root_url) and return if @session.valid? + + @user = User.create(params[:user]) + + @user.save + + respond_with(@user, location: restore(default: root_url)) do |format| + end + end + + # PUT /user + def update + @user = current_user + @user.attributes = params[:user] + + @user.save + + respond_with(@user, location: restore(default: root_url)) do |format| + end + end + +end diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb new file mode 100644 index 00000000..de6be794 --- /dev/null +++ b/app/helpers/application_helper.rb @@ -0,0 +1,2 @@ +module ApplicationHelper +end diff --git a/app/helpers/groups_helper.rb b/app/helpers/groups_helper.rb new file mode 100644 index 00000000..c091b2fc --- /dev/null +++ b/app/helpers/groups_helper.rb @@ -0,0 +1,2 @@ +module GroupsHelper +end diff --git a/app/helpers/items_helper.rb b/app/helpers/items_helper.rb new file mode 100644 index 00000000..cff0c9fe --- /dev/null +++ b/app/helpers/items_helper.rb @@ -0,0 +1,2 @@ +module ItemsHelper +end diff --git a/app/helpers/main_helper.rb b/app/helpers/main_helper.rb new file mode 100644 index 00000000..826effed --- /dev/null +++ b/app/helpers/main_helper.rb @@ -0,0 +1,2 @@ +module MainHelper +end diff --git a/app/helpers/people_helper.rb b/app/helpers/people_helper.rb new file mode 100644 index 00000000..b682fbf1 --- /dev/null +++ b/app/helpers/people_helper.rb @@ -0,0 +1,2 @@ +module PeopleHelper +end diff --git a/app/helpers/sessions_helper.rb b/app/helpers/sessions_helper.rb new file mode 100644 index 00000000..309f8b2e --- /dev/null +++ b/app/helpers/sessions_helper.rb @@ -0,0 +1,2 @@ +module SessionsHelper +end diff --git a/app/helpers/users_helper.rb b/app/helpers/users_helper.rb new file mode 100644 index 00000000..2310a240 --- /dev/null +++ b/app/helpers/users_helper.rb @@ -0,0 +1,2 @@ +module UsersHelper +end diff --git a/app/mailers/.gitkeep b/app/mailers/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/app/models/.gitkeep b/app/models/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/app/models/group.rb b/app/models/group.rb new file mode 100644 index 00000000..85a6776a --- /dev/null +++ b/app/models/group.rb @@ -0,0 +1,17 @@ +class Group < ActiveRecord::Base + +belongs_to :user + +has_many :groupgroup_c, :foreign_key => 'parent_group_id', :class_name => 'Groupgroup' +has_many :groupgroup_p, :foreign_key => 'group_id', :class_name => 'Groupgroup' + +has_many :grouppeople +has_many :groupitems + +has_many :child_groups, :through => :groupgroup_c, :source => :group +has_many :parent_groups, :through => :groupgroup_p, :source => :parent_group + +has_many :people, :through => :grouppeople +has_many :items, :through => :groupitems + +end diff --git a/app/models/groupgroup.rb b/app/models/groupgroup.rb new file mode 100644 index 00000000..d641f18d --- /dev/null +++ b/app/models/groupgroup.rb @@ -0,0 +1,7 @@ +class Groupgroup < ActiveRecord::Base + +belongs_to :group + +belongs_to :parent_group, :class_name => "Group", :foreign_key => "parent_group_id" + +end diff --git a/app/models/groupitem.rb b/app/models/groupitem.rb new file mode 100644 index 00000000..72b2c0e5 --- /dev/null +++ b/app/models/groupitem.rb @@ -0,0 +1,7 @@ +class Groupitem < ActiveRecord::Base + +belongs_to :group, :class_name => "Group", :foreign_key => "group_id" + +belongs_to :item, :class_name => "Item", :foreign_key => "item_id" + +end diff --git a/app/models/groupperson.rb b/app/models/groupperson.rb new file mode 100644 index 00000000..2b11c0d4 --- /dev/null +++ b/app/models/groupperson.rb @@ -0,0 +1,7 @@ +class Groupperson < ActiveRecord::Base + +belongs_to :group, :class_name => "Group", :foreign_key => "group_id" + +belongs_to :person, :class_name => "Person", :foreign_key => "person_id" + +end diff --git a/app/models/item.rb b/app/models/item.rb new file mode 100644 index 00000000..16d4a46f --- /dev/null +++ b/app/models/item.rb @@ -0,0 +1,19 @@ +class Item < ActiveRecord::Base + +belongs_to :user + +has_many :itemitem_c, :foreign_key => 'parent_item_id', :class_name => 'Itemitem' +has_many :itemitem_p, :foreign_key => 'item_id', :class_name => 'Itemitem' + +has_many :groupitems +has_many :personitems + +has_many :groups, :through => :groupitems +has_many :people, :through => :personitems + +belongs_to :item_category + +has_many :child_items, :through => :itemitem_c, :source => :item +has_many :parent_items, :through => :itemitem_p, :source => :parent_item + +end diff --git a/app/models/item_category.rb b/app/models/item_category.rb new file mode 100644 index 00000000..a2863948 --- /dev/null +++ b/app/models/item_category.rb @@ -0,0 +1,5 @@ +class ItemCategory < ActiveRecord::Base + +has_many :items + +end diff --git a/app/models/itemitem.rb b/app/models/itemitem.rb new file mode 100644 index 00000000..8d7d9fee --- /dev/null +++ b/app/models/itemitem.rb @@ -0,0 +1,7 @@ +class Itemitem < ActiveRecord::Base + +belongs_to :item + +belongs_to :parent_item, :class_name => "Item", :foreign_key => "parent_item_id" + +end diff --git a/app/models/person.rb b/app/models/person.rb new file mode 100644 index 00000000..56335233 --- /dev/null +++ b/app/models/person.rb @@ -0,0 +1,11 @@ +class Person < ActiveRecord::Base + +belongs_to :user + +has_many :grouppeople +has_many :personitems + +has_many :groups, :through => :grouppeople +has_many :items, :through => :personitems + +end diff --git a/app/models/personitem.rb b/app/models/personitem.rb new file mode 100644 index 00000000..54d96bf1 --- /dev/null +++ b/app/models/personitem.rb @@ -0,0 +1,7 @@ +class Personitem < ActiveRecord::Base + +belongs_to :person, :class_name => "Person", :foreign_key => "person_id" + +belongs_to :item, :class_name => "Item", :foreign_key => "item_id" + +end diff --git a/app/models/session.rb b/app/models/session.rb new file mode 100644 index 00000000..45ec37ba --- /dev/null +++ b/app/models/session.rb @@ -0,0 +1,5 @@ +class Session < Authlogic::Session::Base + + authenticate_with User + +end diff --git a/app/models/user.rb b/app/models/user.rb new file mode 100644 index 00000000..e10074be --- /dev/null +++ b/app/models/user.rb @@ -0,0 +1,25 @@ +require 'open-uri' + +class User < ActiveRecord::Base + +has_many :people +has_many :groups +has_many :items + + acts_as_authentic do |configuration| + configuration.session_class = Session + configuration.require_password_confirmation = false + + configuration.merge_validates_format_of_email_field_options unless: Proc.new { |user| user.email.blank? and user.authed? } + configuration.merge_validates_length_of_email_field_options unless: Proc.new { |user| user.email.blank? and user.authed? } + #configuration.merge_validates_length_of_password_field_options unless: Proc.new { |user| user.password.blank? and user.authed? } + end + + validates :password, :presence => true, + :length => {:within => 6..20}, + :on => :create + validates :password, :length => {:within => 6..20}, + :allow_blank => true, + :on => :update + +end diff --git a/app/views/groups/_group.html.erb b/app/views/groups/_group.html.erb new file mode 100644 index 00000000..0f07e4c8 --- /dev/null +++ b/app/views/groups/_group.html.erb @@ -0,0 +1,6 @@ +<%= div_for group do %> + <%= image_tag "group.png", :class => 'icon' %> + <%= link_to group.name, group_url(group), :class => 'title' %> +

About

<%= group.desc %>
+ <%= link_to group.link, group.link, :class => 'link' %> +<% end %> \ No newline at end of file diff --git a/app/views/groups/index.html.erb b/app/views/groups/index.html.erb new file mode 100644 index 00000000..e8082caa --- /dev/null +++ b/app/views/groups/index.html.erb @@ -0,0 +1,11 @@ +

Groups

+ +
+ <% @groups.each do |group| %> + <%= render group %> + <% end %> + <% if @groups.empty? %> +


Shucks, there are no groups.

+ <% end %> +

+
diff --git a/app/views/groups/new.html.erb b/app/views/groups/new.html.erb new file mode 100644 index 00000000..787b9eb2 --- /dev/null +++ b/app/views/groups/new.html.erb @@ -0,0 +1,8 @@ +<%= form_for @group || Group.new, url: groups_path do |form| %> + + <%= form.text_field :name, label: "Name", class: "name" %> + <%= form.text_field :desc, label: "Description", class: "description" %> + <%= form.text_field :link, label: "Link", class: "link" %> + <%= form.submit "Add Group", class: "add" %> + +<% end %> \ No newline at end of file diff --git a/app/views/groups/show.html.erb b/app/views/groups/show.html.erb new file mode 100644 index 00000000..eb25f2bf --- /dev/null +++ b/app/views/groups/show.html.erb @@ -0,0 +1,58 @@ +
+
+

Group

+ <%= image_tag "group.png", :class => 'icon' %> +
+
+

<%= @group.name %>

+
+

About

+

<%= @group.desc %>

+
+
+
+

Link

+ <%= link_to @group.link, @group.link, :class => 'link' %> +
+
+
+ +
+ <% @gparents.each do |group| %> + <%= render group %> + <% end %> + <% if @gparents.empty? %> +


Shucks, there are no groups.

+ <% end %> +

+
+ +
+ <% @gchildren.each do |group| %> + <%= render group %> + <% end %> + <% if @gchildren.empty? %> +


Shucks, there are no groups.

+ <% end %> +

+
+ +
+ <% @pchildren.each do |people| %> + <%= render people %> + <% end %> + <% if @pchildren.empty? %> +


Shucks, there are no people.

+ <% end %> +

+
+ +
+ <% @ichildren.each do |item| %> + <%= render item %> + <% end %> + <% if @ichildren.empty? %> +


Shucks, there are no items.

+ <% end %> +

+
\ No newline at end of file diff --git a/app/views/items/_item.html.erb b/app/views/items/_item.html.erb new file mode 100644 index 00000000..91fa231b --- /dev/null +++ b/app/views/items/_item.html.erb @@ -0,0 +1,6 @@ +<%= div_for item do %> + <%= image_tag item.item_category.icon, :class => 'icon' %> + <%= link_to item.name, item_url(item), :class => 'title' %> +

About

<%=item.desc %>
+ <%= link_to item.link, item.link, :class => 'link' %> +<% end %> \ No newline at end of file diff --git a/app/views/items/index.html.erb b/app/views/items/index.html.erb new file mode 100644 index 00000000..570e2198 --- /dev/null +++ b/app/views/items/index.html.erb @@ -0,0 +1,11 @@ +

Items

+ +
+ <% @items.each do |item| %> + <%= render item %> + <% end %> + <% if @items.empty? %> +


Shucks, there are no items.

+ <% end %> +

+
diff --git a/app/views/items/new.html.erb b/app/views/items/new.html.erb new file mode 100644 index 00000000..51a76af8 --- /dev/null +++ b/app/views/items/new.html.erb @@ -0,0 +1,8 @@ +<%= form_for @item || Item.new, url: items_path do |form| %> + <%= select_tag "category", options_from_collection_for_select(ItemCategory.all, "id", "name") %> + <%= form.text_field :name, label: "Name", class: "name" %> + <%= form.text_field :desc, label: "Description", class: "description" %> + <%= form.text_field :link, label: "Link", class: "link" %> + <%= form.submit "Add Item", class: "add" %> + +<% end %> \ No newline at end of file diff --git a/app/views/items/show.html.erb b/app/views/items/show.html.erb new file mode 100644 index 00000000..62ef5ed0 --- /dev/null +++ b/app/views/items/show.html.erb @@ -0,0 +1,59 @@ +
+ +
+

<%= @item.item_category.name %>

+ <%= image_tag @item.item_category.icon, :class => 'icon' %> +
+
+

<%= @item.name %>

+
+

About

+

<%= @item.desc %>

+
+
+
+

Link

+ <%= link_to @item.link, @item.link, :class => 'link' %> +
+
+
+ +
+ <% @gparents.each do |group| %> + <%= render group %> + <% end %> + <% if @gparents.empty? %> +


Shucks, there are no groups.

+ <% end %> +

+
+ +
+ <% @pparents.each do |person| %> + <%= render person %> + <% end %> + <% if @pparents.empty? %> +


Shucks, there are no people.

+ <% end %> +

+
+ +
+ <% @iparents.each do |item| %> + <%= render item %> + <% end %> + <% if @iparents.empty? %> +


Shucks, there are no items.

+ <% end %> +

+
+ +
+ <% @ichildren.each do |item| %> + <%= render item %> + <% end %> + <% if @ichildren.empty? %> +


Shucks, there are no items.

+ <% end %> +

+
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb new file mode 100644 index 00000000..d5d070fb --- /dev/null +++ b/app/views/layouts/application.html.erb @@ -0,0 +1,45 @@ + + + + ISSAD + <%= stylesheet_link_tag "application", :media => "all" %> + <%= stylesheet_link_tag 'style.css' %> + <%= javascript_include_tag "application" %> + <%= csrf_meta_tags %> + + + <%= content_tag :div, class: authenticated? ? "main authenticated" : "main unauthenticated" do %> + +
+

<%= link_to "ISSAD", root_path %>

 beta + <% unless authenticated? %> +
    +
  • <%= link_to "Login", new_session_path, id: "Login" %>
  • +
+ <% end %> + <% if authenticated? %> +
    +
  • <%= link_to "Logout", session_path, method: 'delete', id: "Login" %>
  • +
  • <%= link_to "New Item", new_item_path %>
  • +
  • <%= link_to "Items", items_path %>
  • +
  • <%= link_to "New Person", new_person_path %>
  • +
  • <%= link_to "People", people_path %>
  • +
  • <%= link_to "New Group", new_group_path %>
  • +
  • <%= link_to "Groups", groups_path %>
  • +
+ <% end %> +
+
+
+ <%= yield %> +
+ +