added new images and item types
BIN
app/assets/images/48px-all.zip
Normal file
BIN
app/assets/images/96px-gen001.zip
Normal file
Before ![]() (image error) Size: 8.4 KiB After ![]() (image error) Size: 7.8 KiB ![]() ![]() |
BIN
app/assets/images/activity.png
Normal file
After ![]() (image error) Size: 8.4 KiB |
BIN
app/assets/images/bizarre.png
Normal file
After ![]() (image error) Size: 8.4 KiB |
BIN
app/assets/images/catalyst.png
Normal file
After ![]() (image error) Size: 8.1 KiB |
BIN
app/assets/images/closed.png
Normal file
After ![]() (image error) Size: 8.4 KiB |
BIN
app/assets/images/futuredev.png
Normal file
After ![]() (image error) Size: 8.5 KiB |
Before ![]() (image error) Size: 8.6 KiB After ![]() (image error) Size: 8.5 KiB ![]() ![]() |
BIN
app/assets/images/implication.png
Normal file
After ![]() (image error) Size: 8 KiB |
BIN
app/assets/images/insight.png
Normal file
After ![]() (image error) Size: 8.1 KiB |
Before ![]() (image error) Size: 8.9 KiB After ![]() (image error) Size: 8.2 KiB ![]() ![]() |
BIN
app/assets/images/junto.png
Normal file
After ![]() (image error) Size: 9.6 KiB |
BIN
app/assets/images/knowledge.png
Normal file
After ![]() (image error) Size: 7.7 KiB |
Before ![]() (image error) Size: 11 KiB After ![]() (image error) Size: 8.3 KiB ![]() ![]() |
BIN
app/assets/images/old icons/action.png
Normal file
After ![]() (image error) Size: 8.4 KiB |
BIN
app/assets/images/old icons/group.png
Normal file
After ![]() (image error) Size: 8.6 KiB |
BIN
app/assets/images/old icons/intention.png
Normal file
After ![]() (image error) Size: 8.9 KiB |
BIN
app/assets/images/old icons/location.png
Normal file
After ![]() (image error) Size: 11 KiB |
BIN
app/assets/images/old icons/person.png
Normal file
After ![]() (image error) Size: 8.3 KiB |
BIN
app/assets/images/old icons/resource.png
Normal file
After ![]() (image error) Size: 8.5 KiB |
BIN
app/assets/images/openissue.png
Normal file
After ![]() (image error) Size: 8.3 KiB |
BIN
app/assets/images/opportunity.png
Normal file
After ![]() (image error) Size: 8.6 KiB |
Before ![]() (image error) Size: 8.3 KiB After ![]() (image error) Size: 7.1 KiB ![]() ![]() |
BIN
app/assets/images/platform.png
Normal file
After ![]() (image error) Size: 8.1 KiB |
BIN
app/assets/images/problem.png
Normal file
After ![]() (image error) Size: 8.6 KiB |
BIN
app/assets/images/requirement.png
Normal file
After ![]() (image error) Size: 7.8 KiB |
Before ![]() (image error) Size: 8.5 KiB After ![]() (image error) Size: 7.9 KiB ![]() ![]() |
BIN
app/assets/images/role.png
Normal file
After ![]() (image error) Size: 8 KiB |
BIN
app/assets/images/task.png
Normal file
After ![]() (image error) Size: 6.8 KiB |
BIN
app/assets/images/trajectory.png
Normal file
After ![]() (image error) Size: 8.2 KiB |
|
@ -1,7 +1,7 @@
|
|||
|
||||
<%= div_for group do %>
|
||||
<p class="type">Group</p>
|
||||
<%= image_tag "group.png", :class => 'icon' %>
|
||||
<%= image_tag "group.png", :class => 'icon', :size => '50x50' %>
|
||||
<%= link_to group.name, group_url(group), :class => 'title' %>
|
||||
<div class="desc"><p><%= group.desc %></p></div>
|
||||
<%= link_to group.link, group.link, :class => 'link' %>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<div class="focus">
|
||||
<div class="focusleft">
|
||||
<p>Group</p>
|
||||
<%= image_tag "group.png", :class => 'icon' %>
|
||||
<%= image_tag "group.png", :class => 'icon', :size => '50x50' %>
|
||||
</div>
|
||||
<div class="focusmiddle">
|
||||
<h1 class="title"><%= @group.name %> <%= link_to "[edit]", edit_group_path(@group) %></h1>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<%= div_for item do %>
|
||||
<p class="type"><%= item.item_category.name %></p>
|
||||
<%= image_tag item.item_category.icon, :class => 'icon' %>
|
||||
<%= image_tag item.item_category.icon, :class => 'icon', :size => '50x50' %>
|
||||
<%= link_to item.name, item_url(item), :class => 'title' %>
|
||||
<div class="desc"><p><%=item.desc %></p></div>
|
||||
<%= link_to item.link, item.link, :class => 'link' %>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<div class="focusleft">
|
||||
<p><%= @item.item_category.name %></p>
|
||||
<%= image_tag @item.item_category.icon, :class => 'icon' %>
|
||||
<%= image_tag @item.item_category.icon, :class => 'icon', :size => '50x50' %>
|
||||
</div>
|
||||
<div class="focusmiddle">
|
||||
<h1 class="title"><%= @item.name %> <%= link_to "[edit]", edit_item_path(@item) %></h1>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<%= div_for person do %>
|
||||
<p class="type">Person</p>
|
||||
<%= image_tag "person.png", :class => 'icon' %>
|
||||
<%= image_tag "person.png", :class => 'icon', :size => '50x50' %>
|
||||
<%= link_to person.name, person_url(person), :class => 'title' %>
|
||||
<div class="desc"><p><%=person.desc %></p></div>
|
||||
<%= link_to person.link, person.link, :class => 'link' %>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<div class="focus">
|
||||
<div class="focusleft">
|
||||
<p>Person</p>
|
||||
<%= image_tag "person.png", :class => 'icon' %>
|
||||
<%= image_tag "person.png", :class => 'icon', :size => '50x50' %>
|
||||
</div>
|
||||
<div class="focusmiddle">
|
||||
<h1 class="title"><%= @person.name %> <%= link_to "[edit]", edit_person_path(@person) %></h1>
|
||||
|
|
91
test/fixtures/item_categories.yml
vendored
|
@ -4,37 +4,110 @@ one:
|
|||
name: Action
|
||||
icon: action.png
|
||||
|
||||
two:
|
||||
two:
|
||||
name: Activity
|
||||
icon: activity.png
|
||||
|
||||
three:
|
||||
name: Bizarre
|
||||
icon: bizarre.png
|
||||
|
||||
four:
|
||||
name: Catalyst
|
||||
icon: catalyst.png
|
||||
|
||||
five:
|
||||
name: Closed
|
||||
icon: closed.png
|
||||
|
||||
six:
|
||||
name: Experience
|
||||
icon: experience.png
|
||||
|
||||
three:
|
||||
seven:
|
||||
name: Future Dev
|
||||
icon: futuredev.png
|
||||
|
||||
|
||||
eight:
|
||||
name: Idea
|
||||
icon: idea.png
|
||||
|
||||
nine:
|
||||
name: Implication
|
||||
icon: implication.png
|
||||
|
||||
ten:
|
||||
name: Insight
|
||||
icon: insight.png
|
||||
|
||||
four:
|
||||
eleven:
|
||||
name: Intention
|
||||
icon: intention.png
|
||||
|
||||
twelve:
|
||||
name: Knowledge
|
||||
icon: knowledge.png
|
||||
|
||||
thirteen:
|
||||
name: Location
|
||||
icon: location.png
|
||||
|
||||
fourteen:
|
||||
name: Open Issue
|
||||
icon: openissue.png
|
||||
|
||||
five:
|
||||
fifteen:
|
||||
name: Opinion
|
||||
icon: opinion.png
|
||||
|
||||
sixteen:
|
||||
name: Opportunity
|
||||
icon: opportunity.png
|
||||
|
||||
seventeen:
|
||||
name: Platform
|
||||
icon: platform.png
|
||||
|
||||
eighteen:
|
||||
name: Problem
|
||||
icon: problem.png
|
||||
|
||||
six:
|
||||
nineteen:
|
||||
name: Question
|
||||
icon: question.png
|
||||
|
||||
seven:
|
||||
twenty:
|
||||
name: Reference
|
||||
icon: reference.png
|
||||
|
||||
twentyone:
|
||||
name: Requirement
|
||||
icon: requirement.png
|
||||
|
||||
eight:
|
||||
twentytwo:
|
||||
name: Resource
|
||||
icon: resource.png
|
||||
|
||||
twentythree:
|
||||
name: Role
|
||||
icon: role.png
|
||||
|
||||
twentyfour:
|
||||
name: Task
|
||||
icon: task.png
|
||||
|
||||
nine:
|
||||
twentyfive:
|
||||
name: Tool
|
||||
icon: tool.png
|
||||
icon: tool.png
|
||||
|
||||
twentysix:
|
||||
name: Trajectory
|
||||
icon: trajectory.png
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
8
test/fixtures/users.yml
vendored
|
@ -7,3 +7,11 @@ connor:
|
|||
crypted_password: a5cfab00b857a0c0c82a007a5fe3a6599f60bbccb9f12eef5a3b919c22d77412b5fa2af3e18bb98d40f29d5bf28deca305320ca102adb48795d91450af3ba972
|
||||
persistence_token:
|
||||
perishable_token: 90282eaaf66e43fcff6db3c169ca20ea877adfab86c9bfe4df5f29a138ae901226195b9628d31a6ece65162814c5a3fc49c62e37f64382439473f787bdcb58cc
|
||||
|
||||
ishan:
|
||||
name: Ishan Shapiro
|
||||
email: ishanshapiro@gmail.com
|
||||
password_salt: i9vWzlSSPA3uIaer5jk
|
||||
crypted_password: a5cfab00b857a0c0c82a007a5fe3a6599f60bbccb9f12eef5a3b919c22d77412b5fa2af3e18bb98d40f29d5bf28deca305320ca102adb48795d91450af3ba972
|
||||
persistence_token:
|
||||
perishable_token: 90282eaaf66e43fcff6db3c169ca20ea877adfab86c9bfe4df5f29a138ae901226195b9628d31a6ece65162814c5a3fc49c62e37f64382439473f787bdcb58cc
|