Merge branch 'dev' into feature/team_member_role_validation
This commit is contained in:
commit
ce9b8e7b12
43 changed files with 379 additions and 232 deletions
|
@ -1,4 +1,6 @@
|
||||||
v 1.1.0
|
v 1.1.0
|
||||||
|
- project dashboard
|
||||||
|
- wall redesigned
|
||||||
- feature: code snippets
|
- feature: code snippets
|
||||||
- fixed horizontal scroll on file preview
|
- fixed horizontal scroll on file preview
|
||||||
- fixed app crash if commit message has invalid chars
|
- fixed app crash if commit message has invalid chars
|
||||||
|
|
2
Gemfile
2
Gemfile
|
@ -15,7 +15,7 @@ gem 'therubyracer'
|
||||||
gem 'faker'
|
gem 'faker'
|
||||||
gem 'seed-fu', :git => 'git://github.com/mbleigh/seed-fu.git'
|
gem 'seed-fu', :git => 'git://github.com/mbleigh/seed-fu.git'
|
||||||
gem "inifile"
|
gem "inifile"
|
||||||
gem "albino", :git => "git://github.com/gitlabhq/albino.git"
|
gem "pygments.rb", "0.2.3"
|
||||||
gem "kaminari"
|
gem "kaminari"
|
||||||
gem "thin"
|
gem "thin"
|
||||||
gem "git"
|
gem "git"
|
||||||
|
|
15
Gemfile.lock
15
Gemfile.lock
|
@ -4,13 +4,6 @@ GIT
|
||||||
specs:
|
specs:
|
||||||
annotate (2.4.1.beta1)
|
annotate (2.4.1.beta1)
|
||||||
|
|
||||||
GIT
|
|
||||||
remote: git://github.com/gitlabhq/albino.git
|
|
||||||
revision: 118380924969f3a856659f86ea1f40c1ba7bfcb1
|
|
||||||
specs:
|
|
||||||
albino (1.3.3)
|
|
||||||
posix-spawn (>= 0.3.6)
|
|
||||||
|
|
||||||
GIT
|
GIT
|
||||||
remote: git://github.com/gitlabhq/grit.git
|
remote: git://github.com/gitlabhq/grit.git
|
||||||
revision: ff015074ef35bd94cba943f9c0f98e161ab5851c
|
revision: ff015074ef35bd94cba943f9c0f98e161ab5851c
|
||||||
|
@ -72,6 +65,7 @@ GEM
|
||||||
ZenTest (= 4.5)
|
ZenTest (= 4.5)
|
||||||
awesome_print (0.4.0)
|
awesome_print (0.4.0)
|
||||||
bcrypt-ruby (3.0.1)
|
bcrypt-ruby (3.0.1)
|
||||||
|
blankslate (2.1.2.4)
|
||||||
builder (3.0.0)
|
builder (3.0.0)
|
||||||
capybara (1.0.1)
|
capybara (1.0.1)
|
||||||
mime-types (>= 1.16)
|
mime-types (>= 1.16)
|
||||||
|
@ -138,6 +132,8 @@ GEM
|
||||||
orm_adapter (0.0.5)
|
orm_adapter (0.0.5)
|
||||||
polyglot (0.3.2)
|
polyglot (0.3.2)
|
||||||
posix-spawn (0.3.6)
|
posix-spawn (0.3.6)
|
||||||
|
pygments.rb (0.2.3)
|
||||||
|
rubypython (>= 0.5.1)
|
||||||
rack (1.3.2)
|
rack (1.3.2)
|
||||||
rack-cache (1.0.3)
|
rack-cache (1.0.3)
|
||||||
rack (>= 0.4)
|
rack (>= 0.4)
|
||||||
|
@ -189,6 +185,9 @@ GEM
|
||||||
ruby-debug-base19 (>= 0.11.19)
|
ruby-debug-base19 (>= 0.11.19)
|
||||||
ruby_core_source (0.1.5)
|
ruby_core_source (0.1.5)
|
||||||
archive-tar-minitar (>= 0.5.2)
|
archive-tar-minitar (>= 0.5.2)
|
||||||
|
rubypython (0.5.1)
|
||||||
|
blankslate (>= 2.1.2.3)
|
||||||
|
ffi (~> 1.0.7)
|
||||||
rubyzip (0.9.4)
|
rubyzip (0.9.4)
|
||||||
sass (3.1.7)
|
sass (3.1.7)
|
||||||
sass-rails (3.1.1)
|
sass-rails (3.1.1)
|
||||||
|
@ -242,7 +241,6 @@ PLATFORMS
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
acts_as_list
|
acts_as_list
|
||||||
albino!
|
|
||||||
annotate!
|
annotate!
|
||||||
autotest
|
autotest
|
||||||
autotest-rails
|
autotest-rails
|
||||||
|
@ -260,6 +258,7 @@ DEPENDENCIES
|
||||||
jquery-rails
|
jquery-rails
|
||||||
kaminari
|
kaminari
|
||||||
launchy
|
launchy
|
||||||
|
pygments.rb (= 0.2.3)
|
||||||
rails (= 3.1.0)
|
rails (= 3.1.0)
|
||||||
rails-footnotes (>= 3.7.5.rc4)
|
rails-footnotes (>= 3.7.5.rc4)
|
||||||
rspec-rails
|
rspec-rails
|
||||||
|
|
|
@ -34,18 +34,19 @@ sqlite as default db
|
||||||
sudo easy_install pygments
|
sudo easy_install pygments
|
||||||
|
|
||||||
sudo gem install bundler
|
sudo gem install bundler
|
||||||
|
|
||||||
bundle
|
bundle
|
||||||
|
|
||||||
RAILS_ENV=production rake db:setup
|
bundle exec rake db:setup RAILS_ENV=production
|
||||||
|
|
||||||
# create admin user
|
# create admin user
|
||||||
# login....admin@local.host
|
# login....admin@local.host
|
||||||
# pass.....5iveL!fe
|
# pass.....5iveL!fe
|
||||||
RAILS_ENV=production rake db:seed_fu
|
bundle exec rake db:seed_fu RAILS_ENV=production
|
||||||
|
|
||||||
Install gitosis, edit conf/gitosis.yml & start server
|
Install gitosis, edit conf/gitosis.yml & start server
|
||||||
|
|
||||||
rails s
|
rails s -e production
|
||||||
|
|
||||||
== Install Gitosis
|
== Install Gitosis
|
||||||
sudo aptitude install gitosis
|
sudo aptitude install gitosis
|
||||||
|
@ -63,6 +64,7 @@ Install gitosis, edit conf/gitosis.yml & start server
|
||||||
ssh-keygen -t rsa
|
ssh-keygen -t rsa
|
||||||
|
|
||||||
sudo -H -u git gitosis-init < ~/.ssh/id_rsa.pub
|
sudo -H -u git gitosis-init < ~/.ssh/id_rsa.pub
|
||||||
|
|
||||||
sudo chmod 755 /home/git/repositories/gitosis-admin.git/hooks/post-update
|
sudo chmod 755 /home/git/repositories/gitosis-admin.git/hooks/post-update
|
||||||
|
|
||||||
|
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
1.0.2
|
1.1.0
|
||||||
|
|
|
@ -16,3 +16,7 @@ $(function(){
|
||||||
$('select#branch').selectmenu({style:'popup', width:200});
|
$('select#branch').selectmenu({style:'popup', width:200});
|
||||||
$('select#tag').selectmenu({style:'popup', width:200});
|
$('select#tag').selectmenu({style:'popup', width:200});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function updatePage(){
|
||||||
|
$.ajax({type: "GET", url: location.href, dataType: "script"});
|
||||||
|
}
|
||||||
|
|
|
@ -491,8 +491,14 @@ tbody tr:nth-child(2n) td, tbody tr.even td {
|
||||||
background: white;
|
background: white;
|
||||||
}
|
}
|
||||||
p {
|
p {
|
||||||
margin-bottom: 3px;
|
margin-bottom: 4px;
|
||||||
font-size: 12px;
|
font-size: 13px;
|
||||||
|
color:#111;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
cite {
|
||||||
|
&.ago {
|
||||||
|
color:#666;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -515,7 +521,7 @@ tbody tr:nth-child(2n) td, tbody tr.even td {
|
||||||
}
|
}
|
||||||
.note_content {
|
.note_content {
|
||||||
float:left;
|
float:left;
|
||||||
width:750px;
|
width:650px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.issue_notes {
|
.issue_notes {
|
||||||
|
@ -605,7 +611,9 @@ tbody tr:nth-child(2n) td, tbody tr.even td {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
.message{
|
.commit,
|
||||||
|
.message,
|
||||||
|
#notes-list{
|
||||||
.author {
|
.author {
|
||||||
background: #eaeaea;
|
background: #eaeaea;
|
||||||
color: #333;
|
color: #333;
|
||||||
|
@ -614,3 +622,28 @@ tbody tr:nth-child(2n) td, tbody tr.even td {
|
||||||
margin-right:5px;
|
margin-right:5px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Note textare */
|
||||||
|
#note_note {
|
||||||
|
height:100px;
|
||||||
|
width:97%;
|
||||||
|
font-size:14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.wall_page {
|
||||||
|
#note_note {
|
||||||
|
height:25px;
|
||||||
|
}
|
||||||
|
.attach_holder {
|
||||||
|
display:none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.field_with_errors {
|
||||||
|
input[type="text"],
|
||||||
|
input[type="password"],
|
||||||
|
textarea
|
||||||
|
{
|
||||||
|
background: none repeat scroll 0 0 #FFBBBB
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -60,24 +60,21 @@ class ProjectsController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show
|
||||||
if @project.repo_exists?
|
return render "projects/empty" unless @project.repo_exists?
|
||||||
@date = case params[:view]
|
@date = case params[:view]
|
||||||
when "week" then Date.today - 7.days
|
when "week" then Date.today - 7.days
|
||||||
else Date.today
|
when "day" then Date.today
|
||||||
end.at_beginning_of_day
|
else nil
|
||||||
|
end
|
||||||
|
|
||||||
@heads = @project.repo.heads
|
if @date
|
||||||
@commits = @heads.map do |h|
|
@date = @date.at_beginning_of_day
|
||||||
@project.repo.log(h.name, nil, :since => @date)
|
|
||||||
end.flatten.uniq { |c| c.id }
|
|
||||||
|
|
||||||
@commits.sort! do |x, y|
|
@commits = @project.commits_since(@date)
|
||||||
y.committed_date <=> x.committed_date
|
@messages = project.notes.since(@date).order("created_at DESC")
|
||||||
end
|
else
|
||||||
|
@commits = @project.fresh_commits
|
||||||
@messages = project.notes.since(@date).limit(40).order("created_at DESC")
|
@messages = project.notes.fresh.limit(10)
|
||||||
else
|
|
||||||
return render "projects/empty"
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -86,8 +83,15 @@ class ProjectsController < ApplicationController
|
||||||
#
|
#
|
||||||
|
|
||||||
def wall
|
def wall
|
||||||
@notes = @project.common_notes
|
|
||||||
@note = Note.new
|
@note = Note.new
|
||||||
|
@notes = @project.common_notes.order("created_at DESC")
|
||||||
|
|
||||||
|
@notes = case params[:view]
|
||||||
|
when "week" then @notes.since((Date.today - 7.days).at_beginning_of_day)
|
||||||
|
when "all" then @notes.all
|
||||||
|
when "day" then @notes.since(Date.today.at_beginning_of_day)
|
||||||
|
else @notes.fresh.limit(10)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
|
@ -53,25 +53,4 @@ module ApplicationHelper
|
||||||
[projects, default_nav, project_nav].flatten.to_json
|
[projects, default_nav, project_nav].flatten.to_json
|
||||||
end
|
end
|
||||||
|
|
||||||
def handle_file_type(file_name, mime_type = nil)
|
|
||||||
if file_name =~ /(\.rb|\.ru|\.rake|Rakefile|\.gemspec|\.rbx|Gemfile)$/
|
|
||||||
:ruby
|
|
||||||
elsif file_name =~ /\.py$/
|
|
||||||
:python
|
|
||||||
elsif file_name =~ /(\.pl|\.scala|\.c|\.cpp|\.java|\.haml|\.html|\.sass|\.scss|\.xml|\.php|\.erb)$/
|
|
||||||
$1[1..-1].to_sym
|
|
||||||
elsif file_name =~ /\.js$/
|
|
||||||
:javascript
|
|
||||||
elsif file_name =~ /\.sh$/
|
|
||||||
:bash
|
|
||||||
elsif file_name =~ /\.coffee$/
|
|
||||||
:coffeescript
|
|
||||||
elsif file_name =~ /\.yml$/
|
|
||||||
:yaml
|
|
||||||
elsif file_name =~ /\.md$/
|
|
||||||
:minid
|
|
||||||
else
|
|
||||||
:text
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -24,6 +24,7 @@ class Note < ActiveRecord::Base
|
||||||
|
|
||||||
scope :last_week, where("created_at >= :date", :date => (Date.today - 7.days))
|
scope :last_week, where("created_at >= :date", :date => (Date.today - 7.days))
|
||||||
scope :since, lambda { |day| where("created_at >= :date", :date => (day)) }
|
scope :since, lambda { |day| where("created_at >= :date", :date => (day)) }
|
||||||
|
scope :fresh, order("created_at DESC")
|
||||||
|
|
||||||
mount_uploader :attachment, AttachmentUploader
|
mount_uploader :attachment, AttachmentUploader
|
||||||
end
|
end
|
||||||
|
|
|
@ -35,7 +35,8 @@ class Project < ActiveRecord::Base
|
||||||
:presence => true
|
:presence => true
|
||||||
|
|
||||||
validate :check_limit
|
validate :check_limit
|
||||||
|
validate :repo_name
|
||||||
|
|
||||||
after_destroy :destroy_gitosis_project
|
after_destroy :destroy_gitosis_project
|
||||||
after_save :update_gitosis_project
|
after_save :update_gitosis_project
|
||||||
|
|
||||||
|
@ -126,6 +127,34 @@ class Project < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def heads
|
||||||
|
@heads ||= repo.heads
|
||||||
|
end
|
||||||
|
|
||||||
|
def fresh_commits
|
||||||
|
commits = heads.map do |h|
|
||||||
|
repo.commits(h.name, 10)
|
||||||
|
end.flatten.uniq { |c| c.id }
|
||||||
|
|
||||||
|
commits.sort! do |x, y|
|
||||||
|
y.committed_date <=> x.committed_date
|
||||||
|
end
|
||||||
|
|
||||||
|
commits[0..10]
|
||||||
|
end
|
||||||
|
|
||||||
|
def commits_since(date)
|
||||||
|
commits = heads.map do |h|
|
||||||
|
repo.log(h.name, nil, :since => date)
|
||||||
|
end.flatten.uniq { |c| c.id }
|
||||||
|
|
||||||
|
commits.sort! do |x, y|
|
||||||
|
y.committed_date <=> x.committed_date
|
||||||
|
end
|
||||||
|
|
||||||
|
commits
|
||||||
|
end
|
||||||
|
|
||||||
def tree(fcommit, path = nil)
|
def tree(fcommit, path = nil)
|
||||||
fcommit = commit if fcommit == :head
|
fcommit = commit if fcommit == :head
|
||||||
tree = fcommit.tree
|
tree = fcommit.tree
|
||||||
|
@ -140,6 +169,12 @@ class Project < ActiveRecord::Base
|
||||||
errors[:base] << ("Cant check your ability to create project")
|
errors[:base] << ("Cant check your ability to create project")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def repo_name
|
||||||
|
if path == "gitosis-admin"
|
||||||
|
errors.add(:path, " like 'gitosis-admin' is not allowed")
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def valid_repo?
|
def valid_repo?
|
||||||
repo
|
repo
|
||||||
rescue
|
rescue
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
class Snippet < ActiveRecord::Base
|
class Snippet < ActiveRecord::Base
|
||||||
|
include Utils::Colorize
|
||||||
|
|
||||||
belongs_to :project
|
belongs_to :project
|
||||||
belongs_to :author, :class_name => "User"
|
belongs_to :author, :class_name => "User"
|
||||||
has_many :notes, :as => :noteable
|
has_many :notes, :as => :noteable
|
||||||
|
@ -28,6 +30,10 @@ class Snippet < ActiveRecord::Base
|
||||||
".js", ".sh", ".coffee", ".yml", ".md"
|
".js", ".sh", ".coffee", ".yml", ".md"
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def colorize
|
||||||
|
system_colorize(content, file_name)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
# == Schema Information
|
# == Schema Information
|
||||||
#
|
#
|
||||||
|
|
|
@ -15,8 +15,8 @@
|
||||||
= link_to "Browse Code", tree_project_path(@project, :commit_id => commit.id), :class => "lite_button", :style => "float:right"
|
= link_to "Browse Code", tree_project_path(@project, :commit_id => commit.id), :class => "lite_button", :style => "float:right"
|
||||||
= link_to truncate(commit.id.to_s, :length => 16), project_commit_path(@project, :id => commit.id), :class => "lite_button", :style => "width:120px;float:right"
|
= link_to truncate(commit.id.to_s, :length => 16), project_commit_path(@project, :id => commit.id), :class => "lite_button", :style => "width:120px;float:right"
|
||||||
%span
|
%span
|
||||||
%span
|
%span.author
|
||||||
[ #{commit.author} ]
|
= commit.author
|
||||||
= time_ago_in_words(commit.committed_date)
|
= time_ago_in_words(commit.committed_date)
|
||||||
ago
|
ago
|
||||||
= more_commits_link if @commits.size > 99
|
= more_commits_link if @commits.size > 99
|
||||||
|
|
|
@ -1,28 +1,5 @@
|
||||||
- require "utils"
|
.file_stats= render "commits/diff_head"
|
||||||
.file_stats
|
|
||||||
- @commit.diffs.each do |diff|
|
|
||||||
- if diff.deleted_file
|
|
||||||
%span.removed_file
|
|
||||||
%a{:href => "##{diff.a_path}"}
|
|
||||||
= diff.a_path
|
|
||||||
= image_tag "blueprint_delete.png"
|
|
||||||
- elsif diff.renamed_file
|
|
||||||
%span.moved_file
|
|
||||||
%a{:href => "##{diff.b_path}"}
|
|
||||||
= diff.a_path
|
|
||||||
= "->"
|
|
||||||
= diff.b_path
|
|
||||||
= image_tag "blueprint_notice.png"
|
|
||||||
- elsif diff.new_file
|
|
||||||
%span.new_file
|
|
||||||
%a{:href => "##{diff.b_path}"}
|
|
||||||
= diff.b_path
|
|
||||||
= image_tag "blueprint_add.png"
|
|
||||||
- else
|
|
||||||
%span.edit_file
|
|
||||||
%a{:href => "##{diff.b_path}"}
|
|
||||||
= diff.b_path
|
|
||||||
= image_tag "blueprint_info.png"
|
|
||||||
- @commit.diffs.each do |diff|
|
- @commit.diffs.each do |diff|
|
||||||
- next if diff.diff.empty?
|
- next if diff.diff.empty?
|
||||||
- file = (@commit.tree / diff.b_path)
|
- file = (@commit.tree / diff.b_path)
|
||||||
|
@ -32,27 +9,15 @@
|
||||||
- if diff.deleted_file
|
- if diff.deleted_file
|
||||||
%strong{:id => "#{diff.b_path}"}= diff.a_path
|
%strong{:id => "#{diff.b_path}"}= diff.a_path
|
||||||
- else
|
- else
|
||||||
%strong{:id => "#{diff.b_path}"}= diff.b_path
|
= link_to tree_file_project_path(@project, @commit.id, diff.b_path) do
|
||||||
|
%strong{:id => "#{diff.b_path}"}= diff.b_path
|
||||||
%br/
|
%br/
|
||||||
.diff_file_content
|
.diff_file_content
|
||||||
- if file.mime_type =~ /application|text/ && !Utils.binary?(file.data)
|
- if file.text?
|
||||||
- lines_arr = diff.diff.lines.to_a
|
= render :partial => "commits/text_file", :locals => { :diff => diff }
|
||||||
- line_old = lines_arr[2].match(/-(\d)/)[0].to_i.abs rescue 0
|
- elsif file.image?
|
||||||
- line_new = lines_arr[2].match(/\+(\d)/)[0].to_i.abs rescue 0
|
|
||||||
- lines = lines_arr[3..-1].join
|
|
||||||
- lines.each_line do |line|
|
|
||||||
= diff_line(line, line_new, line_old)
|
|
||||||
- if line[0] == "+"
|
|
||||||
- line_new += 1
|
|
||||||
- elsif
|
|
||||||
- line[0] == "-"
|
|
||||||
- line_old += 1
|
|
||||||
- else
|
|
||||||
- line_new += 1
|
|
||||||
- line_old += 1
|
|
||||||
- elsif file.mime_type =~ /image/
|
|
||||||
.diff_file_content_image
|
.diff_file_content_image
|
||||||
%img{:src => "data:image/jpeg;base64,#{Base64.encode64(file.data)}"}
|
%img{:src => "data:#{file.mime_type};base64,#{Base64.encode64(file.data)}"}
|
||||||
- else
|
- else
|
||||||
%p
|
%p
|
||||||
%center No preview for this file type
|
%center No preview for this file type
|
||||||
|
|
24
app/views/commits/_diff_head.html.haml
Normal file
24
app/views/commits/_diff_head.html.haml
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
- @commit.diffs.each do |diff|
|
||||||
|
- if diff.deleted_file
|
||||||
|
%span.removed_file
|
||||||
|
%a{:href => "##{diff.a_path}"}
|
||||||
|
= diff.a_path
|
||||||
|
= image_tag "blueprint_delete.png"
|
||||||
|
- elsif diff.renamed_file
|
||||||
|
%span.moved_file
|
||||||
|
%a{:href => "##{diff.b_path}"}
|
||||||
|
= diff.a_path
|
||||||
|
= "->"
|
||||||
|
= diff.b_path
|
||||||
|
= image_tag "blueprint_notice.png"
|
||||||
|
- elsif diff.new_file
|
||||||
|
%span.new_file
|
||||||
|
%a{:href => "##{diff.b_path}"}
|
||||||
|
= diff.b_path
|
||||||
|
= image_tag "blueprint_add.png"
|
||||||
|
- else
|
||||||
|
%span.edit_file
|
||||||
|
%a{:href => "##{diff.b_path}"}
|
||||||
|
= diff.b_path
|
||||||
|
= image_tag "blueprint_info.png"
|
||||||
|
|
15
app/views/commits/_text_file.html.haml
Normal file
15
app/views/commits/_text_file.html.haml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
- lines_arr = diff.diff.lines.to_a
|
||||||
|
- line_old = lines_arr[2].match(/-(\d)/)[0].to_i.abs rescue 0
|
||||||
|
- line_new = lines_arr[2].match(/\+(\d)/)[0].to_i.abs rescue 0
|
||||||
|
- lines = lines_arr[3..-1].join
|
||||||
|
- lines.each_line do |line|
|
||||||
|
= diff_line(line, line_new, line_old)
|
||||||
|
- if line[0] == "+"
|
||||||
|
- line_new += 1
|
||||||
|
- elsif
|
||||||
|
- line[0] == "-"
|
||||||
|
- line_old += 1
|
||||||
|
- else
|
||||||
|
- line_new += 1
|
||||||
|
- line_old += 1
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
:plain
|
-#:plain
|
||||||
$("#side-commit-preview").remove();
|
$("#side-commit-preview").remove();
|
||||||
var side = $("<div id='side-commit-preview'></div>");
|
var side = $("<div id='side-commit-preview'></div>");
|
||||||
side.html("#{escape_javascript(render "commits/show")}");
|
side.html("#{escape_javascript(render "commits/show")}");
|
||||||
$("##{dom_id(@project)}").parent().append(side);
|
$("##{dom_id(@project)}").parent().append(side);
|
||||||
$("##{dom_id(@project)}").addClass("span-14");
|
$("##{dom_id(@project)}").addClass("span-14");
|
||||||
|
:plain
|
||||||
|
$("#notes-list").html("#{escape_javascript(render(:partial => 'notes/notes_list'))}");
|
||||||
|
|
|
@ -12,9 +12,9 @@
|
||||||
= f.label :note
|
= f.label :note
|
||||||
%cite (255 symbols only)
|
%cite (255 symbols only)
|
||||||
%br
|
%br
|
||||||
= f.text_area :note, :style => "width:97%;height:100px", :size => 255
|
= f.text_area :note, :size => 255
|
||||||
|
|
||||||
%div
|
%div.attach_holder
|
||||||
= f.label :attachment
|
= f.label :attachment
|
||||||
%cite (less than 10 MB)
|
%cite (less than 10 MB)
|
||||||
%br
|
%br
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
%ul#notes-list= render "notes/notes_list"
|
- if controller.action_name == "wall"
|
||||||
|
%ul#notes-list= render "notes/notes_list"
|
||||||
|
|
||||||
%br
|
- else
|
||||||
%br
|
%ul#notes-list= render "notes/notes_list"
|
||||||
- if can? current_user, :write_note, @project
|
%br
|
||||||
= render "notes/form"
|
%br
|
||||||
|
- if can? current_user, :write_note, @project
|
||||||
|
= render "notes/form"
|
||||||
|
|
||||||
:javascript
|
:javascript
|
||||||
$('.delete-note').live('ajax:success', function() {
|
$('.delete-note').live('ajax:success', function() {
|
||||||
|
@ -23,7 +26,3 @@
|
||||||
$(function(){
|
$(function(){
|
||||||
var int =self.setInterval("updatePage()", 20000);
|
var int =self.setInterval("updatePage()", 20000);
|
||||||
});
|
});
|
||||||
|
|
||||||
function updatePage(){
|
|
||||||
$.ajax({type: "GET", url: location.href, dataType: "script"});
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,19 +1,17 @@
|
||||||
%li{:id => dom_id(note)}
|
%li{:id => dom_id(note)}
|
||||||
%div.note_author
|
%div.note_author
|
||||||
= image_tag gravatar_icon(note.author.email), :class => "left", :width => 40, :style => "padding-right:5px;"
|
= image_tag gravatar_icon(note.author.email), :class => "left", :width => 40, :style => "padding-right:5px;"
|
||||||
%div.note_content
|
%div.note_content.left
|
||||||
= simple_format(html_escape(note.note))
|
= simple_format(html_escape(note.note))
|
||||||
- if note.attachment.url
|
- if note.attachment.url
|
||||||
Attachment:
|
Attachment:
|
||||||
= link_to note.attachment_identifier, note.attachment.url
|
= link_to note.attachment_identifier, note.attachment.url, :target => "_blank"
|
||||||
%br
|
%br
|
||||||
%span
|
%span.author= note.author.name
|
||||||
%span
|
%cite.ago
|
||||||
[ #{note.author.name} ]
|
|
||||||
|
|
||||||
= time_ago_in_words(note.updated_at)
|
= time_ago_in_words(note.updated_at)
|
||||||
ago
|
ago
|
||||||
%br
|
%br
|
||||||
- if(note.author_id == current_user.id) || can?(current_user, :admin_note, @project)
|
- if(note.author_id == current_user.id) || can?(current_user, :admin_note, @project)
|
||||||
= link_to 'Remove', [@project, note], :confirm => 'Are you sure?', :method => :delete, :remote => true, :class => "lbutton delete-note right negative"
|
= link_to 'Remove', [@project, note], :confirm => 'Are you sure?', :method => :delete, :remote => true, :class => "lbutton delete-note right negative"
|
||||||
.clear
|
.clear
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
- if @note.valid?
|
- if @note.valid?
|
||||||
:plain
|
:plain
|
||||||
$("#new_note .errors").remove();
|
$("#new_note .errors").remove();
|
||||||
$("#notes-list").append("#{escape_javascript(render(:partial => 'show', :locals => {:note => @note} ))}");
|
updatePage();
|
||||||
$('#note_note').val("");
|
$('#note_note').val("");
|
||||||
- else
|
- else
|
||||||
:plain
|
:plain
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
= link_to truncate_commit_message(commit, 60), project_commit_path(@project, :id => commit.id)
|
= link_to truncate_commit_message(commit, 60), project_commit_path(@project, :id => commit.id)
|
||||||
|
|
||||||
%span
|
%span
|
||||||
%span
|
%span.author
|
||||||
[ #{commit.author} ]
|
= commit.author.name.force_encoding("UTF-8")
|
||||||
%cite
|
%cite
|
||||||
= time_ago_in_words(commit.committed_date)
|
= time_ago_in_words(commit.committed_date)
|
||||||
ago
|
ago
|
||||||
|
|
|
@ -46,12 +46,6 @@
|
||||||
Attachment:
|
Attachment:
|
||||||
= link_to note.attachment_identifier, note.attachment.url
|
= link_to note.attachment_identifier, note.attachment.url
|
||||||
%br
|
%br
|
||||||
-#%span
|
|
||||||
%span
|
|
||||||
[ #{note.author.name} ]
|
|
||||||
%cite
|
|
||||||
= time_ago_in_words(note.created_at)
|
|
||||||
ago
|
|
||||||
%br
|
%br
|
||||||
.append-bottom
|
.append-bottom
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
%span= link_to "Tree", tree_project_path(@project), :class => current_page?(:controller => "projects", :action => "tree", :id => @project) ? "current" : nil
|
%span= link_to "Tree", tree_project_path(@project), :class => current_page?(:controller => "projects", :action => "tree", :id => @project) ? "current" : nil
|
||||||
%span= link_to "Commits", project_commits_path(@project), :class => current_page?(:controller => "commits", :action => "index", :project_id => @project) ? "current" : nil
|
%span= link_to "Commits", project_commits_path(@project), :class => current_page?(:controller => "commits", :action => "index", :project_id => @project) ? "current" : nil
|
||||||
%span
|
%span
|
||||||
= link_to team_project_path(@project), :class => current_page?(:controller => "projects", :action => "team", :id => @project) ? "current" : nil do
|
= link_to team_project_path(@project), :class => (current_page?(:controller => "projects", :action => "team", :id => @project) || controller.controller_name == "team_members") ? "current" : nil do
|
||||||
Team
|
Team
|
||||||
- if @project.users_projects.count > 0
|
- if @project.users_projects.count > 0
|
||||||
%span{ :class => "top_menu_count" }= @project.users_projects.count
|
%span{ :class => "top_menu_count" }= @project.users_projects.count
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
- require "utils"
|
:css
|
||||||
.view_file
|
.view_file
|
||||||
.view_file_header
|
.view_file_header
|
||||||
%strong
|
%strong
|
||||||
|
@ -6,14 +6,13 @@
|
||||||
= link_to "raw", blob_project_path(@project, :commit_id => @commit.id, :path => params[:path] ), :class => "right", :target => "_blank"
|
= link_to "raw", blob_project_path(@project, :commit_id => @commit.id, :path => params[:path] ), :class => "right", :target => "_blank"
|
||||||
= link_to "history", project_commits_path(@project, :path => params[:path]), :class => "right", :style => "margin-right:10px;"
|
= link_to "history", project_commits_path(@project, :path => params[:path]), :class => "right", :style => "margin-right:10px;"
|
||||||
%br/
|
%br/
|
||||||
- if file.mime_type =~ /application|text/ && !Utils.binary?(file.data)
|
- if file.text?
|
||||||
.view_file_content
|
.view_file_content
|
||||||
- ft = handle_file_type(file.name, file.mime_type)
|
|
||||||
:erb
|
:erb
|
||||||
<%= raw Albino.colorize(content, ft, :html, 'utf-8', "linenos=True") %>
|
<%= raw file.colorize %>
|
||||||
- elsif file.mime_type =~ /image/
|
- elsif file.image?
|
||||||
.view_file_content_image
|
.view_file_content_image
|
||||||
%img{ :src => "data:image/jpeg;base64,#{Base64.encode64(file.data)}"}
|
%img{ :src => "data:#{file.mime_type};base64,#{Base64.encode64(file.data)}"}
|
||||||
- else
|
- else
|
||||||
%p
|
%p
|
||||||
%center No preview for this file type
|
%center No preview for this file type
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
<% bash_lexer = Pygments::Lexer[:bash] %>
|
||||||
<div class="">
|
<div class="">
|
||||||
<div class="git-empty">
|
<div class="git-empty">
|
||||||
<h2>Git global setup:</h2>
|
<h2>Git global setup:</h2>
|
||||||
|
@ -6,7 +7,7 @@ git config --global user.name "#{current_user.name}"
|
||||||
git config --global user.email "#{current_user.email}"
|
git config --global user.email "#{current_user.email}"
|
||||||
eos
|
eos
|
||||||
%>
|
%>
|
||||||
<%= raw Albino.colorize(setup_str, :bash) %>
|
<%= raw bash_lexer.highlight(setup_str) %>
|
||||||
<br />
|
<br />
|
||||||
<br />
|
<br />
|
||||||
<h2>Next steps:</h2>
|
<h2>Next steps:</h2>
|
||||||
|
@ -21,7 +22,7 @@ git remote add origin #{@project.url_to_repo}
|
||||||
git push -u origin master
|
git push -u origin master
|
||||||
eos
|
eos
|
||||||
%>
|
%>
|
||||||
<%= raw Albino.colorize(repo_setup_str, :bash) %>
|
<%= raw bash_lexer.highlight(repo_setup_str) %>
|
||||||
|
|
||||||
<br /><br />
|
<br /><br />
|
||||||
<h2>Existing Git Repo?</h2>
|
<h2>Existing Git Repo?</h2>
|
||||||
|
@ -31,7 +32,7 @@ git remote add origin #{@project.url_to_repo}
|
||||||
git push -u origin master
|
git push -u origin master
|
||||||
eos
|
eos
|
||||||
%>
|
%>
|
||||||
<%= raw Albino.colorize(exist_repo_setup_str, :bash) %>
|
<%= raw bash_lexer.highlight(exist_repo_setup_str) %>
|
||||||
|
|
||||||
<br /><br />
|
<br /><br />
|
||||||
<h2>Remove this project?</h2>
|
<h2>Remove this project?</h2>
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
%div
|
%div
|
||||||
%h2.left Recent history
|
%h2.left History
|
||||||
.right
|
.right
|
||||||
= form_tag project_path(@project), :method => :get do
|
= form_tag project_path(@project), :method => :get do
|
||||||
.span-2
|
.span-2
|
||||||
= radio_button_tag :view, "day", (params[:view] || "day") == "day", :onclick => "this.form.submit()", :id => "day_view"
|
= radio_button_tag :view, "recent", (params[:view] || "recent") == "recent", :onclick => "this.form.submit()", :id => "recent_view"
|
||||||
|
= label_tag "recent_view","Recent"
|
||||||
|
.span-2
|
||||||
|
= radio_button_tag :view, "day", params[:view] == "day", :onclick => "this.form.submit()", :id => "day_view"
|
||||||
= label_tag "day_view","Today"
|
= label_tag "day_view","Today"
|
||||||
.span-2
|
.span-2
|
||||||
= radio_button_tag :view, "week", params[:view] == "week", :onclick => "this.form.submit()", :id => "week_view"
|
= radio_button_tag :view, "week", params[:view] == "week", :onclick => "this.form.submit()", :id => "week_view"
|
||||||
|
|
|
@ -1 +1,29 @@
|
||||||
|
%div.wall_page
|
||||||
|
- if can? current_user, :write_note, @project
|
||||||
|
= render "notes/form"
|
||||||
|
.right
|
||||||
|
= form_tag wall_project_path(@project), :method => :get do
|
||||||
|
.span-2
|
||||||
|
= radio_button_tag :view, "recent", (params[:view] || "recent") == "recent", :onclick => "this.form.submit()", :id => "recent_view"
|
||||||
|
= label_tag "recent_view","Recent"
|
||||||
|
.span-2
|
||||||
|
= radio_button_tag :view, "day", params[:view] == "day", :onclick => "this.form.submit()", :id => "day_view"
|
||||||
|
= label_tag "day_view","Today"
|
||||||
|
.span-2
|
||||||
|
= radio_button_tag :view, "week", params[:view] == "week", :onclick => "this.form.submit()", :id => "week_view"
|
||||||
|
= label_tag "week_view","Week"
|
||||||
|
.span-2
|
||||||
|
= radio_button_tag :view, "all", params[:view] == "all", :onclick => "this.form.submit()", :id => "all_view"
|
||||||
|
= label_tag "all_view","All"
|
||||||
|
.clear
|
||||||
|
%br
|
||||||
|
%hr
|
||||||
= render "notes/notes"
|
= render "notes/notes"
|
||||||
|
|
||||||
|
:javascript
|
||||||
|
$(function(){
|
||||||
|
$("#note_note").live("click", function(){
|
||||||
|
$(this).css("height", "100px");
|
||||||
|
$('.attach_holder').show();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
|
@ -7,9 +7,8 @@
|
||||||
= @snippet.file_name
|
= @snippet.file_name
|
||||||
%br/
|
%br/
|
||||||
.view_file_content
|
.view_file_content
|
||||||
- ft = handle_file_type(@snippet.file_name)
|
|
||||||
:erb
|
:erb
|
||||||
<%= raw Albino.colorize(@snippet.content, ft, :html, 'utf-8', "linenos=True") %>
|
<%= raw @snippet.colorize %>
|
||||||
|
|
||||||
- if can?(current_user, :admin_snippet, @project) || @snippet.author == current_user
|
- if can?(current_user, :admin_snippet, @project) || @snippet.author == current_user
|
||||||
= link_to 'Edit', edit_project_snippet_path(@project, @snippet), :class => "lbutton positive"
|
= link_to 'Edit', edit_project_snippet_path(@project, @snippet), :class => "lbutton positive"
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
- user = member.user
|
- user = member.user
|
||||||
%tr{:id => dom_id(member)}
|
%tr{:id => dom_id(member)}
|
||||||
%td
|
%td
|
||||||
= image_tag gravatar_icon(user.email), :class => "left", :width => 40, :style => "padding:0 5px;"
|
= link_to image_tag(gravatar_icon(user.email), :class => "left", :width => 40, :style => "padding:0 5px;"), project_team_member_path(@project, member)
|
||||||
= truncate user.name, :lenght => 16
|
|
||||||
|
= link_to truncate(user.name, :lenght => 16), project_team_member_path(@project, member)
|
||||||
|
|
||||||
%td= truncate user.email, :lenght => 16
|
%td= truncate user.email, :lenght => 16
|
||||||
- if can? current_user, :admin_project, @project
|
- if can? current_user, :admin_project, @project
|
||||||
= form_for(member, :as => :team_member, :url => project_team_member_path(@project, member)) do |f|
|
= form_for(member, :as => :team_member, :url => project_team_member_path(@project, member)) do |f|
|
||||||
|
|
28
app/views/team_members/show.html.haml
Normal file
28
app/views/team_members/show.html.haml
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
- user = @team_member.user
|
||||||
|
.span-2
|
||||||
|
= image_tag gravatar_icon(user.email), :class => "left", :width => 60, :style => "padding-right:5px;"
|
||||||
|
%p
|
||||||
|
%b Name:
|
||||||
|
= user.name
|
||||||
|
%p
|
||||||
|
%b Email:
|
||||||
|
= user.email
|
||||||
|
|
||||||
|
%br
|
||||||
|
|
||||||
|
- unless user.skype.empty?
|
||||||
|
.div
|
||||||
|
%b Skype:
|
||||||
|
= user.skype
|
||||||
|
|
||||||
|
- unless user.linkedin.empty?
|
||||||
|
.div
|
||||||
|
%b LinkedIn:
|
||||||
|
= user.linkedin
|
||||||
|
|
||||||
|
- unless user.twitter.empty?
|
||||||
|
.div
|
||||||
|
%b Twitter:
|
||||||
|
= user.twitter
|
||||||
|
|
||||||
|
|
8
config/initializers/grit_ext.rb
Normal file
8
config/initializers/grit_ext.rb
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
require 'grit'
|
||||||
|
require 'pygments'
|
||||||
|
require "utils"
|
||||||
|
|
||||||
|
Grit::Blob.class_eval do
|
||||||
|
include Utils::FileHelper
|
||||||
|
include Utils::Colorize
|
||||||
|
end
|
|
@ -1,4 +1,3 @@
|
||||||
# Admin account
|
|
||||||
admin = User.create(
|
admin = User.create(
|
||||||
:email => "admin@local.host",
|
:email => "admin@local.host",
|
||||||
:name => "Administrator",
|
:name => "Administrator",
|
||||||
|
@ -9,3 +8,12 @@ admin = User.create(
|
||||||
admin.projects_limit = 10000
|
admin.projects_limit = 10000
|
||||||
admin.admin = true
|
admin.admin = true
|
||||||
admin.save!
|
admin.save!
|
||||||
|
|
||||||
|
if admin.valid?
|
||||||
|
puts %q[
|
||||||
|
Administrator account created:
|
||||||
|
|
||||||
|
login.........admin@local.host
|
||||||
|
password......5iveL!fe
|
||||||
|
]
|
||||||
|
end
|
||||||
|
|
|
@ -8,3 +8,12 @@ admin = User.create(
|
||||||
admin.projects_limit = 10000
|
admin.projects_limit = 10000
|
||||||
admin.admin = true
|
admin.admin = true
|
||||||
admin.save!
|
admin.save!
|
||||||
|
|
||||||
|
if admin.valid?
|
||||||
|
puts %q[
|
||||||
|
Administrator account created:
|
||||||
|
|
||||||
|
login.........admin@local.host
|
||||||
|
password......5iveL!fe
|
||||||
|
]
|
||||||
|
end
|
||||||
|
|
14
db/migrate/20111021101550_change_social_fields_in_users.rb
Normal file
14
db/migrate/20111021101550_change_social_fields_in_users.rb
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
class ChangeSocialFieldsInUsers < ActiveRecord::Migration
|
||||||
|
def up
|
||||||
|
remove_column :users, :skype
|
||||||
|
remove_column :users, :linkedin
|
||||||
|
remove_column :users, :twitter
|
||||||
|
|
||||||
|
add_column :users, :skype, :string, {:null => false, :default => ''}
|
||||||
|
add_column :users, :linkedin, :string, {:null => false, :default => ''}
|
||||||
|
add_column :users, :twitter, :string, {:null => false, :default => ''}
|
||||||
|
end
|
||||||
|
|
||||||
|
def down
|
||||||
|
end
|
||||||
|
end
|
|
@ -11,7 +11,7 @@
|
||||||
#
|
#
|
||||||
# It's strongly recommended to check this file into your version control system.
|
# It's strongly recommended to check this file into your version control system.
|
||||||
|
|
||||||
ActiveRecord::Schema.define(:version => 20111019212429) do
|
ActiveRecord::Schema.define(:version => 20111021101550) do
|
||||||
|
|
||||||
create_table "issues", :force => true do |t|
|
create_table "issues", :force => true do |t|
|
||||||
t.string "title"
|
t.string "title"
|
||||||
|
@ -82,9 +82,9 @@ ActiveRecord::Schema.define(:version => 20111019212429) do
|
||||||
t.string "name"
|
t.string "name"
|
||||||
t.boolean "admin", :default => false, :null => false
|
t.boolean "admin", :default => false, :null => false
|
||||||
t.integer "projects_limit", :default => 10
|
t.integer "projects_limit", :default => 10
|
||||||
t.string "skype"
|
t.string "skype", :default => "", :null => false
|
||||||
t.string "linkedin"
|
t.string "linkedin", :default => "", :null => false
|
||||||
t.string "twitter"
|
t.string "twitter", :default => "", :null => false
|
||||||
end
|
end
|
||||||
|
|
||||||
add_index "users", ["email"], :name => "index_users_on_email", :unique => true
|
add_index "users", ["email"], :name => "index_users_on_email", :unique => true
|
||||||
|
|
32
install.rb
32
install.rb
|
@ -1,32 +0,0 @@
|
||||||
root_path = File.expand_path(File.dirname(__FILE__))
|
|
||||||
require File.join(root_path, "lib", "color")
|
|
||||||
include Color
|
|
||||||
|
|
||||||
#
|
|
||||||
# ruby ./update.rb development # or test or production (default)
|
|
||||||
#
|
|
||||||
envs = ["production", "test", "development"]
|
|
||||||
env = if envs.include?(ARGV[0])
|
|
||||||
ARGV[0]
|
|
||||||
else
|
|
||||||
"production"
|
|
||||||
end
|
|
||||||
|
|
||||||
puts green " == Install for ENV=#{env} ..."
|
|
||||||
|
|
||||||
# bundle install
|
|
||||||
`bundle install`
|
|
||||||
|
|
||||||
# migrate db
|
|
||||||
`bundle exec rake db:create RAILS_ENV=#{env}`
|
|
||||||
`bundle exec rake db:schema:load RAILS_ENV=#{env}`
|
|
||||||
`bundle exec rake db:seed_fu RAILS_ENV=#{env}`
|
|
||||||
|
|
||||||
puts green %q[
|
|
||||||
Administrator account created:
|
|
||||||
|
|
||||||
login.........admin@local.host
|
|
||||||
password......5iveL!fe
|
|
||||||
]
|
|
||||||
|
|
||||||
puts green " == Done! Now you can start server"
|
|
51
lib/utils.rb
51
lib/utils.rb
|
@ -1,8 +1,51 @@
|
||||||
module Utils
|
module Utils
|
||||||
def self.binary?(string)
|
module FileHelper
|
||||||
string.each_byte do |x|
|
def binary?(string)
|
||||||
x.nonzero? or return true
|
string.each_byte do |x|
|
||||||
|
x.nonzero? or return true
|
||||||
|
end
|
||||||
|
false
|
||||||
|
end
|
||||||
|
|
||||||
|
def image?
|
||||||
|
mime_type =~ /image/
|
||||||
|
end
|
||||||
|
|
||||||
|
def text?
|
||||||
|
mime_type =~ /application|text/ && !binary?(data)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
module Colorize
|
||||||
|
def colorize
|
||||||
|
system_colorize(data, name)
|
||||||
|
end
|
||||||
|
|
||||||
|
def system_colorize(data, file_name)
|
||||||
|
ft = handle_file_type(file_name)
|
||||||
|
Pygments.highlight(data, :lexer => ft, :options => { :encoding => 'utf-8', :linenos => 'True' })
|
||||||
|
end
|
||||||
|
|
||||||
|
def handle_file_type(file_name, mime_type = nil)
|
||||||
|
if file_name =~ /(\.rb|\.ru|\.rake|Rakefile|\.gemspec|\.rbx|Gemfile)$/
|
||||||
|
:ruby
|
||||||
|
elsif file_name =~ /\.py$/
|
||||||
|
:python
|
||||||
|
elsif file_name =~ /(\.pl|\.scala|\.c|\.cpp|\.java|\.haml|\.html|\.sass|\.scss|\.xml|\.php|\.erb)$/
|
||||||
|
$1[1..-1].to_sym
|
||||||
|
elsif file_name =~ /\.js$/
|
||||||
|
:javascript
|
||||||
|
elsif file_name =~ /\.sh$/
|
||||||
|
:bash
|
||||||
|
elsif file_name =~ /\.coffee$/
|
||||||
|
:coffeescript
|
||||||
|
elsif file_name =~ /\.yml$/
|
||||||
|
:yaml
|
||||||
|
elsif file_name =~ /\.md$/
|
||||||
|
:minid
|
||||||
|
else
|
||||||
|
:text
|
||||||
|
end
|
||||||
end
|
end
|
||||||
false
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -4,11 +4,15 @@ describe Project do
|
||||||
describe "Associations" do
|
describe "Associations" do
|
||||||
it { should have_many(:users) }
|
it { should have_many(:users) }
|
||||||
it { should have_many(:users_projects) }
|
it { should have_many(:users_projects) }
|
||||||
|
it { should have_many(:issues) }
|
||||||
|
it { should have_many(:notes) }
|
||||||
|
it { should have_many(:snippets) }
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "Validation" do
|
describe "Validation" do
|
||||||
it { should validate_presence_of(:name) }
|
it { should validate_presence_of(:name) }
|
||||||
it { should validate_presence_of(:path) }
|
it { should validate_presence_of(:path) }
|
||||||
|
it { should validate_presence_of(:code) }
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "Respond to" do
|
describe "Respond to" do
|
||||||
|
@ -31,6 +35,11 @@ describe Project do
|
||||||
it { should respond_to(:commit) }
|
it { should respond_to(:commit) }
|
||||||
end
|
end
|
||||||
|
|
||||||
|
it "should not allow 'gitosis-admin' as repo name" do
|
||||||
|
should allow_value("blah").for(:path)
|
||||||
|
should_not allow_value("gitosis-admin").for(:path)
|
||||||
|
end
|
||||||
|
|
||||||
it "should return valid url to repo" do
|
it "should return valid url to repo" do
|
||||||
project = Project.new(:path => "somewhere")
|
project = Project.new(:path => "somewhere")
|
||||||
project.url_to_repo.should == "git@localhost:somewhere.git"
|
project.url_to_repo.should == "git@localhost:somewhere.git"
|
||||||
|
|
|
@ -73,7 +73,7 @@ describe "Projects" do
|
||||||
end
|
end
|
||||||
|
|
||||||
it "should beahave like dashboard" do
|
it "should beahave like dashboard" do
|
||||||
page.should have_content("Recent history")
|
page.should have_content("History")
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -7,6 +7,15 @@ describe "TeamMembers" do
|
||||||
@project.add_access(@user, :read, :admin)
|
@project.add_access(@user, :read, :admin)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe "View profile" do
|
||||||
|
it "should be available" do
|
||||||
|
visit(team_project_path(@project))
|
||||||
|
find(:xpath, "//table[@id='team-table']//a[1]").click
|
||||||
|
page.should have_content @user.skype
|
||||||
|
page.should_not have_content 'Twitter'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
describe "New Team member", :js => true do
|
describe "New Team member", :js => true do
|
||||||
before do
|
before do
|
||||||
@user_1 = Factory :user
|
@user_1 = Factory :user
|
||||||
|
|
|
@ -3,7 +3,8 @@ module LoginMacros
|
||||||
@user = User.create(:email => "user#{User.count}@mail.com",
|
@user = User.create(:email => "user#{User.count}@mail.com",
|
||||||
:name => "John Smith",
|
:name => "John Smith",
|
||||||
:password => "123456",
|
:password => "123456",
|
||||||
:password_confirmation => "123456")
|
:password_confirmation => "123456",
|
||||||
|
:skype => 'user_skype')
|
||||||
|
|
||||||
if role == :admin
|
if role == :admin
|
||||||
@user.admin = true
|
@user.admin = true
|
||||||
|
|
44
update.rb
44
update.rb
|
@ -1,44 +0,0 @@
|
||||||
root_path = File.expand_path(File.dirname(__FILE__))
|
|
||||||
require File.join(root_path, "lib", "color")
|
|
||||||
include Color
|
|
||||||
|
|
||||||
def version
|
|
||||||
File.read("VERSION")
|
|
||||||
end
|
|
||||||
|
|
||||||
#
|
|
||||||
# ruby ./update.rb development # or test or production (default)
|
|
||||||
#
|
|
||||||
envs = ["production", "test", "development"]
|
|
||||||
env = if envs.include?(ARGV[0])
|
|
||||||
ARGV[0]
|
|
||||||
else
|
|
||||||
"production"
|
|
||||||
end
|
|
||||||
|
|
||||||
puts yellow "== RAILS ENV | #{env}"
|
|
||||||
current_version = version
|
|
||||||
puts yellow "Your version is #{current_version}"
|
|
||||||
puts yellow "Check for new version: $ git pull origin"
|
|
||||||
`git pull origin` # pull from origin
|
|
||||||
|
|
||||||
# latest version
|
|
||||||
if version == current_version
|
|
||||||
puts yellow "You have a latest version"
|
|
||||||
else
|
|
||||||
puts green "Update to #{version}"
|
|
||||||
|
|
||||||
`bundle install`
|
|
||||||
|
|
||||||
# migrate db
|
|
||||||
if env == "development"
|
|
||||||
`bundle exec rake db:migrate RAILS_ENV=development`
|
|
||||||
`bundle exec rake db:migrate RAILS_ENV=test`
|
|
||||||
else
|
|
||||||
`bundle exec rake db:migrate RAILS_ENV=#{env}`
|
|
||||||
end
|
|
||||||
|
|
||||||
puts green "== Done! Now you can start/restart server"
|
|
||||||
end
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue