updated validation format of repository url to allow file:///

git-svn-id: http://redmine.rubyforge.org/svn/trunk@137 e93f8b46-1217-0410-a6f0-8f06a7374b81
pull/351/head
Jean-Philippe Lang 18 years ago
parent 470ef4d11e
commit 4ee55dc456
  1. 2
      app/models/repository.rb
  2. 2
      app/views/projects/_form.rhtml

@ -18,7 +18,7 @@
class Repository < ActiveRecord::Base
belongs_to :project
validates_presence_of :url
validates_format_of :url, :with => /^(http|https|svn):\/\/.+/i
validates_format_of :url, :with => /^(http|https|svn|file):\/\/.+/i
@scm = nil

@ -30,7 +30,7 @@
<%= hidden_field_tag "repository_enabled", 0 %>
<div id="repository">
<% fields_for :repository, @project.repository, { :builder => TabularFormBuilder, :lang => current_language} do |repository| %>
<p><%= repository.text_field :url, :size => 60, :required => true %><br />(http://, https://, svn://)</p>
<p><%= repository.text_field :url, :size => 60, :required => true %><br />(http://, https://, svn://, file:///)</p>
<% end %>
</div>
<%= javascript_tag "Element.hide('repository');" if @project.repository.nil? %>

Loading…
Cancel
Save