Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2011-10-18 12:21:44 +0400
committerDmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com>2011-10-18 12:21:44 +0400
commit65608b6aaa2101ec74cc64824bef6544aa052480 (patch)
treec339b916c9fca15cadbd1a559435cbdf81b0e3d5 /app
parentf976078cc3d6752e23c63a62b195c011ab08b464 (diff)
few fixes
Diffstat (limited to 'app')
-rw-r--r--app/models/project.rb2
-rw-r--r--app/views/projects/_form.html.haml2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/models/project.rb b/app/models/project.rb
index 3366b87816a..f51bd9b3ad4 100644
--- a/app/models/project.rb
+++ b/app/models/project.rb
@@ -29,7 +29,7 @@ class Project < ActiveRecord::Base
:uniqueness => true,
:format => { :with => /^[a-zA-Z0-9_\-]*$/,
:message => "only letters, digits & '_' '-' allowed" },
- :length => { :within => 3..16 }
+ :length => { :within => 3..255 }
validates :owner,
:presence => true
diff --git a/app/views/projects/_form.html.haml b/app/views/projects/_form.html.haml
index 9dbe57d223f..00ca98efa08 100644
--- a/app/views/projects/_form.html.haml
+++ b/app/views/projects/_form.html.haml
@@ -24,7 +24,7 @@
%td
.left= f.label :code
%cite.right http://yourserver/
- %td= f.text_field :code, :placeholder => "example (3..12 symbols only)"
+ %td= f.text_field :code, :placeholder => "example"
.field
= f.label :description
%br/