public
Description: Adds basic social networking capabilities to your existing application, including users, blogs, photos, clippings, favorites, and more.
Homepage: http://www.communityengine.org
Clone URL: git://github.com/bborn/communityengine.git
beginnings of an install rake task, some ui stuff as well
bborn (author)
Thu May 22 14:10:29 -0700 2008
commit  291407f1204155f90b72daed1811599c97300f5b
tree    bc80acf8e8ddf643584dc2b5b629b87d4340f8ba
parent  fbd929ec6ed358c800863ab4ea972c602e46ec0a
0
...
13
14
15
 
16
17
18
...
13
14
15
16
17
18
19
0
@@ -13,6 +13,7 @@ Requirements:
0
     htmlentities
0
     redcloth
0
     rake 0.8.1
0
+ mysql
0
 
0
 GETTING COMMUNITY ENGINE RUNNING
0
 ==================================================================
...
88
89
90
 
91
92
93
...
88
89
90
91
92
93
94
0
@@ -88,6 +88,7 @@ class PostsController < BaseController
0
   def new
0
     @user = User.find(params[:user_id])
0
     @post = Post.new(params[:post])
0
+ @post.published_as = 'live'
0
   end
0
   
0
   # GET /posts/1;edit
...
5
6
7
8
 
9
10
11
...
5
6
7
 
8
9
10
11
0
@@ -5,7 +5,7 @@
0
     - when 'Favorite'
0
       = image_tag 'icons/heart.png', :plugin => 'community_engine'
0
     - when 'Photo'
0
- = image_tag 'icons/photo.png', :plugin => 'community_engine'
0
+ = image_tag 'icons/picture.png', :plugin => 'community_engine'
0
     - when 'Comment'
0
       = image_tag 'icons/comment.png', :plugin => 'community_engine'
0
     - when 'Clipping'
...
1
2
3
4
5
6
 
 
 
...
1
 
 
 
 
2
3
4
5
0
@@ -1,5 +1,4 @@
0
 .poll_excerpt
0
- %h4.question
0
- = poll.question
0
- = link_to "Vote Now!", new_vote_path(:post_id => poll.post.id), {:title => 'Log in to vote', :class => 'vote'}
0
-
0
\ No newline at end of file
0
+ =image_tag 'icons/poll.png', :plugin => 'community_engine'
0
+ = poll.question
0
+ = link_to "Vote Now!", new_vote_path(:post_id => poll.post.id), {:title => 'Log in to vote', :class => 'vote'}
...
43
44
45
46
 
47
48
49
...
43
44
45
 
46
47
48
49
0
@@ -43,7 +43,7 @@
0
       %h3= random_greeting(@user)
0
     
0
       -if @user.pending_friendships.any?
0
- %p=link_to "#{image_tag 'icons/friend.png', :plugin => 'community_engine'} You have pending friendship requests.", pending_user_friendships_path(@user)
0
+ %p=link_to "#{image_tag 'icons/user_add.png', :plugin => 'community_engine'} You have pending friendship requests.", pending_user_friendships_path(@user)
0
     
0
     
0
       -if @network_activity.empty? && @recommended_posts.empty?
...
15
16
17
 
18
19
20
...
71
72
73
74
75
76
77
78
79
80
...
15
16
17
18
19
20
21
...
72
73
74
 
75
 
 
76
77
78
0
@@ -15,6 +15,7 @@ namespace :db do
0
 end
0
 
0
 namespace :community_engine do
0
+
0
   desc 'Move the community engine assets to application public directory'
0
   task :mirror_public_assets => :environment do
0
     # actually, no need to do anything here, the mere act of running rake mirrors the plugin assets for everything
0
@@ -71,10 +72,7 @@ namespace :community_engine do
0
     task :clobber_rcov do |t|
0
       rm_r OUTPUT_DIR, :force => true
0
     end
0
-
0
   end
0
-
0
-
0
 
0
   namespace :db do
0
     namespace :fixtures do

Comments

    No one has commented yet.