summaryrefslogtreecommitdiffstats
path: root/app/views/projects
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-04-01 19:43:59 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-04-01 19:43:59 +0000
commit4ff8386e3dfee800591e7f856a26ccc700149b02 (patch)
tree75cd4a45ab9e0298299c821029d6066c29bfbc2b /app/views/projects
parentcb6c8bee473332dfacea8d53745eb75407877a06 (diff)
downloadredmine-4ff8386e3dfee800591e7f856a26ccc700149b02.tar.gz
redmine-4ff8386e3dfee800591e7f856a26ccc700149b02.zip
Initial commit for svn repository management and access control:
* Identifier attribute added on Project model. Used as the unix group name for the project * Web services (disabled by default) and scripts for repository management on a remote svn host git-svn-id: http://redmine.rubyforge.org/svn/trunk@396 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/projects')
-rw-r--r--app/views/projects/_form.rhtml1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/views/projects/_form.rhtml b/app/views/projects/_form.rhtml
index ded227197..184370b92 100644
--- a/app/views/projects/_form.rhtml
+++ b/app/views/projects/_form.rhtml
@@ -9,6 +9,7 @@
<% end %>
<p><%= f.text_area :description, :required => true, :cols => 60, :rows => 3 %></p>
+<p><%= f.text_field :identifier, :required => true, :size => 15, :disabled => @project.identifier_frozen? %><br /><em><%= l(:text_project_identifier_info) unless @project.identifier_frozen? %></em></p>
<p><%= f.text_field :homepage, :size => 40 %></p>
<p><%= f.check_box :is_public %></p>