Merge branch 'szzh' of http://repository.trustie.net/xianbo/trustie2 into szzh
This commit is contained in:
commit
f2f7dfaf12
|
@ -140,6 +140,15 @@ class AccountController < ApplicationController
|
||||||
@user.password, @user.password_confirmation = user_params[:password], user_params[:password_confirmation]
|
@user.password, @user.password_confirmation = user_params[:password], user_params[:password_confirmation]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if(@cache_identityy == "")
|
||||||
|
flash.now[:error]= l(:label_identity)+l(:'activerecord.errors.messages.empty')
|
||||||
|
return
|
||||||
|
end
|
||||||
|
if(@cache_city == "")
|
||||||
|
flash.now[:error]= l(:label_location)+l(:'activerecord.errors.messages.empty')
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
case Setting.self_registration
|
case Setting.self_registration
|
||||||
when '1'
|
when '1'
|
||||||
register_by_email_activation(@user)
|
register_by_email_activation(@user)
|
||||||
|
|
|
@ -42,7 +42,7 @@ class Repository < ActiveRecord::Base
|
||||||
validates_uniqueness_of :identifier, :scope => :project_id, :allow_blank => true
|
validates_uniqueness_of :identifier, :scope => :project_id, :allow_blank => true
|
||||||
validates_exclusion_of :identifier, :in => %w(show entry raw changes annotate diff show stats graph)
|
validates_exclusion_of :identifier, :in => %w(show entry raw changes annotate diff show stats graph)
|
||||||
# donwcase letters, digits, dashes, underscores but not digits only
|
# donwcase letters, digits, dashes, underscores but not digits only
|
||||||
validates_format_of :identifier, :with => /^[a-zA-Z0-9_\-]+$/, :allow_blank => true
|
validates_format_of :identifier, :with => /^[a-z0-9_\-]+$/, :allow_blank => true
|
||||||
# Checks if the SCM is enabled when creating a repository
|
# Checks if the SCM is enabled when creating a repository
|
||||||
validate :repo_create_validation, :on => :create
|
validate :repo_create_validation, :on => :create
|
||||||
|
|
||||||
|
|
|
@ -50,15 +50,18 @@
|
||||||
var _v= obj;
|
var _v= obj;
|
||||||
if(_v==100)
|
if(_v==100)
|
||||||
{
|
{
|
||||||
//alert(3);
|
//var select=$("select[id='issue_status_id']");
|
||||||
|
$("select[id='issue_status_id']").find("option[value='3']").attr("selected","selected");
|
||||||
}
|
}
|
||||||
else if(_v==0)
|
else if(_v==0)
|
||||||
{
|
{
|
||||||
//alert(1);
|
//alert(1);
|
||||||
|
$("select[id='issue_status_id']").find("option[value='1']").attr("selected","selected");
|
||||||
}
|
}
|
||||||
else if(_v!=100&&_v!=0)
|
else if(_v!=100&&_v!=0)
|
||||||
{
|
{
|
||||||
// alert(2);
|
// alert(2);
|
||||||
|
$("select[id='issue_status_id']").find("option[value='2']").attr("selected","selected");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue