Mercurial > hg > soundsoftware-site
changeset 129:5e974759e8b2 cannam
Merge from the default branch
line wrap: on
line diff
--- a/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ b/.svn/all-wcprops Wed Jan 19 15:15:02 2011 +0000 @@ -1,6 +1,6 @@ K 25 svn:wc:ra_dav:version-url -V 24 +V 38 /svn/!svn/ver/4731/trunk END .hgignore @@ -9,21 +9,9 @@ V 34 /svn/!svn/ver/4606/trunk/.hgignore END -Rakefile +.hgignore K 25 svn:wc:ra_dav:version-url -V 31 -/svn/!svn/ver/67/trunk/Rakefile +V 48 +/svn/!svn/ver/4607/branches/1.1-stable/.hgignore END -README.rdoc -K 25 -svn:wc:ra_dav:version-url -V 36 -/svn/!svn/ver/3849/trunk/README.rdoc -END -.gitignore -K 25 -svn:wc:ra_dav:version-url -V 35 -/svn/!svn/ver/3768/trunk/.gitignore -END
--- a/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk +http://redmine.rubyforge.org/svn/branches/1.1-stable http://redmine.rubyforge.org/svn @@ -75,7 +75,7 @@ -2010-09-23T14:37:44.367737Z +2010-08-12T15:03:25.000000Z bbf560d44f092d22a30d3a562436ad8c 2006-12-05T20:45:04.842118Z 67 @@ -109,7 +109,7 @@ -2010-09-23T14:37:44.367737Z +2010-08-12T15:03:25.000000Z 67c937b1f1d0603e69f322de34bbfe04 2010-07-18T15:49:24.341728Z 3849 @@ -167,7 +167,7 @@ -2010-09-23T14:37:44.363818Z +2010-08-12T15:03:25.000000Z 201a803b90bbd2a1624c4ce1dd260098 2010-06-09T22:01:21.132822Z 3768
--- a/app/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ b/app/.svn/all-wcprops Wed Jan 19 15:15:02 2011 +0000 @@ -1,5 +1,5 @@ K 25 svn:wc:ra_dav:version-url -V 28 +V 42 /svn/!svn/ver/4731/trunk/app END
--- a/app/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app +http://redmine.rubyforge.org/svn/branches/1.1-stable/app http://redmine.rubyforge.org/svn
--- a/app/controllers/account_controller.rb Wed Jan 19 15:04:22 2011 +0000 +++ b/app/controllers/account_controller.rb Wed Jan 19 15:15:02 2011 +0000 @@ -77,13 +77,19 @@ # User self-registration def register redirect_to(home_url) && return unless Setting.self_registration? || session[:auth_source_registration] + if request.get? session[:auth_source_registration] = nil @user = User.new(:language => Setting.default_language) + + @ssamr_user_details = SsamrUserDetail.new + else @user = User.new(params[:user]) @user.admin = false + @user.register + if session[:auth_source_registration] @user.activate @user.login = session[:auth_source_registration][:login] @@ -98,6 +104,11 @@ @user.login = params[:user][:login] @user.password, @user.password_confirmation = params[:password], params[:password_confirmation] + @ssamr_user_details = SsamrUserDetail.new(params[:ssamr_user_details]) + + # associates the 2 objects + @user.ssamr_user_detail = @ssamr_user_details + case Setting.self_registration when '1' register_by_email_activation(@user) @@ -257,6 +268,9 @@ # Pass a block for behavior when a user fails to save def register_manually_by_administrator(user, &block) if user.save + + @ssamr_user_details.save! + # Sends an email to the administrators Mailer.deliver_account_activation_request(user) account_pending
--- a/app/controllers/application_controller.rb Wed Jan 19 15:04:22 2011 +0000 +++ b/app/controllers/application_controller.rb Wed Jan 19 15:15:02 2011 +0000 @@ -314,7 +314,7 @@ if api_request? logger.error "Form authenticity token is missing or is invalid. API calls must include a proper Content-type header (text/xml or text/json)." end - render_error "Invalid form authenticity token." + render_error "Invalid form authenticity token. Perhaps your session has timed out; try reloading the form and entering your details again." end def render_feed(items, options={})
--- a/app/controllers/issues_controller.rb Wed Jan 19 15:04:22 2011 +0000 +++ b/app/controllers/issues_controller.rb Wed Jan 19 15:15:02 2011 +0000 @@ -135,7 +135,19 @@ attachments = Attachment.attach_files(@issue, params[:attachments]) render_attachment_warning_if_needed(@issue) flash[:notice] = l(:notice_successful_create) + call_hook(:controller_issues_new_after_save, { :params => params, :issue => @issue}) + + # Adds user to watcher's list + @issue.add_watcher(User.current) + + # Also adds the assignee to the watcher's list + if params[:issue][:assigned_to_id] && !params[:issue][:assigned_to_id].empty?: + unless @issue.watcher_ids.include?(params[:issue][:assigned_to_id]): + @issue.add_watcher(User.find(params[:issue][:assigned_to_id])) + end + end + respond_to do |format| format.html { redirect_to(params[:continue] ? { :action => 'new', :project_id => @project, :issue => {:tracker_id => @issue.tracker, :parent_issue_id => @issue.parent_issue_id}.reject {|k,v| v.nil?} } : @@ -270,6 +282,18 @@ @notes = params[:notes] || (params[:issue].present? ? params[:issue][:notes] : nil) @issue.init_journal(User.current, @notes) @issue.safe_attributes = params[:issue] + + # tests if the the user assigned_to_id + # is in this issues watcher's list + # if not, adds it. + + if params[:issue][:assigned_to_id] && !params[:issue][:assigned_to_id].empty?: + unless @issue.watcher_ids.include?(params[:issue][:assigned_to_id]): + @issue.add_watcher(User.find(params[:issue][:assigned_to_id])) + end + end + + end # TODO: Refactor, lots of extra code in here
--- a/app/controllers/members_controller.rb Wed Jan 19 15:04:22 2011 +0000 +++ b/app/controllers/members_controller.rb Wed Jan 19 15:15:02 2011 +0000 @@ -94,6 +94,7 @@ def autocomplete_for_member @principals = Principal.active.like(params[:q]).find(:all, :limit => 100) - @project.principals + logger.debug "Query for #{params[:q]} returned #{@principals.size} results" render :layout => false end
--- a/app/controllers/projects_controller.rb Wed Jan 19 15:04:22 2011 +0000 +++ b/app/controllers/projects_controller.rb Wed Jan 19 15:15:02 2011 +0000 @@ -42,12 +42,22 @@ helper :repositories include RepositoriesHelper include ProjectsHelper - + # Lists visible projects def index respond_to do |format| format.html { - @projects = Project.visible.find(:all, :order => 'lft') + sort_init 'lft' + sort_update %w(lft title created_on updated_on) + @limit = per_page_option + @project_count = Project.visible.count + @project_pages = Paginator.new self, @project_count, @limit, params['page'] + @offset ||= @project_pages.current.offset + @projects = Project.visible.all(:offset => @offset, :limit => @limit, :order => sort_clause) + if User.current.logged? + @user_projects = User.current.projects.sort_by(&:lft) + end + render :template => 'projects/index.rhtml', :layout => !request.xhr? } format.api { @offset, @limit = api_offset_and_limit
--- a/app/controllers/users_controller.rb Wed Jan 19 15:04:22 2011 +0000 +++ b/app/controllers/users_controller.rb Wed Jan 19 15:15:02 2011 +0000 @@ -62,6 +62,11 @@ end def show + + if @user.ssamr_user_detail != nil + @description = @user.ssamr_user_detail.description + end + # show projects based on current user visibility @memberships = @user.memberships.all(:conditions => Project.visible_by(User.current)) @@ -81,15 +86,19 @@ end end - def new + def new @user = User.new(:language => Setting.default_language, :mail_notification => Setting.default_notification_option) @auth_sources = AuthSource.find(:all) + + @ssamr_user_details = SsamrUserDetail.new + end verify :method => :post, :only => :create, :render => {:nothing => true, :status => :method_not_allowed } def create @user = User.new(:language => Setting.default_language, :mail_notification => Setting.default_notification_option) @user.safe_attributes = params[:user] + @user = User.new(params[:user]) @user.admin = params[:user][:admin] || false @user.login = params[:user][:login] @user.password, @user.password_confirmation = params[:user][:password], params[:user][:password_confirmation] unless @user.auth_source_id @@ -98,9 +107,16 @@ @user.pref.attributes = params[:pref] @user.pref[:no_self_notified] = (params[:no_self_notified] == '1') + @ssamr_user_details = SsamrUserDetail.new(params[:ssamr_user_details]) + + # associates the 2 objects + @user.ssamr_user_detail = @ssamr_user_details + if @user.save @user.pref.save - @user.notified_project_ids = (@user.mail_notification == 'selected' ? params[:notified_project_ids] : []) + + @ssamr_user_details.save! + Mailer.deliver_account_information(@user, params[:user][:password]) if params[:send_information] @@ -127,6 +143,9 @@ end def edit + + @ssamr_user_details = @user.ssamr_user_detail + @auth_sources = AuthSource.find(:all) @membership ||= Member.new end @@ -145,6 +164,21 @@ @user.pref.attributes = params[:pref] @user.pref[:no_self_notified] = (params[:no_self_notified] == '1') + if @user.ssamr_user_detail == nil + @ssamr_user_details = SsamrUserDetail.new() + @user.ssamr_user_detail = @ssamr_user_details + else + @ssamr_user_details = @user.ssamr_user_detail + end + + + if params[:ssamr_user_details].nil? or params[:ssamr_user_details].empty? + @ssamr_user_details.description = @user.ssamr_user_detail.description + else + @ssamr_user_details.description = params[:ssamr_user_details][:description] + @ssamr_user_details.save! + end + if @user.save @user.pref.save @user.notified_project_ids = (@user.mail_notification == 'selected' ? params[:notified_project_ids] : [])
--- a/app/controllers/welcome_controller.rb Wed Jan 19 15:04:22 2011 +0000 +++ b/app/controllers/welcome_controller.rb Wed Jan 19 15:15:02 2011 +0000 @@ -21,6 +21,14 @@ def index @news = News.latest User.current @projects = Project.latest User.current + + # tests if user is logged in to gfenerate the tips of the day list + if User.current.logged? + @tipsoftheday = Setting.tipoftheday_text + else + @tipsoftheday = '' + end + end def robots
--- a/app/helpers/application_helper.rb Wed Jan 19 15:04:22 2011 +0000 +++ b/app/helpers/application_helper.rb Wed Jan 19 15:15:02 2011 +0000 @@ -273,7 +273,7 @@ def principals_check_box_tags(name, principals) s = '' principals.sort.each do |principal| - s << "<label>#{ check_box_tag name, principal.id, false } #{h principal}</label>\n" + s << "<label>#{ check_box_tag name, principal.id, false } #{link_to_user principal}</label>\n" end s end
--- a/app/helpers/projects_helper.rb Wed Jan 19 15:04:22 2011 +0000 +++ b/app/helpers/projects_helper.rb Wed Jan 19 15:15:02 2011 +0000 @@ -83,6 +83,162 @@ s end + + # Renders a tree of projects where the current user belongs + # as a nested set of unordered lists + # The given collection may be a subset of the whole project tree + # (eg. some intermediate nodes are private and can not be seen) + def render_my_project_hierarchy(projects) + s = '' + + a = '' + + # Flag to tell if user has any projects + t = FALSE + + if projects.any? + ancestors = [] + original_project = @project + projects.each do |project| + # set the project environment to please macros. + + @project = project + + if User.current.member_of?(project): + + t = TRUE + + if (ancestors.empty? || project.is_descendant_of?(ancestors.last)) + s << "<ul class='projects #{ ancestors.empty? ? 'root' : nil}'>\n" + else + ancestors.pop + s << "</li>" + while (ancestors.any? && !project.is_descendant_of?(ancestors.last)) + ancestors.pop + s << "</ul></li>\n" + end + end + + classes = (ancestors.empty? ? 'root' : 'child') + s << "<li class='#{classes}'><div class='#{classes}'>" + + link_to_project(project, {}, :class => "project my-project") + if project.is_public? + s << " <span class='public'>" << l("field_is_public") << "</span>" + else + s << " <span class='private'>" << l("field_is_private") << "</span>" + end + s << "<div class='wiki description'>#{textilizable(project.short_description, :project => project)}</div>" unless project.description.blank? + s << "</div>\n" + ancestors << project + end + end + s << ("</li></ul>\n" * ancestors.size) + @project = original_project + end + + if t == TRUE + a << "<h2>" + a << l("label_my_project_plural") + a << "</h2>" + a << s + else + a = s + end + + a + end + + # Renders a tree of projects that the current user does not belong + # to, or of all projects if the current user is not logged in. The + # given collection may be a subset of the whole project tree + # (eg. some intermediate nodes are private and can not be seen). We + # are potentially interested in various things: the project name, + # description, manager(s), creation date, last activity date, + # general activity level, whether there is anything actually hosted + # here for the project, etc. + def render_project_table(projects) + + s = "" + s << "<div class='autoscroll'>" + s << "<table class='list projects'>" + s << "<thead><tr>" + + s << sort_header_tag('lft', :caption => l("field_name"), :default_order => 'desc') + s << "<th class='managers'>" << l("label_managers") << "</th>" + s << sort_header_tag('created_on', :default_order => 'desc') + s << sort_header_tag('updated_on', :default_order => 'desc') + + s << "</tr></thead><tbody>" + + ancestors = [] + original_project = @project + oddeven = 'even' + level = 0 + + projects.each do |project| + + # set the project environment to please macros. + + @project = project + + if (ancestors.empty? || project.is_descendant_of?(ancestors.last)) + level = level + 1 + else + level = 0 + oddeven = cycle('odd','even') + ancestors.pop + while (ancestors.any? && !project.is_descendant_of?(ancestors.last)) + ancestors.pop + end + end + + classes = (ancestors.empty? ? 'root' : 'child') + + s << "<tr class='#{oddeven} #{classes} level#{level}'>" + s << "<td class='firstcol name hosted_here'>" << link_to_project(project, {}, :class => "project #{User.current.member_of?(project) ? 'my-project' : nil}") << "</td>" + s << "<td class='managers'>" + + u = project.users_by_role + if u + u.keys.each do |r| + if r.allowed_to?(:edit_project) + mgrs = [] + u[r].sort.each do |m| + mgrs << link_to_user(m) + end + if mgrs.size < 3 + s << '<nobr>' << mgrs.join(', ') << '</nobr>' + else + s << mgrs.join(', ') + end + end + end + end + + s << "</td>" + s << "<td class='created_on'>" << format_date(project.created_on) << "</td>" + s << "<td class='updated_on'>" << format_date(project.updated_on) << "</td>" + + s << "</tr>" + s << "<tr class='#{oddeven} #{classes}'>" + s << "<td class='firstcol wiki description'>" + s << textilizable(project.short_description, :project => project) unless project.description.blank? + s << "</td>" + s << "<td colspan=3> </td>" + s << "</tr>" + + ancestors << project + end + + s << "</table>" + + @project = original_project + + s + end + + + # Returns a set of options for a select field, grouped by project. def version_options_for_select(versions, selected=nil) grouped = Hash.new {|h,k| h[k] = []}
--- a/app/models/project.rb Wed Jan 19 15:04:22 2011 +0000 +++ b/app/models/project.rb Wed Jan 19 15:15:02 2011 +0000 @@ -438,7 +438,14 @@ # Returns a short description of the projects (first lines) def short_description(length = 255) - description.gsub(/^(.{#{length}}[^\n\r]*).*$/m, '\1...').strip if description + ## Original Redmine code: this truncates to the CR that is more + ## than "length" characters from the start. + # description.gsub(/^(.{#{length}}[^\n\r]*).*$/m, '\1...').strip if description + ## That's too much for us, and also we want to omit images and the + ## like. Truncate instead to the first CR that follows _any_ + ## non-blank text, and to the next word break beyond "length" + ## characters if the result is still longer than that. + description.gsub(/![^\s]+!/, '').gsub(/^(\s*[^\n\r]*).*$/m, '\1').gsub(/^(.{#{length}}\b).*$/m, '\1 ...').strip if description end def css_classes
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/app/models/ssamr_user_detail.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,5 @@ +class SsamrUserDetail < ActiveRecord::Base + belongs_to :user + + validates_presence_of :description +end
--- a/app/models/user.rb Wed Jan 19 15:04:22 2011 +0000 +++ b/app/models/user.rb Wed Jan 19 15:15:02 2011 +0000 @@ -52,6 +52,9 @@ has_one :api_token, :class_name => 'Token', :conditions => "action='api'" belongs_to :auth_source + has_one :ssamr_user_detail, :dependent => :destroy, :class_name => 'SsamrUserDetail' + accepts_nested_attributes_for :ssamr_user_detail + # Active non-anonymous users scope named_scope :active, :conditions => "#{User.table_name}.status = #{STATUS_ACTIVE}" @@ -63,6 +66,9 @@ attr_protected :login, :admin, :password, :password_confirmation, :hashed_password validates_presence_of :login, :firstname, :lastname, :mail, :if => Proc.new { |user| !user.is_a?(AnonymousUser) } + + # TODO: is this validation correct validates_presence_of :ssamr_user_detail + validates_uniqueness_of :login, :if => Proc.new { |user| !user.login.blank? }, :case_sensitive => false validates_uniqueness_of :mail, :if => Proc.new { |user| !user.mail.blank? }, :case_sensitive => false # Login must contain lettres, numbers, underscores only @@ -95,6 +101,10 @@ write_attribute(:mail, arg.to_s.strip) end + def description=(arg) + write_attribute(:description, arg.to_s.strip) + end + def identity_url=(url) if url.blank? write_attribute(:identity_url, '')
--- a/app/sweepers/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 37 -/svn/!svn/ver/1157/trunk/app/sweepers -END
--- a/app/sweepers/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/sweepers/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/sweepers +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/sweepers http://redmine.rubyforge.org/svn
--- a/app/views/account/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 42 -/svn/!svn/ver/3530/trunk/app/views/account -END -password_recovery.rhtml -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/3341/trunk/app/views/account/password_recovery.rhtml -END -lost_password.rhtml -K 25 -svn:wc:ra_dav:version-url -V 61 -/svn/!svn/ver/747/trunk/app/views/account/lost_password.rhtml -END -register.rhtml -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/2678/trunk/app/views/account/register.rhtml -END -login.rhtml -K 25 -svn:wc:ra_dav:version-url -V 54 -/svn/!svn/ver/3530/trunk/app/views/account/login.rhtml -END
--- a/app/views/account/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/account/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/account +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/account http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.495777Z +2010-08-12T15:03:25.000000Z 232ce32581d2f869b81c300244decff5 2010-01-28T18:54:51.800438Z 3341 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.495777Z +2010-08-12T15:03:25.000000Z cf3d603bbb4825640988086c7871c165 2007-09-22T13:17:49.935719Z 747 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.495777Z +2011-01-13T12:46:09.000000Z 82c6920dc6c95e35b0248de4be82885b 2009-04-21T13:43:57.529967Z 2678 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.495777Z +2010-08-12T15:03:25.000000Z 72b586f183037fcab519bc7575d3b2b5 2010-03-03T20:21:05.265018Z 3530
--- a/app/views/account/register.rhtml Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/account/register.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -29,6 +29,22 @@ <p><label for="user_language"><%=l(:field_language)%></label> <%= select("user", "language", lang_options_for_select) %></p> + +<h3><%=l(:label_ssamr_details)%></h3> + + <% fields_for :ssamr_user_details, :builder => TabularFormBuilder, :lang => current_language do |ssamr_user_detail| %> + <p> + + <%= ssamr_user_detail.text_area :description, :rows => 3, :cols => 40, :required => true, :class => 'wiki-edit' %> + <%= wikitoolbar_for 'ssamr_user_details_description' %> + + <em> <%=l(:text_user_ssamr_description_info)%></em> + </p> + <% end %> + + + + <% if Setting.openid? %> <p><label for="user_identity_url"><%=l(:field_identity_url)%></label> <%= text_field 'user', 'identity_url' %></p>
--- a/app/views/activities/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 45 -/svn/!svn/ver/4047/trunk/app/views/activities -END -index.html.erb -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/4047/trunk/app/views/activities/index.html.erb -END
--- a/app/views/activities/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/activities/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/activities +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/activities http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-24T12:48:29.578245Z +2010-10-01T15:15:02.000000Z 9e6d9091be2c8769f8e262500d974f84 2010-08-27T14:05:54.014502Z 4047
--- a/app/views/admin/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,41 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 40 -/svn/!svn/ver/4271/trunk/app/views/admin -END -info.rhtml -K 25 -svn:wc:ra_dav:version-url -V 51 -/svn/!svn/ver/3200/trunk/app/views/admin/info.rhtml -END -plugins.rhtml -K 25 -svn:wc:ra_dav:version-url -V 54 -/svn/!svn/ver/2041/trunk/app/views/admin/plugins.rhtml -END -_menu.rhtml -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/3909/trunk/app/views/admin/_menu.rhtml -END -_no_data.rhtml -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/1040/trunk/app/views/admin/_no_data.rhtml -END -index.rhtml -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/3176/trunk/app/views/admin/index.rhtml -END -projects.rhtml -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/4271/trunk/app/views/admin/projects.rhtml -END
--- a/app/views/admin/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/admin/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/admin +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/admin http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.499776Z +2010-08-12T15:03:25.000000Z a7b3d0461b8dac7e68d5b758e6b93b45 2009-12-19T20:33:24.113306Z 3200 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.503775Z +2010-08-12T15:03:25.000000Z aacfd3ff934f52585eba4f460f52df31 2008-11-16T17:12:02.001794Z 2041 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.499776Z +2010-09-10T14:59:24.000000Z a2dcf50c0d70604e64f18cd28f15280b 2010-08-04T00:38:22.739166Z 3909 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.499776Z +2010-08-12T15:03:25.000000Z 8db715728d1f5851c242e085110f2bb6 2008-01-05T11:33:49.132886Z 1040 @@ -168,7 +168,7 @@ -2010-09-23T14:37:44.499776Z +2010-08-12T15:03:25.000000Z 35378eb3f0e385475e3bd0586f22324a 2009-12-17T18:21:02.630202Z 3176 @@ -202,7 +202,7 @@ -2010-11-19T13:04:49.448967Z +2010-11-30T13:11:53.000000Z 9aaefdc17951db18479f38fb0db73ea7 2010-10-22T15:11:04.321155Z 4271
--- a/app/views/attachments/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 46 -/svn/!svn/ver/3879/trunk/app/views/attachments -END -_links.rhtml -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/2116/trunk/app/views/attachments/_links.rhtml -END -file.rhtml -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/2693/trunk/app/views/attachments/file.rhtml -END -_form.rhtml -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3879/trunk/app/views/attachments/_form.rhtml -END -diff.rhtml -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/2693/trunk/app/views/attachments/diff.rhtml -END
--- a/app/views/attachments/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/attachments/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/attachments +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/attachments http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.503775Z +2010-08-12T15:03:25.000000Z 6f5329a1a81f3798a84a26b0261f5000 2008-12-09T16:54:46.963649Z 2116 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.507774Z +2010-08-12T15:03:25.000000Z b8bc854a91c56c3e3d45390e8ed4bb8d 2009-04-25T09:35:14.494071Z 2693 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.503775Z +2010-08-12T15:03:25.000000Z 9cd3f9685ce632814961d9f7e67c4d26 2010-07-25T10:34:55.569539Z 3879 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.503775Z +2010-08-12T15:03:25.000000Z 43e4ae1b5703daa55b37eb438a169304 2009-04-25T09:35:14.494071Z 2693
--- a/app/views/auth_sources/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 47 -/svn/!svn/ver/3744/trunk/app/views/auth_sources -END -index.html.erb -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/3436/trunk/app/views/auth_sources/index.html.erb -END -edit.rhtml -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/333/trunk/app/views/auth_sources/edit.rhtml -END -_form.html.erb -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/3744/trunk/app/views/auth_sources/_form.html.erb -END -new.rhtml -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/333/trunk/app/views/auth_sources/new.rhtml -END
--- a/app/views/auth_sources/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/auth_sources/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/auth_sources +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/auth_sources http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.507774Z +2010-08-12T15:03:25.000000Z 2f1b944eb2979ed37624c653969fa6bf 2010-02-15T16:41:21.789274Z 3436 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.507774Z +2010-08-12T15:03:25.000000Z 6f4f645b6d66417180eaadb0e204a56e 2007-03-12T17:59:02.654744Z 333 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.507774Z +2010-08-12T15:03:25.000000Z 4ea0fc7f46738e3709d552778de7a756 2010-05-23T03:16:31.304135Z 3744 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.507774Z +2010-08-12T15:03:25.000000Z 1cc2f5049536de6e5d6d4e926f96ab38 2007-03-12T17:59:02.654744Z 333
--- a/app/views/auto_completes/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 49 -/svn/!svn/ver/3945/trunk/app/views/auto_completes -END -issues.html.erb -K 25 -svn:wc:ra_dav:version-url -V 65 -/svn/!svn/ver/3945/trunk/app/views/auto_completes/issues.html.erb -END
--- a/app/views/auto_completes/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/auto_completes/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/auto_completes +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/auto_completes http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.511773Z +2010-09-10T14:59:24.000000Z d325b0677890591680b96985e16a0139 2010-08-17T15:03:58.074505Z 3945
--- a/app/views/boards/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 41 -/svn/!svn/ver/4047/trunk/app/views/boards -END -show.rhtml -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/3426/trunk/app/views/boards/show.rhtml -END -_form.rhtml -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/529/trunk/app/views/boards/_form.rhtml -END -edit.rhtml -K 25 -svn:wc:ra_dav:version-url -V 51 -/svn/!svn/ver/529/trunk/app/views/boards/edit.rhtml -END -index.rhtml -K 25 -svn:wc:ra_dav:version-url -V 53 -/svn/!svn/ver/4047/trunk/app/views/boards/index.rhtml -END -new.rhtml -K 25 -svn:wc:ra_dav:version-url -V 50 -/svn/!svn/ver/529/trunk/app/views/boards/new.rhtml -END
--- a/app/views/boards/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/boards/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/boards +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/boards http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.515775Z +2010-08-12T15:03:25.000000Z 74a37f0fbb3bb635f2c0389a2624988e 2010-02-14T11:52:12.027647Z 3426 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.515775Z +2010-08-12T15:03:25.000000Z 0416740cf4bf599b0da68e597c0cd44c 2007-05-13T17:09:56.765659Z 529 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.515775Z +2010-08-12T15:03:25.000000Z 00f3643ebd3d5af2322b92c885a6eec6 2007-05-13T17:09:56.765659Z 529 @@ -134,7 +134,7 @@ -2010-09-24T12:48:28.319823Z +2010-10-01T15:15:02.000000Z 5c323ebf8fea05f556896ed49186773b 2010-08-27T14:05:54.014502Z 4047 @@ -168,7 +168,7 @@ -2010-09-23T14:37:44.515775Z +2010-08-12T15:03:25.000000Z b951b4d73988508c5a42fdb7b7df695c 2007-05-13T17:09:56.765659Z 529
--- a/app/views/calendars/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 44 -/svn/!svn/ver/4238/trunk/app/views/calendars -END -show.html.erb -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/4238/trunk/app/views/calendars/show.html.erb -END
--- a/app/views/calendars/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/calendars/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/calendars +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/calendars http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-11-19T13:04:49.472856Z +2010-11-30T13:11:53.000000Z d47ece5d0e0ff017f3f1b5ce4b776ba0 2010-10-07T15:26:53.500793Z 4238
--- a/app/views/context_menus/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 48 -/svn/!svn/ver/4409/trunk/app/views/context_menus -END -issues.html.erb -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/4409/trunk/app/views/context_menus/issues.html.erb -END
--- a/app/views/context_menus/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/context_menus/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/context_menus +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/context_menus http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-11-19T13:04:47.016806Z +2010-11-30T13:11:53.000000Z 1a873e0d09f011b6b274e955460d35a1 2010-11-16T19:49:08.085592Z 4409
--- a/app/views/custom_fields/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 48 -/svn/!svn/ver/4382/trunk/app/views/custom_fields -END -_form.rhtml -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/4382/trunk/app/views/custom_fields/_form.rhtml -END -edit.rhtml -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/3144/trunk/app/views/custom_fields/edit.rhtml -END -_index.rhtml -K 25 -svn:wc:ra_dav:version-url -V 61 -/svn/!svn/ver/3672/trunk/app/views/custom_fields/_index.rhtml -END -index.rhtml -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/2871/trunk/app/views/custom_fields/index.rhtml -END -new.rhtml -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3144/trunk/app/views/custom_fields/new.rhtml -END
--- a/app/views/custom_fields/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/custom_fields/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/custom_fields +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/custom_fields http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-11-19T13:04:48.192856Z +2010-11-30T13:11:53.000000Z 7c1accc3dd22bd872e2e9b6a7f02a5c2 2010-11-07T14:15:01.891476Z 4382 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.527783Z +2010-08-12T15:03:25.000000Z 0c149f63c965988c70ecf48bde3222b3 2009-12-09T10:49:58.529326Z 3144 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.527783Z +2010-08-12T15:03:25.000000Z 3372a4aeafa9f940744f07c4ce8ca434 2010-04-16T15:33:49.924704Z 3672 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.527783Z +2010-08-12T15:03:25.000000Z 6441c559d374310cabfc9649eb5b3617 2009-09-12T09:13:13.676884Z 2871 @@ -168,7 +168,7 @@ -2010-09-23T14:37:44.527783Z +2010-08-12T15:03:25.000000Z 7658107f6af4536cedfc075202ad3f7c 2009-12-09T10:49:58.529326Z 3144
--- a/app/views/documents/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,41 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 44 -/svn/!svn/ver/3603/trunk/app/views/documents -END -_document.rhtml -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/3602/trunk/app/views/documents/_document.rhtml -END -show.rhtml -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/3603/trunk/app/views/documents/show.rhtml -END -_form.rhtml -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/2777/trunk/app/views/documents/_form.rhtml -END -edit.rhtml -K 25 -svn:wc:ra_dav:version-url -V 54 -/svn/!svn/ver/333/trunk/app/views/documents/edit.rhtml -END -index.rhtml -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/2295/trunk/app/views/documents/index.rhtml -END -new.rhtml -K 25 -svn:wc:ra_dav:version-url -V 54 -/svn/!svn/ver/1180/trunk/app/views/documents/new.rhtml -END
--- a/app/views/documents/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/documents/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/documents +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/documents http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.531783Z +2010-08-12T15:03:25.000000Z 755690362ea0b5f92a82326872d3b0ea 2010-03-18T20:02:17.358992Z 3602 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.535729Z +2010-08-12T15:03:25.000000Z a7c10b428fb4d74827a6ffdcc3651a25 2010-03-18T20:06:16.936785Z 3603 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.535729Z +2010-08-12T15:03:25.000000Z 9d05f76602471c3dc339d8c54d2f4abc 2009-05-30T23:30:36.923541Z 2777 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.535729Z +2010-08-12T15:03:25.000000Z 41a0e984e939e8fad03f2be67b33a4fc 2007-03-12T17:59:02.654744Z 333 @@ -168,7 +168,7 @@ -2010-09-23T14:37:44.535729Z +2010-08-12T15:03:25.000000Z cf8b8406d31262625c1f2ab2b66020b2 2009-01-22T16:34:54.303755Z 2295 @@ -202,7 +202,7 @@ -2010-09-23T14:37:44.535729Z +2010-08-12T15:03:25.000000Z 60e54f2c42af4454d69bfc812bbf55ca 2008-02-29T19:46:58.834023Z 1180
--- a/app/views/enumerations/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 47 -/svn/!svn/ver/3734/trunk/app/views/enumerations -END -list.rhtml -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3734/trunk/app/views/enumerations/list.rhtml -END -_form.rhtml -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/2946/trunk/app/views/enumerations/_form.rhtml -END -edit.rhtml -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/2810/trunk/app/views/enumerations/edit.rhtml -END -destroy.rhtml -K 25 -svn:wc:ra_dav:version-url -V 61 -/svn/!svn/ver/1558/trunk/app/views/enumerations/destroy.rhtml -END -new.rhtml -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/2810/trunk/app/views/enumerations/new.rhtml -END
--- a/app/views/enumerations/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/enumerations/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/enumerations +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/enumerations http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.539728Z +2010-08-12T15:03:25.000000Z b4f45f24d2fb9546e609fd3299912be6 2010-05-09T11:19:15.980195Z 3734 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.539728Z +2010-08-12T15:03:25.000000Z 0a47386b406e4f425fe541d12c780467 2009-10-21T22:34:28.905707Z 2946 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.539728Z +2010-08-12T15:03:25.000000Z 668687299206262ccf34ac3a44f57c33 2009-07-05T12:22:02.133266Z 2810 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.539728Z +2010-08-12T15:03:25.000000Z b9c8a97c172197a30cbb6c08000a9fa7 2008-06-17T19:10:54.015252Z 1558 @@ -168,7 +168,7 @@ -2010-09-23T14:37:44.539728Z +2010-08-12T15:03:25.000000Z e6eaade1aac54267080f56f5a09d3fd1 2009-07-05T12:22:02.133266Z 2810
--- a/app/views/files/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 40 -/svn/!svn/ver/4268/trunk/app/views/files -END -index.html.erb -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/4268/trunk/app/views/files/index.html.erb -END -new.html.erb -K 25 -svn:wc:ra_dav:version-url -V 53 -/svn/!svn/ver/4085/trunk/app/views/files/new.html.erb -END
--- a/app/views/files/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/files/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/files +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/files http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-11-19T13:04:49.392852Z +2010-11-30T13:11:53.000000Z 05986f09d13424caeb68601c7c9ff16b 2010-10-22T14:45:02.987126Z 4268 @@ -66,7 +66,7 @@ -2010-09-24T12:48:27.722352Z +2010-10-01T15:15:02.000000Z 7cd15d28fd27afa1f10b921c8b35cd7a 2010-09-14T16:24:07.840869Z 4085
--- a/app/views/groups/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,59 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 41 -/svn/!svn/ver/4312/trunk/app/views/groups -END -autocomplete_for_user.html.erb -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/2869/trunk/app/views/groups/autocomplete_for_user.html.erb -END -edit.html.erb -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/2871/trunk/app/views/groups/edit.html.erb -END -index.html.erb -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/2869/trunk/app/views/groups/index.html.erb -END -new.html.erb -K 25 -svn:wc:ra_dav:version-url -V 54 -/svn/!svn/ver/3375/trunk/app/views/groups/new.html.erb -END -_general.html.erb -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/2879/trunk/app/views/groups/_general.html.erb -END -_memberships.html.erb -K 25 -svn:wc:ra_dav:version-url -V 63 -/svn/!svn/ver/3734/trunk/app/views/groups/_memberships.html.erb -END -_users.html.erb -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/4312/trunk/app/views/groups/_users.html.erb -END -show.html.erb -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/2869/trunk/app/views/groups/show.html.erb -END -_form.html.erb -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/2869/trunk/app/views/groups/_form.html.erb -END
--- a/app/views/groups/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/groups/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/groups +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/groups http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.547775Z +2010-08-12T15:03:25.000000Z 8798190a9ed51cd47a32f7fa3b14962b 2009-09-11T21:11:20.141433Z 2864 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.547775Z +2010-08-12T15:03:25.000000Z 77b68adb1216f00c034d0afa77a50bff 2009-09-12T09:13:13.676884Z 2871 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.547775Z +2010-08-12T15:03:25.000000Z 61731ddfe926e25ea2108a99a7dc594d 2009-07-05T11:38:40.659710Z 2807 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.547775Z +2010-08-12T15:03:25.000000Z f122118621575d0b74331d392b4aba4b 2010-02-06T13:26:29.318273Z 3375 @@ -168,7 +168,7 @@ -2010-09-23T14:37:44.547775Z +2010-08-12T15:03:25.000000Z 5fc442e9118fe012a7d4049daa4d68b4 2009-09-12T16:12:42.876344Z 2879 @@ -202,7 +202,7 @@ -2010-09-23T14:37:44.547775Z +2010-08-12T15:03:25.000000Z 5f484ae9be041e266944cc2710caa394 2010-05-09T11:19:15.980195Z 3734 @@ -236,7 +236,7 @@ -2010-11-19T13:04:49.444940Z +2010-11-30T13:11:53.000000Z 7738dc0db4c4ad48e82613829c1e991a 2010-10-30T16:47:33.260585Z 4312 @@ -270,7 +270,7 @@ -2010-09-23T14:37:44.547775Z +2010-08-12T15:03:25.000000Z ee1e9b07710ccd0b0dee7791dddc93bb 2009-07-05T13:54:34.821434Z 2812 @@ -304,7 +304,7 @@ -2010-09-23T14:37:44.547775Z +2010-08-12T15:03:25.000000Z 09eeec211f50994f28b31bcff9be43ef 2009-09-05T11:19:00.617770Z 2858
--- a/app/views/issue_categories/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 51 -/svn/!svn/ver/4385/trunk/app/views/issue_categories -END -new.html.erb -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/3549/trunk/app/views/issue_categories/new.html.erb -END -_form.rhtml -K 25 -svn:wc:ra_dav:version-url -V 63 -/svn/!svn/ver/4385/trunk/app/views/issue_categories/_form.rhtml -END -edit.rhtml -K 25 -svn:wc:ra_dav:version-url -V 61 -/svn/!svn/ver/725/trunk/app/views/issue_categories/edit.rhtml -END -destroy.rhtml -K 25 -svn:wc:ra_dav:version-url -V 65 -/svn/!svn/ver/1182/trunk/app/views/issue_categories/destroy.rhtml -END
--- a/app/views/issue_categories/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/issue_categories/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/issue_categories +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/issue_categories http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.551784Z +2010-08-12T15:03:25.000000Z 61ef938e10897a71008d145439614aa8 2010-03-06T18:43:00.594668Z 3549 @@ -66,7 +66,7 @@ -2010-11-19T13:04:49.476971Z +2010-11-30T13:11:53.000000Z e0d28729320423a7b8fcb6309b58de9a 2010-11-07T14:56:12.614499Z 4385 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.551784Z +2010-08-12T15:03:25.000000Z fc3f04670edce3c08e645d254198a89c 2007-09-14T11:34:08.234701Z 725 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.551784Z +2010-08-12T15:03:25.000000Z f7b34c60cf2f117d3c53be7b0840fe28 2008-02-29T22:54:07.325361Z 1182
--- a/app/views/issue_statuses/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 49 -/svn/!svn/ver/3600/trunk/app/views/issue_statuses -END -index.html.erb -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/3600/trunk/app/views/issue_statuses/index.html.erb -END -_form.rhtml -K 25 -svn:wc:ra_dav:version-url -V 61 -/svn/!svn/ver/3157/trunk/app/views/issue_statuses/_form.rhtml -END -edit.rhtml -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/2810/trunk/app/views/issue_statuses/edit.rhtml -END -new.rhtml -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/2810/trunk/app/views/issue_statuses/new.rhtml -END
--- a/app/views/issue_statuses/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/issue_statuses/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/issue_statuses +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/issue_statuses http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.559788Z +2010-08-12T15:03:25.000000Z 2d8b318bb1dbbe6dbb478716d52e65e9 2010-03-17T20:46:22.413470Z 3600 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.559788Z +2010-08-12T15:03:25.000000Z e4ea04eeab7c1f7265858a9dd09f1b7b 2009-12-12T10:33:12.138303Z 3157 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.559788Z +2010-08-12T15:03:25.000000Z 21f8b2f134a83413d09ae7e4d004c642 2009-07-05T12:22:02.133266Z 2810 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.559788Z +2010-08-12T15:03:25.000000Z af751ca552f43d9954a0cb1bbdb6e362 2009-07-05T12:22:02.133266Z 2810
--- a/app/views/issues/_form.rhtml Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/issues/_form.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -9,9 +9,12 @@ <p><%= f.text_field :subject, :size => 80, :required => true %></p> <% if User.current.allowed_to?(:manage_subtasks, @project) %> -<p id="parent_issue"><%= f.text_field :parent_issue_id, :size => 10 %></p> -<div id="parent_issue_candidates" class="autocomplete"></div> -<%= javascript_tag "observeParentIssueField('#{auto_complete_issues_path(:id => @issue, :project_id => @project) }')" %> + <p id="parent_issue"><%= f.text_field :parent_issue_id, :size => 10, :autocomplete => :on %> + <br /> + <em> <%=l(:text_issue_parent_issue_info)%></em> + </p> + <div id="parent_issue_candidates" class="autocomplete"></div> + <%= javascript_tag "observeParentIssueField('#{auto_complete_issues_path(:id => @issue, :project_id => @project) }')" %> <% end %> <p><%= f.text_area :description,
--- a/app/views/journals/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 43 -/svn/!svn/ver/4034/trunk/app/views/journals -END -_notes_form.rhtml -K 25 -svn:wc:ra_dav:version-url -V 61 -/svn/!svn/ver/2924/trunk/app/views/journals/_notes_form.rhtml -END -update.rjs -K 25 -svn:wc:ra_dav:version-url -V 54 -/svn/!svn/ver/3596/trunk/app/views/journals/update.rjs -END -edit.rjs -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/1105/trunk/app/views/journals/edit.rjs -END -index.rxml -K 25 -svn:wc:ra_dav:version-url -V 54 -/svn/!svn/ver/4034/trunk/app/views/journals/index.rxml -END
--- a/app/views/journals/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/journals/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/journals +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/journals http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.579750Z +2010-08-12T15:03:25.000000Z fb8a5b1bfdbadbbaaa17ce7fc1dfcf3c 2009-10-11T10:36:11.599175Z 2924 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.579750Z +2010-08-12T15:03:25.000000Z 269ec86216a5d0340e02940f1b190d51 2010-03-17T04:13:05.342620Z 3596 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.579750Z +2010-08-12T15:03:25.000000Z ce552c52f7c423630412d0593cc1ee61 2008-02-02T10:50:31.694950Z 1105 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.579750Z +2010-09-10T14:59:24.000000Z ef7f777c9318cee52e909377c4f96e8b 2010-08-23T15:04:36.844654Z 4034
--- a/app/views/layouts/base.rhtml Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/layouts/base.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -32,7 +32,7 @@ <%= render_menu :top_menu -%> </div> -<div id="header"> +<%= tag('div', {:id => 'header', :class => (display_main_menu?(@project) ? 'header-project' : 'header-general')}, true) %> <div id="quick-search"> <% form_tag({:controller => 'search', :action => 'index', :id => @project}, :method => :get ) do %> <%= hidden_field_tag(controller.default_search_scope, 1, :id => nil) if controller.default_search_scope %> @@ -43,7 +43,7 @@ </div> <h1><%= page_header_title %></h1> - + <% if display_main_menu?(@project) %> <div id="main-menu"> <%= render_main_menu(@project) %>
--- a/app/views/ldap_auth_sources/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/3744/trunk/app/views/ldap_auth_sources -END -_form.rhtml -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/3744/trunk/app/views/ldap_auth_sources/_form.rhtml -END
--- a/app/views/ldap_auth_sources/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/ldap_auth_sources/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/ldap_auth_sources +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/ldap_auth_sources http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.583752Z +2010-08-12T15:03:25.000000Z 7eaca2b2857c3c1ef6fa72633333d56f 2010-05-23T03:16:31.304135Z 3744
--- a/app/views/mailer/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,197 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 41 -/svn/!svn/ver/4296/trunk/app/views/mailer -END -wiki_content_added.text.plain.rhtml -K 25 -svn:wc:ra_dav:version-url -V 77 -/svn/!svn/ver/4296/trunk/app/views/mailer/wiki_content_added.text.plain.rhtml -END -account_activated.text.plain.rhtml -K 25 -svn:wc:ra_dav:version-url -V 76 -/svn/!svn/ver/2484/trunk/app/views/mailer/account_activated.text.plain.rhtml -END -register.text.html.rhtml -K 25 -svn:wc:ra_dav:version-url -V 65 -/svn/!svn/ver/877/trunk/app/views/mailer/register.text.html.rhtml -END -account_activation_request.text.plain.rhtml -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/915/trunk/app/views/mailer/account_activation_request.text.plain.rhtml -END -account_activation_request.text.html.rhtml -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/3452/trunk/app/views/mailer/account_activation_request.text.html.rhtml -END -attachments_added.text.plain.rhtml -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/877/trunk/app/views/mailer/attachments_added.text.plain.rhtml -END -issue_edit.text.plain.rhtml -K 25 -svn:wc:ra_dav:version-url -V 69 -/svn/!svn/ver/2493/trunk/app/views/mailer/issue_edit.text.plain.rhtml -END -issue_edit.text.html.rhtml -K 25 -svn:wc:ra_dav:version-url -V 68 -/svn/!svn/ver/3452/trunk/app/views/mailer/issue_edit.text.html.rhtml -END -issue_add.text.html.rhtml -K 25 -svn:wc:ra_dav:version-url -V 67 -/svn/!svn/ver/3452/trunk/app/views/mailer/issue_add.text.html.rhtml -END -message_posted.text.html.rhtml -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/3452/trunk/app/views/mailer/message_posted.text.html.rhtml -END -reminder.text.plain.rhtml -K 25 -svn:wc:ra_dav:version-url -V 67 -/svn/!svn/ver/2493/trunk/app/views/mailer/reminder.text.plain.rhtml -END -reminder.text.html.rhtml -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/2814/trunk/app/views/mailer/reminder.text.html.rhtml -END -wiki_content_added.text.html.rhtml -K 25 -svn:wc:ra_dav:version-url -V 76 -/svn/!svn/ver/4296/trunk/app/views/mailer/wiki_content_added.text.html.rhtml -END -test.text.plain.rhtml -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/877/trunk/app/views/mailer/test.text.plain.rhtml -END -test.text.html.rhtml -K 25 -svn:wc:ra_dav:version-url -V 61 -/svn/!svn/ver/877/trunk/app/views/mailer/test.text.html.rhtml -END -account_activated.text.html.rhtml -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/2484/trunk/app/views/mailer/account_activated.text.html.rhtml -END -register.text.plain.rhtml -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/877/trunk/app/views/mailer/register.text.plain.rhtml -END -_issue_text_plain.rhtml -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/877/trunk/app/views/mailer/_issue_text_plain.rhtml -END -_issue_text_html.rhtml -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/3452/trunk/app/views/mailer/_issue_text_html.rhtml -END -attachments_added.text.html.rhtml -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/3452/trunk/app/views/mailer/attachments_added.text.html.rhtml -END -news_added.text.plain.rhtml -K 25 -svn:wc:ra_dav:version-url -V 68 -/svn/!svn/ver/877/trunk/app/views/mailer/news_added.text.plain.rhtml -END -news_added.text.html.rhtml -K 25 -svn:wc:ra_dav:version-url -V 68 -/svn/!svn/ver/3452/trunk/app/views/mailer/news_added.text.html.rhtml -END -document_added.text.plain.rhtml -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/877/trunk/app/views/mailer/document_added.text.plain.rhtml -END -issue_add.text.plain.rhtml -K 25 -svn:wc:ra_dav:version-url -V 68 -/svn/!svn/ver/2493/trunk/app/views/mailer/issue_add.text.plain.rhtml -END -document_added.text.html.rhtml -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/3452/trunk/app/views/mailer/document_added.text.html.rhtml -END -account_information.text.plain.rhtml -K 25 -svn:wc:ra_dav:version-url -V 77 -/svn/!svn/ver/877/trunk/app/views/mailer/account_information.text.plain.rhtml -END -account_information.text.html.rhtml -K 25 -svn:wc:ra_dav:version-url -V 77 -/svn/!svn/ver/3452/trunk/app/views/mailer/account_information.text.html.rhtml -END -message_posted.text.plain.rhtml -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/932/trunk/app/views/mailer/message_posted.text.plain.rhtml -END -lost_password.text.plain.rhtml -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/1683/trunk/app/views/mailer/lost_password.text.plain.rhtml -END -wiki_content_updated.text.plain.rhtml -K 25 -svn:wc:ra_dav:version-url -V 79 -/svn/!svn/ver/4296/trunk/app/views/mailer/wiki_content_updated.text.plain.rhtml -END -wiki_content_updated.text.html.rhtml -K 25 -svn:wc:ra_dav:version-url -V 78 -/svn/!svn/ver/4296/trunk/app/views/mailer/wiki_content_updated.text.html.rhtml -END -lost_password.text.html.rhtml -K 25 -svn:wc:ra_dav:version-url -V 71 -/svn/!svn/ver/3452/trunk/app/views/mailer/lost_password.text.html.rhtml -END
--- a/app/views/mailer/account_activation_request.text.html.rhtml Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/mailer/account_activation_request.text.html.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -1,2 +1,12 @@ <p><%= l(:mail_body_account_activation_request, h(@user.login)) %></p> <p><%= link_to @url, @url %></p> + +<h3><%= l(:label_ssamr_details) %></h3> +<p> + <%=l(:field_name)%>: <%= h @user.name %><br /> + <%=l(:field_mail)%>: <%= h @user.mail %> +</p> + +<h4><%= l(:label_ssamr_description ) %></h4> +<%= textilizable @user.ssamr_user_detail['description'] %> +
--- a/app/views/mailer/account_activation_request.text.plain.rhtml Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/mailer/account_activation_request.text.plain.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -1,2 +1,11 @@ <%= l(:mail_body_account_activation_request, @user.login) %> <%= @url %> + +*<%= l(:label_ssamr_details) %>* +<%=l(:field_name)%>: <%= h @user.name %> +<%=l(:field_mail)%>: <%= h @user.mail %> + +*<%= l(:label_ssamr_description ) %>* +<%= h @user.ssamr_user_detail['description'] %> + +
--- a/app/views/members/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 42 -/svn/!svn/ver/2869/trunk/app/views/members -END -autocomplete_for_member.rhtml -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/2869/trunk/app/views/members/autocomplete_for_member.rhtml -END
--- a/app/views/members/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/members/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/members +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/members http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.611740Z +2010-08-12T15:03:25.000000Z 9e105ea0b16e73250d47d57f07d71cff 2009-09-12T08:36:46.650954Z 2869
--- a/app/views/members/autocomplete_for_member.rhtml Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/members/autocomplete_for_member.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -1,1 +1,3 @@ -<%= principals_check_box_tags 'member[user_ids][]', @principals %> \ No newline at end of file +<% if params[:q] && params[:q].length > 1 %> +<%= principals_check_box_tags 'member[user_ids][]', @principals %> +<% end %>
--- a/app/views/messages/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 43 -/svn/!svn/ver/3877/trunk/app/views/messages -END -show.rhtml -K 25 -svn:wc:ra_dav:version-url -V 54 -/svn/!svn/ver/3877/trunk/app/views/messages/show.rhtml -END -_form.rhtml -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/3339/trunk/app/views/messages/_form.rhtml -END -edit.rhtml -K 25 -svn:wc:ra_dav:version-url -V 54 -/svn/!svn/ver/1205/trunk/app/views/messages/edit.rhtml -END -new.rhtml -K 25 -svn:wc:ra_dav:version-url -V 53 -/svn/!svn/ver/1205/trunk/app/views/messages/new.rhtml -END
--- a/app/views/messages/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/messages/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/messages +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/messages http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.615740Z +2010-08-12T15:03:25.000000Z c68f1ef8a922f2a408e0349d80db4376 2010-07-25T10:02:12.905073Z 3877 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.611740Z +2010-08-12T15:03:25.000000Z 4fecf6ec48e549e01ada68dc8d623f38 2010-01-25T17:26:02.255593Z 3339 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.611740Z +2010-08-12T15:03:25.000000Z 72a4fb6eecd42aceb751370901633f24 2008-03-07T17:49:44.664945Z 1205 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.611740Z +2010-08-12T15:03:25.000000Z 3512563f842c2e951d7738870f2d4065 2008-03-07T17:49:44.664945Z 1205
--- a/app/views/my/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/my/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -1,14 +1,14 @@ 10 dir -4732 +4707 http://redmine.rubyforge.org/svn/trunk/app/views/my http://redmine.rubyforge.org/svn -2011-01-15T14:04:11.836008Z -4722 +2010-11-07T12:36:19.797484Z +4380 jplang @@ -205,10 +205,10 @@ -2011-01-19T15:03:32.000000Z -852c99d50bf883063cd77b7042c145d4 -2011-01-15T14:04:11.836008Z -4722 +2010-11-19T13:04:47.012855Z +afbc3db612a251e1fcb34498f27c50b8 +2010-11-07T12:36:19.797484Z +4380 jplang has-props @@ -231,5 +231,5 @@ -4275 +4274
--- a/app/views/my/blocks/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,47 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 44 -/svn/!svn/ver/4259/trunk/app/views/my/blocks -END -_issueswatched.rhtml -K 25 -svn:wc:ra_dav:version-url -V 65 -/svn/!svn/ver/3557/trunk/app/views/my/blocks/_issueswatched.rhtml -END -_news.rhtml -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/449/trunk/app/views/my/blocks/_news.rhtml -END -_issuesreportedbyme.rhtml -K 25 -svn:wc:ra_dav:version-url -V 70 -/svn/!svn/ver/2598/trunk/app/views/my/blocks/_issuesreportedbyme.rhtml -END -_issuesassignedtome.rhtml -K 25 -svn:wc:ra_dav:version-url -V 70 -/svn/!svn/ver/2777/trunk/app/views/my/blocks/_issuesassignedtome.rhtml -END -_timelog.rhtml -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/4259/trunk/app/views/my/blocks/_timelog.rhtml -END -_documents.rhtml -K 25 -svn:wc:ra_dav:version-url -V 61 -/svn/!svn/ver/1766/trunk/app/views/my/blocks/_documents.rhtml -END -_calendar.rhtml -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/3351/trunk/app/views/my/blocks/_calendar.rhtml -END
--- a/app/views/my/blocks/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/my/blocks/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/my/blocks +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/my/blocks http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.623783Z +2010-08-12T15:03:25.000000Z 0b880299704151a6acd66b5632f60426 2010-03-10T05:10:43.201527Z 3557 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.623783Z +2010-08-12T15:03:25.000000Z 6aa71a8cc8a018c4c564915c10355709 2007-04-20T09:53:44.242780Z 449 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.623783Z +2010-08-12T15:03:25.000000Z 55339408a7e093de86505f92845ed977 2009-03-17T17:34:49.297132Z 2598 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.623783Z +2010-08-12T15:03:25.000000Z bf22b792b1b79c60dc866718c074f370 2009-05-30T23:30:36.923541Z 2777 @@ -168,7 +168,7 @@ -2010-11-19T13:04:47.008792Z +2010-11-30T13:11:53.000000Z 2ba11e15a7f15f88fe061979d921b59d 2010-10-15T23:37:01.382819Z 4259 @@ -202,7 +202,7 @@ -2010-09-23T14:37:44.623783Z +2010-08-12T15:03:25.000000Z a21d8649f0daec69caabb118e9b6375c 2008-08-26T11:08:45.487893Z 1766 @@ -236,7 +236,7 @@ -2010-09-23T14:37:44.623783Z +2010-08-12T15:03:25.000000Z 3894ab9b2f76b3622a362843be2162be 2010-01-30T11:23:17.508662Z 3351
--- a/app/views/previews/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 43 -/svn/!svn/ver/3946/trunk/app/views/previews -END -issue.html.erb -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3946/trunk/app/views/previews/issue.html.erb -END
--- a/app/views/previews/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/previews/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/previews +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/previews http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.631740Z +2010-09-10T14:59:24.000000Z 359c6608ef716c8b3b62fd96c241a680 2010-08-18T15:01:35.032314Z 3946
--- a/app/views/projects/_form.rhtml Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/projects/_form.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,10 @@ <div class="box"> <!--[form:project]--> -<p><%= f.text_field :name, :required => true, :size => 60 %></p> +<p><%= f.text_field :name, :required => true, :size => 60 %> + <br /> + <em> <%= l(:text_project_name_info) %></em> +</p> <% unless @project.allowed_parents.compact.empty? %> <p><%= label(:project, :parent_id, l(:field_parent)) %><%= parent_project_select_tag(@project) %></p> @@ -11,10 +14,17 @@ <p><%= f.text_area :description, :rows => 5, :class => 'wiki-edit' %></p> <p><%= f.text_field :identifier, :required => true, :size => 60, :disabled => @project.identifier_frozen? %> <% unless @project.identifier_frozen? %> -<br /><em><%= l(:text_length_between, :min => 1, :max => Project::IDENTIFIER_MAX_LENGTH) %> <%= l(:text_project_identifier_info) %></em> + <br /> + <em><%= l(:text_length_between, :min => 1, :max => Project::IDENTIFIER_MAX_LENGTH) %> <%= l(:text_project_identifier_info) %></em> <% end %></p> -<p><%= f.text_field :homepage, :size => 60 %></p> -<p><%= f.check_box :is_public %></p> +<p><%= f.text_field :homepage, :size => 60 %> +<br /> + <em> <%= l(:text_project_homepage_info) %></em> +</p> +<p><%= f.check_box :is_public %> +<br /> + <em> <%= l(:text_project_visibility_info) %></em> +</p> <%= wikitoolbar_for 'project_description' %> <% @project.custom_field_values.each do |value| %>
--- a/app/views/projects/index.rhtml Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/projects/index.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -3,21 +3,25 @@ <% end %> <div class="contextual"> - <%= link_to(l(:label_project_new), {:controller => 'projects', :action => 'new'}, :class => 'icon icon-add') + ' |' if User.current.allowed_to?(:add_project, nil, :global => true) %> - <%= link_to(l(:label_issue_view_all), { :controller => 'issues' }) + ' |' if User.current.allowed_to?(:view_issues, nil, :global => true) %> - <%= link_to(l(:label_overall_spent_time), { :controller => 'time_entries' }) + ' |' if User.current.allowed_to?(:view_time_entries, nil, :global => true) %> <%= link_to l(:label_overall_activity), { :controller => 'activities', :action => 'index' }%> + <%= '| ' + link_to(l(:label_issue_view_all), { :controller => 'issues' }) if User.current.allowed_to?(:view_issues, nil, :global => true) %> + <%= '| ' + link_to(l(:label_project_new), {:controller => 'projects', :action => 'new'}, :class => 'icon icon-add') if User.current.allowed_to?(:add_project, nil, :global => true) %> </div> -<h2><%=l(:label_project_plural)%></h2> +<% if @user_projects %> + + <%= render_my_project_hierarchy(@user_projects)%> -<%= render_project_hierarchy(@projects)%> +<% end %> -<% if User.current.logged? %> -<p style="text-align:right;"> -<span class="my-project"><%= l(:label_my_projects) %></span> -</p> -<% end %> +<h2> +<%= l("label_project_all") %> +</h2> + +<%= render_project_table(@projects) %> + +<p class="pagination"><%= pagination_links_full @project_pages, @project_count %></p> + <% other_formats_links do |f| %> <%= f.link_to 'Atom', :url => {:key => User.current.rss_key} %>
--- a/app/views/projects/settings/_members.rhtml Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/projects/settings/_members.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -13,19 +13,18 @@ </tr></thead> <tbody> <% members.each do |member| %> - <% next if member.new_record? %> - <tr id="member-<%= member.id %>" class="<%= cycle 'odd', 'even' %> member"> - <td class="<%= member.principal.class.name.downcase %>"><%= link_to_user member.principal %></td> - <td class="roles"> - <span id="member-<%= member.id %>-roles"><%=h member.roles.sort.collect(&:to_s).join(', ') %></span> - <% if authorize_for('members', 'edit') %> - <% remote_form_for(:member, member, :url => {:controller => 'members', :action => 'edit', :id => member}, - :method => :post, - :html => { :id => "member-#{member.id}-roles-form", :class => 'hol' }) do |f| %> - <p><% roles.each do |role| %> - <label><%= check_box_tag 'member[role_ids][]', role.id, member.roles.include?(role), + <% next if member.new_record? %> + <tr id="member-<%= member.id %>" class="<%= cycle 'odd', 'even' %> member"> + <td class="<%= member.principal.class.name.downcase %>"><%= link_to_user member.principal %></td> + <td class="roles"> + <span id="member-<%= member.id %>-roles"><%=h member.roles.sort.collect(&:to_s).join(', ') %></span> + <% if authorize_for('members', 'edit') %> + <% remote_form_for(:member, member, :url => {:controller => 'members', :action => 'edit', :id => member}, + :method => :post, :html => { :id => "member-#{member.id}-roles-form", :class => 'hol' }) do |f| %> + <p><% roles.each do |role| %> + <label><%= check_box_tag 'member[role_ids][]', role.id, member.roles.include?(role), :disabled => member.member_roles.detect {|mr| mr.role_id == role.id && !mr.inherited_from.nil?} %> <%=h role %></label><br /> - <% end %></p> + <% end %></p> <%= hidden_field_tag 'member[role_ids][]', '' %> <p><%= submit_tag l(:button_change), :class => "small" %> <%= link_to_function l(:button_cancel), "$('member-#{member.id}-roles').show(); $('member-#{member.id}-roles-form').hide(); return false;" %></p> @@ -67,9 +66,11 @@ :url => { :controller => 'members', :action => 'autocomplete_for_member', :id => @project }, :with => 'q') %> - + <div id="principals"> - <%= principals_check_box_tags 'member[user_ids][]', principals %> + <% if params[:q] && params[:q].length > 1 %> + <%= principals_check_box_tags 'member[user_ids][]', @principals %> + <% end %> </div> <p><%= l(:label_role_plural) %>:
--- a/app/views/projects/settings/_repository.rhtml Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/projects/settings/_repository.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -6,6 +6,9 @@ <%= error_messages_for 'repository' %> <div class="box tabular"> +<% if !@repository || !@repository.url %> +<ul><li><%= l(:text_settings_repo_creation) %></li></ul> +<% end %> <p><%= label_tag('repository_scm', l(:label_scm)) %><%= scm_select_tag(@repository) %></p> <%= repository_field_tags(f, @repository) if @repository %> </div>
--- a/app/views/queries/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,41 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 42 -/svn/!svn/ver/4387/trunk/app/views/queries -END -_columns.rhtml -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/3106/trunk/app/views/queries/_columns.rhtml -END -_form.rhtml -K 25 -svn:wc:ra_dav:version-url -V 54 -/svn/!svn/ver/3105/trunk/app/views/queries/_form.rhtml -END -edit.rhtml -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/784/trunk/app/views/queries/edit.rhtml -END -_filters.rhtml -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/4387/trunk/app/views/queries/_filters.rhtml -END -index.rhtml -K 25 -svn:wc:ra_dav:version-url -V 53 -/svn/!svn/ver/887/trunk/app/views/queries/index.rhtml -END -new.rhtml -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/2895/trunk/app/views/queries/new.rhtml -END
--- a/app/views/queries/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/queries/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/queries +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/queries http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.655737Z +2010-08-12T15:03:25.000000Z 409f5db0d48427b0a9077eb0804d13f9 2009-11-28T11:59:45.246623Z 3106 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.655737Z +2010-08-12T15:03:25.000000Z 9d6312b02ab4243f7f899de6e37e260b 2009-11-28T11:34:12.256986Z 3105 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.655737Z +2010-08-12T15:03:25.000000Z b2d901380f08af968240e5dc82b90fc4 2007-10-01T11:39:34.113865Z 784 @@ -134,7 +134,7 @@ -2010-11-19T13:04:50.836916Z +2010-11-30T13:11:53.000000Z e57491c4634e00f0ef53c44959c58d46 2010-11-07T15:38:51.908839Z 4387 @@ -168,7 +168,7 @@ -2010-09-23T14:37:44.655737Z +2010-08-12T15:03:25.000000Z 214378e8574ddebfc274513b423f51a2 2007-11-05T18:38:42.932265Z 887 @@ -202,7 +202,7 @@ -2010-09-23T14:37:44.655737Z +2010-08-12T15:03:25.000000Z d42e88aaf70a65db3b609d51857fb711 2009-09-20T14:06:57.257282Z 2895
--- a/app/views/reports/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 42 -/svn/!svn/ver/3797/trunk/app/views/reports -END -issue_report.rhtml -K 25 -svn:wc:ra_dav:version-url -V 61 -/svn/!svn/ver/3797/trunk/app/views/reports/issue_report.rhtml -END -_details.rhtml -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/3283/trunk/app/views/reports/_details.rhtml -END -_simple.rhtml -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/3283/trunk/app/views/reports/_simple.rhtml -END -issue_report_details.rhtml -K 25 -svn:wc:ra_dav:version-url -V 68 -/svn/!svn/ver/333/trunk/app/views/reports/issue_report_details.rhtml -END
--- a/app/views/reports/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/reports/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/reports +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/reports http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.659737Z +2010-08-12T15:03:25.000000Z d150c943c49d910431268e3b5b148f5d 2010-06-20T03:37:42.430179Z 3797 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.659737Z +2010-08-12T15:03:25.000000Z faf9d3d189ffa44154f1272c333808b5 2010-01-07T21:12:16.849243Z 3283 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.659737Z +2010-08-12T15:03:25.000000Z b0028f798f34512aa7c5f8c014ad73f7 2010-01-07T21:12:16.849243Z 3283 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.659737Z +2010-08-12T15:03:25.000000Z 58b8758e6fc3da959cb412ae64e9237f 2007-03-12T17:59:02.654744Z 333
--- a/app/views/repositories/_dir_list_content.rhtml Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/repositories/_dir_list_content.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -16,7 +16,7 @@ :class => (entry.is_dir? ? 'icon icon-folder' : "icon icon-file #{Redmine::MimeType.css_class_of(entry.name)}")%> </td> <td class="size"><%= (entry.size ? number_to_human_size(entry.size) : "?") unless entry.is_dir? %></td> -<% changeset = @project.repository.changesets.find_by_revision(entry.lastrev.identifier) if entry.lastrev && entry.lastrev.identifier %> +<% changeset = @project.repository.changesets.find_by_revision(entry.lastrev.identifier.to_s) if entry.lastrev && entry.lastrev.identifier %> <td class="revision"><%= link_to_revision(changeset, @project) if changeset %></td> <td class="age"><%= distance_of_time_in_words(entry.lastrev.time, Time.now) if entry.lastrev && entry.lastrev.time %></td> <td class="author"><%= changeset.nil? ? h(entry.lastrev.author.to_s.split('<').first) : changeset.author if entry.lastrev %></td>
--- a/app/views/roles/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 40 -/svn/!svn/ver/3435/trunk/app/views/roles -END -report.rhtml -K 25 -svn:wc:ra_dav:version-url -V 53 -/svn/!svn/ver/2810/trunk/app/views/roles/report.rhtml -END -index.html.erb -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/3435/trunk/app/views/roles/index.html.erb -END -_form.rhtml -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/1943/trunk/app/views/roles/_form.rhtml -END -edit.rhtml -K 25 -svn:wc:ra_dav:version-url -V 51 -/svn/!svn/ver/2979/trunk/app/views/roles/edit.rhtml -END -new.rhtml -K 25 -svn:wc:ra_dav:version-url -V 50 -/svn/!svn/ver/2810/trunk/app/views/roles/new.rhtml -END
--- a/app/views/roles/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/roles/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/roles +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/roles http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.675736Z +2010-08-12T15:03:25.000000Z cbcd3851055c3f5a5aa20d005b086872 2009-07-05T12:22:02.133266Z 2810 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.675736Z +2010-08-12T15:03:25.000000Z 82f5657ab6c01b56b039af0cf2312ade 2010-02-15T16:41:16.346582Z 3435 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.675736Z +2010-08-12T15:03:25.000000Z 652c40985320a23285c8e27439418f22 2008-10-24T15:24:35.832581Z 1943 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.675736Z +2010-08-12T15:03:25.000000Z 4bcaa15de1de193dd1f98128b71a420b 2009-10-25T13:28:36.522470Z 2979 @@ -168,7 +168,7 @@ -2010-09-23T14:37:44.675736Z +2010-08-12T15:03:25.000000Z 0ff8206c0e77e6356f9d16ccaeff13e2 2009-07-05T12:22:02.133266Z 2810
--- a/app/views/search/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 41 -/svn/!svn/ver/2895/trunk/app/views/search -END -index.rhtml -K 25 -svn:wc:ra_dav:version-url -V 53 -/svn/!svn/ver/2895/trunk/app/views/search/index.rhtml -END
--- a/app/views/search/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/search/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/search +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/search http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.679779Z +2010-08-12T15:03:25.000000Z 0235b1dd9d5f01dbaaab2b59dc006f2e 2009-09-20T14:06:57.257282Z 2895
--- a/app/views/settings/_general.rhtml Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/settings/_general.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -3,10 +3,16 @@ <div class="box tabular settings"> <p><%= setting_text_field :app_title, :size => 30 %></p> +<p><%= setting_text_area :notifications_text, :cols => 60, :rows => 5, :class => 'wiki-edit' %></p> + <%= wikitoolbar_for 'settings_notifications_text' %> + <p><%= setting_text_area :welcome_text, :cols => 60, :rows => 5, :class => 'wiki-edit' %></p> <%= wikitoolbar_for 'settings_welcome_text' %> <p><%= setting_text_field :attachment_max_size, :size => 6 %> <%= l(:"number.human.storage_units.units.kb") %></p> + <%= wikitoolbar_for 'settings_tipoftheday_text' %> + +<p><%= setting_text_field :attachment_max_size, :size => 6 %> <%= l(:"number.human.storage_units.units.kb") %></p> <p><%= setting_text_field :per_page_options, :size => 20 %><br /> <em><%= l(:text_comma_separated) %></em></p>
--- a/app/views/time_entry_reports/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 53 -/svn/!svn/ver/4239/trunk/app/views/time_entry_reports -END -report.rhtml -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/4239/trunk/app/views/time_entry_reports/report.rhtml -END -_report_criteria.rhtml -K 25 -svn:wc:ra_dav:version-url -V 76 -/svn/!svn/ver/4232/trunk/app/views/time_entry_reports/_report_criteria.rhtml -END
--- a/app/views/time_entry_reports/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/time_entry_reports/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/time_entry_reports +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/time_entry_reports http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-11-19T13:04:48.181514Z +2010-11-30T13:11:53.000000Z d896f5cf56b2a3cd64887f239e584fdc 2010-10-07T15:51:09.349542Z 4239 @@ -66,7 +66,7 @@ -2010-11-19T13:04:48.181514Z +2010-11-30T13:11:53.000000Z 5fa73daf0a67b2a39fd10320bcd7ab45 2010-10-05T16:07:17.015270Z 4232
--- a/app/views/trackers/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 43 -/svn/!svn/ver/3437/trunk/app/views/trackers -END -index.html.erb -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3437/trunk/app/views/trackers/index.html.erb -END -_form.rhtml -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/3162/trunk/app/views/trackers/_form.rhtml -END -edit.rhtml -K 25 -svn:wc:ra_dav:version-url -V 54 -/svn/!svn/ver/3146/trunk/app/views/trackers/edit.rhtml -END -new.rhtml -K 25 -svn:wc:ra_dav:version-url -V 53 -/svn/!svn/ver/3146/trunk/app/views/trackers/new.rhtml -END
--- a/app/views/trackers/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/trackers/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/trackers +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/trackers http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.695779Z +2010-08-12T15:03:25.000000Z 952031a6216d1b67897c30936b8c656c 2010-02-15T16:41:27.289923Z 3437 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.695779Z +2010-08-12T15:03:25.000000Z 0b8a4f0aead4d21c20c9cc8dd29141e5 2009-12-12T15:23:22.060140Z 3162 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.695779Z +2010-08-12T15:03:25.000000Z ac4b0e11130741048a5f7c7405bff3de 2009-12-09T11:03:55.646494Z 3146 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.695779Z +2010-08-12T15:03:25.000000Z cf313c286d40c5c44da29ad261b01421 2009-12-09T11:03:55.646494Z 3146
--- a/app/views/users/_form.rhtml Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/users/_form.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -20,6 +20,20 @@ </div> <div class="box tabular"> + <h3><%=l(:label_ssamr_details)%></h3> + <% fields_for :ssamr_user_details, :builder => TabularFormBuilder, :lang => current_language do |ssamr_user_detail| %> + <p> + <%= ssamr_user_detail.text_area :description, :rows => 3, :cols => 40, :required => true, :class => 'wiki-edit' %> + <%= wikitoolbar_for 'ssamr_user_details_description' %> + <br /> + <em> <%=l(:text_user_ssamr_description_info)%></em> + </p> + <% end %> +</div> + + + +<div class="box tabular"> <h3><%=l(:label_authentication)%></h3> <% unless @auth_sources.empty? %> <p><%= f.select :auth_source_id, ([[l(:label_internal), ""]] + @auth_sources.collect { |a| [a.name, a.id] }), {}, :onchange => "if (this.value=='') {Element.show('password_fields');} else {Element.hide('password_fields');}" %></p>
--- a/app/views/users/show.rhtml Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/users/show.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -20,6 +20,10 @@ <% end %> </ul> +<h3><%=l(:label_ssamr_description)%></h3> +<%= textilizable @description %> + + <% unless @memberships.empty? %> <h3><%=l(:label_project_plural)%></h3> <ul>
--- a/app/views/versions/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,47 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 43 -/svn/!svn/ver/4307/trunk/app/views/versions -END -index.html.erb -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/4082/trunk/app/views/versions/index.html.erb -END -new.html.erb -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/4097/trunk/app/views/versions/new.html.erb -END -show.rhtml -K 25 -svn:wc:ra_dav:version-url -V 54 -/svn/!svn/ver/4307/trunk/app/views/versions/show.rhtml -END -_form.rhtml -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/3123/trunk/app/views/versions/_form.rhtml -END -_issue_counts.rhtml -K 25 -svn:wc:ra_dav:version-url -V 63 -/svn/!svn/ver/4098/trunk/app/views/versions/_issue_counts.rhtml -END -_overview.rhtml -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/3064/trunk/app/views/versions/_overview.rhtml -END -edit.rhtml -K 25 -svn:wc:ra_dav:version-url -V 54 -/svn/!svn/ver/4097/trunk/app/views/versions/edit.rhtml -END
--- a/app/views/versions/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/versions/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/versions +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/versions http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-24T12:48:28.303878Z +2010-10-01T15:15:02.000000Z a50c2acc01c8d25be8e2c8cd082a2272 2010-09-11T14:00:23.147923Z 4082 @@ -66,7 +66,7 @@ -2010-09-24T12:48:28.303878Z +2010-10-01T15:15:02.000000Z d53190d87d1c24abce0fc949f816a706 2010-09-17T15:55:08.377083Z 4097 @@ -100,7 +100,7 @@ -2010-11-19T13:04:49.396842Z +2010-11-30T13:11:53.000000Z ae897448ea943e1856633a3683c17a79 2010-10-29T22:40:02.439890Z 4307 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.707788Z +2010-08-12T15:03:25.000000Z acf01b501fb1e345fd7abf572233ead9 2009-12-06T10:28:20.099964Z 3123 @@ -168,7 +168,7 @@ -2010-09-24T12:48:28.303878Z +2010-10-01T15:15:02.000000Z b5364f2d6f4cb92d1f747cd3dda5098f 2010-09-17T16:11:43.740142Z 4098 @@ -202,7 +202,7 @@ -2010-09-23T14:37:44.707788Z +2010-08-12T15:03:25.000000Z 6e68f24a6d6571388df3018bc915d37a 2009-11-15T15:22:55.021661Z 3064 @@ -236,7 +236,7 @@ -2010-09-24T12:48:28.303878Z +2010-10-01T15:15:02.000000Z 85ddc3502659176221220bebef002d6c 2010-09-17T15:55:08.377083Z 4097
--- a/app/views/watchers/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 43 -/svn/!svn/ver/3579/trunk/app/views/watchers -END -_watchers.rhtml -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/3579/trunk/app/views/watchers/_watchers.rhtml -END
--- a/app/views/watchers/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/watchers/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/watchers +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/watchers http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.707788Z +2010-08-12T15:03:25.000000Z 7ece4fb161c765ac7e63c30883733d99 2010-03-13T17:45:41.194736Z 3579
--- a/app/views/welcome/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 42 -/svn/!svn/ver/4047/trunk/app/views/welcome -END -index.rhtml -K 25 -svn:wc:ra_dav:version-url -V 54 -/svn/!svn/ver/4047/trunk/app/views/welcome/index.rhtml -END -robots.rhtml -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/2319/trunk/app/views/welcome/robots.rhtml -END
--- a/app/views/welcome/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/welcome/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/welcome +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/welcome http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-24T12:48:26.303754Z +2011-01-13T12:46:09.000000Z df32441c6802182ffb9a205c97ec8f3b 2010-08-27T14:05:54.014502Z 4047 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.711779Z +2010-08-12T15:03:25.000000Z dbe04ed0b787a5470a99a1f286c0685e 2009-01-27T17:27:50.299725Z 2319
--- a/app/views/welcome/index.rhtml Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/welcome/index.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -1,7 +1,22 @@ -<h2><%= l(:label_home) %></h2> +<% if not Setting.notifications_text.empty? %> + <div class="notifications flash error"> + <%= textilizable Setting.notifications_text %> + </div> +<% end %> + +<h2><%= l(:label_home_heading) %></h2> <div class="splitcontentleft"> <%= textilizable Setting.welcome_text %> + + <% if not @tipsoftheday.empty? %> + <div class="newsoftheday box"> + <h3><%=l(:label_tipoftheday)%></h3> + <%= textilizable @tipsoftheday %> + </div> + <% end %> + + <% if @news.any? %> <div class="news box"> <h3><%=l(:label_news_latest)%></h3>
--- a/app/views/wikis/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 39 -/svn/!svn/ver/725/trunk/app/views/wikis -END -destroy.rhtml -K 25 -svn:wc:ra_dav:version-url -V 53 -/svn/!svn/ver/725/trunk/app/views/wikis/destroy.rhtml -END
--- a/app/views/wikis/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/app/views/wikis/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/app/views/wikis +http://redmine.rubyforge.org/svn/branches/1.1-stable/app/views/wikis http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.723734Z +2010-08-12T15:03:25.000000Z 6edeee3130b12027d4d8dbfeca809abb 2007-09-14T11:34:08.234701Z 725
--- a/config/environments/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,41 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 44 -/svn/!svn/ver/4405/trunk/config/environments -END -test.rb -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/4405/trunk/config/environments/test.rb -END -development.rb -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/975/trunk/config/environments/development.rb -END -test_sqlite3.rb -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/3397/trunk/config/environments/test_sqlite3.rb -END -demo.rb -K 25 -svn:wc:ra_dav:version-url -V 51 -/svn/!svn/ver/772/trunk/config/environments/demo.rb -END -test_pgsql.rb -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3397/trunk/config/environments/test_pgsql.rb -END -production.rb -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/4182/trunk/config/environments/production.rb -END
--- a/config/environments/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/config/environments/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/config/environments +http://redmine.rubyforge.org/svn/branches/1.1-stable/config/environments http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-11-19T13:04:51.212937Z +2010-11-30T13:11:53.000000Z 08b25fdea5e3e041116340c3c3090b18 2010-11-14T15:14:19.280754Z 4405 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.735734Z +2010-08-12T15:03:25.000000Z 02eadf22aa59353271c702e4865138b1 2007-12-10T17:58:07.273873Z 975 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.739734Z +2010-08-12T15:03:25.000000Z 213279c73e8c922d0a9d43f3c1cc6943 2010-02-08T18:53:07.634937Z 3397 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.735734Z +2010-08-12T15:03:25.000000Z d08152d4dda4608f254785b23840140a 2007-09-27T22:30:57.196220Z 772 @@ -168,7 +168,7 @@ -2010-09-23T14:37:44.739734Z +2010-08-12T15:03:25.000000Z 213279c73e8c922d0a9d43f3c1cc6943 2010-02-08T18:53:07.634937Z 3397 @@ -202,7 +202,7 @@ -2010-11-19T13:04:51.212937Z +2010-11-30T13:11:53.000000Z 17a6fbb168f3951191541f0f5a554454 2010-09-26T16:54:38.112012Z 4182
--- a/config/locales/bg.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/bg.yml Wed Jan 19 15:15:02 2011 +0000 @@ -312,6 +312,7 @@ label_register: Регистрация label_password_lost: Забравена парола label_home: Начало + label_home_heading: Начало label_my_page: Лична страница label_my_account: Профил label_my_projects: Проекти, в които участвам
--- a/config/locales/bs.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/bs.yml Wed Jan 19 15:15:02 2011 +0000 @@ -439,6 +439,7 @@ label_login_with_open_id_option: ili prijava sa OpenID-om label_password_lost: Izgubljena lozinka label_home: Početna stranica + label_home_heading: Početna stranica label_my_page: Moja stranica label_my_account: Moj korisnički račun label_my_projects: Moji projekti
--- a/config/locales/ca.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/ca.yml Wed Jan 19 15:15:02 2011 +0000 @@ -475,6 +475,7 @@ label_login_with_open_id_option: "o entra amb l'OpenID" label_password_lost: Contrasenya perduda label_home: Inici + label_home_heading: Inici label_my_page: La meva pàgina label_my_account: El meu compte label_my_projects: Els meus projectes
--- a/config/locales/cs.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/cs.yml Wed Jan 19 15:15:02 2011 +0000 @@ -357,6 +357,7 @@ label_register: Registrovat label_password_lost: Zapomenuté heslo label_home: Úvodní + label_home_heading: Úvodní label_my_page: Moje stránka label_my_account: Můj účet label_my_projects: Moje projekty
--- a/config/locales/da.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/da.yml Wed Jan 19 15:15:02 2011 +0000 @@ -365,6 +365,7 @@ label_register: Registrér label_password_lost: Glemt kodeord label_home: Forside + label_home_heading: Forside label_my_page: Min side label_my_account: Min konto label_my_projects: Mine projekter
--- a/config/locales/de.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/de.yml Wed Jan 19 15:15:02 2011 +0000 @@ -489,6 +489,7 @@ label_login_with_open_id_option: oder mit OpenID anmelden label_password_lost: Kennwort vergessen label_home: Hauptseite + label_home_heading: Hauptseite label_my_page: Meine Seite label_my_account: Mein Konto label_my_projects: Meine Projekte
--- a/config/locales/el.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/el.yml Wed Jan 19 15:15:02 2011 +0000 @@ -437,6 +437,7 @@ label_login_with_open_id_option: ή συνδεθείτε με OpenID label_password_lost: Ανάκτηση κωδικού πρόσβασης label_home: Αρχική σελίδα + label_home_heading: Αρχική σελίδα label_my_page: Η σελίδα μου label_my_account: Ο λογαριασμός μου label_my_projects: Τα έργα μου
--- a/config/locales/en-GB.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/en-GB.yml Wed Jan 19 15:15:02 2011 +0000 @@ -1,942 +1,962 @@ -en-GB: - direction: ltr - date: - formats: - # Use the strftime parameters for formats. - # When no format has been given, it uses default. - # You can provide other formats here if you like! - default: "%d/%m/%Y" - short: "%d %b" - long: "%d %B, %Y" - - day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday] - abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat] - - # Don't forget the nil at the beginning; there's no such thing as a 0th month - month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December] - abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec] - # Used in date_select and datime_select. - order: [ :year, :month, :day ] - - time: - formats: - default: "%d/%m/%Y %I:%M %p" - time: "%I:%M %p" - short: "%d %b %H:%M" - long: "%d %B, %Y %H:%M" - am: "am" - pm: "pm" - - datetime: - distance_in_words: - half_a_minute: "half a minute" - less_than_x_seconds: - one: "less than 1 second" - other: "less than %{count} seconds" - x_seconds: - one: "1 second" - other: "%{count} seconds" - less_than_x_minutes: - one: "less than a minute" - other: "less than %{count} minutes" - x_minutes: - one: "1 minute" - other: "%{count} minutes" - about_x_hours: - one: "about 1 hour" - other: "about %{count} hours" - x_days: - one: "1 day" - other: "%{count} days" - about_x_months: - one: "about 1 month" - other: "about %{count} months" - x_months: - one: "1 month" - other: "%{count} months" - about_x_years: - one: "about 1 year" - other: "about %{count} years" - over_x_years: - one: "over 1 year" - other: "over %{count} years" - almost_x_years: - one: "almost 1 year" - other: "almost %{count} years" - - number: - format: - separator: "." - delimiter: " " - precision: 3 - - currency: - format: - format: "%u%n" - unit: "£" - human: - format: - delimiter: "" - precision: 1 - storage_units: - format: "%n %u" - units: - byte: - one: "Byte" - other: "Bytes" - kb: "kB" - mb: "MB" - gb: "GB" - tb: "TB" - - -# Used in array.to_sentence. - support: - array: - sentence_connector: "and" - skip_last_comma: false - - activerecord: - errors: - template: - header: - one: "1 error prohibited this %{model} from being saved" - other: "%{count} errors prohibited this %{model} from being saved" - messages: - inclusion: "is not included in the list" - exclusion: "is reserved" - invalid: "is invalid" - confirmation: "doesn't match confirmation" - accepted: "must be accepted" - empty: "can't be empty" - blank: "can't be blank" - too_long: "is too long (maximum is %{count} characters)" - too_short: "is too short (minimum is %{count} characters)" - wrong_length: "is the wrong length (should be %{count} characters)" - taken: "has already been taken" - not_a_number: "is not a number" - not_a_date: "is not a valid date" - greater_than: "must be greater than %{count}" - greater_than_or_equal_to: "must be greater than or equal to %{count}" - equal_to: "must be equal to %{count}" - less_than: "must be less than %{count}" - less_than_or_equal_to: "must be less than or equal to %{count}" - odd: "must be odd" - even: "must be even" - greater_than_start_date: "must be greater than start date" - not_same_project: "doesn't belong to the same project" - circular_dependency: "This relation would create a circular dependency" - cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" - - actionview_instancetag_blank_option: Please select - - general_text_No: 'No' - general_text_Yes: 'Yes' - general_text_no: 'no' - general_text_yes: 'yes' - general_lang_name: 'English (British)' - general_csv_separator: ',' - general_csv_decimal_separator: '.' - general_csv_encoding: ISO-8859-1 - general_pdf_encoding: ISO-8859-1 - general_first_day_of_week: '1' - - notice_account_updated: Account was successfully updated. - notice_account_invalid_creditentials: Invalid user or password - notice_account_password_updated: Password was successfully updated. - notice_account_wrong_password: Wrong password - notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you. - notice_account_unknown_email: Unknown user. - notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. - notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. - notice_account_activated: Your account has been activated. You can now log in. - notice_successful_create: Successful creation. - notice_successful_update: Successful update. - notice_successful_delete: Successful deletion. - notice_successful_connection: Successful connection. - notice_file_not_found: The page you were trying to access doesn't exist or has been removed. - notice_locking_conflict: Data has been updated by another user. - notice_not_authorized: You are not authorised to access this page. - notice_email_sent: "An email was sent to %{value}" - notice_email_error: "An error occurred while sending mail (%{value})" - notice_feeds_access_key_reseted: Your RSS access key was reset. - notice_api_access_key_reseted: Your API access key was reset. - notice_failed_to_save_issues: "Failed to save %{count} issue(s) on %{total} selected: %{ids}." - notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit." - notice_account_pending: "Your account was created and is now pending administrator approval." - notice_default_data_loaded: Default configuration successfully loaded. - notice_unable_delete_version: Unable to delete version. - notice_issue_done_ratios_updated: Issue done ratios updated. - - error_can_t_load_default_data: "Default configuration could not be loaded: %{value}" - error_scm_not_found: "The entry or revision was not found in the repository." - error_scm_command_failed: "An error occurred when trying to access the repository: %{value}" - error_scm_annotate: "The entry does not exist or can not be annotated." - error_issue_not_found_in_project: 'The issue was not found or does not belong to this project' - error_no_tracker_in_project: 'No tracker is associated to this project. Please check the Project settings.' - error_no_default_issue_status: 'No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").' - error_can_not_reopen_issue_on_closed_version: 'An issue assigned to a closed version can not be reopened' - error_can_not_archive_project: This project can not be archived - error_issue_done_ratios_not_updated: "Issue done ratios not updated." - error_workflow_copy_source: 'Please select a source tracker or role' - error_workflow_copy_target: 'Please select target tracker(s) and role(s)' - - warning_attachments_not_saved: "%{count} file(s) could not be saved." - - mail_subject_lost_password: "Your %{value} password" - mail_body_lost_password: 'To change your password, click on the following link:' - mail_subject_register: "Your %{value} account activation" - mail_body_register: 'To activate your account, click on the following link:' - mail_body_account_information_external: "You can use your %{value} account to log in." - mail_body_account_information: Your account information - mail_subject_account_activation_request: "%{value} account activation request" - mail_body_account_activation_request: "A new user (%{value}) has registered. The account is pending your approval:" - mail_subject_reminder: "%{count} issue(s) due in the next %{days} days" - mail_body_reminder: "%{count} issue(s) that are assigned to you are due in the next %{days} days:" - mail_subject_wiki_content_added: "'%{id}' wiki page has been added" - mail_body_wiki_content_added: "The '%{id}' wiki page has been added by %{author}." - mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated" - mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}." - - gui_validation_error: 1 error - gui_validation_error_plural: "%{count} errors" - - field_name: Name - field_description: Description - field_summary: Summary - field_is_required: Required - field_firstname: Firstname - field_lastname: Lastname - field_mail: Email - field_filename: File - field_filesize: Size - field_downloads: Downloads - field_author: Author - field_created_on: Created - field_updated_on: Updated - field_field_format: Format - field_is_for_all: For all projects - field_possible_values: Possible values - field_regexp: Regular expression - field_min_length: Minimum length - field_max_length: Maximum length - field_value: Value - field_category: Category - field_title: Title - field_project: Project - field_issue: Issue - field_status: Status - field_notes: Notes - field_is_closed: Issue closed - field_is_default: Default value - field_tracker: Tracker - field_subject: Subject - field_due_date: Due date - field_assigned_to: Assignee - field_priority: Priority - field_fixed_version: Target version - field_user: User - field_role: Role - field_homepage: Homepage - field_is_public: Public - field_parent: Subproject of - field_is_in_roadmap: Issues displayed in roadmap - field_login: Login - field_mail_notification: Email notifications - field_admin: Administrator - field_last_login_on: Last connection - field_language: Language - field_effective_date: Date - field_password: Password - field_new_password: New password - field_password_confirmation: Confirmation - field_version: Version - field_type: Type - field_host: Host - field_port: Port - field_account: Account - field_base_dn: Base DN - field_attr_login: Login attribute - field_attr_firstname: Firstname attribute - field_attr_lastname: Lastname attribute - field_attr_mail: Email attribute - field_onthefly: On-the-fly user creation - field_start_date: Start date - field_done_ratio: % Done - field_auth_source: Authentication mode - field_hide_mail: Hide my email address - field_comments: Comment - field_url: URL - field_start_page: Start page - field_subproject: Subproject - field_hours: Hours - field_activity: Activity - field_spent_on: Date - field_identifier: Identifier - field_is_filter: Used as a filter - field_issue_to: Related issue - field_delay: Delay - field_assignable: Issues can be assigned to this role - field_redirect_existing_links: Redirect existing links - field_estimated_hours: Estimated time - field_column_names: Columns - field_time_zone: Time zone - field_searchable: Searchable - field_default_value: Default value - field_comments_sorting: Display comments - field_parent_title: Parent page - field_editable: Editable - field_watcher: Watcher - field_identity_url: OpenID URL - field_content: Content - field_group_by: Group results by - field_sharing: Sharing - - setting_app_title: Application title - setting_app_subtitle: Application subtitle - setting_welcome_text: Welcome text - setting_default_language: Default language - setting_login_required: Authentication required - setting_self_registration: Self-registration - setting_attachment_max_size: Attachment max. size - setting_issues_export_limit: Issues export limit - setting_mail_from: Emission email address - setting_bcc_recipients: Blind carbon copy recipients (bcc) - setting_plain_text_mail: Plain text mail (no HTML) - setting_host_name: Host name and path - setting_text_formatting: Text formatting - setting_wiki_compression: Wiki history compression - setting_feeds_limit: Feed content limit - setting_default_projects_public: New projects are public by default - setting_autofetch_changesets: Autofetch commits - setting_sys_api_enabled: Enable WS for repository management - setting_commit_ref_keywords: Referencing keywords - setting_commit_fix_keywords: Fixing keywords - setting_autologin: Autologin - setting_date_format: Date format - setting_time_format: Time format - setting_cross_project_issue_relations: Allow cross-project issue relations - setting_issue_list_default_columns: Default columns displayed on the issue list - setting_repositories_encodings: Repositories encodings - setting_commit_logs_encoding: Commit messages encoding - setting_emails_footer: Emails footer - setting_protocol: Protocol - setting_per_page_options: Objects per page options - setting_user_format: Users display format - setting_activity_days_default: Days displayed on project activity - setting_display_subprojects_issues: Display subprojects issues on main projects by default - setting_enabled_scm: Enabled SCM - setting_mail_handler_body_delimiters: "Truncate emails after one of these lines" - setting_mail_handler_api_enabled: Enable WS for incoming emails - setting_mail_handler_api_key: API key - setting_sequential_project_identifiers: Generate sequential project identifiers - setting_gravatar_enabled: Use Gravatar user icons - setting_gravatar_default: Default Gravatar image - setting_diff_max_lines_displayed: Max number of diff lines displayed - setting_file_max_size_displayed: Max size of text files displayed inline - setting_repository_log_display_limit: Maximum number of revisions displayed on file log - setting_openid: Allow OpenID login and registration - setting_password_min_length: Minimum password length - setting_new_project_user_role_id: Role given to a non-admin user who creates a project - setting_default_projects_modules: Default enabled modules for new projects - setting_issue_done_ratio: Calculate the issue done ratio with - setting_issue_done_ratio_issue_field: Use the issue field - setting_issue_done_ratio_issue_status: Use the issue status - setting_start_of_week: Start calendars on - setting_rest_api_enabled: Enable REST web service - setting_cache_formatted_text: Cache formatted text - - permission_add_project: Create project - permission_add_subprojects: Create subprojects - permission_edit_project: Edit project - permission_select_project_modules: Select project modules - permission_manage_members: Manage members - permission_manage_project_activities: Manage project activities - permission_manage_versions: Manage versions - permission_manage_categories: Manage issue categories - permission_view_issues: View Issues - permission_add_issues: Add issues - permission_edit_issues: Edit issues - permission_manage_issue_relations: Manage issue relations - permission_add_issue_notes: Add notes - permission_edit_issue_notes: Edit notes - permission_edit_own_issue_notes: Edit own notes - permission_move_issues: Move issues - permission_delete_issues: Delete issues - permission_manage_public_queries: Manage public queries - permission_save_queries: Save queries - permission_view_gantt: View gantt chart - permission_view_calendar: View calendar - permission_view_issue_watchers: View watchers list - permission_add_issue_watchers: Add watchers - permission_delete_issue_watchers: Delete watchers - permission_log_time: Log spent time - permission_view_time_entries: View spent time - permission_edit_time_entries: Edit time logs - permission_edit_own_time_entries: Edit own time logs - permission_manage_news: Manage news - permission_comment_news: Comment news - permission_manage_documents: Manage documents - permission_view_documents: View documents - permission_manage_files: Manage files - permission_view_files: View files - permission_manage_wiki: Manage wiki - permission_rename_wiki_pages: Rename wiki pages - permission_delete_wiki_pages: Delete wiki pages - permission_view_wiki_pages: View wiki - permission_view_wiki_edits: View wiki history - permission_edit_wiki_pages: Edit wiki pages - permission_delete_wiki_pages_attachments: Delete attachments - permission_protect_wiki_pages: Protect wiki pages - permission_manage_repository: Manage repository - permission_browse_repository: Browse repository - permission_view_changesets: View changesets - permission_commit_access: Commit access - permission_manage_boards: Manage boards - permission_view_messages: View messages - permission_add_messages: Post messages - permission_edit_messages: Edit messages - permission_edit_own_messages: Edit own messages - permission_delete_messages: Delete messages - permission_delete_own_messages: Delete own messages - permission_export_wiki_pages: Export wiki pages - - project_module_issue_tracking: Issue tracking - project_module_time_tracking: Time tracking - project_module_news: News - project_module_documents: Documents - project_module_files: Files - project_module_wiki: Wiki - project_module_repository: Repository - project_module_boards: Boards - - label_user: User - label_user_plural: Users - label_user_new: New user - label_user_anonymous: Anonymous - label_project: Project - label_project_new: New project - label_project_plural: Projects - label_x_projects: - zero: no projects - one: 1 project - other: "%{count} projects" - label_project_all: All Projects - label_project_latest: Latest projects - label_issue: Issue - label_issue_new: New issue - label_issue_plural: Issues - label_issue_view_all: View all issues - label_issues_by: "Issues by %{value}" - label_issue_added: Issue added - label_issue_updated: Issue updated - label_document: Document - label_document_new: New document - label_document_plural: Documents - label_document_added: Document added - label_role: Role - label_role_plural: Roles - label_role_new: New role - label_role_and_permissions: Roles and permissions - label_member: Member - label_member_new: New member - label_member_plural: Members - label_tracker: Tracker - label_tracker_plural: Trackers - label_tracker_new: New tracker - label_workflow: Workflow - label_issue_status: Issue status - label_issue_status_plural: Issue statuses - label_issue_status_new: New status - label_issue_category: Issue category - label_issue_category_plural: Issue categories - label_issue_category_new: New category - label_custom_field: Custom field - label_custom_field_plural: Custom fields - label_custom_field_new: New custom field - label_enumerations: Enumerations - label_enumeration_new: New value - label_information: Information - label_information_plural: Information - label_please_login: Please log in - label_register: Register - label_login_with_open_id_option: or login with OpenID - label_password_lost: Lost password - label_home: Home - label_my_page: My page - label_my_account: My account - label_my_projects: My projects - label_administration: Administration - label_login: Sign in - label_logout: Sign out - label_help: Help - label_reported_issues: Reported issues - label_assigned_to_me_issues: Issues assigned to me - label_last_login: Last connection - label_registered_on: Registered on - label_activity: Activity - label_overall_activity: Overall activity - label_user_activity: "%{value}'s activity" - label_new: New - label_logged_as: Logged in as - label_environment: Environment - label_authentication: Authentication - label_auth_source: Authentication mode - label_auth_source_new: New authentication mode - label_auth_source_plural: Authentication modes - label_subproject_plural: Subprojects - label_subproject_new: New subproject - label_and_its_subprojects: "%{value} and its subprojects" - label_min_max_length: Min - Max length - label_list: List - label_date: Date - label_integer: Integer - label_float: Float - label_boolean: Boolean - label_string: Text - label_text: Long text - label_attribute: Attribute - label_attribute_plural: Attributes - label_download: "%{count} Download" - label_download_plural: "%{count} Downloads" - label_no_data: No data to display - label_change_status: Change status - label_history: History - label_attachment: File - label_attachment_new: New file - label_attachment_delete: Delete file - label_attachment_plural: Files - label_file_added: File added - label_report: Report - label_report_plural: Reports - label_news: News - label_news_new: Add news - label_news_plural: News - label_news_latest: Latest news - label_news_view_all: View all news - label_news_added: News added - label_settings: Settings - label_overview: Overview - label_version: Version - label_version_new: New version - label_version_plural: Versions - label_close_versions: Close completed versions - label_confirmation: Confirmation - label_export_to: 'Also available in:' - label_read: Read... - label_public_projects: Public projects - label_open_issues: open - label_open_issues_plural: open - label_closed_issues: closed - label_closed_issues_plural: closed - label_x_open_issues_abbr_on_total: - zero: 0 open / %{total} - one: 1 open / %{total} - other: "%{count} open / %{total}" - label_x_open_issues_abbr: - zero: 0 open - one: 1 open - other: "%{count} open" - label_x_closed_issues_abbr: - zero: 0 closed - one: 1 closed - other: "%{count} closed" - label_total: Total - label_permissions: Permissions - label_current_status: Current status - label_new_statuses_allowed: New statuses allowed - label_all: all - label_none: none - label_nobody: nobody - label_next: Next - label_previous: Previous - label_used_by: Used by - label_details: Details - label_add_note: Add a note - label_per_page: Per page - label_calendar: Calendar - label_months_from: months from - label_gantt: Gantt - label_internal: Internal - label_last_changes: "last %{count} changes" - label_change_view_all: View all changes - label_personalize_page: Personalise this page - label_comment: Comment - label_comment_plural: Comments - label_x_comments: - zero: no comments - one: 1 comment - other: "%{count} comments" - label_comment_add: Add a comment - label_comment_added: Comment added - label_comment_delete: Delete comments - label_query: Custom query - label_query_plural: Custom queries - label_query_new: New query - label_filter_add: Add filter - label_filter_plural: Filters - label_equals: is - label_not_equals: is not - label_in_less_than: in less than - label_in_more_than: in more than - label_greater_or_equal: '>=' - label_less_or_equal: '<=' - label_in: in - label_today: today - label_all_time: all time - label_yesterday: yesterday - label_this_week: this week - label_last_week: last week - label_last_n_days: "last %{count} days" - label_this_month: this month - label_last_month: last month - label_this_year: this year - label_date_range: Date range - label_less_than_ago: less than days ago - label_more_than_ago: more than days ago - label_ago: days ago - label_contains: contains - label_not_contains: doesn't contain - label_day_plural: days - label_repository: Repository - label_repository_plural: Repositories - label_browse: Browse - label_modification: "%{count} change" - label_modification_plural: "%{count} changes" - label_branch: Branch - label_tag: Tag - label_revision: Revision - label_revision_plural: Revisions - label_revision_id: "Revision %{value}" - label_associated_revisions: Associated revisions - label_added: added - label_modified: modified - label_copied: copied - label_renamed: renamed - label_deleted: deleted - label_latest_revision: Latest revision - label_latest_revision_plural: Latest revisions - label_view_revisions: View revisions - label_view_all_revisions: View all revisions - label_max_size: Maximum size - label_sort_highest: Move to top - label_sort_higher: Move up - label_sort_lower: Move down - label_sort_lowest: Move to bottom - label_roadmap: Roadmap - label_roadmap_due_in: "Due in %{value}" - label_roadmap_overdue: "%{value} late" - label_roadmap_no_issues: No issues for this version - label_search: Search - label_result_plural: Results - label_all_words: All words - label_wiki: Wiki - label_wiki_edit: Wiki edit - label_wiki_edit_plural: Wiki edits - label_wiki_page: Wiki page - label_wiki_page_plural: Wiki pages - label_index_by_title: Index by title - label_index_by_date: Index by date - label_current_version: Current version - label_preview: Preview - label_feed_plural: Feeds - label_changes_details: Details of all changes - label_issue_tracking: Issue tracking - label_spent_time: Spent time - label_f_hour: "%{value} hour" - label_f_hour_plural: "%{value} hours" - label_time_tracking: Time tracking - label_change_plural: Changes - label_statistics: Statistics - label_commits_per_month: Commits per month - label_commits_per_author: Commits per author - label_view_diff: View differences - label_diff_inline: inline - label_diff_side_by_side: side by side - label_options: Options - label_copy_workflow_from: Copy workflow from - label_permissions_report: Permissions report - label_watched_issues: Watched issues - label_related_issues: Related issues - label_applied_status: Applied status - label_loading: Loading... - label_relation_new: New relation - label_relation_delete: Delete relation - label_relates_to: related to - label_duplicates: duplicates - label_duplicated_by: duplicated by - label_blocks: blocks - label_blocked_by: blocked by - label_precedes: precedes - label_follows: follows - label_end_to_start: end to start - label_end_to_end: end to end - label_start_to_start: start to start - label_start_to_end: start to end - label_stay_logged_in: Stay logged in - label_disabled: disabled - label_show_completed_versions: Show completed versions - label_me: me - label_board: Forum - label_board_new: New forum - label_board_plural: Forums - label_board_locked: Locked - label_board_sticky: Sticky - label_topic_plural: Topics - label_message_plural: Messages - label_message_last: Last message - label_message_new: New message - label_message_posted: Message added - label_reply_plural: Replies - label_send_information: Send account information to the user - label_year: Year - label_month: Month - label_week: Week - label_date_from: From - label_date_to: To - label_language_based: Based on user's language - label_sort_by: "Sort by %{value}" - label_send_test_email: Send a test email - label_feeds_access_key: RSS access key - label_missing_feeds_access_key: Missing a RSS access key - label_feeds_access_key_created_on: "RSS access key created %{value} ago" - label_module_plural: Modules - label_added_time_by: "Added by %{author} %{age} ago" - label_updated_time_by: "Updated by %{author} %{age} ago" - label_updated_time: "Updated %{value} ago" - label_jump_to_a_project: Jump to a project... - label_file_plural: Files - label_changeset_plural: Changesets - label_default_columns: Default columns - label_no_change_option: (No change) - label_bulk_edit_selected_issues: Bulk edit selected issues - label_theme: Theme - label_default: Default - label_search_titles_only: Search titles only - label_user_mail_option_all: "For any event on all my projects" - label_user_mail_option_selected: "For any event on the selected projects only..." - label_user_mail_option_none: "No events" - label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself" - label_registration_activation_by_email: account activation by email - label_registration_manual_activation: manual account activation - label_registration_automatic_activation: automatic account activation - label_display_per_page: "Per page: %{value}" - label_age: Age - label_change_properties: Change properties - label_general: General - label_more: More - label_scm: SCM - label_plugins: Plugins - label_ldap_authentication: LDAP authentication - label_downloads_abbr: D/L - label_optional_description: Optional description - label_add_another_file: Add another file - label_preferences: Preferences - label_chronological_order: In chronological order - label_reverse_chronological_order: In reverse chronological order - label_planning: Planning - label_incoming_emails: Incoming emails - label_generate_key: Generate a key - label_issue_watchers: Watchers - label_example: Example - label_display: Display - label_sort: Sort - label_ascending: Ascending - label_descending: Descending - label_date_from_to: From %{start} to %{end} - label_wiki_content_added: Wiki page added - label_wiki_content_updated: Wiki page updated - label_group: Group - label_group_plural: Groups - label_group_new: New group - label_time_entry_plural: Spent time - label_version_sharing_none: Not shared - label_version_sharing_descendants: With subprojects - label_version_sharing_hierarchy: With project hierarchy - label_version_sharing_tree: With project tree - label_version_sharing_system: With all projects - label_update_issue_done_ratios: Update issue done ratios - label_copy_source: Source - label_copy_target: Target - label_copy_same_as_target: Same as target - label_display_used_statuses_only: Only display statuses that are used by this tracker - label_api_access_key: API access key - label_missing_api_access_key: Missing an API access key - label_api_access_key_created_on: "API access key created %{value} ago" - - button_login: Login - button_submit: Submit - button_save: Save - button_check_all: Check all - button_uncheck_all: Uncheck all - button_delete: Delete - button_create: Create - button_create_and_continue: Create and continue - button_test: Test - button_edit: Edit - button_add: Add - button_change: Change - button_apply: Apply - button_clear: Clear - button_lock: Lock - button_unlock: Unlock - button_download: Download - button_list: List - button_view: View - button_move: Move - button_move_and_follow: Move and follow - button_back: Back - button_cancel: Cancel - button_activate: Activate - button_sort: Sort - button_log_time: Log time - button_rollback: Rollback to this version - button_watch: Watch - button_unwatch: Unwatch - button_reply: Reply - button_archive: Archive - button_unarchive: Unarchive - button_reset: Reset - button_rename: Rename - button_change_password: Change password - button_copy: Copy - button_copy_and_follow: Copy and follow - button_annotate: Annotate - button_update: Update - button_configure: Configure - button_quote: Quote - button_duplicate: Duplicate - button_show: Show - - status_active: active - status_registered: registered - status_locked: locked - - version_status_open: open - version_status_locked: locked - version_status_closed: closed - - field_active: Active - - text_select_mail_notifications: Select actions for which email notifications should be sent. - text_regexp_info: eg. ^[A-Z0-9]+$ - text_min_max_length_info: 0 means no restriction - text_project_destroy_confirmation: Are you sure you want to delete this project and related data? - text_subprojects_destroy_warning: "Its subproject(s): %{value} will be also deleted." - text_workflow_edit: Select a role and a tracker to edit the workflow - text_are_you_sure: Are you sure? - text_journal_changed: "%{label} changed from %{old} to %{new}" - text_journal_set_to: "%{label} set to %{value}" - text_journal_deleted: "%{label} deleted (%{old})" - text_journal_added: "%{label} %{value} added" - text_tip_issue_begin_day: task beginning this day - text_tip_issue_end_day: task ending this day - text_tip_issue_begin_end_day: task beginning and ending this day - text_project_identifier_info: 'Only lower case letters (a-z), numbers and dashes are allowed.<br />Once saved, the identifier can not be changed.' - text_caracters_maximum: "%{count} characters maximum." - text_caracters_minimum: "Must be at least %{count} characters long." - text_length_between: "Length between %{min} and %{max} characters." - text_tracker_no_workflow: No workflow defined for this tracker - text_unallowed_characters: Unallowed characters - text_comma_separated: Multiple values allowed (comma separated). - text_line_separated: Multiple values allowed (one line for each value). - text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages - text_issue_added: "Issue %{id} has been reported by %{author}." - text_issue_updated: "Issue %{id} has been updated by %{author}." - text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content? - text_issue_category_destroy_question: "Some issues (%{count}) are assigned to this category. What do you want to do?" - text_issue_category_destroy_assignments: Remove category assignments - text_issue_category_reassign_to: Reassign issues to this category - text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)." - text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded." - text_load_default_configuration: Load the default configuration - text_status_changed_by_changeset: "Applied in changeset %{value}." - text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s)?' - text_select_project_modules: 'Select modules to enable for this project:' - text_default_administrator_account_changed: Default administrator account changed - text_file_repository_writable: Attachments directory writable - text_plugin_assets_writable: Plugin assets directory writable - text_rmagick_available: RMagick available (optional) - text_destroy_time_entries_question: "%{hours} hours were reported on the issues you are about to delete. What do you want to do?" - text_destroy_time_entries: Delete reported hours - text_assign_time_entries_to_project: Assign reported hours to the project - text_reassign_time_entries: 'Reassign reported hours to this issue:' - text_user_wrote: "%{value} wrote:" - text_enumeration_destroy_question: "%{count} objects are assigned to this value." - text_enumeration_category_reassign_to: 'Reassign them to this value:' - text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/email.yml and restart the application to enable them." - text_repository_usernames_mapping: "Select or update the Redmine user mapped to each username found in the repository log.\nUsers with the same Redmine and repository username or email are automatically mapped." - text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.' - text_custom_field_possible_values_info: 'One line for each value' - text_wiki_page_destroy_question: "This page has %{descendants} child page(s) and descendant(s). What do you want to do?" - text_wiki_page_nullify_children: "Keep child pages as root pages" - text_wiki_page_destroy_children: "Delete child pages and all their descendants" - text_wiki_page_reassign_children: "Reassign child pages to this parent page" - text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?" - - default_role_manager: Manager - default_role_developer: Developer - default_role_reporter: Reporter - default_tracker_bug: Bug - default_tracker_feature: Feature - default_tracker_support: Support - default_issue_status_new: New - default_issue_status_in_progress: In Progress - default_issue_status_resolved: Resolved - default_issue_status_feedback: Feedback - default_issue_status_closed: Closed - default_issue_status_rejected: Rejected - default_doc_category_user: User documentation - default_doc_category_tech: Technical documentation - default_priority_low: Low - default_priority_normal: Normal - default_priority_high: High - default_priority_urgent: Urgent - default_priority_immediate: Immediate - default_activity_design: Design - default_activity_development: Development - - enumeration_issue_priorities: Issue priorities - enumeration_doc_categories: Document categories - enumeration_activities: Activities (time tracking) - enumeration_system_activity: System Activity - - notice_unable_delete_time_entry: Unable to delete time log entry. - error_can_not_delete_custom_field: Unable to delete custom field - permission_manage_subtasks: Manage subtasks - label_profile: Profile - error_unable_to_connect: Unable to connect (%{value}) - label_overall_spent_time: Overall spent time - error_can_not_remove_role: This role is in use and can not be deleted. - field_principal: Principal - field_parent_issue: Parent task - label_my_page_block: My page block - text_zoom_out: Zoom out - text_zoom_in: Zoom in - error_unable_delete_issue_status: Unable to delete issue status - label_subtask_plural: Subtasks - error_can_not_delete_tracker: This tracker contains issues and can't be deleted. - notice_failed_to_save_members: "Failed to save member(s): %{errors}." - label_project_copy_notifications: Send email notifications during the project copy - field_time_entries: Log time - project_module_gantt: Gantt - project_module_calendar: Calendar - field_member_of_group: Member of Group - field_assigned_to_role: Member of Role - button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" - text_are_you_sure_with_children: Delete issue and all child issues? - field_text: Text field - label_user_mail_option_only_owner: Only for things I am the owner of - setting_default_notification_option: Default notification option - label_user_mail_option_only_my_events: Only for things I watch or I'm involved in - label_user_mail_option_only_assigned: Only for things I am assigned to - notice_not_authorized_archived_project: The project you're trying to access has been archived. - label_principal_search: "Search for user or group:" - label_user_search: "Search for user:" - field_visible: Visible - setting_emails_header: Emails header - setting_commit_logtime_activity_id: Activity for logged time - text_time_logged_by_changeset: Applied in changeset %{value}. - setting_commit_logtime_enabled: Enable time logging - notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max}) - setting_gantt_items_limit: Maximum number of items displayed on the gantt chart +en-GB: + direction: ltr + date: + formats: + # Use the strftime parameters for formats. + # When no format has been given, it uses default. + # You can provide other formats here if you like! + default: "%d/%m/%Y" + short: "%d %b" + long: "%d %B, %Y" + + day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday] + abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat] + + # Don't forget the nil at the beginning; there's no such thing as a 0th month + month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December] + abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec] + # Used in date_select and datime_select. + order: [ :year, :month, :day ] + + time: + formats: + default: "%d/%m/%Y %I:%M %p" + time: "%I:%M %p" + short: "%d %b %H:%M" + long: "%d %B, %Y %H:%M" + am: "am" + pm: "pm" + + datetime: + distance_in_words: + half_a_minute: "half a minute" + less_than_x_seconds: + one: "less than 1 second" + other: "less than %{count} seconds" + x_seconds: + one: "1 second" + other: "%{count} seconds" + less_than_x_minutes: + one: "less than a minute" + other: "less than %{count} minutes" + x_minutes: + one: "1 minute" + other: "%{count} minutes" + about_x_hours: + one: "about 1 hour" + other: "about %{count} hours" + x_days: + one: "1 day" + other: "%{count} days" + about_x_months: + one: "about 1 month" + other: "about %{count} months" + x_months: + one: "1 month" + other: "%{count} months" + about_x_years: + one: "about 1 year" + other: "about %{count} years" + over_x_years: + one: "over 1 year" + other: "over %{count} years" + almost_x_years: + one: "almost 1 year" + other: "almost %{count} years" + + number: + format: + separator: "." + delimiter: " " + precision: 3 + + currency: + format: + format: "%u%n" + unit: "£" + human: + format: + delimiter: "" + precision: 1 + storage_units: + format: "%n %u" + units: + byte: + one: "Byte" + other: "Bytes" + kb: "kB" + mb: "MB" + gb: "GB" + tb: "TB" + + +# Used in array.to_sentence. + support: + array: + sentence_connector: "and" + skip_last_comma: false + + activerecord: + errors: + template: + header: + one: "1 error prohibited this %{model} from being saved" + other: "%{count} errors prohibited this %{model} from being saved" + messages: + inclusion: "is not included in the list" + exclusion: "is reserved" + invalid: "is invalid" + confirmation: "doesn't match confirmation" + accepted: "must be accepted" + empty: "can't be empty" + blank: "can't be blank" + too_long: "is too long (maximum is %{count} characters)" + too_short: "is too short (minimum is %{count} characters)" + wrong_length: "is the wrong length (should be %{count} characters)" + taken: "has already been taken" + not_a_number: "is not a number" + not_a_date: "is not a valid date" + greater_than: "must be greater than %{count}" + greater_than_or_equal_to: "must be greater than or equal to %{count}" + equal_to: "must be equal to %{count}" + less_than: "must be less than %{count}" + less_than_or_equal_to: "must be less than or equal to %{count}" + odd: "must be odd" + even: "must be even" + greater_than_start_date: "must be greater than start date" + not_same_project: "doesn't belong to the same project" + circular_dependency: "This relation would create a circular dependency" + cant_link_an_issue_with_a_descendant: "An issue can not be linked to one of its subtasks" + + actionview_instancetag_blank_option: Please select + + general_text_No: 'No' + general_text_Yes: 'Yes' + general_text_no: 'no' + general_text_yes: 'yes' + general_lang_name: 'English (British)' + general_csv_separator: ',' + general_csv_decimal_separator: '.' + general_csv_encoding: ISO-8859-1 + general_pdf_encoding: ISO-8859-1 + general_first_day_of_week: '1' + + notice_account_updated: Account was successfully updated. + notice_account_invalid_creditentials: Invalid user or password + notice_account_password_updated: Password was successfully updated. + notice_account_wrong_password: Wrong password + notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you. + notice_account_unknown_email: Unknown user. + notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. + notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. + notice_account_activated: Your account has been activated. You can now log in. + notice_successful_create: Successful creation. + notice_successful_update: Successful update. + notice_successful_delete: Successful deletion. + notice_successful_connection: Successful connection. + notice_file_not_found: The page you were trying to access doesn't exist or has been removed. + notice_locking_conflict: Data has been updated by another user. + notice_not_authorized: You are not authorised to access this page. + notice_email_sent: "An email was sent to %{value}" + notice_email_error: "An error occurred while sending mail (%{value})" + notice_feeds_access_key_reseted: Your RSS access key was reset. + notice_api_access_key_reseted: Your API access key was reset. + notice_failed_to_save_issues: "Failed to save %{count} issue(s) on %{total} selected: %{ids}." + notice_no_issue_selected: "No issue is selected! Please, check the issues you want to edit." + notice_account_pending: "Your account was created and is now pending administrator approval." + notice_default_data_loaded: Default configuration successfully loaded. + notice_unable_delete_version: Unable to delete version. + notice_issue_done_ratios_updated: Issue done ratios updated. + + error_can_t_load_default_data: "Default configuration could not be loaded: %{value}" + error_scm_not_found: "The entry or revision was not found in the repository." + error_scm_command_failed: "An error occurred when trying to access the repository: %{value}" + error_scm_annotate: "The entry does not exist or can not be annotated." + error_issue_not_found_in_project: 'The issue was not found or does not belong to this project' + error_no_tracker_in_project: 'No tracker is associated to this project. Please check the Project settings.' + error_no_default_issue_status: 'No default issue status is defined. Please check your configuration (Go to "Administration -> Issue statuses").' + error_can_not_reopen_issue_on_closed_version: 'An issue assigned to a closed version can not be reopened' + error_can_not_archive_project: This project can not be archived + error_issue_done_ratios_not_updated: "Issue done ratios not updated." + error_workflow_copy_source: 'Please select a source tracker or role' + error_workflow_copy_target: 'Please select target tracker(s) and role(s)' + + warning_attachments_not_saved: "%{count} file(s) could not be saved." + + mail_subject_lost_password: "Your %{value} password" + mail_body_lost_password: 'To change your password, click on the following link:' + mail_subject_register: "Your %{value} account activation" + mail_body_register: 'To activate your account, click on the following link:' + mail_body_account_information_external: "You can use your %{value} account to log in." + mail_body_account_information: Your account information + mail_subject_account_activation_request: "%{value} account activation request" + mail_body_account_activation_request: "A new user (%{value}) has registered. The account is pending your approval:" + mail_subject_reminder: "%{count} issue(s) due in the next %{days} days" + mail_body_reminder: "%{count} issue(s) that are assigned to you are due in the next %{days} days:" + mail_subject_wiki_content_added: "'%{id}' wiki page has been added" + mail_body_wiki_content_added: "The '%{id}' wiki page has been added by %{author}." + mail_subject_wiki_content_updated: "'%{id}' wiki page has been updated" + mail_body_wiki_content_updated: "The '%{id}' wiki page has been updated by %{author}." + + gui_validation_error: 1 error + gui_validation_error_plural: "%{count} errors" + + field_ssamr_user_detail: + description: User Description + field_name: Name + field_description: Description + field_summary: Summary + field_is_required: Required + field_firstname: First name + field_lastname: Last name + field_mail: Email + field_filename: File + field_filesize: Size + field_downloads: Downloads + field_author: Author + field_created_on: Created + field_updated_on: Updated + field_field_format: Format + field_is_for_all: For all projects + field_possible_values: Possible values + field_regexp: Regular expression + field_min_length: Minimum length + field_max_length: Maximum length + field_value: Value + field_category: Category + field_title: Title + field_project: Project + field_issue: Issue + field_status: Status + field_notes: Notes + field_is_closed: Issue closed + field_is_default: Default value + field_tracker: Tracker + field_subject: Subject + field_due_date: Due date + field_assigned_to: Assignee + field_priority: Priority + field_fixed_version: Target version + field_user: User + field_role: Role + field_homepage: Homepage + field_is_public: Public + field_is_private: Private + field_parent: Subproject of + field_is_in_roadmap: Issues displayed in roadmap + field_login: Login + field_mail_notification: Email notifications + field_admin: Administrator + field_last_login_on: Last connection + field_language: Language + field_effective_date: Date + field_password: Password + field_new_password: New password + field_password_confirmation: Confirmation + field_version: Version + field_type: Type + field_host: Host + field_port: Port + field_account: Account + field_base_dn: Base DN + field_attr_login: Login attribute + field_attr_firstname: Firstname attribute + field_attr_lastname: Lastname attribute + field_attr_mail: Email attribute + field_onthefly: On-the-fly user creation + field_start_date: Start date + field_done_ratio: % Done + field_auth_source: Authentication mode + field_hide_mail: Hide my email address + field_comments: Comment + field_url: URL + field_start_page: Start page + field_subproject: Subproject + field_hours: Hours + field_activity: Activity + field_spent_on: Date + field_identifier: Identifier + field_is_filter: Used as a filter + field_issue_to: Related issue + field_delay: Delay + field_assignable: Issues can be assigned to this role + field_redirect_existing_links: Redirect existing links + field_estimated_hours: Estimated time + field_column_names: Columns + field_time_zone: Time zone + field_searchable: Searchable + field_default_value: Default value + field_comments_sorting: Display comments + field_parent_title: Parent page + field_editable: Editable + field_watcher: Watcher + field_identity_url: OpenID URL + field_content: Content + field_group_by: Group results by + field_sharing: Sharing + + setting_app_title: Application title + setting_app_subtitle: Application subtitle + setting_welcome_text: Welcome text + setting_tipoftheday_text: Tip of the Day + setting_notifications_text: Notifications + setting_default_language: Default language + setting_login_required: Authentication required + setting_self_registration: Self-registration + setting_attachment_max_size: Attachment max. size + setting_issues_export_limit: Issues export limit + setting_mail_from: Emission email address + setting_bcc_recipients: Blind carbon copy recipients (bcc) + setting_plain_text_mail: Plain text mail (no HTML) + setting_host_name: Host name and path + setting_text_formatting: Text formatting + setting_wiki_compression: Wiki history compression + setting_feeds_limit: Feed content limit + setting_default_projects_public: New projects are public by default + setting_autofetch_changesets: Autofetch commits + setting_sys_api_enabled: Enable WS for repository management + setting_commit_ref_keywords: Referencing keywords + setting_commit_fix_keywords: Fixing keywords + setting_autologin: Autologin + setting_date_format: Date format + setting_time_format: Time format + setting_cross_project_issue_relations: Allow cross-project issue relations + setting_issue_list_default_columns: Default columns displayed on the issue list + setting_repositories_encodings: Repositories encodings + setting_commit_logs_encoding: Commit messages encoding + setting_emails_footer: Emails footer + setting_protocol: Protocol + setting_per_page_options: Objects per page options + setting_user_format: Users display format + setting_activity_days_default: Days displayed on project activity + setting_display_subprojects_issues: Display subprojects issues on main projects by default + setting_enabled_scm: Enabled SCM + setting_mail_handler_body_delimiters: "Truncate emails after one of these lines" + setting_mail_handler_api_enabled: Enable WS for incoming emails + setting_mail_handler_api_key: API key + setting_sequential_project_identifiers: Generate sequential project identifiers + setting_gravatar_enabled: Use Gravatar user icons + setting_gravatar_default: Default Gravatar image + setting_diff_max_lines_displayed: Max number of diff lines displayed + setting_file_max_size_displayed: Max size of text files displayed inline + setting_repository_log_display_limit: Maximum number of revisions displayed on file log + setting_openid: Allow OpenID login and registration + setting_password_min_length: Minimum password length + setting_new_project_user_role_id: Role given to a non-admin user who creates a project + setting_default_projects_modules: Default enabled modules for new projects + setting_issue_done_ratio: Calculate the issue done ratio with + setting_issue_done_ratio_issue_field: Use the issue field + setting_issue_done_ratio_issue_status: Use the issue status + setting_start_of_week: Start calendars on + setting_rest_api_enabled: Enable REST web service + setting_cache_formatted_text: Cache formatted text + + permission_add_project: Create project + permission_add_subprojects: Create subprojects + permission_edit_project: Edit project + permission_select_project_modules: Select project modules + permission_manage_members: Manage members + permission_manage_project_activities: Manage project activities + permission_manage_versions: Manage versions + permission_manage_categories: Manage issue categories + permission_view_issues: View Issues + permission_add_issues: Add issues + permission_edit_issues: Edit issues + permission_manage_issue_relations: Manage issue relations + permission_add_issue_notes: Add notes + permission_edit_issue_notes: Edit notes + permission_edit_own_issue_notes: Edit own notes + permission_move_issues: Move issues + permission_delete_issues: Delete issues + permission_manage_public_queries: Manage public queries + permission_save_queries: Save queries + permission_view_gantt: View gantt chart + permission_view_calendar: View calendar + permission_view_issue_watchers: View watchers list + permission_add_issue_watchers: Add watchers + permission_delete_issue_watchers: Delete watchers + permission_log_time: Log spent time + permission_view_time_entries: View spent time + permission_edit_time_entries: Edit time logs + permission_edit_own_time_entries: Edit own time logs + permission_manage_news: Manage news + permission_comment_news: Comment news + permission_manage_documents: Manage documents + permission_view_documents: View documents + permission_manage_files: Manage files + permission_view_files: View files + permission_manage_wiki: Manage wiki + permission_rename_wiki_pages: Rename wiki pages + permission_delete_wiki_pages: Delete wiki pages + permission_view_wiki_pages: View wiki + permission_view_wiki_edits: View wiki history + permission_edit_wiki_pages: Edit wiki pages + permission_delete_wiki_pages_attachments: Delete attachments + permission_protect_wiki_pages: Protect wiki pages + permission_manage_repository: Manage repository + permission_browse_repository: Browse repository + permission_view_changesets: View changesets + permission_commit_access: Commit access + permission_manage_boards: Manage boards + permission_view_messages: View messages + permission_add_messages: Post messages + permission_edit_messages: Edit messages + permission_edit_own_messages: Edit own messages + permission_delete_messages: Delete messages + permission_delete_own_messages: Delete own messages + permission_export_wiki_pages: Export wiki pages + + project_module_issue_tracking: Issue tracking + project_module_time_tracking: Time tracking + project_module_news: News + project_module_documents: Documents + project_module_files: Files + project_module_wiki: Wiki + project_module_repository: Repository + project_module_boards: Boards + + label_tipoftheday: Tip of the day + label_notifications: Important Message + label_ssamr_description: Research description + label_ssamr_details: Other Details + + label_user: User + label_user_plural: Users + label_user_new: New user + label_user_anonymous: Anonymous + label_project: Project + label_project_new: New project + label_project_plural: Projects + label_my_project_plural: My Projects + label_other_project_plural: "Everyone Else's Projects" + label_x_projects: + zero: no projects + one: 1 project + other: "%{count} projects" + label_project_all: All Projects + label_project_latest: Latest projects + label_managers: Managed by + label_issue: Issue + label_issue_new: New issue + label_issue_plural: Issues + label_issue_view_all: View all issues + label_issues_by: "Issues by %{value}" + label_issue_added: Issue added + label_issue_updated: Issue updated + label_document: Document + label_document_new: New document + label_document_plural: Documents + label_document_added: Document added + label_role: Role + label_role_plural: Roles + label_role_new: New role + label_role_and_permissions: Roles and permissions + label_member: Member + label_member_new: New member + label_member_plural: Members + label_tracker: Tracker + label_tracker_plural: Trackers + label_tracker_new: New tracker + label_workflow: Workflow + label_issue_status: Issue status + label_issue_status_plural: Issue statuses + label_issue_status_new: New status + label_issue_category: Issue category + label_issue_category_plural: Issue categories + label_issue_category_new: New category + label_custom_field: Custom field + label_custom_field_plural: Custom fields + label_custom_field_new: New custom field + label_enumerations: Enumerations + label_enumeration_new: New value + label_information: Information + label_information_plural: Information + label_please_login: Please log in + label_register: Register + label_login_with_open_id_option: or login with OpenID + label_password_lost: Lost password + label_home: Home + label_home_heading: Welcome! + label_my_page: My page + label_my_account: My account + label_my_projects: My projects + label_administration: Administration + label_login: Sign in + label_logout: Sign out + label_help: Help + label_reported_issues: Reported issues + label_assigned_to_me_issues: Issues assigned to me + label_last_login: Last connection + label_registered_on: Registered on + label_activity: Activity + label_overall_activity: Overall activity + label_user_activity: "%{value}'s activity" + label_new: New + label_logged_as: Logged in as + label_environment: Environment + label_authentication: Authentication + label_auth_source: Authentication mode + label_auth_source_new: New authentication mode + label_auth_source_plural: Authentication modes + label_subproject_plural: Subprojects + label_subproject_new: New subproject + label_and_its_subprojects: "%{value} and its subprojects" + label_min_max_length: Min - Max length + label_list: List + label_date: Date + label_integer: Integer + label_float: Float + label_boolean: Boolean + label_string: Text + label_text: Long text + label_attribute: Attribute + label_attribute_plural: Attributes + label_download: "%{count} Download" + label_download_plural: "%{count} Downloads" + label_no_data: No data to display + label_change_status: Change status + label_history: History + label_attachment: File + label_attachment_new: New file + label_attachment_delete: Delete file + label_attachment_plural: Files + label_file_added: File added + label_report: Report + label_report_plural: Reports + label_news: News + label_news_new: Add news + label_news_plural: News + label_news_latest: Latest news + label_news_view_all: View all news + label_news_added: News added + label_settings: Settings + label_overview: Overview + label_version: Version + label_version_new: New version + label_version_plural: Versions + label_close_versions: Close completed versions + label_confirmation: Confirmation + label_export_to: 'Also available in:' + label_read: Read... + label_public_projects: Public projects + label_open_issues: open + label_open_issues_plural: open + label_closed_issues: closed + label_closed_issues_plural: closed + label_x_open_issues_abbr_on_total: + zero: 0 open / %{total} + one: 1 open / %{total} + other: "%{count} open / %{total}" + label_x_open_issues_abbr: + zero: 0 open + one: 1 open + other: "%{count} open" + label_x_closed_issues_abbr: + zero: 0 closed + one: 1 closed + other: "%{count} closed" + label_total: Total + label_permissions: Permissions + label_current_status: Current status + label_new_statuses_allowed: New statuses allowed + label_all: all + label_none: none + label_nobody: nobody + label_next: Next + label_previous: Previous + label_used_by: Used by + label_details: Details + label_add_note: Add a note + label_per_page: Per page + label_calendar: Calendar + label_months_from: months from + label_gantt: Gantt + label_internal: Internal + label_last_changes: "last %{count} changes" + label_change_view_all: View all changes + label_personalize_page: Personalise this page + label_comment: Comment + label_comment_plural: Comments + label_x_comments: + zero: no comments + one: 1 comment + other: "%{count} comments" + label_comment_add: Add a comment + label_comment_added: Comment added + label_comment_delete: Delete comments + label_query: Custom query + label_query_plural: Custom queries + label_query_new: New query + label_filter_add: Add filter + label_filter_plural: Filters + label_equals: is + label_not_equals: is not + label_in_less_than: in less than + label_in_more_than: in more than + label_greater_or_equal: '>=' + label_less_or_equal: '<=' + label_in: in + label_today: today + label_all_time: all time + label_yesterday: yesterday + label_this_week: this week + label_last_week: last week + label_last_n_days: "last %{count} days" + label_this_month: this month + label_last_month: last month + label_this_year: this year + label_date_range: Date range + label_less_than_ago: less than days ago + label_more_than_ago: more than days ago + label_ago: days ago + label_contains: contains + label_not_contains: doesn't contain + label_day_plural: days + label_repository: Repository + label_repository_plural: Repositories + label_browse: Browse + label_modification: "%{count} change" + label_modification_plural: "%{count} changes" + label_branch: Branch + label_tag: Tag + label_revision: Revision + label_revision_plural: Revisions + label_revision_id: "Revision %{value}" + label_associated_revisions: Associated revisions + label_added: added + label_modified: modified + label_copied: copied + label_renamed: renamed + label_deleted: deleted + label_latest_revision: Latest revision + label_latest_revision_plural: Latest revisions + label_view_revisions: View revisions + label_view_all_revisions: View all revisions + label_max_size: Maximum size + label_sort_highest: Move to top + label_sort_higher: Move up + label_sort_lower: Move down + label_sort_lowest: Move to bottom + label_roadmap: Roadmap + label_roadmap_due_in: "Due in %{value}" + label_roadmap_overdue: "%{value} late" + label_roadmap_no_issues: No issues for this version + label_search: Search + label_result_plural: Results + label_all_words: All words + label_wiki: Wiki + label_wiki_edit: Wiki edit + label_wiki_edit_plural: Wiki edits + label_wiki_page: Wiki page + label_wiki_page_plural: Wiki pages + label_index_by_title: Index by title + label_index_by_date: Index by date + label_current_version: Current version + label_preview: Preview + label_feed_plural: Feeds + label_changes_details: Details of all changes + label_issue_tracking: Issue tracking + label_spent_time: Spent time + label_f_hour: "%{value} hour" + label_f_hour_plural: "%{value} hours" + label_time_tracking: Time tracking + label_change_plural: Changes + label_statistics: Statistics + label_commits_per_month: Commits per month + label_commits_per_author: Commits per author + label_view_diff: View differences + label_diff_inline: inline + label_diff_side_by_side: side by side + label_options: Options + label_copy_workflow_from: Copy workflow from + label_permissions_report: Permissions report + label_watched_issues: Watched issues + label_related_issues: Related issues + label_applied_status: Applied status + label_loading: Loading... + label_relation_new: New relation + label_relation_delete: Delete relation + label_relates_to: related to + label_duplicates: duplicates + label_duplicated_by: duplicated by + label_blocks: blocks + label_blocked_by: blocked by + label_precedes: precedes + label_follows: follows + label_end_to_start: end to start + label_end_to_end: end to end + label_start_to_start: start to start + label_start_to_end: start to end + label_stay_logged_in: Stay logged in + label_disabled: disabled + label_show_completed_versions: Show completed versions + label_me: me + label_board: Forum + label_board_new: New forum + label_board_plural: Forums + label_board_locked: Locked + label_board_sticky: Sticky + label_topic_plural: Topics + label_message_plural: Messages + label_message_last: Last message + label_message_new: New message + label_message_posted: Message added + label_reply_plural: Replies + label_send_information: Send account information to the user + label_year: Year + label_month: Month + label_week: Week + label_date_from: From + label_date_to: To + label_language_based: "Based on user's language" + label_sort_by: "Sort by %{value}" + label_send_test_email: Send a test email + label_feeds_access_key: RSS access key + label_missing_feeds_access_key: Missing a RSS access key + label_feeds_access_key_created_on: "RSS access key created %{value} ago" + label_module_plural: Modules + label_added_time_by: "Added by %{author} %{age} ago" + label_updated_time_by: "Updated by %{author} %{age} ago" + label_updated_time: "Updated %{value} ago" + label_jump_to_a_project: Jump to a project... + label_file_plural: Files + label_changeset_plural: Changesets + label_default_columns: Default columns + label_no_change_option: (No change) + label_bulk_edit_selected_issues: Bulk edit selected issues + label_theme: Theme + label_default: Default + label_search_titles_only: Search titles only + label_user_mail_option_all: "For any event on all my projects" + label_user_mail_option_selected: "For any event on the selected projects only..." + label_user_mail_option_none: "No events" + label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself" + label_registration_activation_by_email: account activation by email + label_registration_manual_activation: manual account activation + label_registration_automatic_activation: automatic account activation + label_display_per_page: "Per page: %{value}" + label_age: Age + label_change_properties: Change properties + label_general: General + label_more: More + label_scm: SCM + label_plugins: Plugins + label_ldap_authentication: LDAP authentication + label_downloads_abbr: D/L + label_optional_description: Optional description + label_add_another_file: Add another file + label_preferences: Preferences + label_chronological_order: In chronological order + label_reverse_chronological_order: In reverse chronological order + label_planning: Planning + label_incoming_emails: Incoming emails + label_generate_key: Generate a key + label_issue_watchers: Watchers + label_example: Example + label_display: Display + label_sort: Sort + label_ascending: Ascending + label_descending: Descending + label_date_from_to: From %{start} to %{end} + label_wiki_content_added: Wiki page added + label_wiki_content_updated: Wiki page updated + label_group: Group + label_group_plural: Groups + label_group_new: New group + label_time_entry_plural: Spent time + label_version_sharing_none: Not shared + label_version_sharing_descendants: With subprojects + label_version_sharing_hierarchy: With project hierarchy + label_version_sharing_tree: With project tree + label_version_sharing_system: With all projects + label_update_issue_done_ratios: Update issue done ratios + label_copy_source: Source + label_copy_target: Target + label_copy_same_as_target: Same as target + label_display_used_statuses_only: Only display statuses that are used by this tracker + label_api_access_key: API access key + label_missing_api_access_key: Missing an API access key + label_api_access_key_created_on: "API access key created %{value} ago" + + button_login: Login + button_submit: Submit + button_save: Save + button_check_all: Check all + button_uncheck_all: Uncheck all + button_delete: Delete + button_create: Create + button_create_and_continue: Create and continue + button_test: Test + button_edit: Edit + button_add: Add + button_change: Change + button_apply: Apply + button_clear: Clear + button_lock: Lock + button_unlock: Unlock + button_download: Download + button_list: List + button_view: View + button_move: Move + button_move_and_follow: Move and follow + button_back: Back + button_cancel: Cancel + button_activate: Activate + button_sort: Sort + button_log_time: Log time + button_rollback: Rollback to this version + button_watch: Watch + button_unwatch: Unwatch + button_reply: Reply + button_archive: Archive + button_unarchive: Unarchive + button_reset: Reset + button_rename: Rename + button_change_password: Change password + button_copy: Copy + button_copy_and_follow: Copy and follow + button_annotate: Annotate + button_update: Update + button_configure: Configure + button_quote: Quote + button_duplicate: Duplicate + button_show: Show + + status_active: active + status_registered: registered + status_locked: locked + + version_status_open: open + version_status_locked: locked + version_status_closed: closed + + field_active: Active + + text_select_mail_notifications: Select actions for which email notifications should be sent. + text_regexp_info: eg. ^[A-Z0-9]+$ + text_min_max_length_info: 0 means no restriction + text_project_destroy_confirmation: Are you sure you want to delete this project and related data? + text_subprojects_destroy_warning: "Its subproject(s): %{value} will be also deleted." + text_workflow_edit: Select a role and a tracker to edit the workflow + text_are_you_sure: Are you sure? + text_journal_changed: "%{label} changed from %{old} to %{new}" + text_journal_set_to: "%{label} set to %{value}" + text_journal_deleted: "%{label} deleted (%{old})" + text_journal_added: "%{label} %{value} added" + text_tip_issue_begin_day: task beginning this day + text_tip_issue_end_day: task ending this day + text_tip_issue_begin_end_day: task beginning and ending this day + text_project_identifier_info: 'Only lower case letters (a-z), numbers and dashes are allowed.<br /> This will be used in all project-related URLs, and as the repository name. Once saved, the identifier <b>can not</b> be changed.' + text_caracters_maximum: "%{count} characters maximum." + text_caracters_minimum: "Must be at least %{count} characters long." + text_length_between: "Length between %{min} and %{max} characters." + text_project_homepage_info: 'Link to an external project page.' + text_project_name_info: "This will be the name of your project throughout this site.<br /> You can change your project's name at any time, in the project's settings." + text_project_visibility_info: "If your project is not public, it will only be visible to users that you have added as project members." + text_user_ssamr_description_info: 'Please describe your current research or development interests, within the fields of audio and music.<br/>This information is publicly visible in your profile and you can edit it at any time.<br/>It may also be used to establish eligibility for your initial registration.' + text_issue_parent_issue_info: 'If this is a subtask, please insert its parent task number or write the main task name.' + text_tracker_no_workflow: No workflow defined for this tracker + text_unallowed_characters: Unallowed characters + text_comma_separated: Multiple values allowed (comma separated). + text_line_separated: Multiple values allowed (one line for each value). + text_issues_ref_in_commit_messages: Referencing and fixing issues in commit messages + text_issue_added: "Issue %{id} has been reported by %{author}." + text_issue_updated: "Issue %{id} has been updated by %{author}." + text_wiki_destroy_confirmation: Are you sure you want to delete this wiki and all its content? + text_issue_category_destroy_question: "Some issues (%{count}) are assigned to this category. What do you want to do?" + text_issue_category_destroy_assignments: Remove category assignments + text_issue_category_reassign_to: Reassign issues to this category + text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)." + text_no_configuration_data: "Roles, trackers, issue statuses and workflow have not been configured yet.\nIt is highly recommended to load the default configuration. You will be able to modify it once loaded." + text_load_default_configuration: Load the default configuration + text_status_changed_by_changeset: "Applied in changeset %{value}." + text_issues_destroy_confirmation: 'Are you sure you want to delete the selected issue(s)?' + text_select_project_modules: 'Select modules to enable for this project:' + text_default_administrator_account_changed: Default administrator account changed + text_file_repository_writable: Attachments directory writable + text_plugin_assets_writable: Plugin assets directory writable + text_rmagick_available: RMagick available (optional) + text_destroy_time_entries_question: "%{hours} hours were reported on the issues you are about to delete. What do you want to do?" + text_destroy_time_entries: Delete reported hours + text_assign_time_entries_to_project: Assign reported hours to the project + text_reassign_time_entries: 'Reassign reported hours to this issue:' + text_user_wrote: "%{value} wrote:" + text_enumeration_destroy_question: "%{count} objects are assigned to this value." + text_enumeration_category_reassign_to: 'Reassign them to this value:' + text_email_delivery_not_configured: "Email delivery is not configured, and notifications are disabled.\nConfigure your SMTP server in config/email.yml and restart the application to enable them." + text_repository_usernames_mapping: "Select or update the Redmine user mapped to each username found in the repository log.\nUsers with the same Redmine and repository username or email are automatically mapped." + text_diff_truncated: '... This diff was truncated because it exceeds the maximum size that can be displayed.' + text_custom_field_possible_values_info: 'One line for each value' + text_wiki_page_destroy_question: "This page has %{descendants} child page(s) and descendant(s). What do you want to do?" + text_wiki_page_nullify_children: "Keep child pages as root pages" + text_wiki_page_destroy_children: "Delete child pages and all their descendants" + text_wiki_page_reassign_children: "Reassign child pages to this parent page" + text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?" + text_settings_repo_creation: The repository for a project should be set up automatically within a few minutes of the project being created.<br>You should not have to adjust any settings here; please check again in ten minutes. + + default_role_manager: Manager + default_role_developer: Developer + default_role_reporter: Reporter + default_tracker_bug: Bug + default_tracker_feature: Feature + default_tracker_support: Support + default_issue_status_new: New + default_issue_status_in_progress: In Progress + default_issue_status_resolved: Resolved + default_issue_status_feedback: Feedback + default_issue_status_closed: Closed + default_issue_status_rejected: Rejected + default_doc_category_user: User documentation + default_doc_category_tech: Technical documentation + default_priority_low: Low + default_priority_normal: Normal + default_priority_high: High + default_priority_urgent: Urgent + default_priority_immediate: Immediate + default_activity_design: Design + default_activity_development: Development + + enumeration_issue_priorities: Issue priorities + enumeration_doc_categories: Document categories + enumeration_activities: Activities (time tracking) + enumeration_system_activity: System Activity + + notice_unable_delete_time_entry: Unable to delete time log entry. + error_can_not_delete_custom_field: Unable to delete custom field + permission_manage_subtasks: Manage subtasks + label_profile: Profile + error_unable_to_connect: Unable to connect (%{value}) + label_overall_spent_time: Overall spent time + error_can_not_remove_role: This role is in use and can not be deleted. + field_principal: Principal + field_parent_issue: Parent task + label_my_page_block: My page block + text_zoom_out: Zoom out + text_zoom_in: Zoom in + error_unable_delete_issue_status: Unable to delete issue status + label_subtask_plural: Subtasks + error_can_not_delete_tracker: This tracker contains issues and can't be deleted. + notice_failed_to_save_members: "Failed to save member(s): %{errors}." + label_project_copy_notifications: Send email notifications during the project copy + field_time_entries: Log time + project_module_gantt: Gantt + project_module_calendar: Calendar + field_member_of_group: Member of Group + field_assigned_to_role: Member of Role + button_edit_associated_wikipage: "Edit associated Wiki page: %{page_title}" + text_are_you_sure_with_children: Delete issue and all child issues? + field_text: Text field + label_user_mail_option_only_owner: Only for things I am the owner of + setting_default_notification_option: Default notification option + label_user_mail_option_only_my_events: Only for things I watch or I'm involved in + label_user_mail_option_only_assigned: Only for things I am assigned to + notice_not_authorized_archived_project: The project you're trying to access has been archived. + label_principal_search: "Search by name:" + label_user_search: "Search for user:" + field_visible: Visible + setting_emails_header: Emails header + setting_commit_logtime_activity_id: Activity for logged time + text_time_logged_by_changeset: Applied in changeset %{value}. + setting_commit_logtime_enabled: Enable time logging + notice_gantt_chart_truncated: The chart was truncated because it exceeds the maximum number of items that can be displayed (%{max}) + setting_gantt_items_limit: Maximum number of items displayed on the gantt chart
--- a/config/locales/en.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/en.yml Wed Jan 19 15:15:02 2011 +0000 @@ -205,13 +205,15 @@ gui_validation_error: 1 error gui_validation_error_plural: "%{count} errors" - + + field_ssamr_user_detail: + description: User Description field_name: Name field_description: Description field_summary: Summary field_is_required: Required - field_firstname: Firstname - field_lastname: Lastname + field_firstname: First name + field_lastname: Last name field_mail: Email field_filename: File field_filesize: Size @@ -245,6 +247,7 @@ field_role: Role field_homepage: Homepage field_is_public: Public + field_is_private: Private field_parent: Subproject of field_is_in_roadmap: Issues displayed in roadmap field_login: Login @@ -304,6 +307,9 @@ field_text: Text field field_visible: Visible + setting_tipoftheday_text: Tip of the Day + setting_notifications_text: Notifications + label_ssamr_description: Research description setting_app_title: Application title setting_app_subtitle: Application subtitle setting_welcome_text: Welcome text @@ -430,6 +436,8 @@ project_module_calendar: Calendar project_module_gantt: Gantt + label_tipoftheday: Tip of the day + label_ssamr_details: Other Details label_user: User label_user_plural: Users label_user_new: New user @@ -437,12 +445,15 @@ label_project: Project label_project_new: New project label_project_plural: Projects + label_my_project_plural: My Projects + label_other_project_plural: "Everyone Else's Projects" label_x_projects: zero: no projects one: 1 project other: "%{count} projects" label_project_all: All Projects label_project_latest: Latest projects + label_managers: Managed by label_issue: Issue label_issue_new: New issue label_issue_plural: Issues @@ -483,6 +494,7 @@ label_login_with_open_id_option: or login with OpenID label_password_lost: Lost password label_home: Home + label_home_heading: Welcome! label_my_page: My page label_my_account: My account label_my_projects: My projects @@ -791,7 +803,7 @@ label_profile: Profile label_subtask_plural: Subtasks label_project_copy_notifications: Send email notifications during the project copy - label_principal_search: "Search for user or group:" + label_principal_search: "Search by name:" label_user_search: "Search for user:" button_login: Login @@ -864,10 +876,15 @@ text_tip_issue_begin_day: issue beginning this day text_tip_issue_end_day: issue ending this day text_tip_issue_begin_end_day: issue beginning and ending this day - text_project_identifier_info: 'Only lower case letters (a-z), numbers and dashes are allowed.<br />Once saved, the identifier can not be changed.' + text_project_identifier_info: 'Only lower case letters (a-z), numbers and dashes are allowed.<br /> This will be used in all project-related URLs, and as the repository name. Once saved, the identifier <b>can not</b> be changed.' + text_project_name_info: "This will be the name of your project throughout this site.<br /> You can change your project's name at any time, in the project's settings." + text_project_visibility_info: "If your project is not public, it will only be visible to users that you have added as project members." + text_project_homepage_info: 'Link to an external project page.' text_caracters_maximum: "%{count} characters maximum." text_caracters_minimum: "Must be at least %{count} characters long." text_length_between: "Length between %{min} and %{max} characters." + text_user_ssamr_description_info: 'Please describe your current research or development interests, within the fields of audio and music.<br/>This information is publicly visible in your profile and you can edit it at any time.<br/>It may also be used to establish eligibility for your initial registration.' + text_issue_parent_issue_info: 'If this is a subtask, please insert its parent task number or write the main task name.' text_tracker_no_workflow: No workflow defined for this tracker text_unallowed_characters: Unallowed characters text_comma_separated: Multiple values allowed (comma separated). @@ -908,6 +925,7 @@ text_own_membership_delete_confirmation: "You are about to remove some or all of your permissions and may no longer be able to edit this project after that.\nAre you sure you want to continue?" text_zoom_in: Zoom in text_zoom_out: Zoom out + text_settings_repo_creation: The repository for a project should be set up automatically within a few minutes of the project being created.<br>You should not have to adjust any settings here.<br>Please check again in ten minutes, and <a href="/projects/soundsoftware-site/wiki/Help">contact us</a> if there is any problem. default_role_manager: Manager default_role_developer: Developer
--- a/config/locales/es.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/es.yml Wed Jan 19 15:15:02 2011 +0000 @@ -461,6 +461,7 @@ label_help: Ayuda label_history: Histórico label_home: Inicio + label_home_heading: Inicio label_in: en label_in_less_than: en menos que label_in_more_than: en más que
--- a/config/locales/eu.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/eu.yml Wed Jan 19 15:15:02 2011 +0000 @@ -460,6 +460,7 @@ label_login_with_open_id_option: edo OpenID-rekin saioa hasi label_password_lost: Pasahitza galduta label_home: Hasiera + label_home_heading: Hasiera label_my_page: Nire orria label_my_account: Nire kontua label_my_projects: Nire proiektuak
--- a/config/locales/fi.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/fi.yml Wed Jan 19 15:15:02 2011 +0000 @@ -361,6 +361,7 @@ label_register: Rekisteröidy label_password_lost: Hukattu salasana label_home: Koti + label_home_heading: Koti label_my_page: Omasivu label_my_account: Oma tili label_my_projects: Omat projektit
--- a/config/locales/fr.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/fr.yml Wed Jan 19 15:15:02 2011 +0000 @@ -486,6 +486,7 @@ label_login_with_open_id_option: S'authentifier avec OpenID label_password_lost: Mot de passe perdu label_home: Accueil + label_home_heading: Accueil label_my_page: Ma page label_my_account: Mon compte label_my_projects: Mes projets
--- a/config/locales/gl.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/gl.yml Wed Jan 19 15:15:02 2011 +0000 @@ -438,6 +438,7 @@ label_help: Axuda label_history: Histórico label_home: Inicio + label_home_heading: Inicio label_in: en label_in_less_than: en menos que label_in_more_than: en mais que
--- a/config/locales/he.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/he.yml Wed Jan 19 15:15:02 2011 +0000 @@ -479,6 +479,7 @@ label_login_with_open_id_option: או התחבר באמצעות OpenID label_password_lost: אבדה הסיסמה? label_home: דף הבית + label_home_heading: דף הבית label_my_page: הדף שלי label_my_account: החשבון שלי label_my_projects: הפרויקטים שלי
--- a/config/locales/hr.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/hr.yml Wed Jan 19 15:15:02 2011 +0000 @@ -455,6 +455,7 @@ label_login_with_open_id_option: or login with OpenID label_password_lost: Izgubljena zaporka label_home: Početna stranica + label_home_heading: Početna stranica label_my_page: Moja stranica label_my_account: Moj profil label_my_projects: Moji projekti
--- a/config/locales/hu.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/hu.yml Wed Jan 19 15:15:02 2011 +0000 @@ -377,6 +377,7 @@ label_register: Regisztráljon label_password_lost: Elfelejtett jelszó label_home: Kezdőlap + label_home_heading: Kezdőlap label_my_page: Saját kezdőlapom label_my_account: Fiókom adatai label_my_projects: Saját projektem
--- a/config/locales/id.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/id.yml Wed Jan 19 15:15:02 2011 +0000 @@ -446,6 +446,7 @@ label_login_with_open_id_option: atau login menggunakan OpenID label_password_lost: Lupa password label_home: Halaman depan + label_home_heading: Halaman depan label_my_page: Beranda label_my_account: Akun saya label_my_projects: Proyek saya
--- a/config/locales/it.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/it.yml Wed Jan 19 15:15:02 2011 +0000 @@ -321,6 +321,7 @@ label_register: Registrati label_password_lost: Password dimenticata label_home: Home + label_home_heading: Home label_my_page: Pagina personale label_my_account: Il mio utente label_my_projects: I miei progetti
--- a/config/locales/ja.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/ja.yml Wed Jan 19 15:15:02 2011 +0000 @@ -506,6 +506,7 @@ label_login_with_open_id_option: またはOpenIDでログインする label_password_lost: パスワードの再発行 label_home: ホーム + label_home_heading: ホーム label_my_page: マイページ label_my_account: 個人設定 label_my_projects: マイプロジェクト
--- a/config/locales/ko.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/ko.yml Wed Jan 19 15:15:02 2011 +0000 @@ -485,6 +485,7 @@ label_login_with_open_id_option: 또는 OpenID로 로그인 label_password_lost: 비밀번호 찾기 label_home: 초기화면 + label_home_heading: 초기화면 label_my_page: 내 페이지 label_my_account: 내 계정 label_my_projects: 내 프로젝트
--- a/config/locales/lt.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/lt.yml Wed Jan 19 15:15:02 2011 +0000 @@ -501,6 +501,7 @@ label_register: Užsiregistruoti label_password_lost: Prarastas slaptažodis label_home: Pagrindinis + label_home_heading: Pagrindinis label_my_page: Mano puslapis label_my_account: Mano paskyra label_my_projects: Mano projektai
--- a/config/locales/lv.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/lv.yml Wed Jan 19 15:15:02 2011 +0000 @@ -454,6 +454,7 @@ label_login_with_open_id_option: vai pieslēgties ar OpenID label_password_lost: Nozaudēta parole label_home: Sākums + label_home_heading: Sākums label_my_page: Mana lapa label_my_account: Mans konts label_my_projects: Mani projekti
--- a/config/locales/mk.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/mk.yml Wed Jan 19 15:15:02 2011 +0000 @@ -472,6 +472,7 @@ label_login_with_open_id_option: или најави се со OpenID label_password_lost: Изгубена лозинка label_home: Почетна + label_home_heading: Почетна label_my_page: Мојата страна label_my_account: Мојот профил label_my_projects: Мои проекти
--- a/config/locales/mn.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/mn.yml Wed Jan 19 15:15:02 2011 +0000 @@ -458,6 +458,7 @@ label_login_with_open_id_option: or login with OpenID label_password_lost: Нууц үгээ алдсан label_home: Нүүр + label_home_heading: Нүүр label_my_page: Миний хуудас label_my_account: Миний данс label_my_projects: Миний төслүүд
--- a/config/locales/nl.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/nl.yml Wed Jan 19 15:15:02 2011 +0000 @@ -408,6 +408,7 @@ label_help: Help label_history: Geschiedenis label_home: Home + label_home_heading: Home label_in: in label_in_less_than: in minder dan label_in_more_than: in meer dan
--- a/config/locales/no.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/no.yml Wed Jan 19 15:15:02 2011 +0000 @@ -348,6 +348,7 @@ label_register: Registrer label_password_lost: Mistet passord label_home: Hjem + label_home_heading: Hjem label_my_page: Min side label_my_account: Min konto label_my_projects: Mine prosjekter
--- a/config/locales/pl.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/pl.yml Wed Jan 19 15:15:02 2011 +0000 @@ -435,6 +435,7 @@ label_help: Pomoc label_history: Historia label_home: Główna + label_home_heading: Główna label_in: w label_in_less_than: mniejsze niż label_in_more_than: większe niż
--- a/config/locales/pt-BR.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/pt-BR.yml Wed Jan 19 15:15:02 2011 +0000 @@ -386,6 +386,7 @@ label_register: Cadastre-se label_password_lost: Perdi minha senha label_home: Página inicial + label_home_heading: Página inicial label_my_page: Minha página label_my_account: Minha conta label_my_projects: Meus projetos
--- a/config/locales/pt.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/pt.yml Wed Jan 19 15:15:02 2011 +0000 @@ -371,6 +371,7 @@ label_register: Registar label_password_lost: Perdi a palavra-chave label_home: Página Inicial + label_home_heading: Página Inicial label_my_page: Página Pessoal label_my_account: Minha conta label_my_projects: Meus projectos
--- a/config/locales/ro.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/ro.yml Wed Jan 19 15:15:02 2011 +0000 @@ -418,6 +418,7 @@ label_login_with_open_id_option: sau autentificare cu OpenID label_password_lost: Parolă uitată label_home: Acasă + label_home_heading: Acasă label_my_page: Pagina mea label_my_account: Contul meu label_my_projects: Proiectele mele
--- a/config/locales/ru.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/ru.yml Wed Jan 19 15:15:02 2011 +0000 @@ -516,6 +516,7 @@ label_help: Помощь label_history: История label_home: Домашняя страница + label_home_heading: Домашняя страница label_incoming_emails: Приём сообщений label_index_by_date: История страниц label_index_by_title: Оглавление
--- a/config/locales/sk.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/sk.yml Wed Jan 19 15:15:02 2011 +0000 @@ -351,6 +351,7 @@ label_register: Registrovať label_password_lost: Zabudnuté heslo label_home: Domovská stránka + label_home_heading: Domovská stránka label_my_page: Moja stránka label_my_account: Môj účet label_my_projects: Moje projekty
--- a/config/locales/sl.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/sl.yml Wed Jan 19 15:15:02 2011 +0000 @@ -414,6 +414,7 @@ label_register: Registracija label_password_lost: Izgubljeno geslo label_home: Domov + label_home_heading: Domov label_my_page: Moja stran label_my_account: Moj račun label_my_projects: Moji projekti
--- a/config/locales/sr-YU.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/sr-YU.yml Wed Jan 19 15:15:02 2011 +0000 @@ -469,6 +469,7 @@ label_login_with_open_id_option: ili prijava sa OpenID label_password_lost: Izgubljena lozinka label_home: Početak + label_home_heading: Početak label_my_page: Moja stranica label_my_account: Moj nalog label_my_projects: Moji projekti
--- a/config/locales/sr.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/sr.yml Wed Jan 19 15:15:02 2011 +0000 @@ -469,6 +469,7 @@ label_login_with_open_id_option: или пријава са OpenID label_password_lost: Изгубљена лозинка label_home: Почетак + label_home_heading: Почетак label_my_page: Моја страница label_my_account: Мој налог label_my_projects: Моји пројекти
--- a/config/locales/sv.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/sv.yml Wed Jan 19 15:15:02 2011 +0000 @@ -521,6 +521,7 @@ label_login_with_open_id_option: eller logga in med OpenID label_password_lost: Glömt lösenord label_home: Hem + label_home_heading: Hem label_my_page: Min sida label_my_account: Mitt konto label_my_projects: Mina projekt
--- a/config/locales/th.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/th.yml Wed Jan 19 15:15:02 2011 +0000 @@ -353,6 +353,7 @@ label_register: ลงทะเบียน label_password_lost: ลืมรหัสผ่าน label_home: หน้าแรก + label_home_heading: หน้าแรก label_my_page: หน้าของฉัน label_my_account: บัญชีของฉัน label_my_projects: โครงการของฉัน
--- a/config/locales/tr.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/tr.yml Wed Jan 19 15:15:02 2011 +0000 @@ -376,6 +376,7 @@ label_register: Kayıt label_password_lost: Parolamı unuttum? label_home: Anasayfa + label_home_heading: Anasayfa label_my_page: Kişisel Sayfam label_my_account: Hesabım label_my_projects: Projelerim
--- a/config/locales/uk.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/uk.yml Wed Jan 19 15:15:02 2011 +0000 @@ -328,6 +328,7 @@ label_register: Зареєструватися label_password_lost: Забули пароль label_home: Домашня сторінка + label_home_heading: Домашня сторінка label_my_page: Моя сторінка label_my_account: Мій обліковий запис label_my_projects: Мої проекти
--- a/config/locales/vi.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/vi.yml Wed Jan 19 15:15:02 2011 +0000 @@ -416,6 +416,7 @@ label_register: Đăng ký label_password_lost: Phục hồi mật mã label_home: Trang chính + label_home_heading: Trang chính label_my_page: Trang riêng label_my_account: Cá nhân label_my_projects: Dự án của bạn
--- a/config/locales/zh-TW.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/zh-TW.yml Wed Jan 19 15:15:02 2011 +0000 @@ -565,6 +565,7 @@ label_login_with_open_id_option: 或使用 OpenID 登入 label_password_lost: 遺失密碼 label_home: 網站首頁 + label_home_heading: 網站首頁 label_my_page: 帳戶首頁 label_my_account: 我的帳戶 label_my_projects: 我的專案
--- a/config/locales/zh.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/locales/zh.yml Wed Jan 19 15:15:02 2011 +0000 @@ -471,6 +471,7 @@ label_login_with_open_id_option: 或使用OpenID登录 label_password_lost: 忘记密码 label_home: 主页 + label_home_heading: 主页 label_my_page: 我的工作台 label_my_account: 我的帐号 label_my_projects: 我的项目
--- a/config/settings.yml Wed Jan 19 15:04:22 2011 +0000 +++ b/config/settings.yml Wed Jan 19 15:15:02 2011 +0000 @@ -25,6 +25,10 @@ default: Project management welcome_text: default: +tipoftheday_text: + default: +notifications_text: + default: login_required: default: 0 self_registration:
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/db/migrate/20101123161346_create_ssamr_user_details.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,14 @@ +class CreateSsamrUserDetails < ActiveRecord::Migration + def self.up + create_table :ssamr_user_details do |t| + t.integer :user_id + t.text :description + t.text :university + end + end + + def self.down + drop_table :ssamr_user_details + end + +end
--- a/extra/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/extra/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/extra +http://redmine.rubyforge.org/svn/branches/1.1-stable/extra http://redmine.rubyforge.org/svn
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/extra/mercurial/redminehelper.py Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,91 @@ +# redminehelper: Redmine helper extension for Mercurial +# it's a draft to show a possible way to explore repository by the Redmine overhaul patch +# see: http://www.redmine.org/issues/4455 +# +# Copyright 2010 Alessio Franceschelli (alefranz.net) +# Copyright 2010 Yuya Nishihara <yuya@tcha.org> +# +# This software may be used and distributed according to the terms of the +# GNU General Public License version 2 or any later version. + +'''command to list revision of each file +''' + +import re, time +from mercurial import cmdutil, commands, node, error + +SPECIAL_TAGS = ('tip',) + +def rhsummary(ui, repo, **opts): + """output the summary of the repository""" + # see mercurial/commands.py:tip + ui.write(':tip: rev node\n') + tipctx = repo[len(repo) - 1] + ui.write('%d %s\n' % (tipctx.rev(), tipctx)) + + # see mercurial/commands.py:root + ui.write(':root: path\n') + ui.write(repo.root + '\n') + + # see mercurial/commands.py:tags + ui.write(':tags: rev node name\n') + for t, n in reversed(repo.tagslist()): + if t in SPECIAL_TAGS: + continue + try: + r = repo.changelog.rev(n) + except error.LookupError: + r = -1 + ui.write('%d %s %s\n' % (r, node.short(n), t)) + + # see mercurial/commands.py:branches + def iterbranches(): + for t, n in repo.branchtags().iteritems(): + yield t, n, repo.changelog.rev(n) + + ui.write(':branches: rev node name\n') + for t, n, r in sorted(iterbranches(), key=lambda e: e[2], reverse=True): + if repo.lookup(r) in repo.branchheads(t, closed=False): + ui.write('%d %s %s\n' % (r, node.short(n), t)) # only open branch + +def rhentries(ui, repo, path='', **opts): + """output the entries of the specified directory""" + rev = opts.get('rev') + pathprefix = (path.rstrip('/') + '/').lstrip('/') + + # TODO: clean up + dirs, files = {}, {} + mf = repo[rev].manifest() + for f in repo[rev]: + if not f.startswith(pathprefix): + continue + + name = re.sub(r'/.*', '', f[len(pathprefix):]) + if '/' in f[len(pathprefix):]: + dirs[name] = (name,) + else: + try: + fctx = repo.filectx(f, fileid=mf[f]) + ctx = fctx.changectx() + tm, tzoffset = ctx.date() + localtime = int(tm) + tzoffset - time.timezone + files[name] = (ctx.rev(), node.short(ctx.node()), localtime, + fctx.size(), name) + except LookupError: # TODO: when this occurs? + pass + + ui.write(':dirs: name\n') + for n, v in sorted(dirs.iteritems(), key=lambda e: e[0]): + ui.write(' '.join(v) + '\n') + + ui.write(':files: rev node time size name\n') + for n, v in sorted(files.iteritems(), key=lambda e: e[0]): + ui.write(' '.join(str(e) for e in v) + '\n') + + +cmdtable = { + 'rhsummary': (rhsummary, [], 'hg rhsummary'), + 'rhentries': (rhentries, + [('r', 'rev', '', 'show the specified revision')], + 'hg rhentries [path]'), +}
--- a/extra/sample_plugin/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 44 -/svn/!svn/ver/2798/trunk/extra/sample_plugin -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/2798/trunk/extra/sample_plugin/init.rb -END -README -K 25 -svn:wc:ra_dav:version-url -V 51 -/svn/!svn/ver/2530/trunk/extra/sample_plugin/README -END
--- a/extra/sample_plugin/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/extra/sample_plugin/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/extra/sample_plugin +http://redmine.rubyforge.org/svn/branches/1.1-stable/extra/sample_plugin http://redmine.rubyforge.org/svn @@ -44,7 +44,7 @@ -2010-09-23T14:37:44.963747Z +2010-08-12T15:03:25.000000Z cb8636f8b6659a091f3e1f018a64a2f5 2009-07-02T18:40:06.298867Z 2798 @@ -78,7 +78,7 @@ -2010-09-23T14:37:44.943755Z +2010-08-12T15:03:25.000000Z 4d87ae4412bda3ec3b4c9a8bc17fafb6 2009-02-26T16:37:48.671184Z 2530
--- a/extra/sample_plugin/app/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 48 -/svn/!svn/ver/2798/trunk/extra/sample_plugin/app -END
--- a/extra/sample_plugin/app/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/extra/sample_plugin/app/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/extra/sample_plugin/app +http://redmine.rubyforge.org/svn/branches/1.1-stable/extra/sample_plugin/app http://redmine.rubyforge.org/svn
--- a/extra/sample_plugin/app/controllers/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/2493/trunk/extra/sample_plugin/app/controllers -END -example_controller.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/2493/trunk/extra/sample_plugin/app/controllers/example_controller.rb -END
--- a/extra/sample_plugin/app/controllers/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/extra/sample_plugin/app/controllers/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/extra/sample_plugin/app/controllers +http://redmine.rubyforge.org/svn/branches/1.1-stable/extra/sample_plugin/app/controllers http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.943755Z +2010-08-12T15:03:25.000000Z 9e3b32d475f8b06df8d45b28a2732d76 2009-02-21T11:04:50.579477Z 2493
--- a/extra/sample_plugin/app/models/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/1704/trunk/extra/sample_plugin/app/models -END -meeting.rb -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/1704/trunk/extra/sample_plugin/app/models/meeting.rb -END
--- a/extra/sample_plugin/app/models/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/extra/sample_plugin/app/models/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/extra/sample_plugin/app/models +http://redmine.rubyforge.org/svn/branches/1.1-stable/extra/sample_plugin/app/models http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.947762Z +2010-08-12T15:03:25.000000Z 5161ccc668c61730638ef23bec50232f 2008-07-27T19:18:35.954247Z 1704
--- a/extra/sample_plugin/app/views/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 54 -/svn/!svn/ver/2798/trunk/extra/sample_plugin/app/views -END
--- a/extra/sample_plugin/app/views/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/extra/sample_plugin/app/views/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/extra/sample_plugin/app/views +http://redmine.rubyforge.org/svn/branches/1.1-stable/extra/sample_plugin/app/views http://redmine.rubyforge.org/svn
--- a/extra/sample_plugin/app/views/example/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 61 -/svn/!svn/ver/753/trunk/extra/sample_plugin/app/views/example -END -say_hello.rhtml -K 25 -svn:wc:ra_dav:version-url -V 77 -/svn/!svn/ver/753/trunk/extra/sample_plugin/app/views/example/say_hello.rhtml -END -say_goodbye.rhtml -K 25 -svn:wc:ra_dav:version-url -V 79 -/svn/!svn/ver/753/trunk/extra/sample_plugin/app/views/example/say_goodbye.rhtml -END
--- a/extra/sample_plugin/app/views/example/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/extra/sample_plugin/app/views/example/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/extra/sample_plugin/app/views/example +http://redmine.rubyforge.org/svn/branches/1.1-stable/extra/sample_plugin/app/views/example http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.947762Z +2010-08-12T15:03:25.000000Z 674cc3fb92754e41d7e7d5fb7ed0eda7 2007-09-23T18:50:53.732551Z 753 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.947762Z +2010-08-12T15:03:25.000000Z cf9e02439886339b70ee199313902c96 2007-09-23T18:50:53.732551Z 753
--- a/extra/sample_plugin/app/views/my/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/2529/trunk/extra/sample_plugin/app/views/my -END
--- a/extra/sample_plugin/app/views/my/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/extra/sample_plugin/app/views/my/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/extra/sample_plugin/app/views/my +http://redmine.rubyforge.org/svn/branches/1.1-stable/extra/sample_plugin/app/views/my http://redmine.rubyforge.org/svn
--- a/extra/sample_plugin/app/views/my/blocks/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/2529/trunk/extra/sample_plugin/app/views/my/blocks -END -_sample_block.rhtml -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/2529/trunk/extra/sample_plugin/app/views/my/blocks/_sample_block.rhtml -END
--- a/extra/sample_plugin/app/views/my/blocks/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/extra/sample_plugin/app/views/my/blocks/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/extra/sample_plugin/app/views/my/blocks +http://redmine.rubyforge.org/svn/branches/1.1-stable/extra/sample_plugin/app/views/my/blocks http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.951756Z +2010-08-12T15:03:25.000000Z e2d729cf488b7b7411cffb259c10559a 2009-02-26T16:36:56.835799Z 2529
--- a/extra/sample_plugin/app/views/settings/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 63 -/svn/!svn/ver/2798/trunk/extra/sample_plugin/app/views/settings -END -_sample_plugin_settings.rhtml -K 25 -svn:wc:ra_dav:version-url -V 93 -/svn/!svn/ver/2798/trunk/extra/sample_plugin/app/views/settings/_sample_plugin_settings.rhtml -END
--- a/extra/sample_plugin/app/views/settings/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/extra/sample_plugin/app/views/settings/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/extra/sample_plugin/app/views/settings +http://redmine.rubyforge.org/svn/branches/1.1-stable/extra/sample_plugin/app/views/settings http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.951756Z +2010-08-12T15:03:25.000000Z 065925dde040b66230ae06437114c77f 2009-07-02T18:40:06.298867Z 2798
--- a/extra/sample_plugin/assets/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 50 -/svn/!svn/ver/753/trunk/extra/sample_plugin/assets -END
--- a/extra/sample_plugin/assets/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/extra/sample_plugin/assets/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/extra/sample_plugin/assets +http://redmine.rubyforge.org/svn/branches/1.1-stable/extra/sample_plugin/assets http://redmine.rubyforge.org/svn
--- a/extra/sample_plugin/assets/images/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/753/trunk/extra/sample_plugin/assets/images -END -it_works.png -K 25 -svn:wc:ra_dav:version-url -V 70 -/svn/!svn/ver/753/trunk/extra/sample_plugin/assets/images/it_works.png -END
--- a/extra/sample_plugin/assets/images/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/extra/sample_plugin/assets/images/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/extra/sample_plugin/assets/images +http://redmine.rubyforge.org/svn/branches/1.1-stable/extra/sample_plugin/assets/images http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.955797Z +2010-08-12T15:03:25.000000Z 81bcc262c08473fa7cb05cc78176652f 2007-09-23T18:50:53.732551Z 753
--- a/extra/sample_plugin/assets/stylesheets/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/753/trunk/extra/sample_plugin/assets/stylesheets -END -example.css -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/753/trunk/extra/sample_plugin/assets/stylesheets/example.css -END
--- a/extra/sample_plugin/assets/stylesheets/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/extra/sample_plugin/assets/stylesheets/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/extra/sample_plugin/assets/stylesheets +http://redmine.rubyforge.org/svn/branches/1.1-stable/extra/sample_plugin/assets/stylesheets http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.955797Z +2010-08-12T15:03:25.000000Z ced97da84497db69b30e6e17a55c3fb9 2007-09-23T18:50:53.732551Z 753
--- a/extra/sample_plugin/config/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 51 -/svn/!svn/ver/2493/trunk/extra/sample_plugin/config -END
--- a/extra/sample_plugin/config/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/extra/sample_plugin/config/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/extra/sample_plugin/config +http://redmine.rubyforge.org/svn/branches/1.1-stable/extra/sample_plugin/config http://redmine.rubyforge.org/svn
--- a/extra/sample_plugin/config/locales/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/2493/trunk/extra/sample_plugin/config/locales -END -en.yml -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/2493/trunk/extra/sample_plugin/config/locales/en.yml -END -fr.yml -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/2493/trunk/extra/sample_plugin/config/locales/fr.yml -END
--- a/extra/sample_plugin/config/locales/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/extra/sample_plugin/config/locales/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/extra/sample_plugin/config/locales +http://redmine.rubyforge.org/svn/branches/1.1-stable/extra/sample_plugin/config/locales http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.959754Z +2010-08-12T15:03:25.000000Z c1dc7060239e61ce13e8840b305000c5 2009-02-08T16:13:02.919112Z 2413 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.959754Z +2010-08-12T15:03:25.000000Z 989492284a42bf9777e2bd0d39b40254 2009-02-08T16:13:02.919112Z 2413
--- a/extra/sample_plugin/db/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 47 -/svn/!svn/ver/1703/trunk/extra/sample_plugin/db -END
--- a/extra/sample_plugin/db/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/extra/sample_plugin/db/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/extra/sample_plugin/db +http://redmine.rubyforge.org/svn/branches/1.1-stable/extra/sample_plugin/db http://redmine.rubyforge.org/svn
--- a/extra/sample_plugin/db/migrate/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/1703/trunk/extra/sample_plugin/db/migrate -END -001_create_meetings.rb -K 25 -svn:wc:ra_dav:version-url -V 78 -/svn/!svn/ver/1703/trunk/extra/sample_plugin/db/migrate/001_create_meetings.rb -END
--- a/extra/sample_plugin/db/migrate/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/extra/sample_plugin/db/migrate/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/extra/sample_plugin/db/migrate +http://redmine.rubyforge.org/svn/branches/1.1-stable/extra/sample_plugin/db/migrate http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.963747Z +2010-08-12T15:03:25.000000Z 2316ab57f3d60b7f04b4bdfdebf6fd8e 2008-07-27T19:10:56.352148Z 1703
--- a/extra/svn/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 34 -/svn/!svn/ver/4309/trunk/extra/svn -END -reposman.rb -K 25 -svn:wc:ra_dav:version-url -V 46 -/svn/!svn/ver/4288/trunk/extra/svn/reposman.rb -END -svnserve.wrapper -K 25 -svn:wc:ra_dav:version-url -V 50 -/svn/!svn/ver/402/trunk/extra/svn/svnserve.wrapper -END -Redmine.pm -K 25 -svn:wc:ra_dav:version-url -V 45 -/svn/!svn/ver/4309/trunk/extra/svn/Redmine.pm -END -create_views.sql -K 25 -svn:wc:ra_dav:version-url -V 50 -/svn/!svn/ver/396/trunk/extra/svn/create_views.sql -END
--- a/extra/svn/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/extra/svn/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/extra/svn +http://redmine.rubyforge.org/svn/branches/1.1-stable/extra/svn http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-11-19T13:04:50.864947Z +2011-01-13T12:46:09.000000Z a0d169b0fc20459335e531e4f3921ede 2010-10-24T21:00:05.611798Z 4288 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.967747Z +2010-08-12T15:03:25.000000Z f41d78e45e03554626edf5e4e6663d80 2007-04-02T19:01:31.084001Z 402 @@ -100,7 +100,7 @@ -2010-11-19T13:04:50.864947Z +2010-11-30T13:11:53.000000Z 5ed4546a59c9729cbd9b407ad0996b9b 2010-10-29T22:55:50.222644Z 4309 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.963747Z +2010-08-12T15:03:25.000000Z 96fdfe0a7a4913dbbfc1b871d7abab02 2007-04-01T19:43:59.029417Z 396
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/extra/svn/SoundSoftware.pm Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,422 @@ +package Apache::Authn::SoundSoftware; + +=head1 Apache::Authn::SoundSoftware + +SoundSoftware - a mod_perl module for Apache authentication against a +Redmine database and optional LDAP implementing the access control +rules required for the SoundSoftware.ac.uk repository site. + +=head1 SYNOPSIS + +This module is closely based on the Redmine.pm authentication module +provided with Redmine. It is intended to be used for authentication +in front of a repository service such as hgwebdir. + +Requirements: + +1. Clone/pull from repo for public project: Any user, no +authentication required + +2. Clone/pull from repo for private project: Project members only + +3. Push to repo for public project: "Permitted" users only (this +probably means project members who are also identified in the hgrc web +section for the repository and so will be approved by hgwebdir?) + +4. Push to repo for private project: "Permitted" users only (as above) + +=head1 INSTALLATION + +Debian/ubuntu: + + apt-get install libapache-dbi-perl libapache2-mod-perl2 \ + libdbd-mysql-perl libauthen-simple-ldap-perl libio-socket-ssl-perl + +Note that LDAP support is hardcoded "on" in this script (it is +optional in the original Redmine.pm). + +=head1 CONFIGURATION + + ## This module has to be in your perl path + ## eg: /usr/local/lib/site_perl/Apache/Authn/SoundSoftware.pm + PerlLoadModule Apache::Authn::SoundSoftware + + # Example when using hgwebdir + ScriptAlias / "/var/hg/hgwebdir.cgi/" + + <Location /> + AuthName "Mercurial" + AuthType Basic + Require valid-user + PerlAccessHandler Apache::Authn::SoundSoftware::access_handler + PerlAuthenHandler Apache::Authn::SoundSoftware::authen_handler + SoundSoftwareDSN "DBI:mysql:database=redmine;host=localhost" + SoundSoftwareDbUser "redmine" + SoundSoftwareDbPass "password" + Options +ExecCGI + AddHandler cgi-script .cgi + ## Optional where clause (fulltext search would be slow and + ## database dependant). + # SoundSoftwareDbWhereClause "and members.role_id IN (1,2)" + ## Optional prefix for local repository URLs + # SoundSoftwareRepoPrefix "/var/hg/" + </Location> + +See the original Redmine.pm for further configuration notes. + +=cut + +use strict; +use warnings FATAL => 'all', NONFATAL => 'redefine'; + +use DBI; +use Digest::SHA1; +use Authen::Simple::LDAP; +use Apache2::Module; +use Apache2::Access; +use Apache2::ServerRec qw(); +use Apache2::RequestRec qw(); +use Apache2::RequestUtil qw(); +use Apache2::Const qw(:common :override :cmd_how); +use APR::Pool (); +use APR::Table (); + +my @directives = ( + { + name => 'SoundSoftwareDSN', + req_override => OR_AUTHCFG, + args_how => TAKE1, + errmsg => 'Dsn in format used by Perl DBI. eg: "DBI:Pg:dbname=databasename;host=my.db.server"', + }, + { + name => 'SoundSoftwareDbUser', + req_override => OR_AUTHCFG, + args_how => TAKE1, + }, + { + name => 'SoundSoftwareDbPass', + req_override => OR_AUTHCFG, + args_how => TAKE1, + }, + { + name => 'SoundSoftwareDbWhereClause', + req_override => OR_AUTHCFG, + args_how => TAKE1, + }, + { + name => 'SoundSoftwareRepoPrefix', + req_override => OR_AUTHCFG, + args_how => TAKE1, + }, +); + +sub SoundSoftwareDSN { + my ($self, $parms, $arg) = @_; + $self->{SoundSoftwareDSN} = $arg; + my $query = "SELECT + hashed_password, auth_source_id, permissions + FROM members, projects, users, roles, member_roles + WHERE + projects.id=members.project_id + AND member_roles.member_id=members.id + AND users.id=members.user_id + AND roles.id=member_roles.role_id + AND users.status=1 + AND login=? + AND identifier=? "; + $self->{SoundSoftwareQuery} = trim($query); +} + +sub SoundSoftwareDbUser { set_val('SoundSoftwareDbUser', @_); } +sub SoundSoftwareDbPass { set_val('SoundSoftwareDbPass', @_); } +sub SoundSoftwareDbWhereClause { + my ($self, $parms, $arg) = @_; + $self->{SoundSoftwareQuery} = trim($self->{SoundSoftwareQuery}.($arg ? $arg : "")." "); +} + +sub SoundSoftwareRepoPrefix { + my ($self, $parms, $arg) = @_; + if ($arg) { + $self->{SoundSoftwareRepoPrefix} = $arg; + } +} + +sub trim { + my $string = shift; + $string =~ s/\s{2,}/ /g; + return $string; +} + +sub set_val { + my ($key, $self, $parms, $arg) = @_; + $self->{$key} = $arg; +} + +Apache2::Module::add(__PACKAGE__, \@directives); + + +my %read_only_methods = map { $_ => 1 } qw/GET PROPFIND REPORT OPTIONS/; + +sub access_handler { + my $r = shift; + + print STDERR "SoundSoftware.pm: In access handler\n"; + + unless ($r->some_auth_required) { + $r->log_reason("No authentication has been configured"); + return FORBIDDEN; + } + + my $method = $r->method; + + print STDERR "SoundSoftware.pm: Method: $method, uri " . $r->uri . ", location " . $r->location . "\n"; + print STDERR "SoundSoftware.pm: Accept: " . $r->headers_in->{Accept} . "\n"; + + if (!defined $read_only_methods{$method}) { + print STDERR "SoundSoftware.pm: Method is not read-only, authentication handler required\n"; + return OK; + } + + my $dbh = connect_database($r); + + my $project_id = get_project_identifier($dbh, $r); + my $status = get_project_status($dbh, $project_id, $r); + + $dbh->disconnect(); + undef $dbh; + + if ($status == 0) { # nonexistent + print STDERR "SoundSoftware.pm: Project does not exist, refusing access\n"; + return FORBIDDEN; + } elsif ($status == 1) { # public + print STDERR "SoundSoftware.pm: Project is public, no restriction here\n"; + $r->set_handlers(PerlAuthenHandler => [\&OK]) + } else { # private + print STDERR "SoundSoftware.pm: Project is private, authentication handler required\n"; + } + + return OK +} + +sub authen_handler { + my $r = shift; + + print STDERR "SoundSoftware.pm: In authentication handler\n"; + + my $dbh = connect_database($r); + + my $project_id = get_project_identifier($dbh, $r); + my $realm = get_realm($dbh, $project_id, $r); + $r->auth_name($realm); + + my ($res, $redmine_pass) = $r->get_basic_auth_pw(); + unless ($res == OK) { + $dbh->disconnect(); + undef $dbh; + return $res; + } + + print STDERR "SoundSoftware.pm: User is " . $r->user . ", got password\n"; + + my $permitted = is_permitted($dbh, $project_id, $r->user, $redmine_pass, $r); + + $dbh->disconnect(); + undef $dbh; + + if ($permitted) { + return OK; + } else { + print STDERR "SoundSoftware.pm: Not permitted\n"; + $r->note_auth_failure(); + return AUTH_REQUIRED; + } +} + +sub get_project_status { + my $dbh = shift; + my $project_id = shift; + my $r = shift; + + if (!defined $project_id or $project_id eq '') { + return 0; # nonexistent + } + + my $sth = $dbh->prepare( + "SELECT is_public FROM projects WHERE projects.identifier = ?;" + ); + + $sth->execute($project_id); + my $ret = 0; # nonexistent + if (my @row = $sth->fetchrow_array) { + if ($row[0] eq "1" || $row[0] eq "t") { + $ret = 1; # public + } else { + $ret = 2; # private + } + } + $sth->finish(); + undef $sth; + + $ret; +} + +sub is_permitted { + my $dbh = shift; + my $project_id = shift; + my $redmine_user = shift; + my $redmine_pass = shift; + my $r = shift; + + my $pass_digest = Digest::SHA1::sha1_hex($redmine_pass); + + my $cfg = Apache2::Module::get_config + (__PACKAGE__, $r->server, $r->per_dir_config); + + my $query = $cfg->{SoundSoftwareQuery}; + my $sth = $dbh->prepare($query); + $sth->execute($redmine_user, $project_id); + + my $ret; + while (my ($hashed_password, $auth_source_id, $permissions) = $sth->fetchrow_array) { + + # Test permissions for this user before we verify credentials + # -- if the user is not permitted this action anyway, there's + # not much point in e.g. contacting the LDAP + + my $method = $r->method; + + if ((defined $read_only_methods{$method} && $permissions =~ /:browse_repository/) + || $permissions =~ /:commit_access/) { + + # User would be permitted this action, if their + # credentials checked out -- test those now + + print STDERR "SoundSoftware.pm: User $redmine_user has required role, checking credentials\n"; + + unless ($auth_source_id) { + if ($hashed_password eq $pass_digest) { + print STDERR "SoundSoftware.pm: User $redmine_user authenticated via password\n"; + $ret = 1; + last; + } + } else { + my $sthldap = $dbh->prepare( + "SELECT host,port,tls,account,account_password,base_dn,attr_login FROM auth_sources WHERE id = ?;" + ); + $sthldap->execute($auth_source_id); + while (my @rowldap = $sthldap->fetchrow_array) { + my $ldap = Authen::Simple::LDAP->new( + host => ($rowldap[2] eq "1" || $rowldap[2] eq "t") ? "ldaps://$rowldap[0]" : $rowldap[0], + port => $rowldap[1], + basedn => $rowldap[5], + binddn => $rowldap[3] ? $rowldap[3] : "", + bindpw => $rowldap[4] ? $rowldap[4] : "", + filter => "(".$rowldap[6]."=%s)" + ); + if ($ldap->authenticate($redmine_user, $redmine_pass)) { + print STDERR "SoundSoftware.pm: User $redmine_user authenticated via LDAP\n"; + $ret = 1; + } + } + $sthldap->finish(); + undef $sthldap; + } + } else { + print STDERR "SoundSoftware.pm: User $redmine_user lacks required role for this project\n"; + } + } + + $sth->finish(); + undef $sth; + + $ret; +} + +sub get_project_identifier { + my $dbh = shift; + my $r = shift; + + my $location = $r->location; + my ($repo) = $r->uri =~ m{$location/*([^/]+)}; + + return $repo if (!$repo); + + $repo =~ s/[^a-zA-Z0-9\._-]//g; + + # The original Redmine.pm returns the string just calculated as + # the project identifier. That won't do for us -- we may have + # (and in fact already do have, in our test instance) projects + # whose repository names differ from the project identifiers. + + # This is a rather fundamental change because it means that almost + # every request needs more than one database query -- which + # prompts us to start passing around $dbh instead of connecting + # locally within each function as is done in Redmine.pm. + + my $sth = $dbh->prepare( + "SELECT projects.identifier FROM projects, repositories WHERE repositories.project_id = projects.id AND repositories.url LIKE ?;" + ); + + my $cfg = Apache2::Module::get_config + (__PACKAGE__, $r->server, $r->per_dir_config); + + my $prefix = $cfg->{SoundSoftwareRepoPrefix}; + if (!defined $prefix) { $prefix = '%/'; } + + my $identifier = ''; + + $sth->execute($prefix . $repo); + my $ret = 0; + if (my @row = $sth->fetchrow_array) { + $identifier = $row[0]; + } + $sth->finish(); + undef $sth; + + print STDERR "SoundSoftware.pm: Repository '$repo' belongs to project '$identifier'\n"; + + $identifier; +} + +sub get_realm { + my $dbh = shift; + my $project_id = shift; + my $r = shift; + + my $sth = $dbh->prepare( + "SELECT projects.name FROM projects WHERE projects.identifier = ?;" + ); + + my $name = $project_id; + + $sth->execute($project_id); + my $ret = 0; + if (my @row = $sth->fetchrow_array) { + $name = $row[0]; + } + $sth->finish(); + undef $sth; + + # be timid about characters not permitted in auth realm and revert + # to project identifier if any are found + if ($name =~ m/[^\w\d\s\._-]/) { + $name = $project_id; + } + + my $realm = '"Mercurial repository for ' . "'$name'" . '"'; + + $realm; +} + +sub connect_database { + my $r = shift; + + my $cfg = Apache2::Module::get_config + (__PACKAGE__, $r->server, $r->per_dir_config); + + return DBI->connect($cfg->{SoundSoftwareDSN}, + $cfg->{SoundSoftwareDbUser}, + $cfg->{SoundSoftwareDbPass}); +} + +1;
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/extra/svn/reposman-soundsoftware.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,350 @@ +#!/usr/bin/env ruby + +# == Synopsis +# +# reposman: manages your repositories with Redmine +# +# == Usage +# +# reposman [OPTIONS...] -s [DIR] -r [HOST] +# +# Examples: +# reposman --svn-dir=/var/svn --redmine-host=redmine.example.net --scm subversion +# reposman -s /var/git -r redmine.example.net -u http://svn.example.net --scm git +# +# == Arguments (mandatory) +# +# -s, --svn-dir=DIR use DIR as base directory for svn repositories +# -r, --redmine-host=HOST assume Redmine is hosted on HOST. Examples: +# -r redmine.example.net +# -r http://redmine.example.net +# -r https://example.net/redmine +# -k, --key=KEY use KEY as the Redmine API key +# +# == Options +# +# -o, --owner=OWNER owner of the repository. using the rails login +# allow user to browse the repository within +# Redmine even for private project. If you want to +# share repositories through Redmine.pm, you need +# to use the apache owner. +# -g, --group=GROUP group of the repository. (default: root) +# --scm=SCM the kind of SCM repository you want to create (and +# register) in Redmine (default: Subversion). +# reposman is able to create Git and Subversion +# repositories. For all other kind, you must specify +# a --command option +# -u, --url=URL the base url Redmine will use to access your +# repositories. This option is used to automatically +# register the repositories in Redmine. The project +# identifier will be appended to this url. Examples: +# -u https://example.net/svn +# -u file:///var/svn/ +# if this option isn't set, reposman will register +# the repositories with local file paths in Redmine +# -c, --command=COMMAND use this command instead of "svnadmin create" to +# create a repository. This option can be used to +# create repositories other than subversion and git +# kind. +# This command override the default creation for git +# and subversion. +# --http-user=USER User for HTTP Basic authentication with Redmine WS +# --http-pass=PASSWORD Password for Basic authentication with Redmine WS +# -t, --test only show what should be done +# -h, --help show help and exit +# -v, --verbose verbose +# -V, --version print version and exit +# -q, --quiet no log +# +# == References +# +# You can find more information on the redmine's wiki : http://www.redmine.org/wiki/redmine/HowTos + + +require 'getoptlong' +require 'rdoc/usage' +require 'find' +require 'etc' + +Version = "1.3" +SUPPORTED_SCM = %w( Subversion Darcs Mercurial Bazaar Git Filesystem ) + +opts = GetoptLong.new( + ['--svn-dir', '-s', GetoptLong::REQUIRED_ARGUMENT], + ['--redmine-host', '-r', GetoptLong::REQUIRED_ARGUMENT], + ['--key', '-k', GetoptLong::REQUIRED_ARGUMENT], + ['--owner', '-o', GetoptLong::REQUIRED_ARGUMENT], + ['--group', '-g', GetoptLong::REQUIRED_ARGUMENT], + ['--url', '-u', GetoptLong::REQUIRED_ARGUMENT], + ['--command' , '-c', GetoptLong::REQUIRED_ARGUMENT], + ['--scm', GetoptLong::REQUIRED_ARGUMENT], + ['--http-user', GetoptLong::REQUIRED_ARGUMENT], + ['--http-pass', GetoptLong::REQUIRED_ARGUMENT], + ['--test', '-t', GetoptLong::NO_ARGUMENT], + ['--verbose', '-v', GetoptLong::NO_ARGUMENT], + ['--version', '-V', GetoptLong::NO_ARGUMENT], + ['--help' , '-h', GetoptLong::NO_ARGUMENT], + ['--quiet' , '-q', GetoptLong::NO_ARGUMENT] + ) + +$verbose = 0 +$quiet = false +$redmine_host = '' +$repos_base = '' +$http_user = '' +$http_pass = '' +$svn_owner = 'root' +$svn_group = 'root' +$use_groupid = true +$svn_url = false +$test = false +$scm = 'Subversion' + +def log(text, options={}) + level = options[:level] || 0 + puts text unless $quiet or level > $verbose + exit 1 if options[:exit] +end + +def system_or_raise(command) + raise "\"#{command}\" failed" unless system command +end + +module SCM + + module Subversion + def self.create(path) + system_or_raise "svnadmin create #{path}" + end + end + + module Git + def self.create(path) + Dir.mkdir path + Dir.chdir(path) do + system_or_raise "git --bare init --shared" + system_or_raise "git update-server-info" + end + end + end + +end + +begin + opts.each do |opt, arg| + case opt + when '--svn-dir'; $repos_base = arg.dup + when '--redmine-host'; $redmine_host = arg.dup + when '--key'; $api_key = arg.dup + when '--owner'; $svn_owner = arg.dup; $use_groupid = false; + when '--group'; $svn_group = arg.dup; $use_groupid = false; + when '--url'; $svn_url = arg.dup + when '--scm'; $scm = arg.dup.capitalize; log("Invalid SCM: #{$scm}", :exit => true) unless SUPPORTED_SCM.include?($scm) + when '--http-user'; $http_user = arg.dup + when '--http-pass'; $http_pass = arg.dup + when '--command'; $command = arg.dup + when '--verbose'; $verbose += 1 + when '--test'; $test = true + when '--version'; puts Version; exit + when '--help'; RDoc::usage + when '--quiet'; $quiet = true + end + end +rescue + exit 1 +end + +if $test + log("running in test mode") +end + +# Make sure command is overridden if SCM vendor is not handled internally (for the moment Subversion and Git) +if $command.nil? + begin + scm_module = SCM.const_get($scm) + rescue + log("Please use --command option to specify how to create a #{$scm} repository.", :exit => true) + end +end + +$svn_url += "/" if $svn_url and not $svn_url.match(/\/$/) + +if ($redmine_host.empty? or $repos_base.empty?) + RDoc::usage +end + +unless File.directory?($repos_base) + log("directory '#{$repos_base}' doesn't exists", :exit => true) +end + +begin + require 'active_resource' +rescue LoadError + log("This script requires activeresource.\nRun 'gem install activeresource' to install it.", :exit => true) +end + +class Project < ActiveResource::Base + self.headers["User-agent"] = "Redmine repository manager/#{Version}" +end + +log("querying Redmine for projects...", :level => 1); + +$redmine_host.gsub!(/^/, "http://") unless $redmine_host.match("^https?://") +$redmine_host.gsub!(/\/$/, '') + +Project.site = "#{$redmine_host}/sys"; +Project.user = $http_user; +Project.password = $http_pass; + +begin + # Get all active projects that have the Repository module enabled + projects = Project.find(:all, :params => {:key => $api_key}) +rescue => e + log("Unable to connect to #{Project.site}: #{e}", :exit => true) +end + +if projects.nil? + log('no project found, perhaps you forgot to "Enable WS for repository management"', :exit => true) +end + +log("retrieved #{projects.size} projects", :level => 1) + +def set_owner_and_rights(project, repos_path, &block) + if RUBY_PLATFORM =~ /mswin/ + yield if block_given? + else + uid, gid = Etc.getpwnam($svn_owner).uid, ($use_groupid ? Etc.getgrnam(project.identifier).gid : Etc.getgrnam($svn_group).gid) + right = project.is_public ? 02775 : 02770 + yield if block_given? + Find.find(repos_path) do |f| + File.chmod right, f + File.chown uid, gid, f + end + end +end + +def other_read_right?(file) + (File.stat(file).mode & 0007).zero? ? false : true +end + +def owner_name(file) + mswin? ? + $svn_owner : + Etc.getpwuid( File.stat(file).uid ).name +end + +def mswin? + (RUBY_PLATFORM =~ /(:?mswin|mingw)/) || (RUBY_PLATFORM == 'java' && (ENV['OS'] || ENV['os']) =~ /windows/i) +end + +projects.each do |project| + log("treating project #{project.name}", :level => 1) + + if project.identifier.empty? + log("\tno identifier for project #{project.name}") + next + elsif not project.identifier.match(/^[a-z0-9\-]+$/) + log("\tinvalid identifier for project #{project.name} : #{project.identifier}"); + next; + end + + repos_path = File.join($repos_base, project.identifier).gsub(File::SEPARATOR, File::ALT_SEPARATOR || File::SEPARATOR) + + create_repos = false + + # Logic required for SoundSoftware.ac.uk repositories: + # + # * If the project has a repository path declared already, + # - if it's a local path, + # - if it does not exist + # - if it has the right root + # - create it + # - else + # - leave alone (remote repository) + # * else + # - create repository with same name as project + # - set to project + + if project.respond_to?(:repository) + + repos_url = project.repository.url; + log("\texisting url for project #{project.identifier} is #{repos_url}"); + + if repos_url.match(/^file:\//) || repos_url.match(/^\//) + + repos_url = repos_url.gsub(/^file:\/*/, "/"); + log("\tthis is a local file path, at #{repos_url}"); + + if repos_url.slice(0, $repos_base.length) != $repos_base + log("\tit is in the wrong place: replacing it"); + # leave repos_path set to our original suggestion + create_repos = true + else + if !File.directory?(repos_url) + log("\tit doesn't exist; we should create it"); + repos_path = repos_url + create_repos = true + else + log("\tit exists and is in the right place"); + end + end + else + log("\tthis is a remote path, leaving alone"); + end + else + log("\tproject #{project.identifier} has no repository registered") +# if File.directory?(repos_path) +# log("\trepository path #{repos_path} already exists, not creating") +# else + create_repos = true +# end + end + + if create_repos + + registration_url = repos_path + if $svn_url + registration_url = "#{$svn_url}#{project.identifier}" + end + + if $test + log("\tproposal: create repository #{repos_path}") + log("\tproposal: register repository #{repos_path} in Redmine with vendor #{$scm}, url #{registration_url}") + next + end + +# No -- we need "other" users to be able to read it. Access control +# is not handled through Unix user id anyway +# project.is_public ? File.umask(0002) : File.umask(0007) + File.umask(0002) + + log("\taction: create repository #{repos_path}") + + begin + if !File.directory?(repos_path) + set_owner_and_rights(project, repos_path) do + if scm_module.nil? + log("\trunning command: #{$command} #{repos_path}") + system_or_raise "#{$command} #{repos_path}" + else + scm_module.create(repos_path) + end + end + end + rescue => e + log("\tunable to create #{repos_path} : #{e}\n") + next + end + + begin + log("\taction: register repository #{repos_path} in Redmine with vendor #{$scm}, url #{registration_url}"); + project.post(:repository, :vendor => $scm, :repository => {:url => "#{registration_url}"}, :key => $api_key) + rescue => e + log("\trepository #{repos_path} not registered in Redmine: #{e.message}"); + end + + log("\trepository #{repos_path} created"); + end + +end +
--- a/extra/svn/reposman.rb Wed Jan 19 15:04:22 2011 +0000 +++ b/extra/svn/reposman.rb Wed Jan 19 15:15:02 2011 +0000 @@ -48,6 +48,8 @@ # kind. # This command override the default creation for git # and subversion. +# --http-user=USER User for HTTP Basic authentication with Redmine WS +# --http-pass=PASSWORD Password for Basic authentication with Redmine WS # -f, --force force repository creation even if the project # repository is already declared in Redmine # -t, --test only show what should be done @@ -78,6 +80,8 @@ ['--url', '-u', GetoptLong::REQUIRED_ARGUMENT], ['--command' , '-c', GetoptLong::REQUIRED_ARGUMENT], ['--scm', GetoptLong::REQUIRED_ARGUMENT], + ['--http-user', GetoptLong::REQUIRED_ARGUMENT], + ['--http-pass', GetoptLong::REQUIRED_ARGUMENT], ['--test', '-t', GetoptLong::NO_ARGUMENT], ['--force', '-f', GetoptLong::NO_ARGUMENT], ['--verbose', '-v', GetoptLong::NO_ARGUMENT], @@ -90,6 +94,8 @@ $quiet = false $redmine_host = '' $repos_base = '' +$http_user = '' +$http_pass = '' $svn_owner = 'root' $svn_group = 'root' $use_groupid = true @@ -138,6 +144,8 @@ when '--group'; $svn_group = arg.dup; $use_groupid = false; when '--url'; $svn_url = arg.dup when '--scm'; $scm = arg.dup.capitalize; log("Invalid SCM: #{$scm}", :exit => true) unless SUPPORTED_SCM.include?($scm) + when '--http-user'; $http_user = arg.dup + when '--http-pass'; $http_pass = arg.dup when '--command'; $command = arg.dup when '--verbose'; $verbose += 1 when '--test'; $test = true @@ -190,6 +198,8 @@ $redmine_host.gsub!(/\/$/, '') Project.site = "#{$redmine_host}/sys"; +Project.user = $http_user; +Project.password = $http_pass; begin # Get all active projects that have the Repository module enabled @@ -309,4 +319,4 @@ end end - \ No newline at end of file +
--- a/files/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 28 -/svn/!svn/ver/67/trunk/files -END -delete.me -K 25 -svn:wc:ra_dav:version-url -V 38 -/svn/!svn/ver/67/trunk/files/delete.me -END
--- a/files/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/files/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/files +http://redmine.rubyforge.org/svn/branches/1.1-stable/files http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.967747Z +2010-08-12T15:03:25.000000Z ae0415159f2c4dba3fc1a559d4c0f9f5 2006-06-28T18:11:03.549769Z 4
--- a/lib/SVG/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 32 -/svn/!svn/ver/3017/trunk/lib/SVG -END -GPL.txt -K 25 -svn:wc:ra_dav:version-url -V 39 -/svn/!svn/ver/380/trunk/lib/SVG/GPL.txt -END -LICENSE.txt -K 25 -svn:wc:ra_dav:version-url -V 43 -/svn/!svn/ver/380/trunk/lib/SVG/LICENSE.txt -END
--- a/lib/SVG/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/SVG/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/lib/SVG +http://redmine.rubyforge.org/svn/branches/1.1-stable/lib/SVG http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.975748Z +2010-08-12T15:03:25.000000Z 393a5ca445f6965873eca0259a17f833 2007-03-25T17:11:46.804742Z 380 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.979747Z +2010-08-12T15:03:25.000000Z 072cf60873854a186c6eba9b74dbe389 2007-03-25T17:11:46.804742Z 380
--- a/lib/SVG/Graph/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,59 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 38 -/svn/!svn/ver/3017/trunk/lib/SVG/Graph -END -Pie.rb -K 25 -svn:wc:ra_dav:version-url -V 45 -/svn/!svn/ver/2642/trunk/lib/SVG/Graph/Pie.rb -END -BarHorizontal.rb -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/2642/trunk/lib/SVG/Graph/BarHorizontal.rb -END -Plot.rb -K 25 -svn:wc:ra_dav:version-url -V 46 -/svn/!svn/ver/2642/trunk/lib/SVG/Graph/Plot.rb -END -BarBase.rb -K 25 -svn:wc:ra_dav:version-url -V 49 -/svn/!svn/ver/2642/trunk/lib/SVG/Graph/BarBase.rb -END -Graph.rb -K 25 -svn:wc:ra_dav:version-url -V 47 -/svn/!svn/ver/3017/trunk/lib/SVG/Graph/Graph.rb -END -Bar.rb -K 25 -svn:wc:ra_dav:version-url -V 45 -/svn/!svn/ver/2642/trunk/lib/SVG/Graph/Bar.rb -END -Line.rb -K 25 -svn:wc:ra_dav:version-url -V 45 -/svn/!svn/ver/380/trunk/lib/SVG/Graph/Line.rb -END -TimeSeries.rb -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/2642/trunk/lib/SVG/Graph/TimeSeries.rb -END -Schedule.rb -K 25 -svn:wc:ra_dav:version-url -V 49 -/svn/!svn/ver/380/trunk/lib/SVG/Graph/Schedule.rb -END
--- a/lib/SVG/Graph/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/SVG/Graph/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/lib/SVG/Graph +http://redmine.rubyforge.org/svn/branches/1.1-stable/lib/SVG/Graph http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.979747Z +2010-08-12T15:03:25.000000Z 0a49ed37717b08c6bccdc843a03a333d 2009-03-30T19:58:17.407192Z 2642 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.979747Z +2010-08-12T15:03:25.000000Z 55ff835de5a0fb0fd2d6a236b1c5c436 2009-03-30T19:58:17.407192Z 2642 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.979747Z +2010-08-12T15:03:25.000000Z a39e9963eaae7bb913b6d8d2dfe0506f 2009-03-30T19:58:17.407192Z 2642 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.979747Z +2010-08-12T15:03:25.000000Z 184772c0f1732eadf12b0e8bc9e172f7 2009-03-30T19:58:17.407192Z 2642 @@ -168,7 +168,7 @@ -2010-09-23T14:37:44.979747Z +2010-08-12T15:03:25.000000Z fad5865539cbd7ba3433fd6d47b9d3f2 2009-11-07T10:40:54.677820Z 3017 @@ -202,7 +202,7 @@ -2010-09-23T14:37:44.979747Z +2010-08-12T15:03:25.000000Z cc9051d7617dfe6dd6cc47fe83fd6ec4 2009-03-30T19:58:17.407192Z 2642 @@ -236,7 +236,7 @@ -2010-09-23T14:37:44.979747Z +2010-08-12T15:03:25.000000Z f092a4b0f16876381bc9283058eeb48c 2007-03-25T17:11:46.804742Z 380 @@ -270,7 +270,7 @@ -2010-09-23T14:37:44.979747Z +2010-08-12T15:03:25.000000Z 73dbcb4a1cba46b4e46a81881d24ff1a 2009-03-30T19:58:17.407192Z 2642 @@ -304,7 +304,7 @@ -2010-09-23T14:37:44.979747Z +2010-08-12T15:03:25.000000Z d8e95d0e507a02a74a5ac3435560d3bd 2007-03-25T17:11:46.804742Z 380
--- a/lib/generators/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 39 -/svn/!svn/ver/3771/trunk/lib/generators -END
--- a/lib/generators/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/generators/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/lib/generators +http://redmine.rubyforge.org/svn/branches/1.1-stable/lib/generators http://redmine.rubyforge.org/svn
--- a/lib/generators/redmine_plugin/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 54 -/svn/!svn/ver/3771/trunk/lib/generators/redmine_plugin -END -USAGE -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/2785/trunk/lib/generators/redmine_plugin/USAGE -END -redmine_plugin_generator.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/2785/trunk/lib/generators/redmine_plugin/redmine_plugin_generator.rb -END
--- a/lib/generators/redmine_plugin/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/generators/redmine_plugin/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/lib/generators/redmine_plugin +http://redmine.rubyforge.org/svn/branches/1.1-stable/lib/generators/redmine_plugin http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.987751Z +2010-08-12T15:03:25.000000Z 334056a407de9091bb8774ba986c53f9 2009-06-10T03:39:02.884087Z 2785 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.987751Z +2010-08-12T15:03:25.000000Z be5d60ef31ac822cd5650ab976dcc543 2009-06-10T03:39:02.884087Z 2785
--- a/lib/generators/redmine_plugin/templates/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/3771/trunk/lib/generators/redmine_plugin/templates -END -en.yml -K 25 -svn:wc:ra_dav:version-url -V 71 -/svn/!svn/ver/1786/trunk/lib/generators/redmine_plugin/templates/en.yml -END -README.rdoc -K 25 -svn:wc:ra_dav:version-url -V 76 -/svn/!svn/ver/1949/trunk/lib/generators/redmine_plugin/templates/README.rdoc -END -test_helper.rb.erb -K 25 -svn:wc:ra_dav:version-url -V 83 -/svn/!svn/ver/1949/trunk/lib/generators/redmine_plugin/templates/test_helper.rb.erb -END -en_rails_i18n.yml -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/2785/trunk/lib/generators/redmine_plugin/templates/en_rails_i18n.yml -END -init.rb.erb -K 25 -svn:wc:ra_dav:version-url -V 76 -/svn/!svn/ver/3771/trunk/lib/generators/redmine_plugin/templates/init.rb.erb -END
--- a/lib/generators/redmine_plugin/templates/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/generators/redmine_plugin/templates/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/lib/generators/redmine_plugin/templates +http://redmine.rubyforge.org/svn/branches/1.1-stable/lib/generators/redmine_plugin/templates http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.987751Z +2010-08-12T15:03:25.000000Z 2d39c559d341be440cb60911ef125dd9 2008-09-05T10:31:06.632668Z 1786 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.987751Z +2010-08-12T15:03:25.000000Z d97a21936cfb77543031f7d9a5d5131a 2008-10-25T04:37:31.779636Z 1949 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.991758Z +2010-08-12T15:03:25.000000Z d14592489e5b7d34b33d2487f4770b7d 2008-10-25T04:37:31.779636Z 1949 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.991758Z +2010-08-12T15:03:25.000000Z ab791ada26df5c9c1a13b771e988a36f 2009-06-10T03:39:02.884087Z 2785 @@ -168,7 +168,7 @@ -2010-09-23T14:37:44.991758Z +2010-08-12T15:03:25.000000Z 39cb16a49db6c72cdd7a63447d5b188f 2010-06-17T19:02:13.409991Z 3771
--- a/lib/generators/redmine_plugin_controller/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 65 -/svn/!svn/ver/3770/trunk/lib/generators/redmine_plugin_controller -END -USAGE -K 25 -svn:wc:ra_dav:version-url -V 71 -/svn/!svn/ver/1786/trunk/lib/generators/redmine_plugin_controller/USAGE -END -redmine_plugin_controller_generator.rb -K 25 -svn:wc:ra_dav:version-url -V 104 -/svn/!svn/ver/3514/trunk/lib/generators/redmine_plugin_controller/redmine_plugin_controller_generator.rb -END
--- a/lib/generators/redmine_plugin_controller/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/generators/redmine_plugin_controller/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/lib/generators/redmine_plugin_controller +http://redmine.rubyforge.org/svn/branches/1.1-stable/lib/generators/redmine_plugin_controller http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.991758Z +2010-08-12T15:03:25.000000Z 60c1792566a450d246dd66ff274ae06c 2008-09-05T10:31:06.632668Z 1786 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.991758Z +2010-08-12T15:03:25.000000Z 23b15404071adb39cb140a6113057f15 2010-02-28T12:15:47.320153Z 3514
--- a/lib/generators/redmine_plugin_controller/templates/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/3770/trunk/lib/generators/redmine_plugin_controller/templates -END -view.html.erb -K 25 -svn:wc:ra_dav:version-url -V 89 -/svn/!svn/ver/1786/trunk/lib/generators/redmine_plugin_controller/templates/view.html.erb -END -helper.rb.erb -K 25 -svn:wc:ra_dav:version-url -V 89 -/svn/!svn/ver/1951/trunk/lib/generators/redmine_plugin_controller/templates/helper.rb.erb -END -functional_test.rb.erb -K 25 -svn:wc:ra_dav:version-url -V 98 -/svn/!svn/ver/1951/trunk/lib/generators/redmine_plugin_controller/templates/functional_test.rb.erb -END -controller.rb.erb -K 25 -svn:wc:ra_dav:version-url -V 93 -/svn/!svn/ver/3770/trunk/lib/generators/redmine_plugin_controller/templates/controller.rb.erb -END
--- a/lib/generators/redmine_plugin_controller/templates/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/generators/redmine_plugin_controller/templates/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/lib/generators/redmine_plugin_controller/templates +http://redmine.rubyforge.org/svn/branches/1.1-stable/lib/generators/redmine_plugin_controller/templates http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.995797Z +2010-08-12T15:03:25.000000Z 0ae9d2e8e624fef815f60164d47b6464 2008-09-05T10:31:06.632668Z 1786 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.995797Z +2010-08-12T15:03:25.000000Z e8491aac2379dbba3d3ddadc30f6db07 2008-10-25T09:35:51.426668Z 1951 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.995797Z +2010-08-12T15:03:25.000000Z 2fdd792e6b6825b4f1802ba4767e0435 2008-10-25T09:35:51.426668Z 1951 @@ -134,7 +134,7 @@ -2010-09-23T14:37:44.995797Z +2010-08-12T15:03:25.000000Z 22e765f47aacc324789509219797d087 2010-06-17T19:02:07.893033Z 3770
--- a/lib/generators/redmine_plugin_model/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/3770/trunk/lib/generators/redmine_plugin_model -END -USAGE -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/1786/trunk/lib/generators/redmine_plugin_model/USAGE -END -redmine_plugin_model_generator.rb -K 25 -svn:wc:ra_dav:version-url -V 94 -/svn/!svn/ver/3514/trunk/lib/generators/redmine_plugin_model/redmine_plugin_model_generator.rb -END
--- a/lib/generators/redmine_plugin_model/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/generators/redmine_plugin_model/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/lib/generators/redmine_plugin_model +http://redmine.rubyforge.org/svn/branches/1.1-stable/lib/generators/redmine_plugin_model http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:44.999760Z +2010-08-12T15:03:25.000000Z ca5ffbd9dfb099b2f38ca21c030ffea0 2008-09-05T10:31:06.632668Z 1786 @@ -66,7 +66,7 @@ -2010-09-23T14:37:44.999760Z +2010-08-12T15:03:25.000000Z ba0c0092c69cca4c21b1b26027f7472b 2010-02-28T12:15:47.320153Z 3514
--- a/lib/generators/redmine_plugin_model/templates/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 70 -/svn/!svn/ver/3770/trunk/lib/generators/redmine_plugin_model/templates -END -migration.rb.erb -K 25 -svn:wc:ra_dav:version-url -V 87 -/svn/!svn/ver/1951/trunk/lib/generators/redmine_plugin_model/templates/migration.rb.erb -END -unit_test.rb.erb -K 25 -svn:wc:ra_dav:version-url -V 87 -/svn/!svn/ver/2926/trunk/lib/generators/redmine_plugin_model/templates/unit_test.rb.erb -END -fixtures.yml -K 25 -svn:wc:ra_dav:version-url -V 83 -/svn/!svn/ver/1786/trunk/lib/generators/redmine_plugin_model/templates/fixtures.yml -END -model.rb.erb -K 25 -svn:wc:ra_dav:version-url -V 83 -/svn/!svn/ver/3770/trunk/lib/generators/redmine_plugin_model/templates/model.rb.erb -END
--- a/lib/generators/redmine_plugin_model/templates/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/generators/redmine_plugin_model/templates/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/lib/generators/redmine_plugin_model/templates +http://redmine.rubyforge.org/svn/branches/1.1-stable/lib/generators/redmine_plugin_model/templates http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.003823Z +2010-08-12T15:03:25.000000Z ce0817700ec27f10f7d07f998bff6991 2008-10-25T09:35:51.426668Z 1951 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.003823Z +2010-08-12T15:03:25.000000Z a4081d31f6d22e7655b4f6e9fb894a03 2009-10-17T21:08:33.644420Z 2926 @@ -100,7 +100,7 @@ -2010-09-23T14:37:44.999760Z +2010-08-12T15:03:25.000000Z 115e77dae670747c95b5ff22c01d4174 2008-09-05T10:31:06.632668Z 1786 @@ -134,7 +134,7 @@ -2010-09-23T14:37:45.003823Z +2010-08-12T15:03:25.000000Z 3a783571ccc96a2f639329700dda677b 2010-06-17T19:02:07.893033Z 3770
--- a/lib/plugins/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 35 -/svn/!svn/ver/774/trunk/lib/plugins -END
--- a/lib/plugins/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/plugins/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/lib/plugins +http://redmine.rubyforge.org/svn/branches/1.1-stable/lib/plugins http://redmine.rubyforge.org/svn
--- a/lib/redmine/.svn/text-base/version.rb.svn-base Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/redmine/.svn/text-base/version.rb.svn-base Wed Jan 19 15:15:02 2011 +0000 @@ -10,7 +10,7 @@ # * official release: nil # * stable branch: stable # * trunk: devel - BRANCH = 'devel' + BRANCH = 'stable' def self.revision revision = nil
--- a/lib/redmine/activity/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 45 -/svn/!svn/ver/3829/trunk/lib/redmine/activity -END -fetcher.rb -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/3829/trunk/lib/redmine/activity/fetcher.rb -END
--- a/lib/redmine/activity/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/redmine/activity/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/lib/redmine/activity +http://redmine.rubyforge.org/svn/branches/1.1-stable/lib/redmine/activity http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.019747Z +2010-08-12T15:03:25.000000Z 20597949bb74e98a3ffc97bc8a3ead7d 2010-07-06T02:22:03.226147Z 3829
--- a/lib/redmine/core_ext/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 45 -/svn/!svn/ver/2912/trunk/lib/redmine/core_ext -END -string.rb -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/2844/trunk/lib/redmine/core_ext/string.rb -END
--- a/lib/redmine/core_ext/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/redmine/core_ext/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/lib/redmine/core_ext +http://redmine.rubyforge.org/svn/branches/1.1-stable/lib/redmine/core_ext http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.019747Z +2010-08-12T15:03:25.000000Z fcafa1cc4149d3a5de82816c61b7fa02 2009-08-17T16:32:24.020380Z 2844
--- a/lib/redmine/core_ext/string/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/2912/trunk/lib/redmine/core_ext/string -END -inflections.rb -K 25 -svn:wc:ra_dav:version-url -V 67 -/svn/!svn/ver/2844/trunk/lib/redmine/core_ext/string/inflections.rb -END -conversions.rb -K 25 -svn:wc:ra_dav:version-url -V 67 -/svn/!svn/ver/2912/trunk/lib/redmine/core_ext/string/conversions.rb -END
--- a/lib/redmine/core_ext/string/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/redmine/core_ext/string/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/lib/redmine/core_ext/string +http://redmine.rubyforge.org/svn/branches/1.1-stable/lib/redmine/core_ext/string http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.023772Z +2010-08-12T15:03:25.000000Z e614ecdb2fac85cd9f8808e7cff7f9de 2009-08-17T16:32:24.020380Z 2844 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.023772Z +2010-08-12T15:03:25.000000Z 1cc26c5de967944da3a6b07331512637 2009-10-10T15:09:19.510095Z 2912
--- a/lib/redmine/default_data/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 49 -/svn/!svn/ver/3820/trunk/lib/redmine/default_data -END -loader.rb -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/3820/trunk/lib/redmine/default_data/loader.rb -END
--- a/lib/redmine/default_data/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/redmine/default_data/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/lib/redmine/default_data +http://redmine.rubyforge.org/svn/branches/1.1-stable/lib/redmine/default_data http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.023772Z +2010-08-12T15:03:25.000000Z 41958e843a8ba03548eed089e8002549 2010-06-30T01:55:44.694582Z 3820
--- a/lib/redmine/export/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 43 -/svn/!svn/ver/4104/trunk/lib/redmine/export -END -pdf.rb -K 25 -svn:wc:ra_dav:version-url -V 50 -/svn/!svn/ver/4104/trunk/lib/redmine/export/pdf.rb -END
--- a/lib/redmine/export/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/redmine/export/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/lib/redmine/export +http://redmine.rubyforge.org/svn/branches/1.1-stable/lib/redmine/export http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-24T12:48:29.791863Z +2010-10-01T15:15:02.000000Z aa6093490555bdd119ba8f1d34cab080 2010-09-20T02:55:20.180218Z 4104
--- a/lib/redmine/info.rb Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/redmine/info.rb Wed Jan 19 15:15:02 2011 +0000 @@ -3,7 +3,7 @@ class << self def app_name; 'Redmine' end def url; 'http://www.redmine.org/' end - def help_url; 'http://www.redmine.org/guide' end + def help_url; '/projects/soundsoftware-site/wiki/Help' end def versioned_name; "#{app_name} #{Redmine::VERSION}" end # Creates the url string to a specific Redmine issue
--- a/lib/redmine/scm/adapters/mercurial/hg-template-0.9.5.tmpl Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/redmine/scm/adapters/mercurial/hg-template-0.9.5.tmpl Wed Jan 19 15:15:02 2011 +0000 @@ -9,4 +9,4 @@ file_copy = '<path-copied copyfrom-path="{source|urlescape}">{name|urlescape}</path-copied>\n' tag = '<tag>{tag|escape}</tag>\n' header='<?xml version="1.0" encoding="UTF-8" ?>\n<log>\n\n' -# footer="</log>" \ No newline at end of file +footer='</log>'
--- a/lib/redmine/scm/adapters/mercurial/hg-template-1.0.tmpl Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/redmine/scm/adapters/mercurial/hg-template-1.0.tmpl Wed Jan 19 15:15:02 2011 +0000 @@ -9,4 +9,4 @@ file_copy = '<path-copied copyfrom-path="{source|urlescape}">{name|urlescape}</path-copied>\n' tag = '<tag>{tag|escape}</tag>\n' header='<?xml version="1.0" encoding="UTF-8" ?>\n<log>\n\n' -# footer="</log>" +footer='</log>'
--- a/lib/redmine/version.rb Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/redmine/version.rb Wed Jan 19 15:15:02 2011 +0000 @@ -10,7 +10,7 @@ # * official release: nil # * stable branch: stable # * trunk: devel - BRANCH = 'devel' + BRANCH = 'stable' def self.revision revision = nil
--- a/lib/redmine/views/my_page/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 50 -/svn/!svn/ver/2659/trunk/lib/redmine/views/my_page -END -block.rb -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/2659/trunk/lib/redmine/views/my_page/block.rb -END
--- a/lib/redmine/views/my_page/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/redmine/views/my_page/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/lib/redmine/views/my_page +http://redmine.rubyforge.org/svn/branches/1.1-stable/lib/redmine/views/my_page http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.047759Z +2010-08-12T15:03:25.000000Z b06dfe20a85191516f81de5874f37ec6 2009-04-05T13:33:54.194067Z 2659
--- a/lib/redmine/wiki_formatting/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/4376/trunk/lib/redmine/wiki_formatting -END -macros.rb -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/4376/trunk/lib/redmine/wiki_formatting/macros.rb -END
--- a/lib/redmine/wiki_formatting/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/redmine/wiki_formatting/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/lib/redmine/wiki_formatting +http://redmine.rubyforge.org/svn/branches/1.1-stable/lib/redmine/wiki_formatting http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-11-19T13:04:51.401011Z +2010-11-30T13:11:53.000000Z 879f8ce24a6bb5e4f5ea3b6f798b7a63 2010-11-06T17:47:27.890964Z 4376
--- a/lib/redmine/wiki_formatting/textile/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/4376/trunk/lib/redmine/wiki_formatting/textile -END -helper.rb -K 25 -svn:wc:ra_dav:version-url -V 70 -/svn/!svn/ver/3025/trunk/lib/redmine/wiki_formatting/textile/helper.rb -END -formatter.rb -K 25 -svn:wc:ra_dav:version-url -V 73 -/svn/!svn/ver/4376/trunk/lib/redmine/wiki_formatting/textile/formatter.rb -END
--- a/lib/redmine/wiki_formatting/textile/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/lib/redmine/wiki_formatting/textile/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/lib/redmine/wiki_formatting/textile +http://redmine.rubyforge.org/svn/branches/1.1-stable/lib/redmine/wiki_formatting/textile http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.051779Z +2010-08-12T15:03:25.000000Z dec83b1d0d7f682d1ebf1f172fe3c90b 2009-11-11T10:55:19.574870Z 3025 @@ -66,7 +66,7 @@ -2010-11-19T13:04:51.401011Z +2010-11-30T13:11:53.000000Z b8052f700ecb0991fabdd3a5b684a412 2010-11-06T17:47:27.890964Z 4376
--- a/log/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 28 -/svn/!svn/ver/1283/trunk/log -END -delete.me -K 25 -svn:wc:ra_dav:version-url -V 36 -/svn/!svn/ver/67/trunk/log/delete.me -END
--- a/log/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/log/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/log +http://redmine.rubyforge.org/svn/branches/1.1-stable/log http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.067787Z +2010-08-12T15:03:25.000000Z ae0415159f2c4dba3fc1a559d4c0f9f5 2006-10-15T09:00:05.847811Z 31
--- a/public/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ b/public/.svn/all-wcprops Wed Jan 19 15:15:02 2011 +0000 @@ -1,47 +1,5 @@ K 25 svn:wc:ra_dav:version-url -V 31 +V 45 /svn/!svn/ver/4702/trunk/public END -dispatch.fcgi.example -K 25 -svn:wc:ra_dav:version-url -V 53 -/svn/!svn/ver/2017/trunk/public/dispatch.fcgi.example -END -500.html -K 25 -svn:wc:ra_dav:version-url -V 39 -/svn/!svn/ver/419/trunk/public/500.html -END -404.html -K 25 -svn:wc:ra_dav:version-url -V 39 -/svn/!svn/ver/419/trunk/public/404.html -END -dispatch.cgi.example -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/2017/trunk/public/dispatch.cgi.example -END -.htaccess -K 25 -svn:wc:ra_dav:version-url -V 40 -/svn/!svn/ver/934/trunk/public/.htaccess -END -dispatch.rb.example -K 25 -svn:wc:ra_dav:version-url -V 51 -/svn/!svn/ver/2017/trunk/public/dispatch.rb.example -END -favicon.ico -K 25 -svn:wc:ra_dav:version-url -V 43 -/svn/!svn/ver/3845/trunk/public/favicon.ico -END
--- a/public/help/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 36 -/svn/!svn/ver/4308/trunk/public/help -END -wiki_syntax_detailed.html -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/4308/trunk/public/help/wiki_syntax_detailed.html -END -wiki_syntax.html -K 25 -svn:wc:ra_dav:version-url -V 53 -/svn/!svn/ver/1803/trunk/public/help/wiki_syntax.html -END
--- a/public/help/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/public/help/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/public/help +http://redmine.rubyforge.org/svn/branches/1.1-stable/public/help http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-11-19T13:04:51.444942Z +2010-11-30T13:11:53.000000Z 380699b753ffb01cba5c9504216ff64b 2010-10-29T22:48:59.506153Z 4308 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.075747Z +2010-08-12T15:03:25.000000Z f3c9e77ebd5a0c8e580df191a00bc01c 2008-09-13T09:45:07.868598Z 1803
--- a/public/images/files/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,65 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 44 -/svn/!svn/ver/3419/trunk/public/images/files -END -csharp.png -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/3419/trunk/public/images/files/csharp.png -END -xml.png -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/3419/trunk/public/images/files/xml.png -END -ruby.png -K 25 -svn:wc:ra_dav:version-url -V 53 -/svn/!svn/ver/3419/trunk/public/images/files/ruby.png -END -c.png -K 25 -svn:wc:ra_dav:version-url -V 50 -/svn/!svn/ver/3419/trunk/public/images/files/c.png -END -image.png -K 25 -svn:wc:ra_dav:version-url -V 54 -/svn/!svn/ver/3419/trunk/public/images/files/image.png -END -zip.png -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/3419/trunk/public/images/files/zip.png -END -default.png -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/3419/trunk/public/images/files/default.png -END -text.png -K 25 -svn:wc:ra_dav:version-url -V 53 -/svn/!svn/ver/3419/trunk/public/images/files/text.png -END -php.png -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/3419/trunk/public/images/files/php.png -END -pdf.png -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/3419/trunk/public/images/files/pdf.png -END
--- a/public/images/files/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/public/images/files/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/public/images/files +http://redmine.rubyforge.org/svn/branches/1.1-stable/public/images/files http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.135758Z +2010-08-12T15:03:25.000000Z 136af9d95025ca62a3091a261266e13f 2010-02-13T09:08:12.698526Z 3419 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.139758Z +2010-08-12T15:03:25.000000Z c801cf9aa0103de823e53e83459a1ff9 2010-02-13T09:08:12.698526Z 3419 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.139758Z +2010-08-12T15:03:25.000000Z 1e51c81cb33d3d6746d440c1babfe0f5 2010-02-13T09:08:12.698526Z 3419 @@ -134,7 +134,7 @@ -2010-09-23T14:37:45.135758Z +2010-08-12T15:03:25.000000Z db0495227202385c9fce1b73f2d58ff0 2010-02-13T09:08:12.698526Z 3419 @@ -168,7 +168,7 @@ -2010-09-23T14:37:45.139758Z +2010-08-12T15:03:25.000000Z 94db8424e52f54d7372a976574c4598e 2010-02-13T09:08:12.698526Z 3419 @@ -202,7 +202,7 @@ -2010-09-23T14:37:45.139758Z +2010-08-12T15:03:25.000000Z ad3ed8ec19bb2a3cca8c03e0ea1aa846 2010-02-13T09:08:12.698526Z 3419 @@ -236,7 +236,7 @@ -2010-09-23T14:37:45.139758Z +2010-08-12T15:03:25.000000Z 8e05d64f0b9f45f076b41521a8d6a8d1 2010-02-13T09:08:12.698526Z 3419 @@ -270,7 +270,7 @@ -2010-09-23T14:37:45.139758Z +2010-08-12T15:03:25.000000Z ea9b5de5353e1cac630021dfed30dba4 2010-02-13T09:08:12.698526Z 3419 @@ -304,7 +304,7 @@ -2010-09-23T14:37:45.139758Z +2010-08-12T15:03:25.000000Z 0790c67308754572014015fa90eef406 2010-02-13T09:08:12.698526Z 3419 @@ -338,7 +338,7 @@ -2010-09-23T14:37:45.139758Z +2010-08-12T15:03:25.000000Z e11f9ebff53e8088dce2a0028f0d5190 2010-02-13T09:08:12.698526Z 3419
--- a/public/images/jstoolbar/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,95 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 48 -/svn/!svn/ver/3419/trunk/public/images/jstoolbar -END -bt_h1.png -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3419/trunk/public/images/jstoolbar/bt_h1.png -END -bt_h2.png -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3419/trunk/public/images/jstoolbar/bt_h2.png -END -bt_ol.png -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3419/trunk/public/images/jstoolbar/bt_ol.png -END -bt_h3.png -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3419/trunk/public/images/jstoolbar/bt_h3.png -END -bt_code.png -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/3419/trunk/public/images/jstoolbar/bt_code.png -END -bt_strong.png -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/3419/trunk/public/images/jstoolbar/bt_strong.png -END -bt_img.png -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/3419/trunk/public/images/jstoolbar/bt_img.png -END -bt_bq_remove.png -K 25 -svn:wc:ra_dav:version-url -V 65 -/svn/!svn/ver/3419/trunk/public/images/jstoolbar/bt_bq_remove.png -END -bt_ul.png -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3419/trunk/public/images/jstoolbar/bt_ul.png -END -bt_pre.png -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/3419/trunk/public/images/jstoolbar/bt_pre.png -END -bt_ins.png -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/3419/trunk/public/images/jstoolbar/bt_ins.png -END -bt_link.png -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/3419/trunk/public/images/jstoolbar/bt_link.png -END -bt_em.png -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3419/trunk/public/images/jstoolbar/bt_em.png -END -bt_bq.png -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3419/trunk/public/images/jstoolbar/bt_bq.png -END -bt_del.png -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/3419/trunk/public/images/jstoolbar/bt_del.png -END
--- a/public/images/jstoolbar/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/public/images/jstoolbar/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/public/images/jstoolbar +http://redmine.rubyforge.org/svn/branches/1.1-stable/public/images/jstoolbar http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.151760Z +2010-08-12T15:03:25.000000Z c77264aa6d145362b791c99d18f53ace 2010-02-13T09:08:12.698526Z 3419 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.151760Z +2010-08-12T15:03:25.000000Z c19bfc8d9620c00cdd8ae322426bc07e 2010-02-13T09:08:12.698526Z 3419 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.151760Z +2010-08-12T15:03:25.000000Z ef6624df45946b54e3b23db2a0c6b77b 2010-02-13T09:08:12.698526Z 3419 @@ -134,7 +134,7 @@ -2010-09-23T14:37:45.151760Z +2010-08-12T15:03:25.000000Z cb940b592da5ed0367305cb0514d5684 2010-02-13T09:08:12.698526Z 3419 @@ -168,7 +168,7 @@ -2010-09-23T14:37:45.151760Z +2010-08-12T15:03:25.000000Z 5477ff20be77ab65aa6b75f47778234e 2010-02-13T09:08:12.698526Z 3419 @@ -202,7 +202,7 @@ -2010-09-23T14:37:45.151760Z +2010-08-12T15:03:25.000000Z 04a0e86c9eec7d85d445e7627b5fc8ea 2010-02-13T09:08:12.698526Z 3419 @@ -236,7 +236,7 @@ -2010-09-23T14:37:45.151760Z +2010-08-12T15:03:25.000000Z f9d7446ceaa5142a5030e9430b3a2bb4 2010-02-13T09:08:12.698526Z 3419 @@ -270,7 +270,7 @@ -2010-09-23T14:37:45.147772Z +2010-08-12T15:03:25.000000Z 123b8289e1bd69a5944cf727a5e39bc9 2010-02-13T09:08:12.698526Z 3419 @@ -304,7 +304,7 @@ -2010-09-23T14:37:45.151760Z +2010-08-12T15:03:25.000000Z 15d8f6c0fbf85718123fb7c7da782713 2010-02-13T09:08:12.698526Z 3419 @@ -338,7 +338,7 @@ -2010-09-23T14:37:45.151760Z +2010-08-12T15:03:25.000000Z 5a29cb56451be0fd714b99d2b2649bf0 2010-02-13T09:08:12.698526Z 3419 @@ -372,7 +372,7 @@ -2010-09-23T14:37:45.151760Z +2010-08-12T15:03:25.000000Z 07234419aecb827f11eef1ebd9b42482 2010-02-13T09:08:12.698526Z 3419 @@ -406,7 +406,7 @@ -2010-09-23T14:37:45.151760Z +2010-08-12T15:03:25.000000Z 5042501ddf948fe938ded69a40ef1024 2010-02-13T09:08:12.698526Z 3419 @@ -440,7 +440,7 @@ -2010-09-23T14:37:45.151760Z +2010-08-12T15:03:25.000000Z 584fb45fd15d894adc19ff3cf626fae9 2010-02-13T09:08:12.698526Z 3419 @@ -474,7 +474,7 @@ -2010-09-23T14:37:45.147772Z +2010-08-12T15:03:25.000000Z 8448f92476ae933bacef7bc30ffd18fd 2010-02-13T09:08:12.698526Z 3419 @@ -508,7 +508,7 @@ -2010-09-23T14:37:45.151760Z +2010-08-12T15:03:25.000000Z 38ee94bc0a44b9420854aceeccd2dd59 2010-02-13T09:08:12.698526Z 3419
--- a/public/javascripts/calendar/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/4060/trunk/public/javascripts/calendar -END -calendar-setup.js -K 25 -svn:wc:ra_dav:version-url -V 70 -/svn/!svn/ver/3252/trunk/public/javascripts/calendar/calendar-setup.js -END -calendar.js -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/3822/trunk/public/javascripts/calendar/calendar.js -END
--- a/public/javascripts/calendar/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/public/javascripts/calendar/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/public/javascripts/calendar +http://redmine.rubyforge.org/svn/branches/1.1-stable/public/javascripts/calendar http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.171796Z +2010-08-12T15:03:25.000000Z e9be087e31b69f1e6a29ebd09b878486 2009-12-26T17:17:16.012737Z 3252 @@ -69,7 +69,7 @@ -2010-09-23T14:37:45.171796Z +2010-08-12T15:03:25.000000Z a2dccec0bd70984b17a54239caf0d5e0 2010-06-30T02:54:15.730933Z 3822
--- a/public/javascripts/calendar/lang/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,257 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/4060/trunk/public/javascripts/calendar/lang -END -calendar-fi.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/1186/trunk/public/javascripts/calendar/lang/calendar-fi.js -END -calendar-bs.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/2629/trunk/public/javascripts/calendar/lang/calendar-bs.js -END -calendar-cs.js -K 25 -svn:wc:ra_dav:version-url -V 71 -/svn/!svn/ver/764/trunk/public/javascripts/calendar/lang/calendar-cs.js -END -calendar-mk.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/4049/trunk/public/javascripts/calendar/lang/calendar-mk.js -END -calendar-es.js -K 25 -svn:wc:ra_dav:version-url -V 71 -/svn/!svn/ver/419/trunk/public/javascripts/calendar/lang/calendar-es.js -END -calendar-ko.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/2182/trunk/public/javascripts/calendar/lang/calendar-ko.js -END -calendar-eu.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/3338/trunk/public/javascripts/calendar/lang/calendar-eu.js -END -calendar-no.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/1300/trunk/public/javascripts/calendar/lang/calendar-no.js -END -calendar-hu.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/1452/trunk/public/javascripts/calendar/lang/calendar-hu.js -END -calendar-sk.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/1998/trunk/public/javascripts/calendar/lang/calendar-sk.js -END -calendar-vi.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/2493/trunk/public/javascripts/calendar/lang/calendar-vi.js -END -calendar-uk.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/1149/trunk/public/javascripts/calendar/lang/calendar-uk.js -END -calendar-sr-yu.js -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/4003/trunk/public/javascripts/calendar/lang/calendar-sr-yu.js -END -calendar-ro.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/2630/trunk/public/javascripts/calendar/lang/calendar-ro.js -END -calendar-ru.js -K 25 -svn:wc:ra_dav:version-url -V 71 -/svn/!svn/ver/907/trunk/public/javascripts/calendar/lang/calendar-ru.js -END -calendar-id.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/3227/trunk/public/javascripts/calendar/lang/calendar-id.js -END -calendar-en.js -K 25 -svn:wc:ra_dav:version-url -V 71 -/svn/!svn/ver/419/trunk/public/javascripts/calendar/lang/calendar-en.js -END -calendar-gl.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/2296/trunk/public/javascripts/calendar/lang/calendar-gl.js -END -calendar-fr.js -K 25 -svn:wc:ra_dav:version-url -V 71 -/svn/!svn/ver/748/trunk/public/javascripts/calendar/lang/calendar-fr.js -END -calendar-nl.js -K 25 -svn:wc:ra_dav:version-url -V 71 -/svn/!svn/ver/539/trunk/public/javascripts/calendar/lang/calendar-nl.js -END -calendar-hr.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/3320/trunk/public/javascripts/calendar/lang/calendar-hr.js -END -calendar-zh-tw.js -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/1498/trunk/public/javascripts/calendar/lang/calendar-zh-tw.js -END -calendar-mn.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/3626/trunk/public/javascripts/calendar/lang/calendar-mn.js -END -calendar-pl.js -K 25 -svn:wc:ra_dav:version-url -V 71 -/svn/!svn/ver/749/trunk/public/javascripts/calendar/lang/calendar-pl.js -END -calendar-th.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/1383/trunk/public/javascripts/calendar/lang/calendar-th.js -END -calendar-it.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/4003/trunk/public/javascripts/calendar/lang/calendar-it.js -END -calendar-sl.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/2340/trunk/public/javascripts/calendar/lang/calendar-sl.js -END -calendar-lt.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/1149/trunk/public/javascripts/calendar/lang/calendar-lt.js -END -calendar-lv.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/3737/trunk/public/javascripts/calendar/lang/calendar-lv.js -END -calendar-zh.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/1498/trunk/public/javascripts/calendar/lang/calendar-zh.js -END -calendar-pt.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/1927/trunk/public/javascripts/calendar/lang/calendar-pt.js -END -calendar-ca.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/4060/trunk/public/javascripts/calendar/lang/calendar-ca.js -END -calendar-pt-br.js -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/1453/trunk/public/javascripts/calendar/lang/calendar-pt-br.js -END -calendar-da.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/2292/trunk/public/javascripts/calendar/lang/calendar-da.js -END -calendar-sr.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/4003/trunk/public/javascripts/calendar/lang/calendar-sr.js -END -calendar-tr.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/1817/trunk/public/javascripts/calendar/lang/calendar-tr.js -END -calendar-bg.js -K 25 -svn:wc:ra_dav:version-url -V 71 -/svn/!svn/ver/502/trunk/public/javascripts/calendar/lang/calendar-bg.js -END -calendar-de.js -K 25 -svn:wc:ra_dav:version-url -V 71 -/svn/!svn/ver/419/trunk/public/javascripts/calendar/lang/calendar-de.js -END -calendar-en-gb.js -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/3809/trunk/public/javascripts/calendar/lang/calendar-en-gb.js -END -calendar-sv.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/2290/trunk/public/javascripts/calendar/lang/calendar-sv.js -END -calendar-ja.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/1051/trunk/public/javascripts/calendar/lang/calendar-ja.js -END -calendar-he.js -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/1478/trunk/public/javascripts/calendar/lang/calendar-he.js -END
--- a/public/javascripts/jstoolbar/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 53 -/svn/!svn/ver/4049/trunk/public/javascripts/jstoolbar -END -textile.js -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/1955/trunk/public/javascripts/jstoolbar/textile.js -END -jstoolbar.js -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/1955/trunk/public/javascripts/jstoolbar/jstoolbar.js -END
--- a/public/javascripts/jstoolbar/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/public/javascripts/jstoolbar/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/public/javascripts/jstoolbar +http://redmine.rubyforge.org/svn/branches/1.1-stable/public/javascripts/jstoolbar http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.239756Z +2010-08-12T15:03:25.000000Z 277ebc7c66d8c8280bbe729e6cb11529 2008-10-27T11:08:29.901011Z 1955 @@ -69,7 +69,7 @@ -2010-09-23T14:37:45.211758Z +2010-08-12T15:03:25.000000Z 2b77f98553b6d5e0d4c405195eebe664 2008-10-27T11:08:29.901011Z 1955
--- a/public/javascripts/jstoolbar/lang/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,257 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/4049/trunk/public/javascripts/jstoolbar/lang -END -jstoolbar-mk.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/4049/trunk/public/javascripts/jstoolbar/lang/jstoolbar-mk.js -END -jstoolbar-es.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/2033/trunk/public/javascripts/jstoolbar/lang/jstoolbar-es.js -END -jstoolbar-ko.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/2202/trunk/public/javascripts/jstoolbar/lang/jstoolbar-ko.js -END -jstoolbar-eu.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/3338/trunk/public/javascripts/jstoolbar/lang/jstoolbar-eu.js -END -jstoolbar-no.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1540/trunk/public/javascripts/jstoolbar/lang/jstoolbar-no.js -END -jstoolbar-hu.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1479/trunk/public/javascripts/jstoolbar/lang/jstoolbar-hu.js -END -jstoolbar-sk.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1997/trunk/public/javascripts/jstoolbar/lang/jstoolbar-sk.js -END -jstoolbar-vi.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/2493/trunk/public/javascripts/jstoolbar/lang/jstoolbar-vi.js -END -jstoolbar-uk.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1479/trunk/public/javascripts/jstoolbar/lang/jstoolbar-uk.js -END -jstoolbar-sr-yu.js -K 25 -svn:wc:ra_dav:version-url -V 77 -/svn/!svn/ver/4003/trunk/public/javascripts/jstoolbar/lang/jstoolbar-sr-yu.js -END -jstoolbar-ro.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/2630/trunk/public/javascripts/jstoolbar/lang/jstoolbar-ro.js -END -jstoolbar-ru.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/2901/trunk/public/javascripts/jstoolbar/lang/jstoolbar-ru.js -END -jstoolbar-id.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/3227/trunk/public/javascripts/jstoolbar/lang/jstoolbar-id.js -END -jstoolbar-en.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1479/trunk/public/javascripts/jstoolbar/lang/jstoolbar-en.js -END -jstoolbar-gl.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/2296/trunk/public/javascripts/jstoolbar/lang/jstoolbar-gl.js -END -jstoolbar-fr.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1479/trunk/public/javascripts/jstoolbar/lang/jstoolbar-fr.js -END -jstoolbar-nl.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/2291/trunk/public/javascripts/jstoolbar/lang/jstoolbar-nl.js -END -jstoolbar-hr.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/3320/trunk/public/javascripts/jstoolbar/lang/jstoolbar-hr.js -END -jstoolbar-zh-tw.js -K 25 -svn:wc:ra_dav:version-url -V 77 -/svn/!svn/ver/1498/trunk/public/javascripts/jstoolbar/lang/jstoolbar-zh-tw.js -END -jstoolbar-mn.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/3626/trunk/public/javascripts/jstoolbar/lang/jstoolbar-mn.js -END -jstoolbar-pl.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1928/trunk/public/javascripts/jstoolbar/lang/jstoolbar-pl.js -END -jstoolbar-th.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1479/trunk/public/javascripts/jstoolbar/lang/jstoolbar-th.js -END -jstoolbar-it.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/4003/trunk/public/javascripts/jstoolbar/lang/jstoolbar-it.js -END -jstoolbar-sl.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/2340/trunk/public/javascripts/jstoolbar/lang/jstoolbar-sl.js -END -jstoolbar-lt.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1479/trunk/public/javascripts/jstoolbar/lang/jstoolbar-lt.js -END -jstoolbar-lv.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/3737/trunk/public/javascripts/jstoolbar/lang/jstoolbar-lv.js -END -jstoolbar-zh.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1498/trunk/public/javascripts/jstoolbar/lang/jstoolbar-zh.js -END -jstoolbar-pt.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1927/trunk/public/javascripts/jstoolbar/lang/jstoolbar-pt.js -END -jstoolbar-ca.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1865/trunk/public/javascripts/jstoolbar/lang/jstoolbar-ca.js -END -jstoolbar-da.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/2921/trunk/public/javascripts/jstoolbar/lang/jstoolbar-da.js -END -jstoolbar-sr.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/4003/trunk/public/javascripts/jstoolbar/lang/jstoolbar-sr.js -END -jstoolbar-pt-br.js -K 25 -svn:wc:ra_dav:version-url -V 77 -/svn/!svn/ver/1479/trunk/public/javascripts/jstoolbar/lang/jstoolbar-pt-br.js -END -jstoolbar-tr.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1817/trunk/public/javascripts/jstoolbar/lang/jstoolbar-tr.js -END -jstoolbar-bg.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1479/trunk/public/javascripts/jstoolbar/lang/jstoolbar-bg.js -END -jstoolbar-de.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1479/trunk/public/javascripts/jstoolbar/lang/jstoolbar-de.js -END -jstoolbar-en-gb.js -K 25 -svn:wc:ra_dav:version-url -V 77 -/svn/!svn/ver/3809/trunk/public/javascripts/jstoolbar/lang/jstoolbar-en-gb.js -END -jstoolbar-sv.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/2298/trunk/public/javascripts/jstoolbar/lang/jstoolbar-sv.js -END -jstoolbar-ja.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/2901/trunk/public/javascripts/jstoolbar/lang/jstoolbar-ja.js -END -jstoolbar-he.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1479/trunk/public/javascripts/jstoolbar/lang/jstoolbar-he.js -END -jstoolbar-fi.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1479/trunk/public/javascripts/jstoolbar/lang/jstoolbar-fi.js -END -jstoolbar-bs.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/2629/trunk/public/javascripts/jstoolbar/lang/jstoolbar-bs.js -END -jstoolbar-cs.js -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1479/trunk/public/javascripts/jstoolbar/lang/jstoolbar-cs.js -END
--- a/public/stylesheets/.svn/tmp/application.css.tmp Wed Jan 19 15:04:22 2011 +0000 +++ b/public/stylesheets/.svn/tmp/application.css.tmp Wed Jan 19 15:15:02 2011 +0000 @@ -1,3 +1,4 @@ +html {overflow-y:scroll;} body { font-family: Verdana, sans-serif; font-size: 12px; color:#484848; margin: 0; padding: 0; min-width: 900px; } h1, h2, h3, h4 { font-family: "Trebuchet MS", Verdana, sans-serif;} @@ -113,7 +114,7 @@ tr.project td.name a { white-space:nowrap; } -tr.project.idnt td.name a {background: url(../images/bullet_arrow_right.png) no-repeat 0 50%; padding-left: 16px;} +tr.project.idnt td.name span {background: url(../images/bullet_arrow_right.png) no-repeat 0 50%; padding-left: 16px;} tr.project.idnt-1 td.name {padding-left: 0.5em;} tr.project.idnt-2 td.name {padding-left: 2em;} tr.project.idnt-3 td.name {padding-left: 3.5em;} @@ -178,6 +179,8 @@ tr.user.locked, tr.user.registered { color: #aaa; } tr.user.locked a, tr.user.registered a { color: #aaa; } +tr.wiki-page-version td.updated_on, tr.wiki-page-version td.author {text-align:center;} + tr.time-entry { text-align: center; white-space: nowrap; } tr.time-entry td.subject, tr.time-entry td.comments { text-align: left; white-space: normal; } td.hours { text-align: right; font-weight: bold; padding-right: 0.5em; } @@ -419,6 +422,7 @@ .tabular.settings textarea { width: 99%; } fieldset.settings label { display: block; } +.parent { padding-left: 20px; } .required {color: #bb0000;} .summary {font-style: italic;} @@ -662,6 +666,7 @@ } #parent_issue_candidates ul li {width: 500px;} +#related_issue_candidates ul li {width: 500px;} /***** Diff *****/ .diff_out { background: #fcc; } @@ -714,9 +719,10 @@ div.wiki ul.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; } div.wiki ul.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; } -div.wiki ul.toc li { list-style-type:none;} -div.wiki ul.toc li.heading2 { margin-left: 6px; } -div.wiki ul.toc li.heading3 { margin-left: 12px; font-size: 0.8em; } +div.wiki ul.toc ul { margin: 0; padding: 0; } +div.wiki ul.toc li { list-style-type:none; margin: 0;} +div.wiki ul.toc li li { margin-left: 1.5em; } +div.wiki ul.toc li li li { font-size: 0.8em; } div.wiki ul.toc a { font-size: 0.9em; @@ -776,6 +782,8 @@ overflow: hidden; } +.gantt_subjects { font-size: 0.8em; } + .task { position: absolute; height:8px; @@ -788,24 +796,26 @@ } .task.label {width:100%;} +.task.label.project, .task.label.version { font-weight: bold; } .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; } .task_done { background:#00c600 url(../images/task_done.png); border: 1px solid #00c600; } .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; } -.task_todo.parent { background: #888; border: 1px solid #888; height: 6px;} +.task_todo.parent { background: #888; border: 1px solid #888; height: 3px;} .task_late.parent, .task_done.parent { height: 3px;} -.task_todo.parent .left { position: absolute; background: url(../images/task_parent_end.png) no-repeat 0 0; width: 8px; height: 16px; margin-left: -5px; left: 0px; top: -1px;} -.task_todo.parent .right { position: absolute; background: url(../images/task_parent_end.png) no-repeat 0 0; width: 8px; height: 16px; margin-right: -5px; right: 0px; top: -1px;} +.task.parent.marker.starting { position: absolute; background: url(../images/task_parent_end.png) no-repeat 0 0; width: 8px; height: 16px; margin-left: -4px; left: 0px; top: -1px;} +.task.parent.marker.ending { position: absolute; background: url(../images/task_parent_end.png) no-repeat 0 0; width: 8px; height: 16px; margin-left: -4px; right: 0px; top: -1px;} -.milestone { background-image:url(../images/version_marker.png); background-repeat: no-repeat; border: 0; } -.milestone_late { background:#f66 url(../images/milestone_late.png); border: 1px solid #f66; height: 2px; margin-top: 3px;} -.milestone_done { background:#00c600 url(../images/milestone_done.png); border: 1px solid #00c600; height: 2px; margin-top: 3px;} -.milestone_todo { background:#fff url(../images/milestone_todo.png); border: 1px solid #fff; height: 2px; margin-top: 3px;} -.project-line { background-image:url(../images/project_marker.png); background-repeat: no-repeat; border: 0; } -.project_late { background:#f66 url(../images/milestone_late.png); border: 1px solid #f66; height: 2px; margin-top: 3px;} -.project_done { background:#00c600 url(../images/milestone_done.png); border: 1px solid #00c600; height: 2px; margin-top: 3px;} -.project_todo { background:#fff url(../images/milestone_todo.png); border: 1px solid #fff; height: 2px; margin-top: 3px;} +.version.task_late { background:#f66 url(../images/milestone_late.png); border: 1px solid #f66; height: 2px; margin-top: 3px;} +.version.task_done { background:#00c600 url(../images/milestone_done.png); border: 1px solid #00c600; height: 2px; margin-top: 3px;} +.version.task_todo { background:#fff url(../images/milestone_todo.png); border: 1px solid #fff; height: 2px; margin-top: 3px;} +.version.marker { background-image:url(../images/version_marker.png); background-repeat: no-repeat; border: 0; margin-left: -4px; margin-top: 1px; } + +.project.task_late { background:#f66 url(../images/milestone_late.png); border: 1px solid #f66; height: 2px; margin-top: 3px;} +.project.task_done { background:#00c600 url(../images/milestone_done.png); border: 1px solid #00c600; height: 2px; margin-top: 3px;} +.project.task_todo { background:#fff url(../images/milestone_todo.png); border: 1px solid #fff; height: 2px; margin-top: 3px;} +.project.marker { background-image:url(../images/project_marker.png); background-repeat: no-repeat; border: 0; margin-left: -4px; margin-top: 1px; } .version-behind-schedule a, .issue-behind-schedule a {color: #f66914;} .version-overdue a, .issue-overdue a, .project-overdue a {color: #f00;} @@ -853,6 +863,8 @@ .icon-summary { background-image: url(../images/lightning.png); } .icon-server-authentication { background-image: url(../images/server_key.png); } .icon-issue { background-image: url(../images/ticket.png); } +.icon-zoom-in { background-image: url(../images/zoom_in.png); } +.icon-zoom-out { background-image: url(../images/zoom_out.png); } .icon-file { background-image: url(../images/files/default.png); } .icon-file.text-plain { background-image: url(../images/files/text.png); }
--- a/public/stylesheets/.svn/tmp/tempfile.tmp Wed Jan 19 15:04:22 2011 +0000 +++ b/public/stylesheets/.svn/tmp/tempfile.tmp Wed Jan 19 15:15:02 2011 +0000 @@ -113,7 +113,7 @@ tr.project td.name a { white-space:nowrap; } -tr.project.idnt td.name a {background: url(../images/bullet_arrow_right.png) no-repeat 0 50%; padding-left: 16px;} +tr.project.idnt td.name span {background: url(../images/bullet_arrow_right.png) no-repeat 0 50%; padding-left: 16px;} tr.project.idnt-1 td.name {padding-left: 0.5em;} tr.project.idnt-2 td.name {padding-left: 2em;} tr.project.idnt-3 td.name {padding-left: 3.5em;} @@ -419,6 +419,7 @@ .tabular.settings textarea { width: 99%; } fieldset.settings label { display: block; } +.parent { padding-left: 20px; } .required {color: #bb0000;} .summary {font-style: italic;} @@ -714,9 +715,10 @@ div.wiki ul.toc.right { float: right; margin-left: 12px; margin-right: 0; width: auto; } div.wiki ul.toc.left { float: left; margin-right: 12px; margin-left: 0; width: auto; } -div.wiki ul.toc li { list-style-type:none;} -div.wiki ul.toc li.heading2 { margin-left: 6px; } -div.wiki ul.toc li.heading3 { margin-left: 12px; font-size: 0.8em; } +div.wiki ul.toc ul { margin: 0; padding: 0; } +div.wiki ul.toc li { list-style-type:none; margin: 0;} +div.wiki ul.toc li li { margin-left: 1.5em; } +div.wiki ul.toc li li li { font-size: 0.8em; } div.wiki ul.toc a { font-size: 0.9em; @@ -787,8 +789,10 @@ white-space:nowrap; } +.task.label {width:100%;} + .task_late { background:#f66 url(../images/task_late.png); border: 1px solid #f66; } -.task_done { background:#66f url(../images/task_done.png); border: 1px solid #66f; } +.task_done { background:#00c600 url(../images/task_done.png); border: 1px solid #00c600; } .task_todo { background:#aaa url(../images/task_todo.png); border: 1px solid #aaa; } .task_todo.parent { background: #888; border: 1px solid #888; height: 6px;} @@ -796,7 +800,17 @@ .task_todo.parent .left { position: absolute; background: url(../images/task_parent_end.png) no-repeat 0 0; width: 8px; height: 16px; margin-left: -5px; left: 0px; top: -1px;} .task_todo.parent .right { position: absolute; background: url(../images/task_parent_end.png) no-repeat 0 0; width: 8px; height: 16px; margin-right: -5px; right: 0px; top: -1px;} -.milestone { background-image:url(../images/milestone.png); background-repeat: no-repeat; border: 0; } +.milestone { background-image:url(../images/version_marker.png); background-repeat: no-repeat; border: 0; } +.milestone_late { background:#f66 url(../images/milestone_late.png); border: 1px solid #f66; height: 2px; margin-top: 3px;} +.milestone_done { background:#00c600 url(../images/milestone_done.png); border: 1px solid #00c600; height: 2px; margin-top: 3px;} +.milestone_todo { background:#fff url(../images/milestone_todo.png); border: 1px solid #fff; height: 2px; margin-top: 3px;} +.project-line { background-image:url(../images/project_marker.png); background-repeat: no-repeat; border: 0; } +.project_late { background:#f66 url(../images/milestone_late.png); border: 1px solid #f66; height: 2px; margin-top: 3px;} +.project_done { background:#00c600 url(../images/milestone_done.png); border: 1px solid #00c600; height: 2px; margin-top: 3px;} +.project_todo { background:#fff url(../images/milestone_todo.png); border: 1px solid #fff; height: 2px; margin-top: 3px;} + +.version-behind-schedule a, .issue-behind-schedule a {color: #f66914;} +.version-overdue a, .issue-overdue a, .project-overdue a {color: #f00;} /***** Icons *****/ .icon { @@ -840,6 +854,9 @@ .icon-comment { background-image: url(../images/comment.png); } .icon-summary { background-image: url(../images/lightning.png); } .icon-server-authentication { background-image: url(../images/server_key.png); } +.icon-issue { background-image: url(../images/ticket.png); } +.icon-zoom-in { background-image: url(../images/zoom_in.png); } +.icon-zoom-out { background-image: url(../images/zoom_out.png); } .icon-file { background-image: url(../images/files/default.png); } .icon-file.text-plain { background-image: url(../images/files/text.png); } @@ -898,6 +915,12 @@ margin: 0 1em 1em 0; } +/* Used on 12px Gravatar img tags without the icon background */ +.icon-gravatar { + float: left; + margin-right: 4px; +} + #activity dt, .journal { clear: left;
--- a/public/stylesheets/application.css Wed Jan 19 15:04:22 2011 +0000 +++ b/public/stylesheets/application.css Wed Jan 19 15:15:02 2011 +0000 @@ -351,7 +351,7 @@ ul.projects li.root { list-style-type:none; margin-bottom: 1em; } ul.projects li.child { list-style-type:none; margin-top: 1em;} ul.projects div.root a.project { /* font-family: "Trebuchet MS", Verdana, sans-serif; */ font-weight: bold; font-size: 16px; margin: 0 0 10px 0; } -.my-project { padding-left: 18px; background: url(../images/fav.png) no-repeat 0 50%; } +/* .my-project { padding-left: 18px; background: url(../images/fav.png) no-repeat 0 50%; } */ #tracker_project_ids ul { margin: 0; padding-left: 1em; } #tracker_project_ids li { list-style-type:none; }
--- a/public/themes/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 38 -/svn/!svn/ver/4005/trunk/public/themes -END -README -K 25 -svn:wc:ra_dav:version-url -V 44 -/svn/!svn/ver/818/trunk/public/themes/README -END
--- a/public/themes/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/public/themes/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/public/themes +http://redmine.rubyforge.org/svn/branches/1.1-stable/public/themes http://redmine.rubyforge.org/svn @@ -38,7 +38,7 @@ -2010-09-23T14:37:45.251810Z +2010-08-12T15:03:25.000000Z 5b7a0352b95a67871b90c5a90a226123 2007-10-10T17:17:37.630066Z 818
--- a/public/themes/alternate/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 48 -/svn/!svn/ver/3069/trunk/public/themes/alternate -END
--- a/public/themes/alternate/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/public/themes/alternate/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/public/themes/alternate +http://redmine.rubyforge.org/svn/branches/1.1-stable/public/themes/alternate http://redmine.rubyforge.org/svn
--- a/public/themes/alternate/stylesheets/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/3069/trunk/public/themes/alternate/stylesheets -END -application.css -K 25 -svn:wc:ra_dav:version-url -V 76 -/svn/!svn/ver/3069/trunk/public/themes/alternate/stylesheets/application.css -END
--- a/public/themes/alternate/stylesheets/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/public/themes/alternate/stylesheets/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/public/themes/alternate/stylesheets +http://redmine.rubyforge.org/svn/branches/1.1-stable/public/themes/alternate/stylesheets http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.255767Z +2010-08-12T15:03:25.000000Z 8a47fb469dca292ea631422810927fe3 2009-11-15T21:15:31.339604Z 3069
--- a/public/themes/classic/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 46 -/svn/!svn/ver/3183/trunk/public/themes/classic -END
--- a/public/themes/classic/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/public/themes/classic/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/public/themes/classic +http://redmine.rubyforge.org/svn/branches/1.1-stable/public/themes/classic http://redmine.rubyforge.org/svn
--- a/public/themes/classic/images/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 53 -/svn/!svn/ver/3183/trunk/public/themes/classic/images -END -wrench.png -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/3183/trunk/public/themes/classic/images/wrench.png -END -home.png -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/3183/trunk/public/themes/classic/images/home.png -END
--- a/public/themes/classic/images/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/public/themes/classic/images/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/public/themes/classic/images +http://redmine.rubyforge.org/svn/branches/1.1-stable/public/themes/classic/images http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.255767Z +2010-08-12T15:03:25.000000Z a137eb4441860564ce1655357af26de8 2009-12-18T14:10:26.630799Z 3183 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.255767Z +2010-08-12T15:03:25.000000Z 99bea32e1990e011e870f6c562e87a6a 2009-12-18T14:10:26.630799Z 3183
--- a/public/themes/classic/stylesheets/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3183/trunk/public/themes/classic/stylesheets -END -application.css -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/3183/trunk/public/themes/classic/stylesheets/application.css -END
--- a/public/themes/classic/stylesheets/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/public/themes/classic/stylesheets/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/public/themes/classic/stylesheets +http://redmine.rubyforge.org/svn/branches/1.1-stable/public/themes/classic/stylesheets http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.259756Z +2010-08-12T15:03:25.000000Z 1bfaedd3f6b62419367da41a7a9310b2 2009-12-18T14:10:26.630799Z 3183
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/public/themes/soundsoftware/stylesheets/application.css Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,129 @@ +@import url(../../../stylesheets/application.css); +@import url(fonts.css); + +/* Colours: + + #be5700 link (orange) + + #3e442c text (dark green) + (OK for headings, but small text is easier to read in black) + + #ffa801 logo (yellow) + + #525a38 logotype (olive) + + #fdfaf0 background (cream) + + #fdfbf5 alternate background (lighter cream) + + #ffe69b highlight (light yellow) + + #a9b680 detail (light green) +*/ + +body { + background: #fdfbf5; + color: #000; + margin: 0; + margin-bottom: 40px; +/* font-size: 95%; */ +} + +h1 { + color: #3e442c; + font-family: GilliusADFNo2, 'Gill Sans', Tahoma, sans-serif; + font-weight: normal; +} + +body,p,h2,h3,h4,li,table,.wiki h1 { + font-family: DroidSans, 'Liberation Sans', tahoma, verdana, sans-serif; */ +} + +h2,h3,h4,.wiki h1 { + color: #3e442c; +} + +h2,.wiki h1 { + font-size: 1.8em; +} + +.box { + padding: 6px; + margin-bottom: 10px; + background-color: #fdfaf0; + color: #3e442c; + line-height: 1.5em; + border: 1px solid #a9b680; + border-left: 4px solid #a9b680; +} + +.odd {background-color:#fdf7e4;} +.even {background-color: #fdfaf0;} + +#content .tabs { margin-bottom: 0; } + +table.list th { background-color: #fdfaf0; border-bottom: 1px solid #a9b680; } +table.list { border: 1px solid #a9b680; /* border-left: 4px solid #a9b680; */ } +tr.entry { border-left: 1px solid #a9b680; border-right: 1px solid #a9b680; } +tr.entry:last-child { border-bottom: 1px solid #a9b680; } + +table.projects th { text-align: left; } +table.projects th.managers { color: #3e442c; } +table.projects .hosted_here { font-weight: bold; } +table.projects .child .name { font-weight: normal; } +table.projects .child .description { font-size: 0.95em; } +table.projects .child .firstcol { padding-left: 1em } +table.projects .level2 .firstcol { padding-left: 2em; } +table.projects .level3 .firstcol { padding-left: 3em; } + +ul.projects .public, ul.projects .private { padding-left: 0.5em; color: #3e442c; font-size: 0.95em } + +#top-menu { position: absolute; top: 0; z-index: 1; left: 0px; width: 100%; font-size: 90%; /* height: 2em; */ margin: 0; padding: 0; padding-top: 0.5em; background-color: #3e442c; } +#top-menu ul { margin-left: 10px; } +#top-menu a { font-weight: bold; } +#header { position: absolute; z-index: 0; top: 0; width: 100%; background: #fdfbf5; border-bottom: 2px solid #a9b680; /* height:80px; */ padding: 20px 0 0.5em 0; margin-bottom: 0; } +#header a { color: #be5700; } +#header h1 { color: #525a38; margin-top: 25px; font-size: 3em; font-weight: normal; margin-left: 10px; } +.header-general h1 { + background: url('soundsoftware-logo-title-only-transparent.png') no-repeat 0 0; + text-indent: -9999px; + width: 446px; + height: 34px; + } +#quick-search { margin-right: 6px; margin-top: 1em; color: #000; } +#main-menu { position: absolute; top: 100px; /* background-color: #be5700; */ left: 0; border-top: 0; width: 100%;/* height: 1.82em; */ padding: 0; margin: 0; border: 0; } +#main-menu li { margin: 0; padding: 0; } +#main-menu li a { background-color: #fdfbf5; color: #be5700; border-right: 1px solid #a9b680; font-size: 97%; padding: 0em 8px 0.2em 10px; font-weight: normal; } +#main-menu li:last-child a { border-right: 0; } +#main-menu li a:hover { background-color: #fdfbf5; color: #be5700; text-decoration: underline; } +#main-menu li a.selected, #main-menu li a.selected:hover { background-color: #fdfbf5; color: #3e442c; } + +#footer { background-color: #fdfbf5; border: 0; border-top: 2px solid #a9b680; color: #3e442c; text-align: right; } +#footer a { color: #be5700; font-weight: bold; } + +#main { margin-top: 135px; font:95%; background: #fdfaf0; } +#main a { font-weight: medium; color: #be5700;} +#main a:hover { color: #be5700; text-decoration: underline; } +#content { background: #fdfbf5; } +/*#content .tabs ul { bottom:-1px; } +*/ +h2, h3, h4, .wiki h1, .wiki h2, .wiki h3 { border-bottom: 0px; } +/*h2, .wiki h1 { letter-spacing:-1px; } +*/ +h4 { border-bottom: dotted 1px #c0c0c0; } + +div.issue { background: #fdfaf0; border: 1px solid #a9b680; border-left: 4px solid #a9b680; } + +#top-menu a.home, #top-menu a.my-page, #top-menu a.projects, #top-menu a.administration, #top-menu a.help { + background-position: 0% 40%; + background-repeat: no-repeat; + padding-left: 20px; + padding-top: 2px; + padding-bottom: 3px; +} + +#top-menu a.home { background-image: url(../images/home.png); } +#top-menu a.my-page { background-image: url(../../../images/user.png); } +#top-menu a.projects { background-image: url(../../../images/projects.png); } +#top-menu a.administration { background-image: url(../images/wrench.png); } +#top-menu a.help { background-image: url(../../../images/help.png); }
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/public/themes/soundsoftware/stylesheets/fonts.css Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,83 @@ + +/* Font pack generated by FontSquirrel */ + +@font-face { + font-family: 'GilliusADFNo2'; + src: url('fonts/gilliusadfno2-bolditalic-webfont.eot'); + src: local('☺'), url('fonts/gilliusadfno2-bolditalic-webfont.woff') format('woff'), url('fonts/gilliusadfno2-bolditalic-webfont.ttf') format('truetype'), url('fonts/GilliusADFNo2-BoldItalic.otf') format('opentype'), url('fonts/gilliusadfno2-bolditalic-webfont.svg#webfontLmhvPwzc') format('svg'); + font-weight: bold; + font-style: italic; +} + +@font-face { + font-family: 'GilliusADFNo2'; + src: url('fonts/gilliusadfno2-italic-webfont.eot'); + src: local('☺'), url('fonts/gilliusadfno2-italic-webfont.woff') format('woff'), url('fonts/gilliusadfno2-italic-webfont.ttf') format('truetype'), url('fonts/GilliusADFNo2-Italic.otf') format('opentype'), url('fonts/gilliusadfno2-italic-webfont.svg#webfonteHBtzgS0') format('svg'); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: 'GilliusADFNo2'; + src: url('fonts/gilliusadfno2-bold-webfont.eot'); + src: local('☺'), url('fonts/gilliusadfno2-bold-webfont.woff') format('woff'), url('fonts/gilliusadfno2-bold-webfont.ttf') format('truetype'), url('fonts/GilliusADFNo2-Bold.otf') format('opentype'), url('fonts/gilliusadfno2-bold-webfont.svg#webfontntXmQMqk') format('svg'); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: 'GilliusADFNo2'; + src: url('fonts/gilliusadfno2-regular-webfont.eot'); + src: local('☺'), url('fonts/gilliusadfno2-regular-webfont.woff') format('woff'), url('fonts/gilliusadfno2-regular-webfont.ttf') format('truetype'), url('fonts/GilliusADFNo2-Regular.otf') format('opentype'), url('fonts/gilliusadfno2-regular-webfont.svg#webfontvJUiAdi3') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'LiberationSans'; + src: url('fonts/liberationsans-italic-webfont.eot'); + src: local('☺'), url('fonts/liberationsans-italic-webfont.woff') format('woff'), url('fonts/liberationsans-italic-webfont.ttf') format('truetype'), url('fonts/liberationsans-italic-webfont.svg#webfontBdDf5JP3') format('svg'); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: 'LiberationSans'; + src: url('fonts/liberationsans-bolditalic-webfont.eot'); + src: local('☺'), url('fonts/liberationsans-bolditalic-webfont.woff') format('woff'), url('fonts/liberationsans-bolditalic-webfont.ttf') format('truetype'), url('fonts/liberationsans-bolditalic-webfont.svg#webfontTNmZRY7v') format('svg'); + font-weight: bold; + font-style: italic; +} + +@font-face { + font-family: 'LiberationSans'; + src: url('fonts/liberationsans-bold-webfont.eot'); + src: local('☺'), url('fonts/liberationsans-bold-webfont.woff') format('woff'), url('fonts/liberationsans-bold-webfont.ttf') format('truetype'), url('fonts/liberationsans-bold-webfont.svg#webfontslkXRzon') format('svg'); + font-weight: bold; + font-style: normal; +} + +@font-face { + font-family: 'LiberationSans'; + src: url('fonts/liberationsans-regular-webfont.eot'); + src: local('☺'), url('fonts/liberationsans-regular-webfont.woff') format('woff'), url('fonts/liberationsans-regular-webfont.ttf') format('truetype'), url('fonts/liberationsans-regular-webfont.svg#webfontV0O783dY') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'DroidSans'; + src: url('fonts/DroidSans-webfont.eot'); + src: local('☺'), url('fonts/DroidSans-webfont.woff') format('woff'), url('fonts/DroidSans-webfont.ttf') format('truetype'), url('fonts/DroidSans-webfont.svg#webfontKYIQSBQk') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'DroidSans'; + src: url('fonts/DroidSans-Bold-webfont.eot'); + src: local('☺'), url('fonts/DroidSans-Bold-webfont.woff') format('woff'), url('fonts/DroidSans-Bold-webfont.ttf') format('truetype'), url('fonts/DroidSans-Bold-webfont.svg#webfontljpTCDjw') format('svg'); + font-weight: bold; + font-style: normal; +} +
Binary file public/themes/soundsoftware/stylesheets/soundsoftware-logo-title-only-transparent-beta.xcf has changed
Binary file public/themes/soundsoftware/stylesheets/soundsoftware-logo-title-only-transparent.png has changed
--- a/public/themes/ssamr/stylesheets/application.css Wed Jan 19 15:04:22 2011 +0000 +++ b/public/themes/ssamr/stylesheets/application.css Wed Jan 19 15:15:02 2011 +0000 @@ -20,6 +20,19 @@ src: url('DroidSans-Bold.ttf'); } +@font-face +{ + font-family: Gillius; + src: url('GilliusADFNo2-Regular.otf'); +} + +@font-face +{ + font-family: Gillius; + font-weight: bold; + src: url('GilliusADFNo2-Bold.otf'); +} + body { background: #ffffff; color: #404040;
--- a/script/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,59 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 31 -/svn/!svn/ver/4359/trunk/script -END -console -K 25 -svn:wc:ra_dav:version-url -V 39 -/svn/!svn/ver/4359/trunk/script/console -END -breakpointer -K 25 -svn:wc:ra_dav:version-url -V 44 -/svn/!svn/ver/4359/trunk/script/breakpointer -END -server -K 25 -svn:wc:ra_dav:version-url -V 38 -/svn/!svn/ver/4359/trunk/script/server -END -dbconsole -K 25 -svn:wc:ra_dav:version-url -V 41 -/svn/!svn/ver/4359/trunk/script/dbconsole -END -destroy -K 25 -svn:wc:ra_dav:version-url -V 39 -/svn/!svn/ver/4359/trunk/script/destroy -END -runner -K 25 -svn:wc:ra_dav:version-url -V 38 -/svn/!svn/ver/4359/trunk/script/runner -END -about -K 25 -svn:wc:ra_dav:version-url -V 37 -/svn/!svn/ver/4359/trunk/script/about -END -generate -K 25 -svn:wc:ra_dav:version-url -V 40 -/svn/!svn/ver/4359/trunk/script/generate -END -plugin -K 25 -svn:wc:ra_dav:version-url -V 38 -/svn/!svn/ver/4359/trunk/script/plugin -END
--- a/script/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/script/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/script +http://redmine.rubyforge.org/svn/branches/1.1-stable/script http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-11-19T13:04:51.017028Z +2010-11-30T13:11:53.000000Z 623b2f8265970f73bdb3489872d00eb6 2010-11-02T00:20:21.419252Z 4359 @@ -69,7 +69,7 @@ -2010-11-19T13:04:51.017028Z +2010-11-30T13:11:53.000000Z 2ac529bf7a654b9b91b2fea2275aa44e 2010-11-02T00:20:21.419252Z 4359 @@ -103,7 +103,7 @@ -2010-11-19T13:04:51.017028Z +2010-11-30T13:11:53.000000Z ff97a702418dbc85fec089b97506281f 2010-11-02T00:20:21.419252Z 4359 @@ -137,7 +137,7 @@ -2010-11-19T13:04:51.017028Z +2010-11-30T13:11:53.000000Z 1fd5fa2d4aeee5b4111a40f62ae85446 2010-11-02T00:20:21.419252Z 4359 @@ -171,7 +171,7 @@ -2010-11-19T13:04:51.017028Z +2010-11-30T13:11:53.000000Z 95866cb3b894816b540afd282b952618 2010-11-02T00:20:21.419252Z 4359 @@ -205,7 +205,7 @@ -2010-11-19T13:04:51.017028Z +2010-11-30T13:11:53.000000Z 0cccc4eabf129ebd7b571d3eceda8893 2010-11-02T00:20:21.419252Z 4359 @@ -239,7 +239,7 @@ -2010-11-19T13:04:51.017028Z +2010-11-30T13:11:53.000000Z b0aeca2e257a2226502c570e671e1b76 2010-11-02T00:20:21.419252Z 4359 @@ -273,7 +273,7 @@ -2010-11-19T13:04:51.017028Z +2010-11-30T13:11:53.000000Z fb51df9bca94c25a928f40468354700f 2010-11-02T00:20:21.419252Z 4359 @@ -310,7 +310,7 @@ -2010-11-19T13:04:51.017028Z +2010-11-30T13:11:53.000000Z db0dd437d39c21fe52e1fc05a0680163 2010-11-02T00:20:21.419252Z 4359
--- a/script/performance/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 43 -/svn/!svn/ver/4359/trunk/script/performance -END -benchmarker -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/4359/trunk/script/performance/benchmarker -END -profiler -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/4359/trunk/script/performance/profiler -END -request -K 25 -svn:wc:ra_dav:version-url -V 51 -/svn/!svn/ver/4359/trunk/script/performance/request -END
--- a/script/performance/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/script/performance/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/script/performance +http://redmine.rubyforge.org/svn/branches/1.1-stable/script/performance http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-11-19T13:04:50.988983Z +2010-11-30T13:11:53.000000Z 33063b7a3d4dbef12ac8bcb55a5e6e3e 2010-11-02T00:20:21.419252Z 4359 @@ -66,7 +66,7 @@ -2010-11-19T13:04:50.988983Z +2010-11-30T13:11:53.000000Z 9d3b872769337c49e648b9fe47e4e280 2010-11-02T00:20:21.419252Z 4359 @@ -100,7 +100,7 @@ -2010-11-19T13:04:50.988983Z +2010-11-30T13:11:53.000000Z b6500710f6029724e44cbd25f80eaaf1 2010-11-02T00:20:21.419252Z 4359
--- a/script/process/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 39 -/svn/!svn/ver/4359/trunk/script/process -END -spawner -K 25 -svn:wc:ra_dav:version-url -V 47 -/svn/!svn/ver/4359/trunk/script/process/spawner -END -inspector -K 25 -svn:wc:ra_dav:version-url -V 49 -/svn/!svn/ver/4359/trunk/script/process/inspector -END -reaper -K 25 -svn:wc:ra_dav:version-url -V 46 -/svn/!svn/ver/4359/trunk/script/process/reaper -END -spinner -K 25 -svn:wc:ra_dav:version-url -V 47 -/svn/!svn/ver/4359/trunk/script/process/spinner -END
--- a/script/process/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/script/process/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/script/process +http://redmine.rubyforge.org/svn/branches/1.1-stable/script/process http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-11-19T13:04:51.012938Z +2010-11-30T13:11:53.000000Z 47bf41d8d2c97d220d9f70916e94c651 2010-11-02T00:20:21.419252Z 4359 @@ -66,7 +66,7 @@ -2010-11-19T13:04:51.012938Z +2010-11-30T13:11:53.000000Z 9137857ebdaf61d57a3496f7e61fede3 2010-11-02T00:20:21.419252Z 4359 @@ -100,7 +100,7 @@ -2010-11-19T13:04:51.012938Z +2010-11-30T13:11:53.000000Z 99af2666610d48d13e2eeceacf487d16 2010-11-02T00:20:21.419252Z 4359 @@ -134,7 +134,7 @@ -2010-11-19T13:04:51.012938Z +2010-11-30T13:11:53.000000Z 64b5316e88e7555bf827ad04edbce4a6 2010-11-02T00:20:21.419252Z 4359
--- a/test/exemplars/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,227 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 39 -/svn/!svn/ver/4406/trunk/test/exemplars -END -message_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/3340/trunk/test/exemplars/message_exemplar.rb -END -wiki_redirect_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 65 -/svn/!svn/ver/3340/trunk/test/exemplars/wiki_redirect_exemplar.rb -END -change_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3340/trunk/test/exemplars/change_exemplar.rb -END -issue_category_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/3340/trunk/test/exemplars/issue_category_exemplar.rb -END -attachment_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/4010/trunk/test/exemplars/attachment_exemplar.rb -END -issue_priority_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/3670/trunk/test/exemplars/issue_priority_exemplar.rb -END -group_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/3342/trunk/test/exemplars/group_exemplar.rb -END -watcher_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/3340/trunk/test/exemplars/watcher_exemplar.rb -END -wiki_content_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/3340/trunk/test/exemplars/wiki_content_exemplar.rb -END -enabled_module_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/3340/trunk/test/exemplars/enabled_module_exemplar.rb -END -wiki_page_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 61 -/svn/!svn/ver/3340/trunk/test/exemplars/wiki_page_exemplar.rb -END -query_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/2937/trunk/test/exemplars/query_exemplar.rb -END -project_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/4406/trunk/test/exemplars/project_exemplar.rb -END -custom_value_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/3342/trunk/test/exemplars/custom_value_exemplar.rb -END -member_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3342/trunk/test/exemplars/member_exemplar.rb -END -news_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/3340/trunk/test/exemplars/news_exemplar.rb -END -custom_field_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/2930/trunk/test/exemplars/custom_field_exemplar.rb -END -document_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/3340/trunk/test/exemplars/document_exemplar.rb -END -auth_source_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 63 -/svn/!svn/ver/3342/trunk/test/exemplars/auth_source_exemplar.rb -END -version_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/3123/trunk/test/exemplars/version_exemplar.rb -END -enumeration_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 63 -/svn/!svn/ver/2930/trunk/test/exemplars/enumeration_exemplar.rb -END -board_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/3340/trunk/test/exemplars/board_exemplar.rb -END -member_role_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 63 -/svn/!svn/ver/3340/trunk/test/exemplars/member_role_exemplar.rb -END -issue_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/3398/trunk/test/exemplars/issue_exemplar.rb -END -tracker_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/2930/trunk/test/exemplars/tracker_exemplar.rb -END -issue_status_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/2930/trunk/test/exemplars/issue_status_exemplar.rb -END -time_entry_activity.rb -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/2930/trunk/test/exemplars/time_entry_activity.rb -END -subversion_repository_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 73 -/svn/!svn/ver/3340/trunk/test/exemplars/subversion_repository_exemplar.rb -END -role_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/2930/trunk/test/exemplars/role_exemplar.rb -END -changeset_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 61 -/svn/!svn/ver/3340/trunk/test/exemplars/changeset_exemplar.rb -END -comment_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/3342/trunk/test/exemplars/comment_exemplar.rb -END -wiki_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/3340/trunk/test/exemplars/wiki_exemplar.rb -END -journal_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/3342/trunk/test/exemplars/journal_exemplar.rb -END -document_category_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 69 -/svn/!svn/ver/3670/trunk/test/exemplars/document_category_exemplar.rb -END -user_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/4218/trunk/test/exemplars/user_exemplar.rb -END -time_entry_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/3340/trunk/test/exemplars/time_entry_exemplar.rb -END -repository_exemplar.rb -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/3340/trunk/test/exemplars/repository_exemplar.rb -END
--- a/test/fixtures/diffs/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 44 -/svn/!svn/ver/2112/trunk/test/fixtures/diffs -END -subversion.diff -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/2112/trunk/test/fixtures/diffs/subversion.diff -END
--- a/test/fixtures/diffs/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/test/fixtures/diffs/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/test/fixtures/diffs +http://redmine.rubyforge.org/svn/branches/1.1-stable/test/fixtures/diffs http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.319762Z +2010-08-12T15:03:25.000000Z 64527b211202fbff696792d538e2b14e 2008-12-07T15:21:40.165860Z 2112
--- a/test/fixtures/encoding/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 47 -/svn/!svn/ver/3466/trunk/test/fixtures/encoding -END -iso-8859-1.txt -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/3466/trunk/test/fixtures/encoding/iso-8859-1.txt -END
--- a/test/fixtures/encoding/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/test/fixtures/encoding/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/test/fixtures/encoding +http://redmine.rubyforge.org/svn/branches/1.1-stable/test/fixtures/encoding http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.323763Z +2010-08-12T15:03:25.000000Z eee83cf374737071543358b83f85f75b 2010-02-20T11:24:41.988635Z 3466
--- a/test/fixtures/ldap/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 43 -/svn/!svn/ver/3489/trunk/test/fixtures/ldap -END -slapd.conf -K 25 -svn:wc:ra_dav:version-url -V 54 -/svn/!svn/ver/3489/trunk/test/fixtures/ldap/slapd.conf -END -test-ldap.ldif -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3489/trunk/test/fixtures/ldap/test-ldap.ldif -END
--- a/test/fixtures/ldap/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/test/fixtures/ldap/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/test/fixtures/ldap +http://redmine.rubyforge.org/svn/branches/1.1-stable/test/fixtures/ldap http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.327799Z +2010-08-12T15:03:25.000000Z acbef41cb6cf252c83489cc3344e2604 2010-02-26T08:31:36.418866Z 3489 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.327799Z +2010-08-12T15:03:25.000000Z f1b10e6d96dd658e563d4ba74d52e87b 2010-02-26T08:31:36.418866Z 3489
--- a/test/fixtures/mailer/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 43 -/svn/!svn/ver/67/trunk/test/fixtures/mailer -END
--- a/test/fixtures/mailer/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/test/fixtures/mailer/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/test/fixtures/mailer +http://redmine.rubyforge.org/svn/branches/1.1-stable/test/fixtures/mailer http://redmine.rubyforge.org/svn
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/fixtures/ssamr_user_details.yml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,7 @@ +# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html + +# one: +# column: value +# +# two: +# column: value
--- a/test/integration/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/test/integration/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/test/integration/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/test/integration/lib http://redmine.rubyforge.org/svn
--- a/test/mocks/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 35 -/svn/!svn/ver/2895/trunk/test/mocks -END -open_id_authentication_mock.rb -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/2895/trunk/test/mocks/open_id_authentication_mock.rb -END
--- a/test/mocks/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/test/mocks/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/test/mocks +http://redmine.rubyforge.org/svn/branches/1.1-stable/test/mocks http://redmine.rubyforge.org/svn @@ -38,7 +38,7 @@ -2010-09-23T14:37:45.439778Z +2010-08-12T15:03:26.000000Z c73745cf74166bf38552d6469b74b190 2009-09-20T14:06:57.257282Z 2895
--- a/test/mocks/development/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 45 -/svn/!svn/ver/67/trunk/test/mocks/development -END
--- a/test/mocks/development/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/test/mocks/development/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/test/mocks/development +http://redmine.rubyforge.org/svn/branches/1.1-stable/test/mocks/development http://redmine.rubyforge.org/svn
--- a/test/mocks/test/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 38 -/svn/!svn/ver/67/trunk/test/mocks/test -END
--- a/test/mocks/test/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/test/mocks/test/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/test/mocks/test +http://redmine.rubyforge.org/svn/branches/1.1-stable/test/mocks/test http://redmine.rubyforge.org/svn
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/unit/ssamr_user_details_test.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,8 @@ +require 'test_helper' + +class SsamrUserDetailsTest < ActiveSupport::TestCase + # Replace this with your real tests. + test "User Id should be correct" do + assert_equal user_id, user.id + end +end
--- a/tmp/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 28 -/svn/!svn/ver/2788/trunk/tmp -END
--- a/tmp/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/tmp/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/tmp +http://redmine.rubyforge.org/svn/branches/1.1-stable/tmp http://redmine.rubyforge.org/svn
--- a/tmp/cache/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 32 -/svn/!svn/ver/67/trunk/tmp/cache -END
--- a/tmp/cache/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/tmp/cache/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/tmp/cache +http://redmine.rubyforge.org/svn/branches/1.1-stable/tmp/cache http://redmine.rubyforge.org/svn
--- a/tmp/sessions/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 35 -/svn/!svn/ver/67/trunk/tmp/sessions -END
--- a/tmp/sessions/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/tmp/sessions/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/tmp/sessions +http://redmine.rubyforge.org/svn/branches/1.1-stable/tmp/sessions http://redmine.rubyforge.org/svn
--- a/tmp/sockets/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 34 -/svn/!svn/ver/67/trunk/tmp/sockets -END
--- a/tmp/sockets/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/tmp/sockets/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/tmp/sockets +http://redmine.rubyforge.org/svn/branches/1.1-stable/tmp/sockets http://redmine.rubyforge.org/svn
--- a/tmp/test/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 33 -/svn/!svn/ver/2788/trunk/tmp/test -END -empty -K 25 -svn:wc:ra_dav:version-url -V 39 -/svn/!svn/ver/2784/trunk/tmp/test/empty -END
--- a/tmp/test/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/tmp/test/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/tmp/test +http://redmine.rubyforge.org/svn/branches/1.1-stable/tmp/test http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.515807Z +2010-08-12T15:03:26.000000Z d41d8cd98f00b204e9800998ecf8427e 2009-06-08T02:07:30.275769Z 2784
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/unis.txt Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,141 @@ +University of Aberdeen +University of Abertay Dundee +Aberystwyth University +Anglia Ruskin University +University of the Arts London +Aston University +Bangor University +University of Bath +Bath Spa University +University of Bedfordshire +Birkbeck, University of London +University of Birmingham +Birmingham City University +Birmingham Conservatoire +University Centre at Blackburn College +University of Bolton +Bournemouth University +University of Bradford +University of Brighton +University of Bristol +Brunel University +University of Buckingham +Buckinghamshire New University +University of Cambridge +Institute of Cancer Research, University of London +Canterbury Christ Church University +Cardiff University +University of Central Lancashire +Central School of Speech and Drama, University of London +University of Chester +University of Chichester +City University London +Courtauld Institute of Art +Coventry University +Cranfield University +University for the Creative Arts +University of Cumbria +De Montfort University +University of Derby +University of Dundee +Durham University +University of East Anglia +University of East London +Edge Hill University +University of Edinburgh +Edinburgh Napier University +Institute of Education, University of London +University of Essex +University of Exeter +University of Glamorgan +University of Glasgow +Glasgow Caledonian University +University of Gloucestershire +Goldsmiths, University of London +University of Greenwich +Glyndŵr University +Heriot-Watt University +University of Hertfordshire +Heythrop College +University of Huddersfield +University of Hull +Hull York Medical School +Imperial College London +Keele University +University of Kent +King's College London +Kingston University +Lancaster University +University of Leeds +Leeds Metropolitan University +University of Leicester +University of Lincoln +University of Liverpool +Liverpool Hope University +Liverpool John Moores University +London Business School +London College of Music +London Metropolitan University +London School of Economics and Political Science +London School of Hygiene and Tropical Medicine +London South Bank University +Loughborough University +University of Manchester +Manchester Metropolitan University +Middlesex University +Newcastle University +University of Northampton +Northumbria University +University of Nottingham +Nottingham Trent University +The Open University +University of Oxford +Oxford Brookes University +Peninsula College of Medicine and Dentistry +University of Plymouth +University of Portsmouth +Queen's University Belfast +Queen Margaret University +Queen Mary, University of London +University of Reading +The Robert Gordon University, Aberdeen +Roehampton University +Royal Academy of Music +Royal College of Art +Royal Holloway, University of London +Royal Veterinary College +University of St Andrews +St George's, University of London +University of Salford +School of Advanced Study, University of London +School of Oriental and African Studies +School of Pharmacy, University of London +University of Sheffield +Sheffield Hallam University +University of Southampton +Southampton Solent University +Staffordshire University +University of Stirling +University of Strathclyde +University of Sunderland +University of Surrey +University of Sussex +Swansea Metropolitan University +Swansea University +University of Teesside +Thames Valley University +University of Ulster +University College London +University of Wales +University of Wales Institute, Cardiff +University of Wales, Newport +University of Wales, Trinity Saint David +University of Warwick +University of Westminster +University of the West of England +University of the West of Scotland +University of Winchester +University of Wolverhampton +University of Worcester +University of York +York St John University
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/unis.txt.~1~ Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,245 @@ +University of Aberdeen +University of Abertay Dundee +Aberystwyth University +Anglia Ruskin University +University of the Arts London + +Camberwell College of Arts +Central Saint Martins College of Art and Design +Chelsea College of Art and Design +London College of Communication +London College of Fashion +Wimbledon College of Art + + +Aston University +Bangor University +University of Bath +Bath Spa University +University of Bedfordshire +University of Ulster +University of Birmingham +Birmingham City University + +Birmingham Conservatoire + + +Blackburn +University of Bolton +Bournemouth University +University of Bradford + +University of Bradford School of Management + + +University of Brighton +University of Sussex +University of Bristol +Brunel University +University of Buckingham +Buckinghamshire New University +University of Cambridge +Canterbury Christ Church University +Cardiff University + +Cardiff International Academy of Voice +Cardiff University School of Medicine + + +Preston +Warrington +University of Chichester +The Open University +City University London + +Cass Business School +City Law School + + +Coventry University +Cranfield University +University for the Creative Arts +University of Cumbria +De Montfort University +University of Derby +University of Dundee +Thornaby-on-Tees (Queen's Campus) +University of East Anglia +University of East London +Edge Hill University +University of Edinburgh + +Moray House School of Education + + +Edinburgh Napier University +University of Essex +University of Exeter + +Camborne School of Mines + + +University of Glamorgan +University of Glasgow +Glasgow Caledonian University +University of Gloucestershire +University of Greenwich +GlyndE5r University +Heriot-Watt University +University of Hertfordshire +University of Huddersfield +University of Hull +Hull York Medical School +Imperial College London + +Imperial College at Wye +Royal School of Mines + + +Keele University +University of Kent +Kingston University +Lancaster University +University of Leeds + +Leeds Trinity & All Saints + + +Leeds Metropolitan University +University of Leicester +University of Lincoln +University of Liverpool + +Liverpool School of Tropical Medicine + + +Liverpool Hope University +Liverpool John Moores University +University of London + +Birkbeck, University of London +Central School of Speech and Drama +Courtauld Institute of Art +Goldsmiths, University of London +Heythrop College +Institute of Cancer Research +Institute of Education +King's College London + +Institute of Psychiatry + + +London Business School +London School of Economics and Political Science +London School of Hygiene and Tropical Medicine +Queen Mary, University of London +Royal Academy of Music +Royal Holloway, University of London +Royal Veterinary College +St George's, University of London +School of Advanced Study + +Institute for the Study of the Americas +Institute of Advanced Legal Studies +Institute of Classical Studies +Institute of Commonwealth Studies +Institute of English Studies +Institute of Germanic & Romance Studies +Institute of Historical Research +Institute of Musical Research +Institute of Philosophy +Warburg Institute + + +School of Oriental and African Studies +School of Pharmacy, University of London +University College London + +Eastman Dental Institute +Institute of Archaeology +Institute of Child Health +Institute of Neurology +School of Slavonic and East European Studies + + +University of Glasgow + + +London Metropolitan University +London South Bank University +Loughborough University +University of Manchester + +Manchester Business School + + +Manchester Metropolitan University +Middlesex University +Newcastle University +University of Northampton +Northumbria University +University of Nottingham +Nottingham Trent University +The Open University + +Royal College of Nursing Institute + + +University of Oxford +Oxford Brookes University +Peninsula College of Medicine and Dentistry +University of Plymouth +University of Portsmouth +Queen's University Belfast + +Belfast Bible College + + +Queen Margaret University +University of Reading + +Henley Business School + + +The Robert Gordon University +Roehampton University +Royal College of Art +University of St Andrews +University of Salford +University of Sheffield +Sheffield Hallam University +University of Southampton +Southampton Solent University +Staffordshire University +University of Stirling +University of Strathclyde +University of Sunderland +University of Surrey +University of Sussex +Swansea Metropolitan University +Swansea University +University of Teesside +Thames Valley University + +London College of Music + + +University of Ulster +University of Wales +University of Wales Institute, Cardiff +University of Wales, Newport +University of Wales, Trinity Saint David +University of Warwick +University of Westminster +University of the West of England +University of the West of Scotland +University of Winchester +University of Wolverhampton +University of Worcester + +Worcester Business School + + +University of York +York St John University +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/unis.txt.~2~ Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,141 @@ +University of Aberdeen +University of Abertay Dundee +Aberystwyth University +Anglia Ruskin University +University of the Arts London +Aston University +Bangor University +University of Bath +Bath Spa University +University of Bedfordshire +Birkbeck, University of London +University of Birmingham +Birmingham City University +Birmingham Conservatoire +University Centre at Blackburn College +University of Bolton +Bournemouth University +University of Bradford +University of Brighton +University of Bristol +Brunel University +University of Buckingham +Buckinghamshire New University +University of Cambridge +Institute of Cancer Research, University of London +Canterbury Christ Church University +Cardiff University +University of Central Lancashire +Central School of Speech and Drama, University of London +University of Chester +University of Chichester +City University London +Courtauld Institute of Art +Coventry University +Cranfield University +University for the Creative Arts +University of Cumbria +De Montfort University +University of Derby +University of Dundee +Durham University +University of East Anglia +University of East London +Edge Hill University +University of Edinburgh +Edinburgh Napier University +Institute of Education, University of London +University of Essex +University of Exeter +University of Glamorgan +University of Glasgow +Glasgow Caledonian University +University of Gloucestershire +Goldsmiths, University of London +University of Greenwich +Glyndŵr University +Heriot-Watt University +University of Hertfordshire +Heythrop College +University of Huddersfield +University of Hull +Hull York Medical School +Imperial College London +Keele University +University of Kent +King's College London +Kingston University +Lancaster University +University of Leeds +Leeds Metropolitan University +University of Leicester +University of Lincoln +University of Liverpool +Liverpool Hope University +Liverpool John Moores University +London Business School +London College of Music +London Metropolitan University +London School of Economics and Political Science +London School of Hygiene and Tropical Medicine +London South Bank University +Loughborough University +University of Manchester +Manchester Metropolitan University +Middlesex University +Newcastle University +University of Northampton +Northumbria University +University of Nottingham +Nottingham Trent University +The Open University +University of Oxford +Oxford Brookes University +Peninsula College of Medicine and Dentistry +University of Plymouth +University of Portsmouth +Queen's University Belfast +Queen Margaret University +Queen Mary, University of London +University of Reading +The Robert Gordon University, Aberdeen +Roehampton University +Royal Academy of Music +Royal College of Art +Royal Holloway, University of London +Royal Veterinary College +University of St Andrews +St George's, University of London +University of Salford +School of Advanced Study, University of London +School of Oriental and African Studies +School of Pharmacy, University of London +University of Sheffield +Sheffield Hallam University +University of Southampton +Southampton Solent University +Staffordshire University +University of Stirling +University of Strathclyde +University of Sunderland +University of Surrey +University of Sussex +Swansea Metropolitan University +Swansea University +University of Teesside +Thames Valley University +University of Ulster +University College London +University of Wales +University of Wales Institute, Cardiff +University of Wales, Newport +University of Wales, Trinity Saint David +University of Warwick +University of Westminster +University of the West of England +University of the West of Scotland +University of Winchester +University of Wolverhampton +University of Worcester +University of York +York St John University
--- a/vendor/gems/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 36 -/svn/!svn/ver/3090/trunk/vendor/gems -END
--- a/vendor/gems/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/gems/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/gems +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/gems http://redmine.rubyforge.org/svn
--- a/vendor/gems/rubytree-0.5.2/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,59 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 51 -/svn/!svn/ver/3090/trunk/vendor/gems/rubytree-0.5.2 -END -History.txt -K 25 -svn:wc:ra_dav:version-url -V 63 -/svn/!svn/ver/3090/trunk/vendor/gems/rubytree-0.5.2/History.txt -END -Rakefile -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/3090/trunk/vendor/gems/rubytree-0.5.2/Rakefile -END -setup.rb -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/3090/trunk/vendor/gems/rubytree-0.5.2/setup.rb -END -Manifest.txt -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/3090/trunk/vendor/gems/rubytree-0.5.2/Manifest.txt -END -TODO -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/3090/trunk/vendor/gems/rubytree-0.5.2/TODO -END -ChangeLog -K 25 -svn:wc:ra_dav:version-url -V 61 -/svn/!svn/ver/3090/trunk/vendor/gems/rubytree-0.5.2/ChangeLog -END -COPYING -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/3090/trunk/vendor/gems/rubytree-0.5.2/COPYING -END -README -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3090/trunk/vendor/gems/rubytree-0.5.2/README -END -.specification -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/3090/trunk/vendor/gems/rubytree-0.5.2/.specification -END
--- a/vendor/gems/rubytree-0.5.2/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/gems/rubytree-0.5.2/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/gems/rubytree-0.5.2 +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/gems/rubytree-0.5.2 http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.523822Z +2010-08-12T15:03:26.000000Z 48b46ff6764d5b76e1ad138669923aff 2009-11-25T05:36:44.792571Z 3090 @@ -69,7 +69,7 @@ -2010-09-23T14:37:45.523822Z +2010-08-12T15:03:26.000000Z 954df52967073c3833d9c565bb4b1ea8 2009-11-25T05:36:44.792571Z 3090 @@ -103,7 +103,7 @@ -2010-09-23T14:37:45.527765Z +2010-08-12T15:03:26.000000Z f3e96d4b9eeb3d0c4d841c7c7ea6259c 2009-11-25T05:36:44.792571Z 3090 @@ -137,7 +137,7 @@ -2010-09-23T14:37:45.523822Z +2010-08-12T15:03:26.000000Z 7a9a6ee34490c5d9c4148c7cf8f85034 2009-11-25T05:36:44.792571Z 3090 @@ -171,7 +171,7 @@ -2010-09-23T14:37:45.523822Z +2010-08-12T15:03:26.000000Z 82301a43d2504d992ba1cfd7839b2d7e 2009-11-25T05:36:44.792571Z 3090 @@ -208,7 +208,7 @@ -2010-09-23T14:37:45.523822Z +2010-08-12T15:03:26.000000Z b15b8164d281daa7c7028cdda9635950 2009-11-25T05:36:44.792571Z 3090 @@ -242,7 +242,7 @@ -2010-09-23T14:37:45.523822Z +2010-08-12T15:03:26.000000Z 25d0fdd6b9633f784544a5c000dc1351 2009-11-25T05:36:44.792571Z 3090 @@ -276,7 +276,7 @@ -2010-09-23T14:37:45.523822Z +2010-08-12T15:03:26.000000Z 13d490389c788748b3931b9e09b2b4d4 2009-11-25T05:36:44.792571Z 3090 @@ -310,7 +310,7 @@ -2010-09-23T14:37:45.519811Z +2010-08-12T15:03:26.000000Z 5906fb8bdb4197fe19171f795952ed9d 2009-11-25T05:36:44.792571Z 3090
--- a/vendor/gems/rubytree-0.5.2/lib/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/3090/trunk/vendor/gems/rubytree-0.5.2/lib -END -tree.rb -K 25 -svn:wc:ra_dav:version-url -V 63 -/svn/!svn/ver/3090/trunk/vendor/gems/rubytree-0.5.2/lib/tree.rb -END
--- a/vendor/gems/rubytree-0.5.2/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/gems/rubytree-0.5.2/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/gems/rubytree-0.5.2/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/gems/rubytree-0.5.2/lib http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.527765Z +2010-08-12T15:03:26.000000Z 46e46766767dc3a96b3019d385a5af83 2009-11-25T05:36:44.792571Z 3090
--- a/vendor/gems/rubytree-0.5.2/lib/tree/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/3090/trunk/vendor/gems/rubytree-0.5.2/lib/tree -END -binarytree.rb -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/3090/trunk/vendor/gems/rubytree-0.5.2/lib/tree/binarytree.rb -END
--- a/vendor/gems/rubytree-0.5.2/lib/tree/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/gems/rubytree-0.5.2/lib/tree/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/gems/rubytree-0.5.2/lib/tree +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/gems/rubytree-0.5.2/lib/tree http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.527765Z +2010-08-12T15:03:26.000000Z 54320f0ffbb41fa9d99ab2d617636ea1 2009-11-25T05:36:44.792571Z 3090
--- a/vendor/gems/rubytree-0.5.2/test/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/3090/trunk/vendor/gems/rubytree-0.5.2/test -END -test_tree.rb -K 25 -svn:wc:ra_dav:version-url -V 69 -/svn/!svn/ver/3090/trunk/vendor/gems/rubytree-0.5.2/test/test_tree.rb -END -test_binarytree.rb -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/3090/trunk/vendor/gems/rubytree-0.5.2/test/test_binarytree.rb -END
--- a/vendor/gems/rubytree-0.5.2/test/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/gems/rubytree-0.5.2/test/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/gems/rubytree-0.5.2/test +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/gems/rubytree-0.5.2/test http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.531765Z +2010-08-12T15:03:26.000000Z bd5257614b958bab00916feffc4fa9ae 2009-11-25T05:36:44.792571Z 3090 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.531765Z +2010-08-12T15:03:26.000000Z b9b4a1d43e859491e80fb1e2c7499d20 2009-11-25T05:36:44.792571Z 3090
--- a/vendor/plugins/acts_as_activity_provider/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 65 -/svn/!svn/ver/2114/trunk/vendor/plugins/acts_as_activity_provider -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 73 -/svn/!svn/ver/1701/trunk/vendor/plugins/acts_as_activity_provider/init.rb -END
--- a/vendor/plugins/acts_as_activity_provider/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_activity_provider/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_activity_provider +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_activity_provider http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.531765Z +2010-08-12T15:03:26.000000Z 779d73c171dc111df084a0798cca73e2 2008-07-27T17:54:09.197937Z 1701
--- a/vendor/plugins/acts_as_activity_provider/lib/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 69 -/svn/!svn/ver/2114/trunk/vendor/plugins/acts_as_activity_provider/lib -END -acts_as_activity_provider.rb -K 25 -svn:wc:ra_dav:version-url -V 98 -/svn/!svn/ver/2114/trunk/vendor/plugins/acts_as_activity_provider/lib/acts_as_activity_provider.rb -END
--- a/vendor/plugins/acts_as_activity_provider/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_activity_provider/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_activity_provider/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_activity_provider/lib http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.535765Z +2010-08-12T15:03:26.000000Z 21fbeb28c4ce556d2534306b96be9497 2008-12-08T18:20:26.452857Z 2114
--- a/vendor/plugins/acts_as_attachable/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3528/trunk/vendor/plugins/acts_as_attachable -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/2116/trunk/vendor/plugins/acts_as_attachable/init.rb -END
--- a/vendor/plugins/acts_as_attachable/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_attachable/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_attachable +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_attachable http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.535765Z +2010-08-12T15:03:26.000000Z b215588c95e69b4bb8f91ad91606bfbe 2008-12-09T16:54:46.963649Z 2116
--- a/vendor/plugins/acts_as_attachable/lib/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/3528/trunk/vendor/plugins/acts_as_attachable/lib -END -acts_as_attachable.rb -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/3528/trunk/vendor/plugins/acts_as_attachable/lib/acts_as_attachable.rb -END
--- a/vendor/plugins/acts_as_attachable/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_attachable/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_attachable/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_attachable/lib http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.535765Z +2010-08-12T15:03:26.000000Z 982227c44f1fe848c8aeed862ea027f3 2010-03-03T17:05:00.967826Z 3528
--- a/vendor/plugins/acts_as_customizable/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_customizable/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_customizable +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_customizable http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.539808Z +2010-08-12T15:03:26.000000Z 0d1f178b7636d6712b38304954530928 2008-06-27T20:13:56.888432Z 1592
--- a/vendor/plugins/acts_as_event/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 53 -/svn/!svn/ver/3703/trunk/vendor/plugins/acts_as_event -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/774/trunk/vendor/plugins/acts_as_event/init.rb -END
--- a/vendor/plugins/acts_as_event/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_event/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_event +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_event http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.539808Z +2010-08-12T15:03:26.000000Z 60df7ab698ddd0c3701bb0efbb8233cf 2007-08-29T16:52:35.680643Z 674
--- a/vendor/plugins/acts_as_event/lib/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/3703/trunk/vendor/plugins/acts_as_event/lib -END -acts_as_event.rb -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/3703/trunk/vendor/plugins/acts_as_event/lib/acts_as_event.rb -END
--- a/vendor/plugins/acts_as_event/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_event/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_event/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_event/lib http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.543762Z +2010-08-12T15:03:26.000000Z ca8e33777d59976db870f71defe5f66d 2010-04-30T10:45:21.145380Z 3703
--- a/vendor/plugins/acts_as_list/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/2526/trunk/vendor/plugins/acts_as_list -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/975/trunk/vendor/plugins/acts_as_list/init.rb -END -README -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/975/trunk/vendor/plugins/acts_as_list/README -END
--- a/vendor/plugins/acts_as_list/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_list/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_list +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_list http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.543762Z +2010-08-12T15:03:26.000000Z 0bdbdc825f80fda1a94852a82b68ffd4 2007-12-10T17:58:07.273873Z 975 @@ -72,7 +72,7 @@ -2010-09-23T14:37:45.543762Z +2010-08-12T15:03:26.000000Z 42212b5cb681c9888d56f9c0f36e1e02 2007-12-10T17:58:07.273873Z 975
--- a/vendor/plugins/acts_as_list/lib/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/2526/trunk/vendor/plugins/acts_as_list/lib -END
--- a/vendor/plugins/acts_as_list/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_list/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_list/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_list/lib http://redmine.rubyforge.org/svn
--- a/vendor/plugins/acts_as_list/lib/active_record/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 70 -/svn/!svn/ver/2526/trunk/vendor/plugins/acts_as_list/lib/active_record -END
--- a/vendor/plugins/acts_as_list/lib/active_record/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_list/lib/active_record/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_list/lib/active_record +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_list/lib/active_record http://redmine.rubyforge.org/svn
--- a/vendor/plugins/acts_as_list/lib/active_record/acts/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/2526/trunk/vendor/plugins/acts_as_list/lib/active_record/acts -END -list.rb -K 25 -svn:wc:ra_dav:version-url -V 83 -/svn/!svn/ver/2526/trunk/vendor/plugins/acts_as_list/lib/active_record/acts/list.rb -END
--- a/vendor/plugins/acts_as_list/lib/active_record/acts/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_list/lib/active_record/acts/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_list/lib/active_record/acts +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_list/lib/active_record/acts http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.547761Z +2010-08-12T15:03:26.000000Z a3ee41e8bed56868bc2e4ab2cb7df73a 2009-02-26T09:21:41.696815Z 2526
--- a/vendor/plugins/acts_as_list/test/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/975/trunk/vendor/plugins/acts_as_list/test -END -list_test.rb -K 25 -svn:wc:ra_dav:version-url -V 69 -/svn/!svn/ver/975/trunk/vendor/plugins/acts_as_list/test/list_test.rb -END
--- a/vendor/plugins/acts_as_list/test/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_list/test/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_list/test +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_list/test http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.551763Z +2010-08-12T15:03:26.000000Z 3d41debf5c631e88295d337507c3b5b6 2007-12-10T17:58:07.273873Z 975
--- a/vendor/plugins/acts_as_searchable/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/3445/trunk/vendor/plugins/acts_as_searchable -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 65 -/svn/!svn/ver/774/trunk/vendor/plugins/acts_as_searchable/init.rb -END
--- a/vendor/plugins/acts_as_searchable/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_searchable/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_searchable +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_searchable http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.551763Z +2010-08-12T15:03:26.000000Z 7512fe68c7dfbb57e956d22b9aa8f8ed 2007-09-27T17:28:22.154371Z 766
--- a/vendor/plugins/acts_as_searchable/lib/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/3445/trunk/vendor/plugins/acts_as_searchable/lib -END -acts_as_searchable.rb -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/3445/trunk/vendor/plugins/acts_as_searchable/lib/acts_as_searchable.rb -END
--- a/vendor/plugins/acts_as_searchable/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_searchable/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_searchable/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_searchable/lib http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.551763Z +2010-08-12T15:03:26.000000Z f282f30a34a9560d7ef3d5883aba5fe9 2010-02-17T20:20:51.097274Z 3445
--- a/vendor/plugins/acts_as_tree/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/2676/trunk/vendor/plugins/acts_as_tree -END -Rakefile -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/975/trunk/vendor/plugins/acts_as_tree/Rakefile -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/975/trunk/vendor/plugins/acts_as_tree/init.rb -END -README -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/975/trunk/vendor/plugins/acts_as_tree/README -END
--- a/vendor/plugins/acts_as_tree/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_tree/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_tree +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_tree http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.555763Z +2010-08-12T15:03:26.000000Z 77667cb4c41516750075eefb98896a93 2007-12-10T17:58:07.273873Z 975 @@ -69,7 +69,7 @@ -2010-09-23T14:37:45.555763Z +2010-08-12T15:03:26.000000Z 581c104f87fe90cfe9a7d1d41d77c84f 2007-12-10T17:58:07.273873Z 975 @@ -106,7 +106,7 @@ -2010-09-23T14:37:45.555763Z +2010-08-12T15:03:26.000000Z 918c85e850eb84259c178529b9aafd62 2007-12-10T17:58:07.273873Z 975
--- a/vendor/plugins/acts_as_tree/lib/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/2676/trunk/vendor/plugins/acts_as_tree/lib -END
--- a/vendor/plugins/acts_as_tree/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_tree/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_tree/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_tree/lib http://redmine.rubyforge.org/svn
--- a/vendor/plugins/acts_as_tree/lib/active_record/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 70 -/svn/!svn/ver/2676/trunk/vendor/plugins/acts_as_tree/lib/active_record -END
--- a/vendor/plugins/acts_as_tree/lib/active_record/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_tree/lib/active_record/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_tree/lib/active_record +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_tree/lib/active_record http://redmine.rubyforge.org/svn
--- a/vendor/plugins/acts_as_tree/lib/active_record/acts/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/2676/trunk/vendor/plugins/acts_as_tree/lib/active_record/acts -END -tree.rb -K 25 -svn:wc:ra_dav:version-url -V 83 -/svn/!svn/ver/2676/trunk/vendor/plugins/acts_as_tree/lib/active_record/acts/tree.rb -END
--- a/vendor/plugins/acts_as_tree/lib/active_record/acts/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_tree/lib/active_record/acts/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_tree/lib/active_record/acts +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_tree/lib/active_record/acts http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.559786Z +2010-08-12T15:03:26.000000Z 544900d884182d6888334ce14323bef0 2009-04-21T12:19:56.547537Z 2676
--- a/vendor/plugins/acts_as_tree/test/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/975/trunk/vendor/plugins/acts_as_tree/test -END -schema.rb -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/975/trunk/vendor/plugins/acts_as_tree/test/schema.rb -END -abstract_unit.rb -K 25 -svn:wc:ra_dav:version-url -V 73 -/svn/!svn/ver/975/trunk/vendor/plugins/acts_as_tree/test/abstract_unit.rb -END -database.yml -K 25 -svn:wc:ra_dav:version-url -V 69 -/svn/!svn/ver/975/trunk/vendor/plugins/acts_as_tree/test/database.yml -END -acts_as_tree_test.rb -K 25 -svn:wc:ra_dav:version-url -V 77 -/svn/!svn/ver/975/trunk/vendor/plugins/acts_as_tree/test/acts_as_tree_test.rb -END
--- a/vendor/plugins/acts_as_tree/test/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_tree/test/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_tree/test +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_tree/test http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.563764Z +2010-08-12T15:03:26.000000Z d41d8cd98f00b204e9800998ecf8427e 2007-12-10T17:58:07.273873Z 975 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.563764Z +2010-08-12T15:03:26.000000Z d41d8cd98f00b204e9800998ecf8427e 2007-12-10T17:58:07.273873Z 975 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.563764Z +2010-08-12T15:03:26.000000Z d41d8cd98f00b204e9800998ecf8427e 2007-12-10T17:58:07.273873Z 975 @@ -137,7 +137,7 @@ -2010-09-23T14:37:45.563764Z +2010-08-12T15:03:26.000000Z 7bd3d48984d0e563b9f5e20ca8fdff81 2007-12-10T17:58:07.273873Z 975
--- a/vendor/plugins/acts_as_tree/test/fixtures/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 65 -/svn/!svn/ver/975/trunk/vendor/plugins/acts_as_tree/test/fixtures -END -mixin.rb -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/975/trunk/vendor/plugins/acts_as_tree/test/fixtures/mixin.rb -END -mixins.yml -K 25 -svn:wc:ra_dav:version-url -V 76 -/svn/!svn/ver/975/trunk/vendor/plugins/acts_as_tree/test/fixtures/mixins.yml -END
--- a/vendor/plugins/acts_as_tree/test/fixtures/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_tree/test/fixtures/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_tree/test/fixtures +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_tree/test/fixtures http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.563764Z +2010-08-12T15:03:26.000000Z d41d8cd98f00b204e9800998ecf8427e 2007-12-10T17:58:07.273873Z 975 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.563764Z +2010-08-12T15:03:26.000000Z d41d8cd98f00b204e9800998ecf8427e 2007-12-10T17:58:07.273873Z 975
--- a/vendor/plugins/acts_as_versioned/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,41 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/1623/trunk/vendor/plugins/acts_as_versioned -END -RUNNING_UNIT_TESTS -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/323/trunk/vendor/plugins/acts_as_versioned/RUNNING_UNIT_TESTS -END -Rakefile -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/1623/trunk/vendor/plugins/acts_as_versioned/Rakefile -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/323/trunk/vendor/plugins/acts_as_versioned/init.rb -END -CHANGELOG -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/323/trunk/vendor/plugins/acts_as_versioned/CHANGELOG -END -MIT-LICENSE -K 25 -svn:wc:ra_dav:version-url -V 68 -/svn/!svn/ver/323/trunk/vendor/plugins/acts_as_versioned/MIT-LICENSE -END -README -K 25 -svn:wc:ra_dav:version-url -V 63 -/svn/!svn/ver/323/trunk/vendor/plugins/acts_as_versioned/README -END
--- a/vendor/plugins/acts_as_versioned/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_versioned/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_versioned +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_versioned http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.567763Z +2010-08-12T15:03:26.000000Z 8aae554c93cc60ef98cb3da2dd7c1b4b 2007-03-04T13:40:21.895320Z 290 @@ -69,7 +69,7 @@ -2010-09-23T14:37:45.567763Z +2010-08-12T15:03:26.000000Z 1f57ce7fac2d625797b9ec6d6480cf5b 2008-07-04T17:58:14.743502Z 1623 @@ -103,7 +103,7 @@ -2010-09-23T14:37:45.567763Z +2010-08-12T15:03:26.000000Z 1d117218f55938f9c75f1f814a4915d1 2007-03-04T13:40:21.895320Z 290 @@ -140,7 +140,7 @@ -2010-09-23T14:37:45.567763Z +2010-08-12T15:03:26.000000Z 3aa6f483cf322e248d4a1281160f8845 2007-03-04T13:40:21.895320Z 290 @@ -174,7 +174,7 @@ -2010-09-23T14:37:45.567763Z +2010-08-12T15:03:26.000000Z e4ba7226e637685b5cca7a9cc5c05af2 2007-03-04T13:40:21.895320Z 290 @@ -208,7 +208,7 @@ -2010-09-23T14:37:45.567763Z +2010-08-12T15:03:26.000000Z 06ee73d1b4ad386b681f88b9326a0685 2007-03-04T13:40:21.895320Z 290
--- a/vendor/plugins/acts_as_versioned/lib/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 61 -/svn/!svn/ver/1623/trunk/vendor/plugins/acts_as_versioned/lib -END -acts_as_versioned.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/1623/trunk/vendor/plugins/acts_as_versioned/lib/acts_as_versioned.rb -END
--- a/vendor/plugins/acts_as_versioned/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_versioned/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_versioned/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_versioned/lib http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.571763Z +2010-08-12T15:03:26.000000Z 474fc02132fce15712540924bb7b22cf 2008-07-04T17:58:14.743502Z 1623
--- a/vendor/plugins/acts_as_versioned/test/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/1623/trunk/vendor/plugins/acts_as_versioned/test -END -versioned_test.rb -K 25 -svn:wc:ra_dav:version-url -V 80 -/svn/!svn/ver/1623/trunk/vendor/plugins/acts_as_versioned/test/versioned_test.rb -END -schema.rb -K 25 -svn:wc:ra_dav:version-url -V 71 -/svn/!svn/ver/323/trunk/vendor/plugins/acts_as_versioned/test/schema.rb -END -abstract_unit.rb -K 25 -svn:wc:ra_dav:version-url -V 79 -/svn/!svn/ver/1623/trunk/vendor/plugins/acts_as_versioned/test/abstract_unit.rb -END -database.yml -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/323/trunk/vendor/plugins/acts_as_versioned/test/database.yml -END -migration_test.rb -K 25 -svn:wc:ra_dav:version-url -V 80 -/svn/!svn/ver/1623/trunk/vendor/plugins/acts_as_versioned/test/migration_test.rb -END
--- a/vendor/plugins/acts_as_versioned/test/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_versioned/test/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_versioned/test +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_versioned/test http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.579760Z +2010-08-12T15:03:26.000000Z 8a2eaa42c29dc84e0c018e78c99987f1 2008-07-04T17:58:14.743502Z 1623 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.579760Z +2010-08-12T15:03:26.000000Z df4118ed0edd4b3a0bae0cbb3b7a8a6b 2007-03-04T13:40:21.895320Z 290 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.571763Z +2010-08-12T15:03:26.000000Z 99f5a4aa22b79a8f8c7521a0b1e9ec3e 2008-07-04T17:58:14.743502Z 1623 @@ -134,7 +134,7 @@ -2010-09-23T14:37:45.571763Z +2010-08-12T15:03:26.000000Z c5ac373bf98e48576df3a63ab4349883 2007-03-04T13:40:21.895320Z 290 @@ -171,7 +171,7 @@ -2010-09-23T14:37:45.579760Z +2010-08-12T15:03:26.000000Z eb28101ab94f672b3a99998fc03f0d38 2008-07-04T17:58:14.743502Z 1623
--- a/vendor/plugins/acts_as_versioned/test/fixtures/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,65 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 71 -/svn/!svn/ver/1623/trunk/vendor/plugins/acts_as_versioned/test/fixtures -END -pages.yml -K 25 -svn:wc:ra_dav:version-url -V 80 -/svn/!svn/ver/323/trunk/vendor/plugins/acts_as_versioned/test/fixtures/pages.yml -END -locked_pages.yml -K 25 -svn:wc:ra_dav:version-url -V 87 -/svn/!svn/ver/323/trunk/vendor/plugins/acts_as_versioned/test/fixtures/locked_pages.yml -END -landmark_versions.yml -K 25 -svn:wc:ra_dav:version-url -V 92 -/svn/!svn/ver/323/trunk/vendor/plugins/acts_as_versioned/test/fixtures/landmark_versions.yml -END -locked_pages_revisions.yml -K 25 -svn:wc:ra_dav:version-url -V 97 -/svn/!svn/ver/323/trunk/vendor/plugins/acts_as_versioned/test/fixtures/locked_pages_revisions.yml -END -page_versions.yml -K 25 -svn:wc:ra_dav:version-url -V 88 -/svn/!svn/ver/323/trunk/vendor/plugins/acts_as_versioned/test/fixtures/page_versions.yml -END -authors.yml -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/323/trunk/vendor/plugins/acts_as_versioned/test/fixtures/authors.yml -END -widget.rb -K 25 -svn:wc:ra_dav:version-url -V 81 -/svn/!svn/ver/1623/trunk/vendor/plugins/acts_as_versioned/test/fixtures/widget.rb -END -landmark.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/323/trunk/vendor/plugins/acts_as_versioned/test/fixtures/landmark.rb -END -landmarks.yml -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/323/trunk/vendor/plugins/acts_as_versioned/test/fixtures/landmarks.yml -END -page.rb -K 25 -svn:wc:ra_dav:version-url -V 78 -/svn/!svn/ver/323/trunk/vendor/plugins/acts_as_versioned/test/fixtures/page.rb -END
--- a/vendor/plugins/acts_as_versioned/test/fixtures/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_versioned/test/fixtures/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_versioned/test/fixtures +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_versioned/test/fixtures http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.579760Z +2010-08-12T15:03:26.000000Z 6052582a74186e97a71e6d50ff1c3558 2007-03-04T13:40:21.895320Z 290 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.575760Z +2010-08-12T15:03:26.000000Z 35aca448cc30c958ad2f3a8130903701 2007-03-04T13:40:21.895320Z 290 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.575760Z +2010-08-12T15:03:26.000000Z df240cb0129f29834aea167ea97df5c9 2007-03-04T13:40:21.895320Z 290 @@ -134,7 +134,7 @@ -2010-09-23T14:37:45.575760Z +2010-08-12T15:03:26.000000Z 3e63e88f04d92531412a5e328670313d 2007-03-04T13:40:21.895320Z 290 @@ -168,7 +168,7 @@ -2010-09-23T14:37:45.579760Z +2010-08-12T15:03:26.000000Z 9e0c65a239dc63caf3ba5b61e5acd86b 2007-03-04T13:40:21.895320Z 290 @@ -202,7 +202,7 @@ -2010-09-23T14:37:45.575760Z +2010-08-12T15:03:26.000000Z c9631a233cff08e617f783f2c5d4ebcb 2007-03-04T13:40:21.895320Z 290 @@ -236,7 +236,7 @@ -2010-09-23T14:37:45.579760Z +2010-08-12T15:03:26.000000Z 6cbb9a0d4b22160edce9cdd270943fcd 2008-07-04T17:58:14.743502Z 1623 @@ -270,7 +270,7 @@ -2010-09-23T14:37:45.575760Z +2010-08-12T15:03:26.000000Z 7845068722476900746d101729c30187 2007-03-04T13:40:21.895320Z 290 @@ -307,7 +307,7 @@ -2010-09-23T14:37:45.575760Z +2010-08-12T15:03:26.000000Z ebfb47357586fa12e4524a65ba0a714a 2007-03-04T13:40:21.895320Z 290 @@ -341,7 +341,7 @@ -2010-09-23T14:37:45.579760Z +2010-08-12T15:03:26.000000Z a93535c95869678b16df898b8de4259f 2007-03-04T13:40:21.895320Z 290
--- a/vendor/plugins/acts_as_versioned/test/fixtures/migrations/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 81 -/svn/!svn/ver/323/trunk/vendor/plugins/acts_as_versioned/test/fixtures/migrations -END -1_add_versioned_tables.rb -K 25 -svn:wc:ra_dav:version-url -V 107 -/svn/!svn/ver/323/trunk/vendor/plugins/acts_as_versioned/test/fixtures/migrations/1_add_versioned_tables.rb -END
--- a/vendor/plugins/acts_as_versioned/test/fixtures/migrations/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_versioned/test/fixtures/migrations/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_versioned/test/fixtures/migrations +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_versioned/test/fixtures/migrations http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.579760Z +2010-08-12T15:03:26.000000Z 8fca6192aeeba1c8456bd6ac6199839f 2007-03-04T13:40:21.895320Z 290
--- a/vendor/plugins/acts_as_watchable/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/3803/trunk/vendor/plugins/acts_as_watchable -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/774/trunk/vendor/plugins/acts_as_watchable/init.rb -END
--- a/vendor/plugins/acts_as_watchable/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_watchable/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_watchable +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_watchable http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.583759Z +2010-08-12T15:03:26.000000Z 7051267daa625f991f2b604afde255ff 2007-04-21T12:08:31.130506Z 453
--- a/vendor/plugins/acts_as_watchable/lib/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 61 -/svn/!svn/ver/3803/trunk/vendor/plugins/acts_as_watchable/lib -END -acts_as_watchable.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3803/trunk/vendor/plugins/acts_as_watchable/lib/acts_as_watchable.rb -END
--- a/vendor/plugins/acts_as_watchable/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/acts_as_watchable/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/acts_as_watchable/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/acts_as_watchable/lib http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.583759Z +2010-08-12T15:03:26.000000Z 30f73616865f02dadce09f9511269b70 2010-06-20T18:41:30.111362Z 3803
--- a/vendor/plugins/awesome_nested_set/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/4406/trunk/vendor/plugins/awesome_nested_set -END -awesome_nested_set.gemspec -K 25 -svn:wc:ra_dav:version-url -V 85 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/awesome_nested_set.gemspec -END -Rakefile -K 25 -svn:wc:ra_dav:version-url -V 67 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/Rakefile -END -README.rdoc -K 25 -svn:wc:ra_dav:version-url -V 70 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/README.rdoc -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/init.rb -END -MIT-LICENSE -K 25 -svn:wc:ra_dav:version-url -V 70 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/MIT-LICENSE -END
--- a/vendor/plugins/awesome_nested_set/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/awesome_nested_set/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/awesome_nested_set +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/awesome_nested_set http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.587807Z +2010-08-12T15:03:26.000000Z c1f9a7c7c81a0c9150d260757c895ab3 2008-12-20T12:22:38.158335Z 2149 @@ -69,7 +69,7 @@ -2010-09-23T14:37:45.587807Z +2010-08-12T15:03:26.000000Z 75ea4a8e8109afdbce9214ac3e9aa40a 2008-12-20T12:22:38.158335Z 2149 @@ -103,7 +103,7 @@ -2010-09-23T14:37:45.587807Z +2010-08-12T15:03:26.000000Z 5d897290320b00753c366c59f40b213e 2008-12-20T12:22:38.158335Z 2149 @@ -137,7 +137,7 @@ -2010-09-23T14:37:45.587807Z +2010-08-12T15:03:26.000000Z af5f1806895c92bb03e8855a96d13a64 2008-12-20T12:22:38.158335Z 2149 @@ -174,7 +174,7 @@ -2010-09-23T14:37:45.587807Z +2010-08-12T15:03:26.000000Z ba826ae68593d063b726b4e66dcb1e8f 2008-12-20T12:22:38.158335Z 2149
--- a/vendor/plugins/awesome_nested_set/lib/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/4406/trunk/vendor/plugins/awesome_nested_set/lib -END -awesome_nested_set.rb -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/4406/trunk/vendor/plugins/awesome_nested_set/lib/awesome_nested_set.rb -END
--- a/vendor/plugins/awesome_nested_set/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/awesome_nested_set/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/awesome_nested_set/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/awesome_nested_set/lib http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-11-19T13:04:50.944921Z +2010-11-30T13:11:54.000000Z e8fd989882fd3a10519da66c2a73e982 2010-11-14T16:24:21.989522Z 4406
--- a/vendor/plugins/awesome_nested_set/lib/awesome_nested_set/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 81 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/lib/awesome_nested_set -END -named_scope.rb -K 25 -svn:wc:ra_dav:version-url -V 96 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/lib/awesome_nested_set/named_scope.rb -END -helper.rb -K 25 -svn:wc:ra_dav:version-url -V 91 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/lib/awesome_nested_set/helper.rb -END -compatability.rb -K 25 -svn:wc:ra_dav:version-url -V 98 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/lib/awesome_nested_set/compatability.rb -END
--- a/vendor/plugins/awesome_nested_set/lib/awesome_nested_set/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/awesome_nested_set/lib/awesome_nested_set/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/awesome_nested_set/lib/awesome_nested_set +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/awesome_nested_set/lib/awesome_nested_set http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.591804Z +2010-08-12T15:03:26.000000Z d15393e7ec4757df0e53641d9a8d76f4 2008-12-20T12:22:38.158335Z 2149 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.591804Z +2010-08-12T15:03:26.000000Z d4a9622144313fa6b56117a6c1f11e61 2008-12-20T12:22:38.158335Z 2149 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.591804Z +2010-08-12T15:03:26.000000Z cebe8bf25e6f479251be38c80a246574 2008-12-20T12:22:38.158335Z 2149
--- a/vendor/plugins/awesome_nested_set/rails/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/rails -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/rails/init.rb -END
--- a/vendor/plugins/awesome_nested_set/rails/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/awesome_nested_set/rails/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/awesome_nested_set/rails +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/awesome_nested_set/rails http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.595761Z +2010-08-12T15:03:26.000000Z d5995cbfa2abdc12b57c44d69dc0085b 2008-12-20T12:22:38.158335Z 2149
--- a/vendor/plugins/awesome_nested_set/test/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 63 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/test -END -test_helper.rb -K 25 -svn:wc:ra_dav:version-url -V 78 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/test/test_helper.rb -END -awesome_nested_set_test.rb -K 25 -svn:wc:ra_dav:version-url -V 90 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/test/awesome_nested_set_test.rb -END
--- a/vendor/plugins/awesome_nested_set/test/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/awesome_nested_set/test/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/awesome_nested_set/test +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/awesome_nested_set/test http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.603759Z +2010-08-12T15:03:26.000000Z 41b65aff686211d45ba085c1b0791218 2008-12-20T12:22:38.158335Z 2149 @@ -75,7 +75,7 @@ -2010-09-23T14:37:45.599759Z +2010-08-12T15:03:26.000000Z d177339aefb3c4a8f280efff48c974b6 2008-12-20T12:22:38.158335Z 2149
--- a/vendor/plugins/awesome_nested_set/test/awesome_nested_set/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/test/awesome_nested_set -END -helper_test.rb -K 25 -svn:wc:ra_dav:version-url -V 97 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/test/awesome_nested_set/helper_test.rb -END
--- a/vendor/plugins/awesome_nested_set/test/awesome_nested_set/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/awesome_nested_set/test/awesome_nested_set/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/awesome_nested_set/test/awesome_nested_set +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/awesome_nested_set/test/awesome_nested_set http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.595761Z +2010-08-12T15:03:26.000000Z 03a414e3247544a5a2334aed005764f3 2008-12-20T12:22:38.158335Z 2149
--- a/vendor/plugins/awesome_nested_set/test/db/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/test/db -END -schema.rb -K 25 -svn:wc:ra_dav:version-url -V 76 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/test/db/schema.rb -END -database.yml -K 25 -svn:wc:ra_dav:version-url -V 79 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/test/db/database.yml -END
--- a/vendor/plugins/awesome_nested_set/test/db/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/awesome_nested_set/test/db/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/awesome_nested_set/test/db +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/awesome_nested_set/test/db http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.599759Z +2010-08-12T15:03:26.000000Z ae23aecda935bb66e29aa4f02ea9de0a 2008-12-20T12:22:38.158335Z 2149 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.599759Z +2010-08-12T15:03:26.000000Z 359889e11314c2969bdf7e37475bdc62 2008-12-20T12:22:38.158335Z 2149
--- a/vendor/plugins/awesome_nested_set/test/fixtures/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/test/fixtures -END -category.rb -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/test/fixtures/category.rb -END -categories.yml -K 25 -svn:wc:ra_dav:version-url -V 87 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/test/fixtures/categories.yml -END -departments.yml -K 25 -svn:wc:ra_dav:version-url -V 88 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/test/fixtures/departments.yml -END -notes.yml -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/2304/trunk/vendor/plugins/awesome_nested_set/test/fixtures/notes.yml -END
--- a/vendor/plugins/awesome_nested_set/test/fixtures/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/awesome_nested_set/test/fixtures/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/awesome_nested_set/test/fixtures +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/awesome_nested_set/test/fixtures http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.603759Z +2010-08-12T15:03:26.000000Z 460e90d6f219f339e8e4c64aaae0063c 2008-12-20T12:22:38.158335Z 2149 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.599759Z +2010-08-12T15:03:26.000000Z 4b6a06e11c21a3aadd09e60dee443110 2008-12-20T12:22:38.158335Z 2149 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.603759Z +2010-08-12T15:03:26.000000Z e4eb5dbc7f2a2aa2fee79dba9210e769 2008-12-20T12:22:38.158335Z 2149 @@ -134,7 +134,7 @@ -2010-09-23T14:37:45.603759Z +2010-08-12T15:03:26.000000Z e8b507fd94ed89b9997c3f9f137290cf 2008-12-20T12:22:38.158335Z 2149
--- a/vendor/plugins/classic_pagination/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/2134/trunk/vendor/plugins/classic_pagination -END -Rakefile -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/Rakefile -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 65 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/init.rb -END -CHANGELOG -K 25 -svn:wc:ra_dav:version-url -V 67 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/CHANGELOG -END -install.rb -K 25 -svn:wc:ra_dav:version-url -V 68 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/install.rb -END -README -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/README -END
--- a/vendor/plugins/classic_pagination/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/classic_pagination/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/classic_pagination +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/classic_pagination http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.607804Z +2010-08-12T15:03:26.000000Z b14424b71d2f606a775061237c8226f1 2007-12-10T17:58:07.273873Z 975 @@ -69,7 +69,7 @@ -2010-09-23T14:37:45.607804Z +2010-08-12T15:03:26.000000Z 181539722e198d92992a94f40310f4fc 2007-12-10T17:58:07.273873Z 975 @@ -106,7 +106,7 @@ -2010-09-23T14:37:45.607804Z +2010-08-12T15:03:26.000000Z 3ef206f381b42341342908fcc0001210 2007-12-09T21:53:46.068689Z 966 @@ -140,7 +140,7 @@ -2010-09-23T14:37:45.607804Z +2010-08-12T15:03:26.000000Z 1c88d6bc27aa809cd6ef26543c18b1e6 2007-12-10T17:58:07.273873Z 975 @@ -174,7 +174,7 @@ -2010-09-23T14:37:45.607804Z +2010-08-12T15:03:26.000000Z f1df690ff1ea0da74f8fe161f50722ad 2007-12-10T17:58:07.273873Z 975
--- a/vendor/plugins/classic_pagination/lib/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/2134/trunk/vendor/plugins/classic_pagination/lib -END -pagination_helper.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/lib/pagination_helper.rb -END -pagination.rb -K 25 -svn:wc:ra_dav:version-url -V 76 -/svn/!svn/ver/2134/trunk/vendor/plugins/classic_pagination/lib/pagination.rb -END
--- a/vendor/plugins/classic_pagination/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/classic_pagination/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/classic_pagination/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/classic_pagination/lib http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.607804Z +2010-08-12T15:03:26.000000Z 535b7515c14fb3964e97be32c2d36415 2007-12-10T17:58:07.273873Z 975 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.607804Z +2010-08-12T15:03:26.000000Z d770c57066726c423cc9de4ca5b552cd 2008-12-14T15:36:59.418123Z 2134
--- a/vendor/plugins/classic_pagination/test/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/test -END -helper.rb -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/test/helper.rb -END -pagination_helper_test.rb -K 25 -svn:wc:ra_dav:version-url -V 88 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/test/pagination_helper_test.rb -END -pagination_test.rb -K 25 -svn:wc:ra_dav:version-url -V 81 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/test/pagination_test.rb -END
--- a/vendor/plugins/classic_pagination/test/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/classic_pagination/test/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/classic_pagination/test +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/classic_pagination/test http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.623761Z +2010-08-12T15:03:26.000000Z 50c7fabeb3d6728ce24eada59d5b2b67 2007-12-10T17:58:07.273873Z 975 @@ -69,7 +69,7 @@ -2010-09-23T14:37:45.623761Z +2010-08-12T15:03:26.000000Z 0a02d28a37b53a8e19af7935db5be1a8 2007-12-10T17:58:07.273873Z 975 @@ -103,7 +103,7 @@ -2010-09-23T14:37:45.623761Z +2010-08-12T15:03:26.000000Z 597b7501984a5ecd10242163d06c33e7 2007-12-10T17:58:07.273873Z 975
--- a/vendor/plugins/classic_pagination/test/fixtures/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,77 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 71 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/test/fixtures -END -topic.rb -K 25 -svn:wc:ra_dav:version-url -V 80 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/test/fixtures/topic.rb -END -developers_projects.yml -K 25 -svn:wc:ra_dav:version-url -V 95 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/test/fixtures/developers_projects.yml -END -topics.yml -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/test/fixtures/topics.yml -END -replies.yml -K 25 -svn:wc:ra_dav:version-url -V 83 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/test/fixtures/replies.yml -END -developer.rb -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/test/fixtures/developer.rb -END -company.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/test/fixtures/company.rb -END -developers.yml -K 25 -svn:wc:ra_dav:version-url -V 86 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/test/fixtures/developers.yml -END -project.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/test/fixtures/project.rb -END -projects.yml -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/test/fixtures/projects.yml -END -reply.rb -K 25 -svn:wc:ra_dav:version-url -V 80 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/test/fixtures/reply.rb -END -companies.yml -K 25 -svn:wc:ra_dav:version-url -V 85 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/test/fixtures/companies.yml -END -schema.sql -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/975/trunk/vendor/plugins/classic_pagination/test/fixtures/schema.sql -END
--- a/vendor/plugins/classic_pagination/test/fixtures/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/classic_pagination/test/fixtures/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/classic_pagination/test/fixtures +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/classic_pagination/test/fixtures http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.619761Z +2010-08-12T15:03:26.000000Z 4e923be7fd534a67635192bcfcbed5cf 2007-12-10T17:58:07.273873Z 975 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.619761Z +2010-08-12T15:03:26.000000Z 021192cd31a5c3a39cbe7bd14144425a 2007-12-10T17:58:07.273873Z 975 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.619761Z +2010-08-12T15:03:26.000000Z 5953f128689c82c1d5c9ab2709a682e4 2007-12-10T17:58:07.273873Z 975 @@ -134,7 +134,7 @@ -2010-09-23T14:37:45.619761Z +2010-08-12T15:03:26.000000Z cc2715c9793cffccefbac86e97dd5a08 2007-12-10T17:58:07.273873Z 975 @@ -168,7 +168,7 @@ -2010-09-23T14:37:45.619761Z +2010-08-12T15:03:26.000000Z 92e8d8a3cd6b419bdabbafc91be07b13 2007-12-10T17:58:07.273873Z 975 @@ -202,7 +202,7 @@ -2010-09-23T14:37:45.619761Z +2010-08-12T15:03:26.000000Z 182661632986d51f75c49d74b19df40c 2007-12-10T17:58:07.273873Z 975 @@ -236,7 +236,7 @@ -2010-09-23T14:37:45.619761Z +2010-08-12T15:03:26.000000Z f1bf372057211d4a6d86499e561d903c 2007-12-10T17:58:07.273873Z 975 @@ -270,7 +270,7 @@ -2010-09-23T14:37:45.619761Z +2010-08-12T15:03:26.000000Z 98f978d0e16223524ee8dc769136a3c4 2007-12-10T17:58:07.273873Z 975 @@ -304,7 +304,7 @@ -2010-09-23T14:37:45.619761Z +2010-08-12T15:03:26.000000Z 3605b2a8f1cf10cbc34343bd7c49330d 2007-12-10T17:58:07.273873Z 975 @@ -338,7 +338,7 @@ -2010-09-23T14:37:45.619761Z +2010-08-12T15:03:26.000000Z dccebb95780c20b896fe26306d904e9d 2007-12-10T17:58:07.273873Z 975 @@ -372,7 +372,7 @@ -2010-09-23T14:37:45.619761Z +2010-08-12T15:03:26.000000Z 318c27008dc35148da64e32ff9bf53c7 2007-12-10T17:58:07.273873Z 975 @@ -406,7 +406,7 @@ -2010-09-23T14:37:45.619761Z +2010-08-12T15:03:26.000000Z 78b664b5dbb72751888e7f6bf4cd12f8 2007-12-09T21:53:46.068689Z 966
--- a/vendor/plugins/coderay-0.9.2/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 53 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2 -END -LICENSE -K 25 -svn:wc:ra_dav:version-url -V 61 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/LICENSE -END
--- a/vendor/plugins/coderay-0.9.2/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/coderay-0.9.2/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/coderay-0.9.2 +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/coderay-0.9.2 http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.623761Z +2010-08-12T15:03:26.000000Z 071d975e884a936b40eab0b865ea4da1 2010-03-16T20:29:12.319937Z 3592
--- a/vendor/plugins/coderay-0.9.2/lib/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib -END -coderay.rb -K 25 -svn:wc:ra_dav:version-url -V 68 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay.rb -END -README -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/README -END
--- a/vendor/plugins/coderay-0.9.2/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/coderay-0.9.2/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/coderay-0.9.2/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/coderay-0.9.2/lib http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.627760Z +2010-08-12T15:03:27.000000Z c736c3ed620d59c1c6799d6fa340b0af 2010-03-16T20:29:12.319937Z 3592 @@ -69,7 +69,7 @@ -2010-09-23T14:37:45.627760Z +2010-08-12T15:03:27.000000Z 0d50df22acd760dc1905c7ef55e509e6 2010-03-16T20:29:12.319937Z 3592
--- a/vendor/plugins/coderay-0.9.2/lib/coderay/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,47 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 65 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay -END -token_classes.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/token_classes.rb -END -encoder.rb -K 25 -svn:wc:ra_dav:version-url -V 76 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoder.rb -END -style.rb -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/style.rb -END -tokens.rb -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/tokens.rb -END -duo.rb -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/duo.rb -END -scanner.rb -K 25 -svn:wc:ra_dav:version-url -V 76 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanner.rb -END -for_redcloth.rb -K 25 -svn:wc:ra_dav:version-url -V 81 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/for_redcloth.rb -END
--- a/vendor/plugins/coderay-0.9.2/lib/coderay/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/coderay-0.9.2/lib/coderay/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/coderay-0.9.2/lib/coderay +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/coderay-0.9.2/lib/coderay http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.683786Z +2010-08-12T15:03:27.000000Z 4f17211f3874899049db6111ef282a3b 2010-03-16T20:29:12.319937Z 3592 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.631818Z +2010-08-12T15:03:27.000000Z f0ead48eaa86c8b4d6a5587e9b5450ca 2010-03-16T20:29:12.319937Z 3592 @@ -106,7 +106,7 @@ -2010-09-23T14:37:45.679790Z +2010-08-12T15:03:27.000000Z 409fa492a5470a8bed5ae969f270decf 2010-03-16T20:29:12.319937Z 3592 @@ -143,7 +143,7 @@ -2010-09-23T14:37:45.683786Z +2010-08-12T15:03:27.000000Z b7662592ff38046174f935548f579ce4 2010-03-16T20:29:12.319937Z 3592 @@ -177,7 +177,7 @@ -2010-09-23T14:37:45.631818Z +2010-08-12T15:03:27.000000Z b33e5b83e354c09655f46d37ae662f64 2010-03-16T20:29:12.319937Z 3592 @@ -211,7 +211,7 @@ -2010-09-23T14:37:45.655760Z +2010-08-12T15:03:27.000000Z f75f38c93ee8de3e6df1c08773b62319 2010-03-16T20:29:12.319937Z 3592 @@ -248,7 +248,7 @@ -2010-09-23T14:37:45.651759Z +2010-08-12T15:03:27.000000Z d216c2f1c7a84a23ce3feff0b1358d60 2010-03-16T20:29:12.319937Z 3592
--- a/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,113 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders -END -div.rb -K 25 -svn:wc:ra_dav:version-url -V 81 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/div.rb -END -text.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/text.rb -END -filter.rb -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/filter.rb -END -debug.rb -K 25 -svn:wc:ra_dav:version-url -V 83 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/debug.rb -END -lines_of_code.rb -K 25 -svn:wc:ra_dav:version-url -V 91 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/lines_of_code.rb -END -count.rb -K 25 -svn:wc:ra_dav:version-url -V 83 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/count.rb -END -xml.rb -K 25 -svn:wc:ra_dav:version-url -V 81 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/xml.rb -END -span.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/span.rb -END -yaml.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/yaml.rb -END -html.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/html.rb -END -term.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/term.rb -END -statistic.rb -K 25 -svn:wc:ra_dav:version-url -V 87 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/statistic.rb -END -comment_filter.rb -K 25 -svn:wc:ra_dav:version-url -V 92 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/comment_filter.rb -END -json.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/json.rb -END -token_class_filter.rb -K 25 -svn:wc:ra_dav:version-url -V 96 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/token_class_filter.rb -END -null.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/null.rb -END -page.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/page.rb -END -_map.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/_map.rb -END
--- a/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/html/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 79 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/html -END -output.rb -K 25 -svn:wc:ra_dav:version-url -V 89 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/html/output.rb -END -numerization.rb -K 25 -svn:wc:ra_dav:version-url -V 95 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/html/numerization.rb -END -css.rb -K 25 -svn:wc:ra_dav:version-url -V 86 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/html/css.rb -END
--- a/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/html/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/html/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/html +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/coderay-0.9.2/lib/coderay/encoders/html http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.647759Z +2010-08-12T15:03:27.000000Z 8d0cea50dc9e6743bd10a8e0c6f1db17 2010-03-16T20:29:12.319937Z 3592 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.647759Z +2010-08-12T15:03:27.000000Z 6f9a2f0d033d9af4d4804ecd8751a3f7 2010-03-16T20:29:12.319937Z 3592 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.647759Z +2010-08-12T15:03:27.000000Z aa931c09ed5f16abfed3b7c99f0f684d 2010-03-16T20:29:12.319937Z 3592
--- a/vendor/plugins/coderay-0.9.2/lib/coderay/helpers/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 73 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/helpers -END -plugin.rb -K 25 -svn:wc:ra_dav:version-url -V 83 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/helpers/plugin.rb -END -file_type.rb -K 25 -svn:wc:ra_dav:version-url -V 86 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/helpers/file_type.rb -END -gzip_simple.rb -K 25 -svn:wc:ra_dav:version-url -V 88 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/helpers/gzip_simple.rb -END -word_list.rb -K 25 -svn:wc:ra_dav:version-url -V 86 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/helpers/word_list.rb -END
--- a/vendor/plugins/coderay-0.9.2/lib/coderay/helpers/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/coderay-0.9.2/lib/coderay/helpers/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/helpers +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/coderay-0.9.2/lib/coderay/helpers http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.655760Z +2010-08-12T15:03:27.000000Z a8ef4aea22392cc4012ee679fc1d15ba 2010-03-16T20:29:12.319937Z 3592 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.655760Z +2010-08-12T15:03:27.000000Z 107e3d46dc60830e87b1a4ce4d467ce8 2010-03-16T20:29:12.319937Z 3592 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.655760Z +2010-08-12T15:03:27.000000Z ffacc98651f60a6fe698427bbc3c3c86 2010-03-16T20:29:12.319937Z 3592 @@ -134,7 +134,7 @@ -2010-09-23T14:37:45.655760Z +2010-08-12T15:03:27.000000Z 86d05af27cbe342789f28ed543956aa5 2010-03-16T20:29:12.319937Z 3592
--- a/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,137 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners -END -java.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/java.rb -END -python.rb -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/python.rb -END -ruby.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/ruby.rb -END -cpp.rb -K 25 -svn:wc:ra_dav:version-url -V 81 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/cpp.rb -END -c.rb -K 25 -svn:wc:ra_dav:version-url -V 79 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/c.rb -END -groovy.rb -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/groovy.rb -END -debug.rb -K 25 -svn:wc:ra_dav:version-url -V 83 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/debug.rb -END -rhtml.rb -K 25 -svn:wc:ra_dav:version-url -V 83 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/rhtml.rb -END -php.rb -K 25 -svn:wc:ra_dav:version-url -V 81 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/php.rb -END -css.rb -K 25 -svn:wc:ra_dav:version-url -V 81 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/css.rb -END -sql.rb -K 25 -svn:wc:ra_dav:version-url -V 81 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/sql.rb -END -xml.rb -K 25 -svn:wc:ra_dav:version-url -V 81 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/xml.rb -END -yaml.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/yaml.rb -END -scheme.rb -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/scheme.rb -END -html.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/html.rb -END -java_script.rb -K 25 -svn:wc:ra_dav:version-url -V 89 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/java_script.rb -END -delphi.rb -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/delphi.rb -END -nitro_xhtml.rb -K 25 -svn:wc:ra_dav:version-url -V 89 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/nitro_xhtml.rb -END -plaintext.rb -K 25 -svn:wc:ra_dav:version-url -V 87 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/plaintext.rb -END -diff.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/diff.rb -END -json.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/json.rb -END -_map.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/_map.rb -END
--- a/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/java/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 79 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/java -END -builtin_types.rb -K 25 -svn:wc:ra_dav:version-url -V 96 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/java/builtin_types.rb -END
--- a/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/java/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/java/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/java +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/java http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.675761Z +2010-08-12T15:03:27.000000Z 2522414597cbbef27fad175c20c8a556 2010-03-16T20:29:12.319937Z 3592
--- a/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/ruby/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 79 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/ruby -END -patterns.rb -K 25 -svn:wc:ra_dav:version-url -V 91 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/ruby/patterns.rb -END
--- a/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/ruby/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/ruby/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/ruby +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/coderay-0.9.2/lib/coderay/scanners/ruby http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.679790Z +2010-08-12T15:03:27.000000Z ae0aca82c4390ffcc5757c97c71bc8f3 2010-03-16T20:29:12.319937Z 3592
--- a/vendor/plugins/coderay-0.9.2/lib/coderay/styles/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/styles -END -cycnus.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/styles/cycnus.rb -END -murphy.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/styles/murphy.rb -END -_map.rb -K 25 -svn:wc:ra_dav:version-url -V 80 -/svn/!svn/ver/3592/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/styles/_map.rb -END
--- a/vendor/plugins/coderay-0.9.2/lib/coderay/styles/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/coderay-0.9.2/lib/coderay/styles/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/coderay-0.9.2/lib/coderay/styles +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/coderay-0.9.2/lib/coderay/styles http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.683786Z +2010-08-12T15:03:27.000000Z e8d4af106543cf30dcc95fd942044e63 2010-03-16T20:29:12.319937Z 3592 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.683786Z +2010-08-12T15:03:27.000000Z 7c7e3c4f8f845a59359649b3221689a7 2010-03-16T20:29:12.319937Z 3592 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.683786Z +2010-08-12T15:03:27.000000Z 9b92a72b99db4496e76665edb7b38c00 2010-03-16T20:29:12.319937Z 3592
--- a/vendor/plugins/engines/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,53 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 47 -/svn/!svn/ver/4406/trunk/vendor/plugins/engines -END -Rakefile -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/Rakefile -END -.gitignore -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/1654/trunk/vendor/plugins/engines/.gitignore -END -boot.rb -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/2904/trunk/vendor/plugins/engines/boot.rb -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 55 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/init.rb -END -CHANGELOG -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/2493/trunk/vendor/plugins/engines/CHANGELOG -END -MIT-LICENSE -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/1654/trunk/vendor/plugins/engines/MIT-LICENSE -END -about.yml -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/about.yml -END -README -K 25 -svn:wc:ra_dav:version-url -V 54 -/svn/!svn/ver/1654/trunk/vendor/plugins/engines/README -END
--- a/vendor/plugins/engines/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.687760Z +2010-08-12T15:03:27.000000Z b8328004b1bb94c84d90c0839cd7d41d 2009-09-13T17:14:35.707881Z 2887 @@ -72,7 +72,7 @@ -2010-09-23T14:37:45.683786Z +2010-08-12T15:03:27.000000Z a523ea1465a566ae38fba96a99506ff3 2008-07-12T10:17:14.809831Z 1654 @@ -106,7 +106,7 @@ -2010-09-23T14:37:45.691758Z +2010-08-12T15:03:27.000000Z f653a768811758cee11e21d4de00b381 2009-10-07T16:43:50.656336Z 2904 @@ -140,7 +140,7 @@ -2010-09-23T14:37:45.695759Z +2010-08-12T15:03:27.000000Z e4f81ba26f0b10a838b3336ba263aaa5 2009-09-13T17:14:35.707881Z 2887 @@ -177,7 +177,7 @@ -2010-09-23T14:37:45.687760Z +2010-08-12T15:03:27.000000Z 41bb5eeb2864cd46438eefb1cb048c4d 2009-02-21T11:04:50.579477Z 2493 @@ -214,7 +214,7 @@ -2010-09-23T14:37:45.687760Z +2010-08-12T15:03:27.000000Z 6e112fd6d07885bef3fd5bd537fc1409 2008-07-12T10:17:14.809831Z 1654 @@ -248,7 +248,7 @@ -2010-09-23T14:37:45.691758Z +2010-08-12T15:03:27.000000Z 18cc761cb69b7735ecf0cdb0d9b6d640 2009-09-13T17:14:35.707881Z 2887 @@ -282,7 +282,7 @@ -2010-09-23T14:37:45.687760Z +2010-08-12T15:03:27.000000Z 7e25f2cbded59c24735a20510040bb74 2008-07-12T10:17:14.809831Z 1654
--- a/vendor/plugins/engines/generators/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/4406/trunk/vendor/plugins/engines/generators -END
--- a/vendor/plugins/engines/generators/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/generators/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/generators +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/generators http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/generators/plugin_migration/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/4406/trunk/vendor/plugins/engines/generators/plugin_migration -END -plugin_migration_generator.rb -K 25 -svn:wc:ra_dav:version-url -V 105 -/svn/!svn/ver/4406/trunk/vendor/plugins/engines/generators/plugin_migration/plugin_migration_generator.rb -END -USAGE -K 25 -svn:wc:ra_dav:version-url -V 81 -/svn/!svn/ver/1654/trunk/vendor/plugins/engines/generators/plugin_migration/USAGE -END
--- a/vendor/plugins/engines/generators/plugin_migration/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/generators/plugin_migration/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/generators/plugin_migration +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/generators/plugin_migration http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-11-19T13:04:50.916901Z +2010-11-30T13:11:54.000000Z 3f4805cb1e4a8b8a3ed180f22d81c285 2010-11-14T16:24:21.989522Z 4406 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.691758Z +2010-08-12T15:03:27.000000Z d796f61555b36ef9941ea049c94df06b 2008-07-12T10:17:14.809831Z 1654
--- a/vendor/plugins/engines/generators/plugin_migration/templates/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 85 -/svn/!svn/ver/1654/trunk/vendor/plugins/engines/generators/plugin_migration/templates -END -plugin_migration.erb -K 25 -svn:wc:ra_dav:version-url -V 106 -/svn/!svn/ver/1654/trunk/vendor/plugins/engines/generators/plugin_migration/templates/plugin_migration.erb -END
--- a/vendor/plugins/engines/generators/plugin_migration/templates/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/generators/plugin_migration/templates/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/generators/plugin_migration/templates +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/generators/plugin_migration/templates http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.695759Z +2010-08-12T15:03:27.000000Z 0b30f95c4244242093ded274caf9e4a8 2008-07-12T10:17:14.809831Z 1654
--- a/vendor/plugins/engines/lib/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 51 -/svn/!svn/ver/4094/trunk/vendor/plugins/engines/lib -END -engines.rb -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/lib/engines.rb -END
--- a/vendor/plugins/engines/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/lib http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.695759Z +2010-08-12T15:03:27.000000Z b9128ad79c06e8c2eb2474a7f9edf60d 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/lib/engines/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/4094/trunk/vendor/plugins/engines/lib/engines -END -testing.rb -K 25 -svn:wc:ra_dav:version-url -V 70 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/lib/engines/testing.rb -END -plugin.rb -K 25 -svn:wc:ra_dav:version-url -V 69 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/lib/engines/plugin.rb -END -assets.rb -K 25 -svn:wc:ra_dav:version-url -V 69 -/svn/!svn/ver/2493/trunk/vendor/plugins/engines/lib/engines/assets.rb -END
--- a/vendor/plugins/engines/lib/engines/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/lib/engines/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/lib/engines +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/lib/engines http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.707755Z +2010-08-12T15:03:27.000000Z f5e61f1312a19bdac20f06b7529eaa98 2009-09-13T17:14:35.707881Z 2887 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.699755Z +2010-08-12T15:03:27.000000Z d084e8ccb3edfb9f481f2626ee9e57e1 2009-09-13T17:14:35.707881Z 2887 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.699755Z +2010-08-12T15:03:27.000000Z a2cb2f3c517fbe62ab1277e44b0a05ed 2009-02-21T11:04:50.579477Z 2493
--- a/vendor/plugins/engines/lib/engines/plugin/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/lib/engines/plugin -END -locator.rb -K 25 -svn:wc:ra_dav:version-url -V 77 -/svn/!svn/ver/1654/trunk/vendor/plugins/engines/lib/engines/plugin/locator.rb -END -migrator.rb -K 25 -svn:wc:ra_dav:version-url -V 78 -/svn/!svn/ver/2493/trunk/vendor/plugins/engines/lib/engines/plugin/migrator.rb -END -loader.rb -K 25 -svn:wc:ra_dav:version-url -V 76 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/lib/engines/plugin/loader.rb -END -list.rb -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1654/trunk/vendor/plugins/engines/lib/engines/plugin/list.rb -END
--- a/vendor/plugins/engines/lib/engines/plugin/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/lib/engines/plugin/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/lib/engines/plugin +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/lib/engines/plugin http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.703755Z +2010-08-12T15:03:27.000000Z 2adca63e7c7d7c38a91953458e893bb2 2008-07-12T10:17:14.809831Z 1654 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.703755Z +2010-08-12T15:03:27.000000Z 21ac938bcf4f86e62ec21e9803cfd76e 2009-02-21T11:04:50.579477Z 2493 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.703755Z +2010-08-12T15:03:27.000000Z 38eaf6e3b113f74daa0669c67261cc72 2009-09-13T17:14:35.707881Z 2887 @@ -134,7 +134,7 @@ -2010-09-23T14:37:45.703755Z +2010-08-12T15:03:27.000000Z d68941171066743dd63a174b5f270f66 2008-07-12T10:17:14.809831Z 1654
--- a/vendor/plugins/engines/lib/engines/rails_extensions/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 76 -/svn/!svn/ver/4094/trunk/vendor/plugins/engines/lib/engines/rails_extensions -END -form_tag_helpers.rb -K 25 -svn:wc:ra_dav:version-url -V 96 -/svn/!svn/ver/2493/trunk/vendor/plugins/engines/lib/engines/rails_extensions/form_tag_helpers.rb -END -asset_helpers.rb -K 25 -svn:wc:ra_dav:version-url -V 93 -/svn/!svn/ver/4094/trunk/vendor/plugins/engines/lib/engines/rails_extensions/asset_helpers.rb -END -dependencies.rb -K 25 -svn:wc:ra_dav:version-url -V 92 -/svn/!svn/ver/2493/trunk/vendor/plugins/engines/lib/engines/rails_extensions/dependencies.rb -END -rails.rb -K 25 -svn:wc:ra_dav:version-url -V 85 -/svn/!svn/ver/1654/trunk/vendor/plugins/engines/lib/engines/rails_extensions/rails.rb -END -migrations.rb -K 25 -svn:wc:ra_dav:version-url -V 90 -/svn/!svn/ver/2493/trunk/vendor/plugins/engines/lib/engines/rails_extensions/migrations.rb -END
--- a/vendor/plugins/engines/lib/engines/rails_extensions/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/lib/engines/rails_extensions/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/lib/engines/rails_extensions +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/lib/engines/rails_extensions http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.707755Z +2010-08-12T15:03:27.000000Z 3e26c9fe2cd009cb5e81f6ccea3f012c 2009-02-21T11:04:50.579477Z 2493 @@ -66,7 +66,7 @@ -2010-09-24T12:48:29.635919Z +2010-10-01T15:15:02.000000Z c5a5e8b469c1e3fefcc5bedca9f4ac82 2010-09-17T04:06:40.671348Z 4094 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.707755Z +2010-08-12T15:03:27.000000Z 6e29697f02c187c9033624422365044a 2009-02-21T11:04:50.579477Z 2493 @@ -134,7 +134,7 @@ -2010-09-23T14:37:45.707755Z +2010-08-12T15:03:27.000000Z f26da6a18ffcc7b846838f038a0abea4 2008-07-12T10:17:14.809831Z 1654 @@ -168,7 +168,7 @@ -2010-09-23T14:37:45.707755Z +2010-08-12T15:03:27.000000Z 8f8e408b9f1a72af1cc5232ddb888266 2009-02-21T11:04:50.579477Z 2493
--- a/vendor/plugins/engines/tasks/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 53 -/svn/!svn/ver/3186/trunk/vendor/plugins/engines/tasks -END -engines.rake -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/3186/trunk/vendor/plugins/engines/tasks/engines.rake -END
--- a/vendor/plugins/engines/tasks/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/tasks/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/tasks +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/tasks http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.707755Z +2010-08-12T15:03:27.000000Z 10b9e5aacd9d0673e694f6ababd6ee3b 2009-12-18T14:41:37.649419Z 3186
--- a/vendor/plugins/engines/test/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test -END
--- a/vendor/plugins/engines/test/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/app/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app -END
--- a/vendor/plugins/engines/test/app/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/app/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/app +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/app http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/app/controllers/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 68 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/controllers -END -app_and_plugin_controller.rb -K 25 -svn:wc:ra_dav:version-url -V 97 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/controllers/app_and_plugin_controller.rb -END
--- a/vendor/plugins/engines/test/app/controllers/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/app/controllers/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/app/controllers +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/app/controllers http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.711814Z +2010-08-12T15:03:27.000000Z 8e2adc646126f3962ca1eaf16d663fa7 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/app/controllers/namespace/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 78 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/controllers/namespace -END -app_and_plugin_controller.rb -K 25 -svn:wc:ra_dav:version-url -V 107 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/controllers/namespace/app_and_plugin_controller.rb -END
--- a/vendor/plugins/engines/test/app/controllers/namespace/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/app/controllers/namespace/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/app/controllers/namespace +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/app/controllers/namespace http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.711814Z +2010-08-12T15:03:27.000000Z ed9f029690f9d77b31e0d68cff2f8ff3 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/app/helpers/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/helpers -END -mail_helper.rb -K 25 -svn:wc:ra_dav:version-url -V 79 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/helpers/mail_helper.rb -END
--- a/vendor/plugins/engines/test/app/helpers/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/app/helpers/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/app/helpers +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/app/helpers http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.715757Z +2010-08-12T15:03:27.000000Z b3286b0384ccf10d15423a78b8a70c3a 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/app/models/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 63 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/models -END -app_and_plugin_model.rb -K 25 -svn:wc:ra_dav:version-url -V 87 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/models/app_and_plugin_model.rb -END -notify_mail.rb -K 25 -svn:wc:ra_dav:version-url -V 78 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/models/notify_mail.rb -END
--- a/vendor/plugins/engines/test/app/models/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/app/models/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/app/models +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/app/models http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.715757Z +2010-08-12T15:03:27.000000Z 53fd050b6dc2f5da77439ffab6e1dd6e 2009-09-13T17:14:35.707881Z 2887 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.715757Z +2010-08-12T15:03:27.000000Z ffba288117364d8379bd2b6788e2fd2f 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/app/things/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 63 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/things -END -thing.rb -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/things/thing.rb -END
--- a/vendor/plugins/engines/test/app/things/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/app/things/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/app/things +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/app/things http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.715757Z +2010-08-12T15:03:27.000000Z aaa0b6b1363b304ca66c8def3c543b13 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/app/views/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/views -END
--- a/vendor/plugins/engines/test/app/views/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/app/views/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/app/views +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/app/views http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/app/views/app_and_plugin/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 77 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/views/app_and_plugin -END -a_view.html.erb -K 25 -svn:wc:ra_dav:version-url -V 93 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/views/app_and_plugin/a_view.html.erb -END
--- a/vendor/plugins/engines/test/app/views/app_and_plugin/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/app/views/app_and_plugin/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/app/views/app_and_plugin +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/app/views/app_and_plugin http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.719755Z +2010-08-12T15:03:27.000000Z e6dca36d9e91414f1a520ffddb5202d7 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/app/views/namespace/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/views/namespace -END
--- a/vendor/plugins/engines/test/app/views/namespace/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/app/views/namespace/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/app/views/namespace +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/app/views/namespace http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/app/views/namespace/app_and_plugin/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 87 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/views/namespace/app_and_plugin -END -a_view.html.erb -K 25 -svn:wc:ra_dav:version-url -V 103 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/views/namespace/app_and_plugin/a_view.html.erb -END
--- a/vendor/plugins/engines/test/app/views/namespace/app_and_plugin/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/app/views/namespace/app_and_plugin/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/app/views/namespace/app_and_plugin +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/app/views/namespace/app_and_plugin http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.719755Z +2010-08-12T15:03:27.000000Z e6dca36d9e91414f1a520ffddb5202d7 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/app/views/notify_mail/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/views/notify_mail -END -multipart_html.html.erb -K 25 -svn:wc:ra_dav:version-url -V 98 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/views/notify_mail/multipart_html.html.erb -END -signup.text.plain.erb -K 25 -svn:wc:ra_dav:version-url -V 96 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/views/notify_mail/signup.text.plain.erb -END -implicit_multipart.text.plain.erb -K 25 -svn:wc:ra_dav:version-url -V 108 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/views/notify_mail/implicit_multipart.text.plain.erb -END -implicit_multipart.text.html.erb -K 25 -svn:wc:ra_dav:version-url -V 107 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/views/notify_mail/implicit_multipart.text.html.erb -END -multipart_plain.html.erb -K 25 -svn:wc:ra_dav:version-url -V 99 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/views/notify_mail/multipart_plain.html.erb -END
--- a/vendor/plugins/engines/test/app/views/notify_mail/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/app/views/notify_mail/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/app/views/notify_mail +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/app/views/notify_mail http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.723813Z +2010-08-12T15:03:27.000000Z 8e367f8a525da2fddf6b32d5f874c6ba 2009-09-13T17:14:35.707881Z 2887 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.723813Z +2010-08-12T15:03:27.000000Z 50ed7a6afc64b4a326aa8b681a31b9a3 2009-09-13T17:14:35.707881Z 2887 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.723813Z +2010-08-12T15:03:27.000000Z cb0d28ce47ca265d02f252970ac69194 2009-09-13T17:14:35.707881Z 2887 @@ -134,7 +134,7 @@ -2010-09-23T14:37:45.723813Z +2010-08-12T15:03:27.000000Z 5a4f738dec733e5f4ad703495c5eb54a 2009-09-13T17:14:35.707881Z 2887 @@ -168,7 +168,7 @@ -2010-09-23T14:37:45.723813Z +2010-08-12T15:03:27.000000Z 3b779e7b00bfe0f9b876bfebd7905a4e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/app/views/plugin_mail/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/views/plugin_mail -END -mail_from_plugin_with_application_template.text.plain.erb -K 25 -svn:wc:ra_dav:version-url -V 132 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/views/plugin_mail/mail_from_plugin_with_application_template.text.plain.erb -END -multipart_from_plugin_with_application_template_plain.html.erb -K 25 -svn:wc:ra_dav:version-url -V 137 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/app/views/plugin_mail/multipart_from_plugin_with_application_template_plain.html.erb -END
--- a/vendor/plugins/engines/test/app/views/plugin_mail/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/app/views/plugin_mail/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/app/views/plugin_mail +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/app/views/plugin_mail http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.727757Z +2010-08-12T15:03:28.000000Z d0e724c594c43b6db39389834f3c26e2 2009-09-13T17:14:35.707881Z 2887 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.727757Z +2010-08-12T15:03:28.000000Z 317dc13d851c827568f61def9b031803 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/functional/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,41 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 63 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/functional -END -controller_loading_test.rb -K 25 -svn:wc:ra_dav:version-url -V 90 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/functional/controller_loading_test.rb -END -routes_test.rb -K 25 -svn:wc:ra_dav:version-url -V 78 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/functional/routes_test.rb -END -view_loading_test.rb -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/functional/view_loading_test.rb -END -locale_loading_test.rb -K 25 -svn:wc:ra_dav:version-url -V 86 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/functional/locale_loading_test.rb -END -view_helpers_test.rb -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/functional/view_helpers_test.rb -END -exception_notification_compatibility_test.rb -K 25 -svn:wc:ra_dav:version-url -V 108 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/functional/exception_notification_compatibility_test.rb -END
--- a/vendor/plugins/engines/test/functional/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/functional/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/functional +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/functional http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.727757Z +2010-08-12T15:03:28.000000Z 53bf916868db17fcb64853aab45ce80b 2009-09-13T17:14:35.707881Z 2887 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.727757Z +2010-08-12T15:03:28.000000Z 03f318c931cb7d40733445e72a504c95 2009-09-13T17:14:35.707881Z 2887 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.731757Z +2010-08-12T15:03:28.000000Z 43b6ff22af92cc8988a51d1b50c4c587 2009-09-13T17:14:35.707881Z 2887 @@ -134,7 +134,7 @@ -2010-09-23T14:37:45.727757Z +2010-08-12T15:03:28.000000Z 0ca8b6e7e4b7655c3633b11d4ff61cc6 2009-09-13T17:14:35.707881Z 2887 @@ -168,7 +168,7 @@ -2010-09-23T14:37:45.731757Z +2010-08-12T15:03:28.000000Z afcc79d3fa1c4f1615b271f65d982d8b 2009-09-13T17:14:35.707881Z 2887 @@ -202,7 +202,7 @@ -2010-09-23T14:37:45.727757Z +2010-08-12T15:03:28.000000Z 6bd25b9259dbf37b6d31e69f83a32fe0 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/lib/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/lib -END -render_information.rb -K 25 -svn:wc:ra_dav:version-url -V 78 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/lib/render_information.rb -END -app_and_plugin_lib_model.rb -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/lib/app_and_plugin_lib_model.rb -END -engines_test_helper.rb -K 25 -svn:wc:ra_dav:version-url -V 79 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/lib/engines_test_helper.rb -END
--- a/vendor/plugins/engines/test/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/lib http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.731757Z +2010-08-12T15:03:28.000000Z 1fde453d5263852d1ba9fc3dd90254fc 2009-09-13T17:14:35.707881Z 2887 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.731757Z +2010-08-12T15:03:28.000000Z b00ea9b677cec76cd2fc19b1f66db3e2 2009-09-13T17:14:35.707881Z 2887 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.731757Z +2010-08-12T15:03:28.000000Z 52fd5b17adc2fec1950be496b5ff3a3d 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins -END
--- a/vendor/plugins/engines/test/plugins/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 73 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin -END
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/alpha_plugin/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/alpha_plugin +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/alpha_plugin http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 77 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app -END
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/alpha_plugin/app/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/alpha_plugin/app http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/controllers/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 89 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/controllers -END -app_and_plugin_controller.rb -K 25 -svn:wc:ra_dav:version-url -V 118 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/controllers/app_and_plugin_controller.rb -END -alpha_plugin_controller.rb -K 25 -svn:wc:ra_dav:version-url -V 116 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/controllers/alpha_plugin_controller.rb -END -shared_plugin_controller.rb -K 25 -svn:wc:ra_dav:version-url -V 117 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/controllers/shared_plugin_controller.rb -END
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/controllers/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/alpha_plugin/app/controllers/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/controllers +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/alpha_plugin/app/controllers http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.735800Z +2010-08-12T15:03:28.000000Z b70de56fa165815bbab14f584b6fbdb4 2009-09-13T17:14:35.707881Z 2887 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.735800Z +2010-08-12T15:03:28.000000Z 9e56eb4864bc1877cc8a6e69ca873157 2009-09-13T17:14:35.707881Z 2887 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.739799Z +2010-08-12T15:03:28.000000Z f9f42ac7db3bb715ff4f055162013aba 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/controllers/namespace/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 99 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/controllers/namespace -END -app_and_plugin_controller.rb -K 25 -svn:wc:ra_dav:version-url -V 128 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/controllers/namespace/app_and_plugin_controller.rb -END -alpha_plugin_controller.rb -K 25 -svn:wc:ra_dav:version-url -V 126 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/controllers/namespace/alpha_plugin_controller.rb -END -shared_plugin_controller.rb -K 25 -svn:wc:ra_dav:version-url -V 127 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/controllers/namespace/shared_plugin_controller.rb -END
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/controllers/namespace/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/alpha_plugin/app/controllers/namespace/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/controllers/namespace +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/alpha_plugin/app/controllers/namespace http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.739799Z +2010-08-12T15:03:28.000000Z a24a7b9dd5706d2daef2456b1b1cac4c 2009-09-13T17:14:35.707881Z 2887 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.739799Z +2010-08-12T15:03:28.000000Z b1c4a105ad8bfa7add28c583dbd9ef8a 2009-09-13T17:14:35.707881Z 2887 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.739799Z +2010-08-12T15:03:28.000000Z 43152818b40142db88dffe0192e66582 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/models/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/models -END -app_and_plugin_model.rb -K 25 -svn:wc:ra_dav:version-url -V 108 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/models/app_and_plugin_model.rb -END -alpha_plugin_model.rb -K 25 -svn:wc:ra_dav:version-url -V 106 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/models/alpha_plugin_model.rb -END -shared_plugin_model.rb -K 25 -svn:wc:ra_dav:version-url -V 107 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/models/shared_plugin_model.rb -END
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/models/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/alpha_plugin/app/models/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/models +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/alpha_plugin/app/models http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.739799Z +2010-08-12T15:03:28.000000Z a661e69f87fead66873ac8cc162da128 2009-09-13T17:14:35.707881Z 2887 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.739799Z +2010-08-12T15:03:28.000000Z 01ab2dea5fd3e341bd082f2fc507f760 2009-09-13T17:14:35.707881Z 2887 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.739799Z +2010-08-12T15:03:28.000000Z ae48cf4ce7068428c1525dba877a880c 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 83 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views -END
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/alpha_plugin/app/views http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/alpha_plugin/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 96 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/alpha_plugin -END -a_view.html.erb -K 25 -svn:wc:ra_dav:version-url -V 112 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/alpha_plugin/a_view.html.erb -END
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/alpha_plugin/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/alpha_plugin/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/alpha_plugin +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/alpha_plugin http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.743801Z +2010-08-12T15:03:28.000000Z eeb9900e088c367d06668e201e4be39e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/app_and_plugin/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 98 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/app_and_plugin -END -a_view.html.erb -K 25 -svn:wc:ra_dav:version-url -V 114 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/app_and_plugin/a_view.html.erb -END
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/app_and_plugin/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/app_and_plugin/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/app_and_plugin +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/app_and_plugin http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.743801Z +2010-08-12T15:03:28.000000Z 68deee946f4e81fafcae37d51f2e6bd5 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/layouts/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 91 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/layouts -END -plugin_layout.erb -K 25 -svn:wc:ra_dav:version-url -V 109 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/layouts/plugin_layout.erb -END
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/layouts/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/layouts/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/layouts +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/layouts http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.747800Z +2010-08-12T15:03:28.000000Z 3791a6748098d1382b11556ec47b6366 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 93 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace -END
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/alpha_plugin/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 106 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/alpha_plugin -END -a_view.html.erb -K 25 -svn:wc:ra_dav:version-url -V 122 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/alpha_plugin/a_view.html.erb -END
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/alpha_plugin/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/alpha_plugin/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/alpha_plugin +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/alpha_plugin http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.747800Z +2010-08-12T15:03:28.000000Z eeb9900e088c367d06668e201e4be39e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/app_and_plugin/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 108 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/app_and_plugin -END -a_view.html.erb -K 25 -svn:wc:ra_dav:version-url -V 124 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/app_and_plugin/a_view.html.erb -END
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/app_and_plugin/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/app_and_plugin/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/app_and_plugin +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/app_and_plugin http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.747800Z +2010-08-12T15:03:28.000000Z eeb9900e088c367d06668e201e4be39e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/shared_plugin/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 107 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/shared_plugin -END -a_view.html.erb -K 25 -svn:wc:ra_dav:version-url -V 123 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/shared_plugin/a_view.html.erb -END
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/shared_plugin/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/shared_plugin/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/shared_plugin +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/namespace/shared_plugin http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.751796Z +2010-08-12T15:03:28.000000Z 3bef9fe54ed08fd7ce454a189b2b3195 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/shared_plugin/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 97 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/shared_plugin -END -a_view.html.erb -K 25 -svn:wc:ra_dav:version-url -V 113 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/shared_plugin/a_view.html.erb -END
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/shared_plugin/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/shared_plugin/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/shared_plugin +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/alpha_plugin/app/views/shared_plugin http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.751796Z +2010-08-12T15:03:28.000000Z 3bef9fe54ed08fd7ce454a189b2b3195 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/lib/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 77 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/lib -END -app_and_plugin_lib_model.rb -K 25 -svn:wc:ra_dav:version-url -V 105 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/lib/app_and_plugin_lib_model.rb -END -alpha_plugin_lib_model.rb -K 25 -svn:wc:ra_dav:version-url -V 103 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/lib/alpha_plugin_lib_model.rb -END
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/alpha_plugin/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/alpha_plugin/lib http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.751796Z +2010-08-12T15:03:28.000000Z 4799f34099980de6af0dc719c7f04845 2009-09-13T17:14:35.707881Z 2887 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.751796Z +2010-08-12T15:03:28.000000Z e892323cf7ac415a30ca41b49ab96d1d 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/locales/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 81 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/locales -END -en.yml -K 25 -svn:wc:ra_dav:version-url -V 88 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/locales/en.yml -END
--- a/vendor/plugins/engines/test/plugins/alpha_plugin/locales/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/alpha_plugin/locales/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/alpha_plugin/locales +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/alpha_plugin/locales http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.755800Z +2010-08-12T15:03:28.000000Z 8fb4d64b7ed263c84a6aa2974eb71f25 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/beta_plugin/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/beta_plugin -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 80 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/beta_plugin/init.rb -END
--- a/vendor/plugins/engines/test/plugins/beta_plugin/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/beta_plugin/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/beta_plugin +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/beta_plugin http://redmine.rubyforge.org/svn @@ -38,7 +38,7 @@ -2010-09-23T14:37:45.763755Z +2010-08-12T15:03:28.000000Z cee45809cc705092eca4e13d3aa204f1 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/beta_plugin/app/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 76 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app -END
--- a/vendor/plugins/engines/test/plugins/beta_plugin/app/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/beta_plugin/app/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/beta_plugin/app http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/plugins/beta_plugin/app/controllers/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,17 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 88 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/controllers -END -app_and_plugin_controller.rb -K 25 -svn:wc:ra_dav:version-url -V 117 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/controllers/app_and_plugin_controller.rb -END -shared_plugin_controller.rb -K 25 -svn:wc:ra_dav:version-url -V 116 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/controllers/shared_plugin_controller.rb -END
--- a/vendor/plugins/engines/test/plugins/beta_plugin/app/controllers/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/beta_plugin/app/controllers/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/controllers +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/beta_plugin/app/controllers http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.759798Z +2010-08-12T15:03:28.000000Z 6c633d0dcb606e532dd906bd2567bf57 2009-09-13T17:14:35.707881Z 2887 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.759798Z +2010-08-12T15:03:28.000000Z df7f8bb84aa9fcbe07534d5aa59e11b8 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/beta_plugin/app/controllers/namespace/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 98 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/controllers/namespace -END -shared_plugin_controller.rb -K 25 -svn:wc:ra_dav:version-url -V 126 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/controllers/namespace/shared_plugin_controller.rb -END
--- a/vendor/plugins/engines/test/plugins/beta_plugin/app/controllers/namespace/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/beta_plugin/app/controllers/namespace/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/controllers/namespace +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/beta_plugin/app/controllers/namespace http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.759798Z +2010-08-12T15:03:28.000000Z a8bcbb79381d6db75a9ea6e2704828a9 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/beta_plugin/app/models/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 83 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/models -END -shared_plugin_model.rb -K 25 -svn:wc:ra_dav:version-url -V 106 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/models/shared_plugin_model.rb -END
--- a/vendor/plugins/engines/test/plugins/beta_plugin/app/models/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/beta_plugin/app/models/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/models +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/beta_plugin/app/models http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.759798Z +2010-08-12T15:03:28.000000Z c9a469b003eca7ac6627c41deeda1b4c 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/beta_plugin/app/views/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/views -END
--- a/vendor/plugins/engines/test/plugins/beta_plugin/app/views/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/beta_plugin/app/views/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/views +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/beta_plugin/app/views http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/plugins/beta_plugin/app/views/namespace/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 92 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/views/namespace -END
--- a/vendor/plugins/engines/test/plugins/beta_plugin/app/views/namespace/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/beta_plugin/app/views/namespace/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/views/namespace +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/beta_plugin/app/views/namespace http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/plugins/beta_plugin/app/views/namespace/shared_plugin/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 106 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/views/namespace/shared_plugin -END -a_view.html.erb -K 25 -svn:wc:ra_dav:version-url -V 122 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/views/namespace/shared_plugin/a_view.html.erb -END
--- a/vendor/plugins/engines/test/plugins/beta_plugin/app/views/namespace/shared_plugin/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/beta_plugin/app/views/namespace/shared_plugin/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/views/namespace/shared_plugin +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/beta_plugin/app/views/namespace/shared_plugin http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.763755Z +2010-08-12T15:03:28.000000Z 78db1a7e1a9f6216dfa3671e5d42c81b 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/beta_plugin/app/views/shared_plugin/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 96 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/views/shared_plugin -END -a_view.html.erb -K 25 -svn:wc:ra_dav:version-url -V 112 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/views/shared_plugin/a_view.html.erb -END
--- a/vendor/plugins/engines/test/plugins/beta_plugin/app/views/shared_plugin/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/beta_plugin/app/views/shared_plugin/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/beta_plugin/app/views/shared_plugin +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/beta_plugin/app/views/shared_plugin http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.763755Z +2010-08-12T15:03:28.000000Z 78db1a7e1a9f6216dfa3671e5d42c81b 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/beta_plugin/locales/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 80 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/beta_plugin/locales -END -en.yml -K 25 -svn:wc:ra_dav:version-url -V 87 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/beta_plugin/locales/en.yml -END
--- a/vendor/plugins/engines/test/plugins/beta_plugin/locales/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/beta_plugin/locales/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/beta_plugin/locales +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/beta_plugin/locales http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.767754Z +2010-08-12T15:03:28.000000Z 277816fa171800daec137e70993e39f6 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/not_a_plugin/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 73 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/not_a_plugin -END
--- a/vendor/plugins/engines/test/plugins/not_a_plugin/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/not_a_plugin/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/not_a_plugin +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/not_a_plugin http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/plugins/not_a_plugin/public/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 80 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/not_a_plugin/public -END -should_not_be_copied.txt -K 25 -svn:wc:ra_dav:version-url -V 105 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/not_a_plugin/public/should_not_be_copied.txt -END
--- a/vendor/plugins/engines/test/plugins/not_a_plugin/public/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/not_a_plugin/public/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/not_a_plugin/public +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/not_a_plugin/public http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.767754Z +2010-08-12T15:03:28.000000Z d41d8cd98f00b204e9800998ecf8427e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_assets/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 80 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets/init.rb -END
--- a/vendor/plugins/engines/test/plugins/test_assets/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_assets/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_assets +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_assets http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.775754Z +2010-08-12T15:03:28.000000Z d41d8cd98f00b204e9800998ecf8427e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_assets/app/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 76 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets/app -END
--- a/vendor/plugins/engines/test/plugins/test_assets/app/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_assets/app/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_assets/app +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_assets/app http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/plugins/test_assets/app/controllers/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 88 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets/app/controllers -END -assets_controller.rb -K 25 -svn:wc:ra_dav:version-url -V 109 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets/app/controllers/assets_controller.rb -END
--- a/vendor/plugins/engines/test/plugins/test_assets/app/controllers/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_assets/app/controllers/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_assets/app/controllers +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_assets/app/controllers http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.771797Z +2010-08-12T15:03:28.000000Z ba97b09a04ada07aa57234ea8649c128 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_assets/app/views/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets/app/views -END
--- a/vendor/plugins/engines/test/plugins/test_assets/app/views/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_assets/app/views/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_assets/app/views +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_assets/app/views http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/plugins/test_assets/app/views/assets/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 89 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets/app/views/assets -END -index.html.erb -K 25 -svn:wc:ra_dav:version-url -V 104 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets/app/views/assets/index.html.erb -END
--- a/vendor/plugins/engines/test/plugins/test_assets/app/views/assets/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_assets/app/views/assets/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_assets/app/views/assets +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_assets/app/views/assets http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.771797Z +2010-08-12T15:03:28.000000Z 5c22cfc5b27a3b2b869075baacf530a6 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_assets/app/views/layouts/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 90 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets/app/views/layouts -END -assets.html.erb -K 25 -svn:wc:ra_dav:version-url -V 106 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets/app/views/layouts/assets.html.erb -END
--- a/vendor/plugins/engines/test/plugins/test_assets/app/views/layouts/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_assets/app/views/layouts/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_assets/app/views/layouts +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_assets/app/views/layouts http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.775754Z +2010-08-12T15:03:28.000000Z 8a99331150683df5edbd645cb851de37 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_assets/public/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 79 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets/public -END -file.txt -K 25 -svn:wc:ra_dav:version-url -V 88 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets/public/file.txt -END
--- a/vendor/plugins/engines/test/plugins/test_assets/public/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_assets/public/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_assets/public +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_assets/public http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.775754Z +2010-08-12T15:03:28.000000Z d41d8cd98f00b204e9800998ecf8427e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_assets/public/subfolder/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 89 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets/public/subfolder -END -file_in_subfolder.txt -K 25 -svn:wc:ra_dav:version-url -V 111 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets/public/subfolder/file_in_subfolder.txt -END
--- a/vendor/plugins/engines/test/plugins/test_assets/public/subfolder/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_assets/public/subfolder/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_assets/public/subfolder +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_assets/public/subfolder http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.775754Z +2010-08-12T15:03:28.000000Z d41d8cd98f00b204e9800998ecf8427e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 94 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 102 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory/init.rb -END
--- a/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.779781Z +2010-08-12T15:03:28.000000Z d41d8cd98f00b204e9800998ecf8427e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory/assets/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 101 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory/assets -END -file.txt -K 25 -svn:wc:ra_dav:version-url -V 110 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory/assets/file.txt -END
--- a/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory/assets/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory/assets/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory/assets +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory/assets http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.779781Z +2010-08-12T15:03:28.000000Z d41d8cd98f00b204e9800998ecf8427e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory/assets/subfolder/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 111 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory/assets/subfolder -END -file_in_subfolder.txt -K 25 -svn:wc:ra_dav:version-url -V 133 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory/assets/subfolder/file_in_subfolder.txt -END
--- a/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory/assets/subfolder/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory/assets/subfolder/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory/assets/subfolder +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_assets_with_assets_directory/assets/subfolder http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.779781Z +2010-08-12T15:03:28.000000Z d41d8cd98f00b204e9800998ecf8427e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_assets_with_no_subdirectory/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 93 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets_with_no_subdirectory -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 101 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets_with_no_subdirectory/init.rb -END
--- a/vendor/plugins/engines/test/plugins/test_assets_with_no_subdirectory/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_assets_with_no_subdirectory/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_assets_with_no_subdirectory +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_assets_with_no_subdirectory http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.783782Z +2010-08-12T15:03:29.000000Z d41d8cd98f00b204e9800998ecf8427e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_assets_with_no_subdirectory/assets/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 100 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets_with_no_subdirectory/assets -END -file.txt -K 25 -svn:wc:ra_dav:version-url -V 109 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_assets_with_no_subdirectory/assets/file.txt -END
--- a/vendor/plugins/engines/test/plugins/test_assets_with_no_subdirectory/assets/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_assets_with_no_subdirectory/assets/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_assets_with_no_subdirectory/assets +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_assets_with_no_subdirectory/assets http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.783782Z +2010-08-12T15:03:29.000000Z d41d8cd98f00b204e9800998ecf8427e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_code_mixing/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 77 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_code_mixing -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 85 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_code_mixing/init.rb -END
--- a/vendor/plugins/engines/test/plugins/test_code_mixing/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_code_mixing/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_code_mixing +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_code_mixing http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.783782Z +2010-08-12T15:03:29.000000Z cee45809cc705092eca4e13d3aa204f1 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_code_mixing/app/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 81 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_code_mixing/app -END
--- a/vendor/plugins/engines/test/plugins/test_code_mixing/app/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_code_mixing/app/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_code_mixing/app +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_code_mixing/app http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/plugins/test_code_mixing/app/things/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 88 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_code_mixing/app/things -END -thing.rb -K 25 -svn:wc:ra_dav:version-url -V 97 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_code_mixing/app/things/thing.rb -END
--- a/vendor/plugins/engines/test/plugins/test_code_mixing/app/things/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_code_mixing/app/things/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_code_mixing/app/things +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_code_mixing/app/things http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.783782Z +2010-08-12T15:03:29.000000Z 3b8cfcd53b03ccc6db1aac5b542abaa4 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_load_path/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_load_path -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 83 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_load_path/init.rb -END
--- a/vendor/plugins/engines/test/plugins/test_load_path/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_load_path/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_load_path +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_load_path http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.787823Z +2010-08-12T15:03:29.000000Z d41d8cd98f00b204e9800998ecf8427e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_migration/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_migration -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 83 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_migration/init.rb -END
--- a/vendor/plugins/engines/test/plugins/test_migration/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_migration/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_migration +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_migration http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.791825Z +2010-08-12T15:03:29.000000Z d41d8cd98f00b204e9800998ecf8427e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_migration/db/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 78 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_migration/db -END
--- a/vendor/plugins/engines/test/plugins/test_migration/db/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_migration/db/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_migration/db +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_migration/db http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/plugins/test_migration/db/migrate/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 86 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_migration/db/migrate -END -001_create_tests.rb -K 25 -svn:wc:ra_dav:version-url -V 106 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_migration/db/migrate/001_create_tests.rb -END -002_create_others.rb -K 25 -svn:wc:ra_dav:version-url -V 107 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_migration/db/migrate/002_create_others.rb -END -003_create_extras.rb -K 25 -svn:wc:ra_dav:version-url -V 107 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_migration/db/migrate/003_create_extras.rb -END
--- a/vendor/plugins/engines/test/plugins/test_migration/db/migrate/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_migration/db/migrate/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_migration/db/migrate +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_migration/db/migrate http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.791825Z +2010-08-12T15:03:29.000000Z ba950e9dc666a42d09029148ae7e3234 2009-09-13T17:14:35.707881Z 2887 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.791825Z +2010-08-12T15:03:29.000000Z de937ac5b434955daacc33306a5a1a2d 2009-09-13T17:14:35.707881Z 2887 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.791825Z +2010-08-12T15:03:29.000000Z b9241da5bb8308bcea2f4cd5cbd32ff1 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_plugin_mailing/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 80 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_plugin_mailing -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 88 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_plugin_mailing/init.rb -END
--- a/vendor/plugins/engines/test/plugins/test_plugin_mailing/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_plugin_mailing/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_plugin_mailing +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_plugin_mailing http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.799837Z +2010-08-12T15:03:29.000000Z d41d8cd98f00b204e9800998ecf8427e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 84 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_plugin_mailing/app -END
--- a/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_plugin_mailing/app +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_plugin_mailing/app http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/models/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 91 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/models -END -plugin_mail.rb -K 25 -svn:wc:ra_dav:version-url -V 106 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/models/plugin_mail.rb -END
--- a/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/models/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/models/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/models +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/models http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.791825Z +2010-08-12T15:03:29.000000Z 6bfa7a84bb26ae29617568896fec30ae 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/views/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 90 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/views -END
--- a/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/views/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/views/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/views +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/views http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/views/plugin_mail/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 102 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/views/plugin_mail -END -multipart_from_plugin_plain.html.erb -K 25 -svn:wc:ra_dav:version-url -V 139 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/views/plugin_mail/multipart_from_plugin_plain.html.erb -END -multipart_from_plugin_html.html.erb -K 25 -svn:wc:ra_dav:version-url -V 138 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/views/plugin_mail/multipart_from_plugin_html.html.erb -END -multipart_from_plugin_with_application_template_plain.html.erb -K 25 -svn:wc:ra_dav:version-url -V 165 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/views/plugin_mail/multipart_from_plugin_with_application_template_plain.html.erb -END -multipart_from_plugin_with_application_template_html.html.erb -K 25 -svn:wc:ra_dav:version-url -V 164 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/views/plugin_mail/multipart_from_plugin_with_application_template_html.html.erb -END -mail_from_plugin.erb -K 25 -svn:wc:ra_dav:version-url -V 123 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/views/plugin_mail/mail_from_plugin.erb -END
--- a/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/views/plugin_mail/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/views/plugin_mail/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/views/plugin_mail +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_plugin_mailing/app/views/plugin_mail http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.795823Z +2010-08-12T15:03:29.000000Z cf207341167ec099c0e0ffbe3935a4d4 2009-09-13T17:14:35.707881Z 2887 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.795823Z +2010-08-12T15:03:29.000000Z c54772416c0a8c4f3d46880180299dd5 2009-09-13T17:14:35.707881Z 2887 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.799837Z +2010-08-12T15:03:29.000000Z 6f32fb0cf1bfbf4dcc8636f350a126e8 2009-09-13T17:14:35.707881Z 2887 @@ -134,7 +134,7 @@ -2010-09-23T14:37:45.795823Z +2010-08-12T15:03:29.000000Z 6f32fb0cf1bfbf4dcc8636f350a126e8 2009-09-13T17:14:35.707881Z 2887 @@ -168,7 +168,7 @@ -2010-09-23T14:37:45.795823Z +2010-08-12T15:03:29.000000Z ededb32a08ab9582df24ce1572dc2a20 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_routing/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 73 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_routing -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 81 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_routing/init.rb -END
--- a/vendor/plugins/engines/test/plugins/test_routing/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_routing/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_routing +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_routing http://redmine.rubyforge.org/svn @@ -38,7 +38,7 @@ -2010-09-23T14:37:45.803782Z +2010-08-12T15:03:29.000000Z d41d8cd98f00b204e9800998ecf8427e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_routing/app/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 77 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_routing/app -END
--- a/vendor/plugins/engines/test/plugins/test_routing/app/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_routing/app/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_routing/app +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_routing/app http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/plugins/test_routing/app/controllers/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 89 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_routing/app/controllers -END -test_routing_controller.rb -K 25 -svn:wc:ra_dav:version-url -V 116 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_routing/app/controllers/test_routing_controller.rb -END
--- a/vendor/plugins/engines/test/plugins/test_routing/app/controllers/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_routing/app/controllers/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_routing/app/controllers +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_routing/app/controllers http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.803782Z +2010-08-12T15:03:29.000000Z e5a27666b16bdff58054a3440cf14516 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_routing/app/controllers/namespace/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 99 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_routing/app/controllers/namespace -END -test_routing_controller.rb -K 25 -svn:wc:ra_dav:version-url -V 126 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_routing/app/controllers/namespace/test_routing_controller.rb -END
--- a/vendor/plugins/engines/test/plugins/test_routing/app/controllers/namespace/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_routing/app/controllers/namespace/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_routing/app/controllers/namespace +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_routing/app/controllers/namespace http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.803782Z +2010-08-12T15:03:29.000000Z 515669edfb53126155e911a1ae5149ec 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_routing/config/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 80 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_routing/config -END -routes.rb -K 25 -svn:wc:ra_dav:version-url -V 90 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_routing/config/routes.rb -END
--- a/vendor/plugins/engines/test/plugins/test_routing/config/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_routing/config/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_routing/config +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_routing/config http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.803782Z +2010-08-12T15:03:29.000000Z 47135f279d2e64a431d8604df1402ffb 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_testing/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 73 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_testing -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 81 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_testing/init.rb -END
--- a/vendor/plugins/engines/test/plugins/test_testing/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_testing/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_testing +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_testing http://redmine.rubyforge.org/svn @@ -38,7 +38,7 @@ -2010-09-23T14:37:45.807778Z +2010-08-12T15:03:29.000000Z d41d8cd98f00b204e9800998ecf8427e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_testing/app/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 77 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_testing/app -END -README.txt -K 25 -svn:wc:ra_dav:version-url -V 88 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_testing/app/README.txt -END
--- a/vendor/plugins/engines/test/plugins/test_testing/app/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_testing/app/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_testing/app +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_testing/app http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.807778Z +2010-08-12T15:03:29.000000Z 9cbac832f86ac5e8cfbbc4c69811910e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_testing/test/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 78 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_testing/test -END
--- a/vendor/plugins/engines/test/plugins/test_testing/test/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_testing/test/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_testing/test +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_testing/test http://redmine.rubyforge.org/svn
--- a/vendor/plugins/engines/test/plugins/test_testing/test/fixtures/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 87 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_testing/test/fixtures -END -testing_fixtures.yml -K 25 -svn:wc:ra_dav:version-url -V 108 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_testing/test/fixtures/testing_fixtures.yml -END
--- a/vendor/plugins/engines/test/plugins/test_testing/test/fixtures/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_testing/test/fixtures/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_testing/test/fixtures +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_testing/test/fixtures http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.807778Z +2010-08-12T15:03:29.000000Z d41d8cd98f00b204e9800998ecf8427e 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/plugins/test_testing/test/unit/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 83 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_testing/test/unit -END -override_test.rb -K 25 -svn:wc:ra_dav:version-url -V 100 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/plugins/test_testing/test/unit/override_test.rb -END
--- a/vendor/plugins/engines/test/plugins/test_testing/test/unit/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/plugins/test_testing/test/unit/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/plugins/test_testing/test/unit +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/plugins/test_testing/test/unit http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.807778Z +2010-08-12T15:03:29.000000Z 35e9fbc2fb32c9114a5d6cf531f41e8d 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/unit/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,59 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/unit -END -plugins_test.rb -K 25 -svn:wc:ra_dav:version-url -V 73 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/unit/plugins_test.rb -END -assets_test.rb -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/unit/assets_test.rb -END -arbitrary_code_mixing_test.rb -K 25 -svn:wc:ra_dav:version-url -V 87 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/unit/arbitrary_code_mixing_test.rb -END -backwards_compat_test.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/unit/backwards_compat_test.rb -END -action_mailer_test.rb -K 25 -svn:wc:ra_dav:version-url -V 79 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/unit/action_mailer_test.rb -END -model_and_lib_test.rb -K 25 -svn:wc:ra_dav:version-url -V 79 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/unit/model_and_lib_test.rb -END -migration_test.rb -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/unit/migration_test.rb -END -load_path_test.rb -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/unit/load_path_test.rb -END -testing_test.rb -K 25 -svn:wc:ra_dav:version-url -V 73 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/unit/testing_test.rb -END
--- a/vendor/plugins/engines/test/unit/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/unit/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/unit +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/unit http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.815811Z +2010-08-12T15:03:29.000000Z 6724203a17cf765303c1f1cad440ec45 2009-09-13T17:14:35.707881Z 2887 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.811809Z +2010-08-12T15:03:29.000000Z 45a0f490d23fbb62bab17f142ba7e3a6 2009-09-13T17:14:35.707881Z 2887 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.811809Z +2010-08-12T15:03:29.000000Z 061b4ca6bf8ee79b149289ced48c0389 2009-09-13T17:14:35.707881Z 2887 @@ -134,7 +134,7 @@ -2010-09-23T14:37:45.811809Z +2010-08-12T15:03:29.000000Z caf5ed93e20f9675e13260049b591bcb 2009-09-13T17:14:35.707881Z 2887 @@ -168,7 +168,7 @@ -2010-09-23T14:37:45.811809Z +2010-08-12T15:03:29.000000Z d48da3c38e3e757d1649f48a25913284 2009-09-13T17:14:35.707881Z 2887 @@ -202,7 +202,7 @@ -2010-09-23T14:37:45.815811Z +2010-08-12T15:03:29.000000Z ba3376b21f9304e1bc6dd06e88fb031f 2009-09-13T17:14:35.707881Z 2887 @@ -236,7 +236,7 @@ -2010-09-23T14:37:45.815811Z +2010-08-12T15:03:29.000000Z 7930dc88c66a78e10283af28694f9d75 2009-09-13T17:14:35.707881Z 2887 @@ -273,7 +273,7 @@ -2010-09-23T14:37:45.811809Z +2010-08-12T15:03:29.000000Z da88ee34b7ad92288156f6dc33bc8945 2009-09-13T17:14:35.707881Z 2887 @@ -307,7 +307,7 @@ -2010-09-23T14:37:45.815811Z +2010-08-12T15:03:29.000000Z 749dec42d5f8db283afd40fa09a7a323 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/engines/test/unit/test_testing/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 70 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/unit/test_testing -END -override_test.rb -K 25 -svn:wc:ra_dav:version-url -V 87 -/svn/!svn/ver/2887/trunk/vendor/plugins/engines/test/unit/test_testing/override_test.rb -END
--- a/vendor/plugins/engines/test/unit/test_testing/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/engines/test/unit/test_testing/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/engines/test/unit/test_testing +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/engines/test/unit/test_testing http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.815811Z +2010-08-12T15:03:29.000000Z 55340a07100e4eea865c224b450561d8 2009-09-13T17:14:35.707881Z 2887
--- a/vendor/plugins/gravatar/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,41 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 48 -/svn/!svn/ver/4406/trunk/vendor/plugins/gravatar -END -Rakefile -K 25 -svn:wc:ra_dav:version-url -V 57 -/svn/!svn/ver/4072/trunk/vendor/plugins/gravatar/Rakefile -END -README.rdoc -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/2832/trunk/vendor/plugins/gravatar/README.rdoc -END -.gitignore -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/2832/trunk/vendor/plugins/gravatar/.gitignore -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 56 -/svn/!svn/ver/1962/trunk/vendor/plugins/gravatar/init.rb -END -MIT-LICENSE -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/1962/trunk/vendor/plugins/gravatar/MIT-LICENSE -END -about.yml -K 25 -svn:wc:ra_dav:version-url -V 58 -/svn/!svn/ver/2832/trunk/vendor/plugins/gravatar/about.yml -END
--- a/vendor/plugins/gravatar/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/gravatar/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/gravatar +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/gravatar http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-24T12:48:29.643852Z +2010-10-01T15:15:02.000000Z dcfa5a7b3c1cc768b2c0e3ad1ab802d0 2010-09-10T03:09:02.311267Z 4072 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.819779Z +2010-08-12T15:03:29.000000Z 3b03a1f4670e486bfc0a99ea42fcc661 2009-08-02T04:19:44.367555Z 2832 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.815811Z +2010-08-12T15:03:29.000000Z cd9b6943fc8fe58cdccef0b0215bf6bb 2009-08-02T04:19:44.367555Z 2832 @@ -134,7 +134,7 @@ -2010-09-23T14:37:45.819779Z +2010-08-12T15:03:29.000000Z 7560c41dd1c4891e83f52d2855a6a4e9 2008-10-30T02:58:04.259131Z 1962 @@ -171,7 +171,7 @@ -2010-09-23T14:37:45.819779Z +2010-08-12T15:03:29.000000Z b718f27e16d77b36a24720b5b902328f 2008-10-30T02:58:04.259131Z 1962 @@ -208,7 +208,7 @@ -2010-09-23T14:37:45.819779Z +2010-08-12T15:03:29.000000Z e052390cb0624d4b81b7809e65db85f6 2009-08-02T04:19:44.367555Z 2832
--- a/vendor/plugins/gravatar/lib/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 52 -/svn/!svn/ver/4406/trunk/vendor/plugins/gravatar/lib -END -gravatar.rb -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/4406/trunk/vendor/plugins/gravatar/lib/gravatar.rb -END
--- a/vendor/plugins/gravatar/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/gravatar/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/gravatar/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/gravatar/lib http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-11-19T13:04:50.928934Z +2010-11-30T13:11:54.000000Z a25a3e98e0d582955ee8fd520f424273 2010-11-14T16:24:21.989522Z 4406
--- a/vendor/plugins/gravatar/spec/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 53 -/svn/!svn/ver/4072/trunk/vendor/plugins/gravatar/spec -END -gravatar_spec.rb -K 25 -svn:wc:ra_dav:version-url -V 70 -/svn/!svn/ver/4072/trunk/vendor/plugins/gravatar/spec/gravatar_spec.rb -END
--- a/vendor/plugins/gravatar/spec/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/gravatar/spec/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/gravatar/spec +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/gravatar/spec http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-24T12:48:29.643852Z +2010-10-01T15:15:03.000000Z 26b23e5e988b11435e121bf53624d934 2010-09-10T03:09:02.311267Z 4072
--- a/vendor/plugins/open_id_authentication/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 62 -/svn/!svn/ver/3933/trunk/vendor/plugins/open_id_authentication -END -Rakefile -K 25 -svn:wc:ra_dav:version-url -V 71 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/Rakefile -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 70 -/svn/!svn/ver/2458/trunk/vendor/plugins/open_id_authentication/init.rb -END -CHANGELOG -K 25 -svn:wc:ra_dav:version-url -V 72 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/CHANGELOG -END -README -K 25 -svn:wc:ra_dav:version-url -V 69 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/README -END
--- a/vendor/plugins/open_id_authentication/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/open_id_authentication/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/open_id_authentication +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/open_id_authentication http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.823780Z +2010-08-12T15:03:29.000000Z b66b372df8374607d104228f41a06671 2009-02-11T19:06:45.087605Z 2438 @@ -72,7 +72,7 @@ -2010-09-23T14:37:45.831824Z +2010-08-12T15:03:29.000000Z 22579abfc9dc6a4cf475150e407e9a17 2009-02-12T21:25:50.680468Z 2458 @@ -109,7 +109,7 @@ -2010-09-23T14:37:45.823780Z +2010-08-12T15:03:29.000000Z d23f4c2e6c00805d7172c76ad52ebe6f 2009-02-11T19:06:45.087605Z 2438 @@ -146,7 +146,7 @@ -2010-09-23T14:37:45.823780Z +2010-08-12T15:03:29.000000Z 45eb3e296a3591fca629d0c8eab71e4c 2009-02-11T19:06:45.087605Z 2438
--- a/vendor/plugins/open_id_authentication/generators/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 73 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/generators -END
--- a/vendor/plugins/open_id_authentication/generators/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/open_id_authentication/generators/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/open_id_authentication/generators +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/open_id_authentication/generators http://redmine.rubyforge.org/svn
--- a/vendor/plugins/open_id_authentication/generators/open_id_authentication_tables/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 103 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/generators/open_id_authentication_tables -END -open_id_authentication_tables_generator.rb -K 25 -svn:wc:ra_dav:version-url -V 146 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/generators/open_id_authentication_tables/open_id_authentication_tables_generator.rb -END
--- a/vendor/plugins/open_id_authentication/generators/open_id_authentication_tables/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/open_id_authentication/generators/open_id_authentication_tables/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/open_id_authentication/generators/open_id_authentication_tables +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/open_id_authentication/generators/open_id_authentication_tables http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.827780Z +2010-08-12T15:03:29.000000Z ee799e52b83b842fa2a879431195e9eb 2009-02-11T19:06:45.087605Z 2438
--- a/vendor/plugins/open_id_authentication/generators/open_id_authentication_tables/templates/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 113 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/generators/open_id_authentication_tables/templates -END -migration.rb -K 25 -svn:wc:ra_dav:version-url -V 126 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/generators/open_id_authentication_tables/templates/migration.rb -END
--- a/vendor/plugins/open_id_authentication/generators/open_id_authentication_tables/templates/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/open_id_authentication/generators/open_id_authentication_tables/templates/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/open_id_authentication/generators/open_id_authentication_tables/templates +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/open_id_authentication/generators/open_id_authentication_tables/templates http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.827780Z +2010-08-12T15:03:29.000000Z 352b0b17c079fdf355c028a9b990b3b7 2009-02-11T19:06:45.087605Z 2438
--- a/vendor/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 111 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables -END -upgrade_open_id_authentication_tables_generator.rb -K 25 -svn:wc:ra_dav:version-url -V 162 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables/upgrade_open_id_authentication_tables_generator.rb -END
--- a/vendor/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.831824Z +2010-08-12T15:03:29.000000Z f401bfd8b5d2dd3008d16bf79de8c1e4 2009-02-11T19:06:45.087605Z 2438
--- a/vendor/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables/templates/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 121 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables/templates -END -migration.rb -K 25 -svn:wc:ra_dav:version-url -V 134 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables/templates/migration.rb -END
--- a/vendor/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables/templates/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables/templates/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables/templates +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/open_id_authentication/generators/upgrade_open_id_authentication_tables/templates http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.831824Z +2010-08-12T15:03:29.000000Z 512b6bc6321e15e12a9eb5ef10317b73 2009-02-11T19:06:45.087605Z 2438
--- a/vendor/plugins/open_id_authentication/lib/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/3933/trunk/vendor/plugins/open_id_authentication/lib -END -open_id_authentication.rb -K 25 -svn:wc:ra_dav:version-url -V 92 -/svn/!svn/ver/3933/trunk/vendor/plugins/open_id_authentication/lib/open_id_authentication.rb -END
--- a/vendor/plugins/open_id_authentication/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/open_id_authentication/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/open_id_authentication/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/open_id_authentication/lib http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.831824Z +2010-09-10T14:59:25.000000Z c72f1bd48e8c2dfe4e84ba232fc40030 2010-08-10T21:12:32.103531Z 3933
--- a/vendor/plugins/open_id_authentication/lib/open_id_authentication/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,41 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 89 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/lib/open_id_authentication -END -mem_cache_store.rb -K 25 -svn:wc:ra_dav:version-url -V 108 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/lib/open_id_authentication/mem_cache_store.rb -END -db_store.rb -K 25 -svn:wc:ra_dav:version-url -V 101 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/lib/open_id_authentication/db_store.rb -END -nonce.rb -K 25 -svn:wc:ra_dav:version-url -V 98 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/lib/open_id_authentication/nonce.rb -END -timeout_fixes.rb -K 25 -svn:wc:ra_dav:version-url -V 106 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/lib/open_id_authentication/timeout_fixes.rb -END -request.rb -K 25 -svn:wc:ra_dav:version-url -V 100 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/lib/open_id_authentication/request.rb -END -association.rb -K 25 -svn:wc:ra_dav:version-url -V 104 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/lib/open_id_authentication/association.rb -END
--- a/vendor/plugins/open_id_authentication/lib/open_id_authentication/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/open_id_authentication/lib/open_id_authentication/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/open_id_authentication/lib/open_id_authentication +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/open_id_authentication/lib/open_id_authentication http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.835838Z +2010-08-12T15:03:29.000000Z 1effe2a3ab6ff2cf3a4ffc288222b114 2009-02-11T19:06:45.087605Z 2438 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.835838Z +2010-08-12T15:03:29.000000Z 9ed2aea6a3f0e76f21a84bf5bdb1bebe 2009-02-11T19:06:45.087605Z 2438 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.835838Z +2010-08-12T15:03:29.000000Z 4aa743638f54375c2f1f25e62fa50bf3 2009-02-11T19:06:45.087605Z 2438 @@ -134,7 +134,7 @@ -2010-09-23T14:37:45.835838Z +2010-08-12T15:03:29.000000Z d05c8725996156d4cc153a2fc0891db8 2009-02-11T19:06:45.087605Z 2438 @@ -168,7 +168,7 @@ -2010-09-23T14:37:45.835838Z +2010-08-12T15:03:29.000000Z 6a6fdfddabbc9ae4b8c11f69bc653107 2009-02-11T19:06:45.087605Z 2438 @@ -202,7 +202,7 @@ -2010-09-23T14:37:45.835838Z +2010-08-12T15:03:29.000000Z 42863e1d17d5af05e0e896d336def59c 2009-02-11T19:06:45.087605Z 2438
--- a/vendor/plugins/open_id_authentication/tasks/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 68 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/tasks -END -open_id_authentication_tasks.rake -K 25 -svn:wc:ra_dav:version-url -V 102 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/tasks/open_id_authentication_tasks.rake -END
--- a/vendor/plugins/open_id_authentication/tasks/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/open_id_authentication/tasks/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/open_id_authentication/tasks +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/open_id_authentication/tasks http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.835838Z +2010-08-12T15:03:29.000000Z 54b595ee92e0adb364a9086340b2af51 2009-02-11T19:06:45.087605Z 2438
--- a/vendor/plugins/open_id_authentication/test/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 67 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/test -END -test_helper.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/test/test_helper.rb -END -normalize_test.rb -K 25 -svn:wc:ra_dav:version-url -V 85 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/test/normalize_test.rb -END -status_test.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/test/status_test.rb -END -open_id_authentication_test.rb -K 25 -svn:wc:ra_dav:version-url -V 98 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/test/open_id_authentication_test.rb -END -mem_cache_store_test.rb -K 25 -svn:wc:ra_dav:version-url -V 91 -/svn/!svn/ver/2438/trunk/vendor/plugins/open_id_authentication/test/mem_cache_store_test.rb -END
--- a/vendor/plugins/open_id_authentication/test/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/open_id_authentication/test/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/open_id_authentication/test +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/open_id_authentication/test http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.839834Z +2010-08-12T15:03:29.000000Z 9448478c6f6c999b3dfae03f9661a7a9 2009-02-11T19:06:45.087605Z 2438 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.839834Z +2010-08-12T15:03:29.000000Z 218b9c429fce5d50a6de37d10d4c626a 2009-02-11T19:06:45.087605Z 2438 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.839834Z +2010-08-12T15:03:29.000000Z 3ffcd8ee621212d3a963257c35cf565c 2009-02-11T19:06:45.087605Z 2438 @@ -134,7 +134,7 @@ -2010-09-23T14:37:45.839834Z +2010-08-12T15:03:29.000000Z 26175162cebaa3962614100cac9726fc 2009-02-11T19:06:45.087605Z 2438 @@ -168,7 +168,7 @@ -2010-09-23T14:37:45.839834Z +2010-08-12T15:03:29.000000Z c3e483ae649f9324f093075331c26ed1 2009-02-11T19:06:45.087605Z 2438
--- a/vendor/plugins/prepend_engine_views/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 60 -/svn/!svn/ver/2887/trunk/vendor/plugins/prepend_engine_views -END -init.rb -K 25 -svn:wc:ra_dav:version-url -V 68 -/svn/!svn/ver/2887/trunk/vendor/plugins/prepend_engine_views/init.rb -END
--- a/vendor/plugins/prepend_engine_views/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/prepend_engine_views/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/prepend_engine_views +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/prepend_engine_views http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.843778Z +2010-08-12T15:03:29.000000Z 720c397a2f5ed49f4436f5d9cbe0b5ec 2009-09-13T17:14:35.707881Z 2887
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/README.rdoc Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,43 @@ += Redmine Checkout plugin + +Author:: Holger Just +URL:: http://dev.holgerjust.de/projects/redmine-checkout + +This plugin to Redmine adds a link to the actual repository to the GUI. + +This plugin includes ZeroClipboard[http://code.google.com/p/zeroclipboard/] +by Joseph Huckaby. This software is licensed under the +{GNU Lesser General Public License}[http://www.gnu.org/licenses/lgpl.html]. + +Copyright (c) 2009, 2010 Holger Just + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE. + += Installation + +The installation follows the standard installation path from +http://www.redmine.org/projects/redmine/wiki/Plugins + +1. Copy the software to the vendor/plugins directory. Make sure that the name + of the directory is redmine_checkout. +2. Run rake db:migrate_plugins RAILS_ENV=production +3. Restart Redmine
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/Rakefile Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,10 @@ +#!/usr/bin/env ruby +require 'redmine_plugin_support' + +Dir[File.expand_path(File.dirname(__FILE__)) + "/lib/tasks/**/*.rake"].sort.each { |ext| load ext } + +RedminePluginSupport::Base.setup do |plugin| + plugin.project_name = 'redmine_checkout' + plugin.default_task = [:spec] + plugin.tasks = [:doc, :release, :clean, :spec, :stats] +end \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/app/views/projects/settings/_repository_checkout.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,54 @@ +<p><%= form.select(:checkout_overwrite, [ + [l(:general_text_Yes), "1"], + [l(:general_text_No), "0"] + ], + {}, + :onchange => <<-EOF + Effect.toggle($('checkout_settings'), 'slide', {duration:0.2}); + EOF + )%></p> + +<div id="checkout_settings" <%= 'style="display:none;"' unless form.object.checkout_overwrite? %>><fieldset> + <legend><%=l :label_checkout %></legend> + + <p><%= form.text_area :checkout_description, :cols => 60, :rows => 5, :class => 'wiki-edit', :label => :field_description %></p> + <%= wikitoolbar_for 'repository_checkout_description' %> + + <% if form.object.scm_name == 'Subversion' %> + <p><%= form.select :checkout_display_login,[ + [l(:label_display_login_none), ''], + [l(:label_display_login_username), 'username'], + [l(:label_display_login_password), 'password'] + ], + :label => :setting_checkout_display_login %></p> + <% end %> + + <p><%= form.check_box :checkout_display_command %></p> + + <% javascript_tag do %> + protocolForm = new Subform( + '<%= escape_javascript(render(:partial => "projects/settings/repository_checkout_protocol", :locals => {:protocol => Checkout::Protocol.new({:protocol => form.object.scm_name, :append_path => form.object.allow_subtree_checkout? ? 1: 0, :repository => form.object})})) %>', + <%= form.object.checkout_protocols.length %>, + 'checkout_protocol_table' + ); + <% end %> + <p><label><%=l :label_protocol_plural %></label><%=l :help_repository_checkout_protocols %></p> + <%= hidden_field_tag 'repository[checkout_protocols][-1][protocol]', 'empty' %> + <table class="list checkout_protocol_table"> + <thead><tr> + <th class="protocol_protocol" ><%= l(:setting_protocol)%></th> + <th class="protocol_command" ><%= l(:setting_checkout_command)%></th> + <th class="protocol_fixed_url" ><%= l(:setting_checkout_fixed_url) %></th> + <th class="protocol_access" ><%= l(:label_permissions) %></th> + <th class="protocol_append_path"><%= l(:label_append_path) %></th> + <th class="protocol_is_default" ><%= l(:label_default) %></th> + <th class="protocol_delete" ></th> + </tr></thead> + <tbody id="checkout_protocol_table"> + <% form.object.checkout_protocols.each_with_index do |protocol, index| %> + <%= render :partial => 'projects/settings/repository_checkout_protocol', :locals => {:protocol => protocol, :index => index, :classes => cycle('odd', 'even')} %> + <% end %> + </tbody> + </table> + <div style="text-align: right"><%= link_to_function l(:button_add_protocol), "protocolForm.add()", {:class => "icon icon-add"} %></div> +</fieldset></div>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/app/views/projects/settings/_repository_checkout_protocol.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,18 @@ +<% + index ||= "--INDEX--" + classes ||= "" + + protocol = Checkout::Protocol.new(protocol) unless protocol.is_a? Checkout::Protocol +%> +<tr id="<%= "checkout_protocols_#{index}" %>" class="<%= classes %>" <%= 'style="display:none"' if index == '--INDEX--' %>> + <td class="protocol_protocol"><%= text_field_tag "repository[checkout_protocols][#{index}][protocol]", protocol.protocol, :size => 10 %></td> + <td class="protocol_command"><%= text_field_tag "repository[checkout_protocols][#{index}][command]", protocol.command, :size => 15 %></td> + <td class="protocol_fixed_url"><%= text_field_tag "repository[checkout_protocols][#{index}][fixed_url]", protocol.fixed_url, :size => 60 %></td> + <td class="protocol_access"><%= select_tag "repository[checkout_protocols][#{index}][access]", options_for_select([ + [l(:label_access_read_write), 'read+write'], + [l(:label_access_read_only), 'read-only'], + [l(:label_access_permission), 'permission']], protocol.access) %></td> + <td class="protocol_append_path"><%= check_box_tag "repository[checkout_protocols][#{index}][append_path]", 1, protocol.append_path? %></td> + <td class="protocol_is_default"><%= check_box_tag "repository[checkout_protocols][#{index}][is_default]", 1, protocol.default? %></td> + <td class="protocol_delete"><%= image_to_function 'delete.png', "var e=$('checkout_protocols_#{index}');var parent=e.up(\"tbody\");e.remove();recalculate_even_odd(parent);return false" %></td> +</tr>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/app/views/redmine_checkout_hooks/_view_repositories_show_contextual.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,36 @@ +<div class="repository-info"> + <% if repository.checkout_description.present? %> + <div class="wiki<%= ' bottomline' if protocols.present? %>"><%= textilizable repository.checkout_description %></div> + <% end %> + <% if protocols.present? %> + <div id="checkout_box"> + <ul id="checkout_protocols"> + <% protocols.each do |p| -%> + <li> + <a <%= 'class="selected"' if p == default_protocol %> id="checkout_protocol_<%= p.protocol.to_s.underscore %>" data-permission="<%= p.access_rw(User.current) %>" href="<%= URI.escape p.url(checkout_path) %>"><%=h p.protocol %></a> + </li> + <% end -%> + </ul> + <%= text_field_tag :checkout_url, h(default_protocol.full_command(checkout_path)), :readonly => true %> + <%- if Setting.checkout_use_zero_clipboard? %> + <div id="clipboard_container" title="<%= l(:label_copy_to_clipboard) %>" style="display: none;"> + <div id="clipboard_button"><%= image_tag 'paste.png', :plugin => 'redmine_checkout' %></div> + </div> + <% end -%> + <% if default_protocol %><p><%=l :label_access_type, :type => l(default_protocol.access_label(User.current)) %></p><% end %> + + <% javascript_tag do %> + var checkout_access = $H({<%= protocols.inject([]){|r,p| r << "'checkout_protocol_#{p.protocol.to_s.underscore}': '#{l(p.access_label(User.current))}'"}.join(', ') %>}); + var checkout_commands = $H({<%= protocols.inject([]){|r,p| r << "'checkout_protocol_#{p.protocol.to_s.underscore}': '#{escape_javascript(p.full_command(checkout_path))}'"}.join(', ') %>}); + <%- if Setting.checkout_use_zero_clipboard? %>ZeroClipboard.setMoviePath( '<%= image_path('ZeroClipboard.swf', :plugin => 'redmine_checkout') %>' );<% end %> + <% end %> + </div> + <% end%> +</div> +<div style="clear: left"></div> + +<% content_for :header_tags do %> + <%= stylesheet_link_tag 'checkout', :plugin => 'redmine_checkout' %> + <%= javascript_include_tag 'checkout', :plugin => 'redmine_checkout' %> + <%= (javascript_include_tag 'ZeroClipboard', :plugin => 'redmine_checkout') if Setting.checkout_use_zero_clipboard? %> +<% end %> \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/app/views/settings/_checkout.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,43 @@ +<% form_tag({:action => 'edit', :tab => 'checkout'}) do %> + +<% javascript_tag do %> +protocolForms = $H(); + +document.observe("dom:loaded", function() { + $('tab-content-checkout').select('fieldset.collapsed').each(function(e){ + e.down('div').hide(); + }); + <% + CheckoutHelper.supported_scm.select{|scm| Setting.enabled_scm.include?(scm)}.each do |scm| + next if Setting.send("checkout_overwrite_description_#{scm}?") + -%> + $('settings_checkout_description_<%= scm %>').up('div').up('div').hide(); + <%- end %> +}); +<% end %> + + +<div class="box tabular settings"> +<p><%= setting_check_box :checkout_display_checkout_info %></p> + +<p><%= setting_text_area :checkout_description_Abstract, :cols => 60, :rows => 5, :class => 'wiki-edit', :label => :field_description %></p> +<%= wikitoolbar_for 'settings_checkout_description_Abstract' %> + +<p><%= setting_check_box :checkout_use_zero_clipboard %></p> + +<% CheckoutHelper.supported_scm.select{|scm| Setting.enabled_scm.include?(scm)}.each do |scm| -%> +<fieldset class="collapsible collapsed"> + <legend onclick="toggleFieldset(this);"><%= "Repository::#{scm}".constantize.scm_name %></legend> + <div><%= render :partial => 'checkout_scm', :locals => {:scm => scm} %></div> +</fieldset> +<%- end %> + +</div> + +<%= submit_tag l(:button_save) %> +<%- end %> + +<% content_for :header_tags do %> + <%= javascript_include_tag 'subform', :plugin => 'redmine_checkout' %> + <%= stylesheet_link_tag 'checkout', :plugin => 'redmine_checkout' %> +<% end %>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/app/views/settings/_checkout_protocol.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,19 @@ +<% + index ||= "--INDEX--" + classes ||= "" + + protocol = Checkout::Protocol.new(protocol) unless protocol.is_a? Checkout::Protocol +%> +<tr id="<%= "checkout_protocols_#{scm}_#{index}" %>" class="<%= classes %>" <%= 'style="display:none"' if index == '--INDEX--' %>> + <td class="protocol_protocol" ><%= text_field_tag "settings[checkout_protocols_#{scm}][#{index}][protocol]", protocol.protocol, :size => 10 %></td> + <td class="protocol_command" ><%= text_field_tag "settings[checkout_protocols_#{scm}][#{index}][command]", protocol.command, :size => 15 %></td> + <td class="protocol_regex" ><%= text_field_tag "settings[checkout_protocols_#{scm}][#{index}][regex]", protocol.regex, :size => 30 %></td> + <td class="protocol_regex_replacement"><%= text_field_tag "settings[checkout_protocols_#{scm}][#{index}][regex_replacement]", protocol.regex_replacement, :size => 30 %></td> + <td class="protocol_access" ><%= select_tag "settings[checkout_protocols_#{scm}][#{index}][access]", options_for_select([ + [l(:label_access_read_write), 'read+write'], + [l(:label_access_read_only), 'read-only'], + [l(:label_access_permission), 'permission']], protocol.access) %></td> + <td class="protocol_append_path"><%= check_box_tag "settings[checkout_protocols_#{scm}][#{index}][append_path]", 1, protocol.append_path? %></td> + <td class="protocol_is_default"><%= check_box_tag "settings[checkout_protocols_#{scm}][#{index}][is_default]", 1, protocol.default? %></td> + <td class="protocol_delete"><%= image_to_function 'delete.png', "var e=$('checkout_protocols_#{scm}_#{index}');var parent=e.up(\"tbody\");e.remove();recalculate_even_odd(parent);return false" %></td> +</tr>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/app/views/settings/_checkout_scm.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,46 @@ +<div> + <p><%= setting_check_box "checkout_overwrite_description_#{scm}", :label => :setting_checkout_overwrite_description, :onclick => <<-EOF + Effect.toggle($('settings_checkout_description_#{scm}').up("div").up("div"), 'slide', {duration:0.2}); + EOF + %></p> + + <div> + <p><%= setting_text_area "checkout_description_#{scm}", :cols => 60, :rows => 5, :class => 'wiki-edit', :label => :field_description %></p> + <%= wikitoolbar_for "settings_checkout_description_#{scm}" %> + </div> + + <% if scm == 'Subversion' %> + <p><%= setting_select "checkout_display_login",[ + [l(:label_display_login_username), 'username'], + [l(:label_display_login_password), 'password'] + ], + :blank => :label_display_login_none %></p> + <% end %> + + <p><%= setting_check_box "checkout_display_command_#{scm}", :label => :field_checkout_display_command %></p> + + <% javascript_tag do %> + <% repo = "Repository::#{scm}".constantize %> + var subform = new Subform('<%= escape_javascript(render(:partial => "checkout_protocol", :locals => {:protocol => Checkout::Protocol.new({:protocol => repo.scm_name, :append_path => (repo.allow_subtree_checkout? ? '1' : '0'), :command => repo.checkout_default_command}), :scm => scm})) %>',<%= Setting.send("checkout_protocols_#{scm}").length %>,'settings_checkout_protocols_<%= scm %>'); + protocolForms.set('<%= scm %>', subform); + <% end %> + <p><label><%=l :label_protocol_plural %></label><%=l :help_checkout_protocols %></p> + <table class="list checkout_protocol_table"> + <thead><tr> + <th class="protocol_protocol" ><%= l(:setting_protocol)%></th> + <th class="protocol_command" ><%= l(:setting_checkout_command)%></th> + <th class="protocol_regex" ><%= l(:setting_checkout_url_regex) %></th> + <th class="protocol_regex_replacement"><%= l(:setting_checkout_url_regex_replacement) %></th> + <th class="protocol_access" ><%= l(:label_permissions) %></th> + <th class="protocol_append_path" ><%= l(:label_append_path) %></th> + <th class="protocol_is_default" ><%= l(:label_default) %></th> + <th class="protocol_delete" ></th> + </tr></thead> + <tbody id="settings_checkout_protocols_<%= scm %>"> + <% Setting.send("checkout_protocols_#{scm}").each_with_index do |protocol, index| %> + <%= render :partial => 'checkout_protocol', :locals => {:protocol => Checkout::Protocol.new(protocol), :scm => scm, :index => index, :classes => cycle('odd', 'even')} %> + <% end %> + </tbody> + </table> + <div style="text-align: right"><%= link_to_function l(:button_add_protocol), "protocolForms.get('#{scm}').add()", {:class => "icon icon-add"} %></div> +</div>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/app/views/settings/_redmine_checkout.rhtml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,1 @@ +<%=l(:help_moved_settings, :link => link_to(l(:label_settings_location), {:controller => 'settings', :action => 'index', :tab => 'checkout'})) %>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/assets/images/ZeroClipboard.as Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,81 @@ +package { + // Simple Set Clipboard System + // Author: Joseph Huckaby + + import flash.display.Stage; + import flash.display.Sprite; + import flash.display.LoaderInfo; + import flash.display.StageScaleMode; + import flash.events.*; + import flash.display.StageAlign; + import flash.display.StageScaleMode; + import flash.external.ExternalInterface; + import flash.system.Security; + import flash.utils.*; + import flash.system.System; + + public class ZeroClipboard extends Sprite { + + private var id:String = ''; + private var button:Sprite; + private var clipText:String = ''; + + public function ZeroClipboard() { + // constructor, setup event listeners and external interfaces + stage.scaleMode = StageScaleMode.EXACT_FIT; + flash.system.Security.allowDomain("*"); + + // import flashvars + var flashvars:Object = LoaderInfo( this.root.loaderInfo ).parameters; + id = flashvars.id; + + // invisible button covers entire stage + button = new Sprite(); + button.buttonMode = true; + button.useHandCursor = true; + button.graphics.beginFill(0xCCFF00); + button.graphics.drawRect(0, 0, Math.floor(flashvars.width), Math.floor(flashvars.height)); + button.alpha = 0.0; + addChild(button); + button.addEventListener(MouseEvent.CLICK, clickHandler); + + button.addEventListener(MouseEvent.MOUSE_OVER, function(event:Event) { + ExternalInterface.call( 'ZeroClipboard.dispatch', id, 'mouseOver', null ); + } ); + button.addEventListener(MouseEvent.MOUSE_OUT, function(event:Event) { + ExternalInterface.call( 'ZeroClipboard.dispatch', id, 'mouseOut', null ); + } ); + button.addEventListener(MouseEvent.MOUSE_DOWN, function(event:Event) { + ExternalInterface.call( 'ZeroClipboard.dispatch', id, 'mouseDown', null ); + } ); + button.addEventListener(MouseEvent.MOUSE_UP, function(event:Event) { + ExternalInterface.call( 'ZeroClipboard.dispatch', id, 'mouseUp', null ); + } ); + + // external functions + ExternalInterface.addCallback("setHandCursor", setHandCursor); + ExternalInterface.addCallback("setText", setText); + + // signal to the browser that we are ready + ExternalInterface.call( 'ZeroClipboard.dispatch', id, 'load', null ); + } + + public function setText(newText) { + // set the maximum number of files allowed + clipText = newText; + } + + public function setHandCursor(enabled:Boolean) { + // control whether the hand cursor is shown on rollover (true) + // or the default arrow cursor (false) + button.useHandCursor = enabled; + } + + private function clickHandler(event:Event):void { + // user click copies text to clipboard + // as of flash player 10, this MUST happen from an in-movie flash click event + System.setClipboard( clipText ); + ExternalInterface.call( 'ZeroClipboard.dispatch', id, 'complete', clipText ); + } + } +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/assets/images/button.svg Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,11 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg width="100%" height="100%" version="1.1" xmlns="http://www.w3.org/2000/svg"> + <defs> + <linearGradient id="gradient" x1="100%" y1="100%"> + <stop offset="0%" style="stop-color:#ddd; stop-opacity:1" /> + <stop offset="100%" style="stop-color:#f8f8f8; stop-opacity:1" /> + </linearGradient> + </defs> + <rect width="100%" height="100%" style="fill:url(#gradient)"/> +</svg> \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/assets/images/button_focus.svg Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,11 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg width="100%" height="100%" version="1.1" xmlns="http://www.w3.org/2000/svg"> + <defs> + <linearGradient id="gradient" x1="100%" y1="100%"> + <stop offset="0%" style="stop-color:#507AAA; stop-opacity:1" /> + <stop offset="100%" style="stop-color:#759fcf; stop-opacity:1" /> + </linearGradient> + </defs> + <rect width="100%" height="100%" style="fill:url(#gradient)"/> +</svg> \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/assets/images/button_selected.svg Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,11 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> +<svg width="100%" height="100%" version="1.1" xmlns="http://www.w3.org/2000/svg"> + <defs> + <linearGradient id="gradient" x1="100%" y1="100%"> + <stop offset="0%" style="stop-color:#aaa; stop-opacity:1" /> + <stop offset="100%" style="stop-color:#ccc; stop-opacity:1" /> + </linearGradient> + </defs> + <rect width="100%" height="100%" style="fill:url(#gradient)"/> +</svg> \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/assets/javascripts/ZeroClipboard.js Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,311 @@ +// Simple Set Clipboard System +// Author: Joseph Huckaby + +var ZeroClipboard = { + + version: "1.0.7", + clients: {}, // registered upload clients on page, indexed by id + moviePath: 'ZeroClipboard.swf', // URL to movie + nextId: 1, // ID of next movie + + $: function(thingy) { + // simple DOM lookup utility function + if (typeof(thingy) == 'string') thingy = document.getElementById(thingy); + if (!thingy.addClass) { + // extend element with a few useful methods + thingy.hide = function() { this.style.display = 'none'; }; + thingy.show = function() { this.style.display = ''; }; + thingy.addClass = function(name) { this.removeClass(name); this.className += ' ' + name; }; + thingy.removeClass = function(name) { + var classes = this.className.split(/\s+/); + var idx = -1; + for (var k = 0; k < classes.length; k++) { + if (classes[k] == name) { idx = k; k = classes.length; } + } + if (idx > -1) { + classes.splice( idx, 1 ); + this.className = classes.join(' '); + } + return this; + }; + thingy.hasClass = function(name) { + return !!this.className.match( new RegExp("\\s*" + name + "\\s*") ); + }; + } + return thingy; + }, + + setMoviePath: function(path) { + // set path to ZeroClipboard.swf + this.moviePath = path; + }, + + dispatch: function(id, eventName, args) { + // receive event from flash movie, send to client + var client = this.clients[id]; + if (client) { + client.receiveEvent(eventName, args); + } + }, + + register: function(id, client) { + // register new client to receive events + this.clients[id] = client; + }, + + getDOMObjectPosition: function(obj, stopObj) { + // get absolute coordinates for dom element + var info = { + left: 0, + top: 0, + width: obj.width ? obj.width : obj.offsetWidth, + height: obj.height ? obj.height : obj.offsetHeight + }; + + while (obj && (obj != stopObj)) { + info.left += obj.offsetLeft; + info.top += obj.offsetTop; + obj = obj.offsetParent; + } + + return info; + }, + + Client: function(elem) { + // constructor for new simple upload client + this.handlers = {}; + + // unique ID + this.id = ZeroClipboard.nextId++; + this.movieId = 'ZeroClipboardMovie_' + this.id; + + // register client with singleton to receive flash events + ZeroClipboard.register(this.id, this); + + // create movie + if (elem) this.glue(elem); + } +}; + +ZeroClipboard.Client.prototype = { + + id: 0, // unique ID for us + ready: false, // whether movie is ready to receive events or not + movie: null, // reference to movie object + clipText: '', // text to copy to clipboard + handCursorEnabled: true, // whether to show hand cursor, or default pointer cursor + cssEffects: true, // enable CSS mouse effects on dom container + handlers: null, // user event handlers + + glue: function(elem, appendElem, stylesToAdd) { + // glue to DOM element + // elem can be ID or actual DOM element object + this.domElement = ZeroClipboard.$(elem); + + // float just above object, or zIndex 99 if dom element isn't set + var zIndex = 99; + if (this.domElement.style.zIndex) { + zIndex = parseInt(this.domElement.style.zIndex, 10) + 1; + } + + if (typeof(appendElem) == 'string') { + appendElem = ZeroClipboard.$(appendElem); + } + else if (typeof(appendElem) == 'undefined') { + appendElem = document.getElementsByTagName('body')[0]; + } + + // find X/Y position of domElement + var box = ZeroClipboard.getDOMObjectPosition(this.domElement, appendElem); + + // create floating DIV above element + this.div = document.createElement('div'); + var style = this.div.style; + style.position = 'absolute'; + style.left = '' + box.left + 'px'; + style.top = '' + box.top + 'px'; + style.width = '' + box.width + 'px'; + style.height = '' + box.height + 'px'; + style.zIndex = zIndex; + + if (typeof(stylesToAdd) == 'object') { + for (addedStyle in stylesToAdd) { + style[addedStyle] = stylesToAdd[addedStyle]; + } + } + + // style.backgroundColor = '#f00'; // debug + + appendElem.appendChild(this.div); + + this.div.innerHTML = this.getHTML( box.width, box.height ); + }, + + getHTML: function(width, height) { + // return HTML for movie + var html = ''; + var flashvars = 'id=' + this.id + + '&width=' + width + + '&height=' + height; + + if (navigator.userAgent.match(/MSIE/)) { + // IE gets an OBJECT tag + var protocol = location.href.match(/^https/i) ? 'https://' : 'http://'; + html += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="'+protocol+'download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="'+width+'" height="'+height+'" id="'+this.movieId+'" align="middle"><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="false" /><param name="movie" value="'+ZeroClipboard.moviePath+'" /><param name="loop" value="false" /><param name="menu" value="false" /><param name="quality" value="best" /><param name="bgcolor" value="#ffffff" /><param name="flashvars" value="'+flashvars+'"/><param name="wmode" value="transparent"/></object>'; + } + else { + // all other browsers get an EMBED tag + html += '<embed id="'+this.movieId+'" src="'+ZeroClipboard.moviePath+'" loop="false" menu="false" quality="best" bgcolor="#ffffff" width="'+width+'" height="'+height+'" name="'+this.movieId+'" align="middle" allowScriptAccess="always" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="'+flashvars+'" wmode="transparent" />'; + } + return html; + }, + + hide: function() { + // temporarily hide floater offscreen + if (this.div) { + this.div.style.left = '-2000px'; + } + }, + + show: function() { + // show ourselves after a call to hide() + this.reposition(); + }, + + destroy: function() { + // destroy control and floater + if (this.domElement && this.div) { + this.hide(); + this.div.innerHTML = ''; + + var body = document.getElementsByTagName('body')[0]; + try { body.removeChild( this.div ); } catch(e) {;} + + this.domElement = null; + this.div = null; + } + }, + + reposition: function(elem) { + // reposition our floating div, optionally to new container + // warning: container CANNOT change size, only position + if (elem) { + this.domElement = ZeroClipboard.$(elem); + if (!this.domElement) this.hide(); + } + + if (this.domElement && this.div) { + var box = ZeroClipboard.getDOMObjectPosition(this.domElement); + var style = this.div.style; + style.left = '' + box.left + 'px'; + style.top = '' + box.top + 'px'; + } + }, + + setText: function(newText) { + // set text to be copied to clipboard + this.clipText = newText; + if (this.ready) this.movie.setText(newText); + }, + + addEventListener: function(eventName, func) { + // add user event listener for event + // event types: load, queueStart, fileStart, fileComplete, queueComplete, progress, error, cancel + eventName = eventName.toString().toLowerCase().replace(/^on/, ''); + if (!this.handlers[eventName]) this.handlers[eventName] = []; + this.handlers[eventName].push(func); + }, + + setHandCursor: function(enabled) { + // enable hand cursor (true), or default arrow cursor (false) + this.handCursorEnabled = enabled; + if (this.ready) this.movie.setHandCursor(enabled); + }, + + setCSSEffects: function(enabled) { + // enable or disable CSS effects on DOM container + this.cssEffects = !!enabled; + }, + + receiveEvent: function(eventName, args) { + // receive event from flash + eventName = eventName.toString().toLowerCase().replace(/^on/, ''); + + // special behavior for certain events + switch (eventName) { + case 'load': + // movie claims it is ready, but in IE this isn't always the case... + // bug fix: Cannot extend EMBED DOM elements in Firefox, must use traditional function + this.movie = document.getElementById(this.movieId); + if (!this.movie) { + var self = this; + setTimeout( function() { self.receiveEvent('load', null); }, 1 ); + return; + } + + // firefox on pc needs a "kick" in order to set these in certain cases + if (!this.ready && navigator.userAgent.match(/Firefox/) && navigator.userAgent.match(/Windows/)) { + var self = this; + setTimeout( function() { self.receiveEvent('load', null); }, 100 ); + this.ready = true; + return; + } + + this.ready = true; + this.movie.setText( this.clipText ); + this.movie.setHandCursor( this.handCursorEnabled ); + break; + + case 'mouseover': + if (this.domElement && this.cssEffects) { + this.domElement.addClass('hover'); + if (this.recoverActive) this.domElement.addClass('active'); + } + break; + + case 'mouseout': + if (this.domElement && this.cssEffects) { + this.recoverActive = false; + if (this.domElement.hasClass('active')) { + this.domElement.removeClass('active'); + this.recoverActive = true; + } + this.domElement.removeClass('hover'); + } + break; + + case 'mousedown': + if (this.domElement && this.cssEffects) { + this.domElement.addClass('active'); + } + break; + + case 'mouseup': + if (this.domElement && this.cssEffects) { + this.domElement.removeClass('active'); + this.recoverActive = false; + } + break; + } // switch eventName + + if (this.handlers[eventName]) { + for (var idx = 0, len = this.handlers[eventName].length; idx < len; idx++) { + var func = this.handlers[eventName][idx]; + + if (typeof(func) == 'function') { + // actual function reference + func(this, args); + } + else if ((typeof(func) == 'object') && (func.length == 2)) { + // PHP style object + method, i.e. [myObject, 'myMethod'] + func[0][ func[1] ](this, args); + } + else if (typeof(func) == 'string') { + // name of function + window[func](this, args); + } + } // foreach event handler defined + } // user defined handler for event + } + +};
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/assets/javascripts/checkout.js Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,33 @@ +document.observe("dom:loaded", function() { + /* update the checkout URL if clicked on a protocol */ + $('checkout_protocols').select('a').each(function(e) { + e.observe('click', function(event) { + $('checkout_url').value = checkout_commands.get(this.id); + $('checkout_protocols').select('a').each(function(e) { + e.removeClassName("selected"); + }); + this.addClassName("selected") + + var value = checkout_access.get(this.id); + $('checkout_access').innerHTML = value; + + event.stop(); + }); + }); + /* select the text field contents if activated */ + Event.observe('checkout_url', 'click', function(event) { + this.activate(); + }); + + if (typeof('ZeroClipboard') != 'undefined') { + $('clipboard_container').show(); + clipboard = new ZeroClipboard.Client(); + clipboard.setHandCursor( true ); + clipboard.glue('clipboard_button', 'clipboard_container'); + + clipboard.addEventListener('mouseOver', function (client) { + clipboard.setText( $('checkout_url').value ); + }); + } +}); +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/assets/javascripts/subform.js Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,45 @@ +var Subform = Class.create({ + lineIndex: 1, + parentElement: "", + initialize: function(rawHTML, lineIndex, parentElement) { + this.rawHTML = rawHTML; + this.lineIndex = lineIndex; + this.parentElement = parentElement; + }, + + parsedHTML: function() { + return this.rawHTML.replace(/--INDEX--/g, this.lineIndex++); + }, + + add: function() { + var e = $(this.parentElement); + Element.insert(e, { bottom: this.parsedHTML()}); + Effect.toggle(e.childElements().last(), 'slide', {duration:0.2}); + recalculate_even_odd(e); + }, + + add_after: function(e) { + Element.insert(e, { after: this.parsedHTML()}); + Effect.toggle(e.next(), 'slide', {duration:0.2}); + recalculate_even_odd($(this.parentElement)); + }, + + add_on_top: function() { + var e = $(this.parentElement); + Element.insert(e, { top: this.parsedHTML()}); + Effect.toggle(e.childElements().first(), 'slide', {duration:0.2}); + recalculate_even_odd(e); + } +}); + +function recalculate_even_odd(element) { + $A(element.childElements()).inject( + 0, + function(acc, e) + { + e.removeClassName("even"); + e.removeClassName("odd"); + e.addClassName( (acc%2==0) ? "odd" : "even"); return ++acc; + } + ) +}
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/assets/stylesheets/checkout.css Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,162 @@ +/* Uncomment the following line for nicer tables if you use the alternate theme (or derived). */ +/* @import url(checkout_alternate.css); */ + +table.checkout_protocol_table td { padding-right: 6px; vertical-align: middle; /* Double the border with of text input boxes */ } +table.checkout_protocol_table td.protocol_access { padding-right: 0; } +table.checkout_protocol_table td input[type=text], .checkout_protocol_table td select { width: 100%; } +table.checkout_protocol_table td.protocol_delete { width: 16px; } +table.checkout_protocol_table td.protocol_append_path, table.checkout_protocol_table td.protocol_is_default { text-align: center; } + +.icon-changeset { background-image: url(../../../images/changeset.png);} + +.repository-info { + background-color: #eee; + border: 1px solid #E4E4E4; + padding: 0 10px; + margin: 4px 0 10px; +} + +.bottomline { + border-bottom: 1px solid #ccc; +} + +#checkout_box { + margin: 10px 0; +} + +#checkout_protocols { + height: 23px; + float: left; + margin: 0; + padding: 0; +} + +#checkout_protocols li { + float: left; + list-style-type: none; + margin: 0; + padding: 0; +} + +#checkout_protocols li:first-child a { + border-left-width: 1px; + + /* Standard, Opera 10, IE 9 */ + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; + /* Konquerer */ + -khtml-border-top-left-radius: 3px; + -khtml-border-bottom-left-radius: 3px; + /* Gecko (Firefox, ...) */ + -moz-border-radius: 3px 0 0 3px; + /* Webkit (Chrome, Safari, ...) */ + -webkit-border-top-left-radius: 3px; + -webkit-border-bottom-left-radius: 3px; + /* IE <= 9 not supported */ +} + +#checkout_protocols li a, +#clipboard_button { + background-color: #eee; + background: url(../images/button.svg) 0 0 no-repeat; /* Opera needs an "image" :( - using svg for this so it will scale properly without looking too ugly */ + background: -khtml-gradient(linear, left top, left bottom, from(#f8f8f8), to(#ddd)); /* Konquerer */ + background: -moz-linear-gradient(top, #f8f8f8, #ddd); /* Gecko (Firefox, ...) */ + background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#ddd)); /* Webkit (Chrome, Safari, ...) */ + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#dddddd'); /* IE 5.5 - 7 */ + -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#dddddd'); /* IE 8 */ + + border-color: #bbb; + border-style: solid; + border-width: 1px 1px 1px 0; + + color: #333; + display: block; + font-size: 11px; + font-weight: bold; + line-height: 21px; + margin: 0; + padding: 0 10px 0 11px; + text-decoration: none; + text-shadow: 1px 1px 0 #fff; + position: relative; /* to please IE */ +} + +#checkout_protocols li a:hover, +#checkout_protocols li a:focus { + background-color: #507AAA; + background: url(../images/button_focus.svg) 0 0 no-repeat; /* Opera needs an "image" :( - using svg for this so it will scale properly without looking too ugly */ + background: -khtml-gradient(linear, left top, left bottom, from(#759fcf), to(#507AAA)); /* Konquerer */ + background: -moz-linear-gradient(top, #759fcf, #507AAA); /* Gecko (Firefox, ...) */ + background: -webkit-gradient(linear, left top, left bottom, from(#759fcf), to(#507AAA)); /* Webkit (Chrome, Safari, ...) */ + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#759fcf', endColorstr='#507AAA'); /* IE 5.5 - IE 7 */ + -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#759fcf', endColorstr='#507AAA'); /* IE 8 */ + + color: #fff; + text-shadow: -1px -1px 0 rgba(0,0,0,0.4); + border-top-color: #759fcf; + border-bottom-color: #507AAA; +} + +#checkout_protocols li a.selected, +#clipboard_button.active { + background-color: #bbb; + background: url(../images/button_selected.svg) 0 0 no-repeat; /* Opera needs an "image" :( - using svg for this so it will scale properly without looking too ugly */ + background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#aaa)); /* Konquerer */ + background: -moz-linear-gradient(top, #ccc, #aaa); /* Gecko (Firefox, ...) */ + background: -webkit-gradient(linear, left top, left bottom, from(#ccc), to(#aaa)); /* Webkit (Chrome, Safari, ...) */ + filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#aaaaaa'); /* IE 5.5 - IE 7 */ + -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#aaaaaa'); /* IE 8 */ + + color: #000; + text-shadow: 1px 1px 0 rgba(255,255,255,0.4); + border-color: #bbb; +} + +#checkout_url { + border: 1px solid #bbb; + border-width: 1px 1px 1px 0; + background-color: #fff; + color: #000; + font-size: 11px; + height: 16px; + padding: 3px 5px 2px; + width: 400px; + font-family: Monaco,"DejaVu Sans Mono","Bitstream Vera Sans Mono","Courier New",monospace; + margin: 0 5px 0 0; + float: left; +} + +#checkout_box p { + color: #666; + line-height: 23px; + font-size: 11px; + margin: 0 0 0 5px; +} + +span#checkout_access { + font-weight: bold; +} + +#clipboard_container { + position: relative; + float: left; + margin-right: 5px; +} + +#clipboard_button { + height: 21px; + width: 23px; + padding: 0; + border-width: 1px; + text-align: center; + + border-radius: 5px; /* Standard, Opera 10, IE 9 */ + -khtml-border-radius: 3px; /* Konquerer */ + -moz-border-radius: 3px ; /* Gecko (Firefox, ...) */ + -webkit-border-radius: 3px; /* Webkit (Chrome, Safari, ...) */ + /* IE <= 9 not supported */ +} + +#clipboard_button img { + padding-top: 2px; +} \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/assets/stylesheets/checkout_alternate.css Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,2 @@ +table.checkout_protocol_table td { padding-right: 10px !important; /* Double the border with of text input boxes */ } +table.checkout_protocol_table td.protocol_access { padding-right: 2px !important; }
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/config/locales/de.yml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,39 @@ +de: + label_checkout: "Checkout" + + setting_checkout_display_checkout_info: "Checkout-Informationen anzeigen" + setting_checkout_fixed_url: "Checkout-URL" + setting_checkout_url_regex: "Regulärer Ausdruck" + setting_checkout_url_regex_replacement: "Ersatztext" + setting_checkout_display_login: "Mitgliedsnamen anzeigen" + setting_checkout_command: "Checkout-Befehl" + setting_checkout_use_zero_clipboard: "Zwischenablagen-Helfer anzeigen" + + setting_checkout_overwrite_description: "Standard-Beschreibung überschreiben" + field_checkout_overwrite: "Überschreibe Standardeinstellung für Checkout-Protokolle" + field_checkout_display_command: "Checkout-Befehl anzeigen" + + label_protocol_plural: "Protokolle" + button_add_protocol: "Protokoll hinzufügen" + + label_access_type: 'Diese URL erlaubt Zugriff zum <span id="checkout_access">{{type}}</span>.' + label_access_read_only: 'Nur-Lesen' + label_access_read_write: "Lesen+Schreiben" + label_access_permission: "Abhängig von Benutzer-Rechten" + + label_append_path: "Pfad anhängen" + + label_display_login_none: "Mitgliedsnamen nicht anzeigen" + label_display_login_username: "Mitgliedsnamen anzeigen, aber kein Kennwort" + label_display_login_password: "Mitgliedsnamen und Kennwort anzeigen" + + label_copy_to_clipboard: "In die Zwischenablage kopieren" + + help_checkout_protocols: | + Die URLs in Protokollen werden aus der originalen URL erzeugt, auf die der + reguläre Ausdruck und der Ersatztext angewendet werden. Der Ersatztext + erlaubt Rückwärtsreferenzen zu geklammerten Audrücken mit der \1 Notation. + help_repository_checkout_protocols: | + Lassen Sie das Checkout-URL-Feld leer um die URL des Projektarchivs zu verwenden. + help_moved_settings: "Die Konfigurationsseite wurde nach {{link}} verschoben." + label_settings_location: "Administration -> Konfiguration -> Checkout" \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/config/locales/en-GB.yml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,39 @@ +en: + label_checkout: "Checkout" + + setting_checkout_display_checkout_info: "Display checkout information" + setting_checkout_fixed_url: "Checkout URL" + setting_checkout_url_regex: "Regular expression" + setting_checkout_url_regex_replacement: "Replacement text" + setting_checkout_display_login: "Display Login" + setting_checkout_command: "Checkout command" + setting_checkout_use_zero_clipboard: "Display clipboard helper" + + setting_checkout_overwrite_description: "Overwrite default description" + field_checkout_overwrite: "Overwrite default settings for checkout protocols" + field_checkout_display_command: "Display checkout command" + + label_protocol_plural: "Protocols" + button_add_protocol: "Add Protocol" + + label_access_type: 'This URL has <span id="checkout_access">{{type}}</span> access.' + label_access_read_only: 'Read-Only' + label_access_read_write: "Read+Write" + label_access_permission: "Depending on user's permissions" + + label_append_path: "Append path" + + label_display_login_none: "Do not show login or password" + label_display_login_username: "Show login but no password" + label_display_login_password: "Show login and password" + + label_copy_to_clipboard: "Copy to clipboard" + + help_checkout_protocols: | + The URLs in protocols are generated from applying the regular expression + and the replacement text to the original URL. The replacement text + supports back-references to braced expressions using the \1 notation. + help_repository_checkout_protocols: | + Leave the Checkout URL field empty to use the defined repository URL. + help_moved_settings: "The settings page has been moved to {{link}}." + label_settings_location: "Administration -> Settings -> Checkout"
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/config/locales/en.yml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,39 @@ +en: + label_checkout: "Checkout" + + setting_checkout_display_checkout_info: "Display checkout information" + setting_checkout_fixed_url: "Checkout URL" + setting_checkout_url_regex: "Regular expression" + setting_checkout_url_regex_replacement: "Replacement text" + setting_checkout_display_login: "Display Login" + setting_checkout_command: "Checkout command" + setting_checkout_use_zero_clipboard: "Display clipboard helper" + + setting_checkout_overwrite_description: "Overwrite default description" + field_checkout_overwrite: "Overwrite default settings for checkout protocols" + field_checkout_display_command: "Display checkout command" + + label_protocol_plural: "Protocols" + button_add_protocol: "Add Protocol" + + label_access_type: 'This URL has <span id="checkout_access">{{type}}</span> access.' + label_access_read_only: 'Read-Only' + label_access_read_write: "Read+Write" + label_access_permission: "Depending on user's permissions" + + label_append_path: "Append path" + + label_display_login_none: "Do not show login or password" + label_display_login_username: "Show login but no password" + label_display_login_password: "Show login and password" + + label_copy_to_clipboard: "Copy to clipboard" + + help_checkout_protocols: | + The URLs in protocols are generated from applying the regular expression + and the replacement text to the original URL. The replacement text + supports back-references to braced expressions using the \1 notation. + help_repository_checkout_protocols: | + Leave the Checkout URL field empty to use the defined repository URL. + help_moved_settings: "The settings page has been moved to {{link}}." + label_settings_location: "Administration -> Settings -> Checkout"
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/config/locales/es.yml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,39 @@ +es: + label_checkout: "Checkout" + + setting_checkout_display_checkout_info: "Display checkout information" + setting_checkout_fixed_url: "URL de checkout" + setting_checkout_url_regex: "Expresion regular" + setting_checkout_url_regex_replacement: "Texto de remplazo" + setting_checkout_display_login: "Mostrar usuario" + setting_checkout_command: "Comando de checkout" + setting_checkout_use_zero_clipboard: "Display clipboard helper" + + setting_checkout_overwrite_description: "Overwrite default description" + field_checkout_overwrite: "Overwrite default settings for checkout protocols" + field_checkout_display_command: "Display checkout command" + + label_protocol_plural: "Protocolos" + button_add_protocol: "Crear Protocolo" + + label_access_type: 'This URL has <span id="checkout_access">{{type}}</span> access.' + label_access_read_only: 'Read-Only' + label_access_read_write: "Read+Write" + label_access_permission: "Depending on user's permissions" + + label_append_path: "Append path" + + label_display_login_none: "No mostrar usuario o contraseña" + label_display_login_username: "Mostrar usuario pero no contraseña" + label_display_login_password: "Mostrar usuario y contraseña" + + label_copy_to_clipboard: "Copy to clipboard" + + help_checkout_protocols: | + The URLs in protocols are generated from applying the regular expression + and the replacement text to the original URL. The replacement text + supports back-references to braced expressions using the \1 notation. + help_repository_checkout_protocols: | + Leave the Checkout URL field empty to use the defined repository URL. + help_moved_settings: "The settings page has been moved to {{link}}." + label_settings_location: "Administration -> Settings -> Checkout"
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/config/locales/fr.yml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,39 @@ +fr: + label_checkout: "Dépôt" + + setting_checkout_display_checkout_info: "Display checkout information" + setting_checkout_fixed_url: "URL du dépôt" + setting_checkout_url_regex: "Expression Régulière" + setting_checkout_url_regex_replacement: "Texte de substitution" + setting_checkout_display_login: "Affiche le login" + setting_checkout_command: "Checkout command" + setting_checkout_use_zero_clipboard: "Display clipboard helper" + + setting_checkout_overwrite_description: "Overwrite default description" + field_checkout_overwrite: "Overwrite default settings for checkout protocols" + field_checkout_display_command: "Affiche l'URL du dépôt" + + label_protocol_plural: "Protocoles" + button_add_protocol: "Créer un protocole" + + label_access_type: 'This URL has <span id="checkout_access">{{type}}</span> access.' + label_access_read_only: 'Read-Only' + label_access_read_write: "Read+Write" + label_access_permission: "Depending on user's permissions" + + label_append_path: "Append path" + + label_display_login_none: "Ne pas afficher le login ni le mot de passe" + label_display_login_username: "Afficher le login, pas le mot de passe" + label_display_login_password: "Afficher le login et le mot de passe" + + label_copy_to_clipboard: "Copy to clipboard" + + help_checkout_protocols: | + The URLs in protocols are generated from applying the regular expression + and the replacement text to the original URL. The replacement text + supports back-references to braced expressions using the \1 notation. + help_repository_checkout_protocols: | + Leave the Checkout URL field empty to use the defined repository URL. + help_moved_settings: "The settings page has been moved to {{link}}." + label_settings_location: "Administration -> Settings -> Checkout"
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/config/locales/it.yml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,40 @@ +it: + label_checkout: "Checkout" + + setting_checkout_display_checkout_info: "Visualizza le informazioni sul checkout" + setting_checkout_fixed_url: "URL di checkout" + setting_checkout_url_regex: "Espressione regolare" + setting_checkout_url_regex_replacement: "Testo sostituito" + setting_checkout_display_login: "Login visualizzato" + setting_checkout_command: "Comando per il checkout" + setting_checkout_use_zero_clipboard: "Visualizza l'utility per la copia negli appunti" + + setting_checkout_overwrite_description: "Sovrascrivi la descrizione predefinita" + field_checkout_overwrite: "Sovrascrivi le impostazioni di checkout predefinite" + field_checkout_display_command: "Visualizza il comando per il checkout" + + label_protocol_plural: "Protocolli" + button_add_protocol: "Aggiungi Protocollo" + + label_access_type: 'Questo URL ha accesso <span id="checkout_access">{{type}}</span>.' + label_access_read_only: 'Sola-Lettura' + label_access_read_write: "Lettura+Scrittura" + label_access_permission: "Dipende dai permessi dell'utente" + + label_append_path: "Aggiungi percorso" + + label_display_login_none: "Non mostrare il login e password" + label_display_login_username: "Mostra il login senza password" + label_display_login_password: "Mostra il login e la password" + + label_copy_to_clipboard: "Copia negli appunti" + + help_checkout_protocols: | + Gli URL dei protocolli sono generati applicando le espressioni regolari + ed effettuando la sostituzione dell'URL originale con il testo specificato. + Il testo per la sostituzione può contenere riferimenti a più match usando + la notazione \1 \2... + help_repository_checkout_protocols: | + Lascia il campo URL di checkout bianco per usare l'URL definito nel repository. + help_moved_settings: "La pagina delle impostazioni è stata spostata in {{link}}." + label_settings_location: "Amministrazione -> Impostazioni -> Checkout"
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/config/locales/ja.yml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,39 @@ +ja: + label_checkout: "Checkout" + + setting_checkout_display_checkout_info: "Display checkout information" + setting_checkout_fixed_url: "チェックアウト URL" + setting_checkout_url_regex: "Regular expression" + setting_checkout_url_regex_replacement: "Replacement text" + setting_checkout_display_login: "ログインの表示" + setting_checkout_command: "Checkout command" + setting_checkout_use_zero_clipboard: "Display clipboard helper" + + setting_checkout_overwrite_description: "Overwrite default description" + field_checkout_overwrite: "Overwrite default settings for checkout protocols" + field_checkout_display_command: "Display checkout command" + + label_protocol_plural: "Protocols" + button_add_protocol: "Add Protocol" + + label_access_type: 'This URL has <span id="checkout_access">{{type}}</span> access.' + label_access_read_only: 'Read-Only' + label_access_read_write: "Read+Write" + label_access_permission: "Depending on user's permissions" + + label_append_path: "Append path" + + label_display_login_none: "ログインとパスワードを非表示" + label_display_login_username: "ログインのみ表示" + label_display_login_password: "ログインとパスワードを表示" + + label_copy_to_clipboard: "Copy to clipboard" + + help_checkout_protocols: | + The URLs in protocols are generated from applying the regular expression + and the replacement text to the original URL. The replacement text + supports back-references to braced expressions using the \1 notation. + help_repository_checkout_protocols: | + Leave the Checkout URL field empty to use the defined repository URL. + help_moved_settings: "The settings page has been moved to {{link}}." + label_settings_location: "Administration -> Settings -> Checkout"
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/config/locales/ko.yml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,40 @@ +ko: + label_checkout: "Checkout" + + setting_checkout_display_checkout_info: "Display checkout information" + setting_checkout_fixed_url: "체크 아웃 URL" + setting_checkout_url_regex: "정규식" + setting_checkout_url_regex_replacement: "대체 문자열" + setting_checkout_display_login: "로그인 표시" + setting_checkout_command: "Checkout command" + setting_checkout_use_zero_clipboard: "Display clipboard helper" + + setting_checkout_overwrite_description: "Overwrite default description" + field_checkout_overwrite: "Overwrite default settings for checkout protocols" + field_checkout_display_command: "Display checkout command" + + label_protocol_plural: "Protocols" + button_add_protocol: "Add Protocol" + + label_access_type: 'This URL has <span id="checkout_access">{{type}}</span> access.' + label_access_read_only: 'Read-Only' + label_access_read_write: "Read+Write" + label_access_permission: "Depending on user's permissions" + + label_append_path: "Append path" + + label_display_login_none: "로그인과 비밀번호를 보여주지 않습니다." + label_display_login_username: "로그인은 보여주지만 비밀번호는 보여주지 않습니다." + label_display_login_password: "로그인과 비밀번호를 보여줍니다." + + label_copy_to_clipboard: "Copy to clipboard" + + help_checkout_protocols: | + The URLs in protocols are generated from applying the regular expression + and the replacement text to the original URL. The replacement text + supports back-references to braced expressions using the \1 notation. + help_repository_checkout_protocols: | + Leave the Checkout URL field empty to use the defined repository URL. + help_moved_settings: "The settings page has been moved to {{link}}." + label_settings_location: "Administration -> Settings -> Checkout" +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/config/locales/nl.yml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,40 @@ +nl: + label_checkout: "Checkout" + + setting_checkout_display_checkout_info: "Checkout-informatie tonen" + setting_checkout_fixed_url: "Checkout-URL" + setting_checkout_url_regex: "Reguliere expressie" + setting_checkout_url_regex_replacement: "Vervangingstekst" + setting_checkout_display_login: "Geef login weer" + setting_checkout_command: "Checkout-opdracht" + setting_checkout_use_zero_clipboard: "Klembord-hulp tonen" + + setting_checkout_overwrite_description: "Standaard omschrijving overschrijven" + field_checkout_overwrite: "Overschrijf standaard instellingen voor checkout-protocollen" + field_checkout_display_command: "Checkout-opdracht tonen" + + label_protocol_plural: "Protocollen" + button_add_protocol: "Protocol toevoegen" + + label_access_type: 'Deze URL heeft <span id="checkout_access">{{type}}</span> toegang.' + label_access_read_only: 'Alleen lezen' + label_access_read_write: "Lezen en schrijven" + label_access_permission: "Afhankelijk van gebruikersrechten" + + label_append_path: "Pad toevoegen" + + label_display_login_none: "Geen logingegevens tonen" + label_display_login_username: "Toon login zonder wachtwoord" + label_display_login_password: "Toon login en wachtwoord" + + label_copy_to_clipboard: "Naar klembord kopiëren" + + help_checkout_protocols: | + De URLs in protocollen worden samengesteld vanuit de originele URL, na + toepassing van de reguliere expressie en vervangingstekst. De vervangingstekst + ondersteunt referenties vanuit tussen haakjes geplaatste expressies + door middel van de \1 notatie. + help_repository_checkout_protocols: | + Laat het veld Checkout-URL leeg om de projectrepository te gebruiken. + help_moved_settings: "De instellingspagina is verplaatst naar {{link}}." + label_settings_location: "Administratie -> Instellingen -> Checkout" \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/config/locales/pl.yml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,39 @@ +pl: + label_checkout: "Pobieranie repozytorium" + + setting_checkout_display_checkout_info: "Pokaż informację o możliwości pobrania repozytorium" + setting_checkout_fixed_url: "Adres URL pobierania repozytorium" + setting_checkout_url_regex: "Wyrażenie regularne" + setting_checkout_url_regex_replacement: "Wynikowy adres URL" + setting_checkout_display_login: "Pokaż dane logowania" + setting_checkout_command: "Komenda pobrania repozytorium" + setting_checkout_use_zero_clipboard: "Pokaż pomocnika schowka" + + setting_checkout_overwrite_description: "Nadpisz domyślny opis" + field_checkout_overwrite: "Nadpisz domyślne ustawienia dla protokołów" + field_checkout_display_command: "Pokaż komendę pobrania repozytorium" + + label_protocol_plural: "Protokoły" + button_add_protocol: "Dodaj protokół" + + label_access_type: 'Ten adres URL ma dostęp <span id="checkout_access">{{type}}</span>.' + label_access_read_only: 'Tylko do odczytu' + label_access_read_write: "Odczyt+Zapis" + label_access_permission: "Zależne od uprawnień użytkownika" + + label_append_path: "Dołącz ścieżkę" + + label_display_login_none: "Nie pokazuj loginu ani hasła" + label_display_login_username: "Pokaż tylko login" + label_display_login_password: "Pokaż login i hasło" + + label_copy_to_clipboard: "Kopiuj do schowka" + + help_checkout_protocols: | + Wynikowe adresy URL w protokołach są generowane przez zamianę oryginalnego + adresu URL repozytorium na podstawie wyrażenia regularnego. Wynikowy adres + URL wspiera referencje do grup (tzw. back-references) używając notacji \1. + help_repository_checkout_protocols: | + Pozostaw adres URL pobierania repozytorium pusty aby uzyć adresu zdefiniowanego w ustawieniach projektu. + help_moved_settings: "Ustawienia zostały przeniesione do {{link}}." + label_settings_location: "Administracja -> Ustawienia -> Pobieranie repozytorium"
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/config/locales/ro.yml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,39 @@ +ro: + label_checkout: "Checkout" + + setting_checkout_display_checkout_info: "Display checkout information" + setting_checkout_fixed_url: "URL-ul pentru checkout" + setting_checkout_url_regex: "Expresie regulata (regexp)" + setting_checkout_url_regex_replacement: "Text inlocuitor (regexp)" + setting_checkout_display_login: "Arata datele pentru autentificare" + setting_checkout_command: "Comanda de checkout" + setting_checkout_use_zero_clipboard: "Display clipboard helper" + + setting_checkout_overwrite_description: "Overwrite default description" + field_checkout_overwrite: "Overwrite default settings for checkout protocols" + field_checkout_display_command: "Display checkout command" + + label_protocol_plural: "Protocols" + button_add_protocol: "Add Protocol" + + label_access_type: 'This URL has <span id="checkout_access">{{type}}</span> access.' + label_access_read_only: 'Read-Only' + label_access_read_write: "Read+Write" + label_access_permission: "Depending on user's permissions" + + label_append_path: "Append path" + + label_display_login_none: "Nu afisa username sau parola" + label_display_login_username: "Afiseaza username-ul, dar nu si parola" + label_display_login_password: "Afiseaza atat username-ul, cat si parola" + + label_copy_to_clipboard: "Copy to clipboard" + + help_checkout_protocols: | + The URLs in protocols are generated from applying the regular expression + and the replacement text to the original URL. The replacement text + supports back-references to braced expressions using the \1 notation. + help_repository_checkout_protocols: | + Leave the Checkout URL field empty to use the defined repository URL. + help_moved_settings: "The settings page has been moved to {{link}}." + label_settings_location: "Administration -> Settings -> Checkout"
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/db/migrate/20091208210439_add_checkout_url_info.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,11 @@ +class AddCheckoutUrlInfo < ActiveRecord::Migration + def self.up + add_column :repositories, :checkout_url_type, :string, :default => 'none', :null => false + add_column :repositories, :checkout_url, :string, :default => '', :null => false + end + + def self.down + remove_column :repository, :checkout_url_type + remove_column :repository, :checkout_url + end +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/db/migrate/20091220173312_add_display_login.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,9 @@ +class AddDisplayLogin < ActiveRecord::Migration + def self.up + add_column :repositories, :display_login, :string, :default => 'none', :null => false + end + + def self.down + remove_column :repositories, :display_login + end +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/db/migrate/20100118174556_add_render_link.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,9 @@ +class AddRenderLink < ActiveRecord::Migration + def self.up + add_column :repositories, :render_link, :boolean, :null => true + end + + def self.down + remove_column :repositories, :render_link + end +end \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/db/migrate/20100118235845_remove_defaults.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,14 @@ +class RemoveDefaults < ActiveRecord::Migration + def self.up + change_column :repositories, :checkout_url_type, :string, :default => nil, :null => true + change_column :repositories, :checkout_url, :string, :default => nil, :null => true + change_column :repositories, :display_login, :string, :default => nil, :null => true + end + + def self.down + change_column :repositories, :checkout_url_type, :string, :default => 'none', :null => false + change_column :repositories, :checkout_url, :string, :default => '', :null => false + change_column :repositories, :display_login, :string, :default => 'none', :null => false + end +end +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/db/migrate/20100118235909_add_overwrite_option.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,15 @@ +class AddOverwriteOption < ActiveRecord::Migration + def self.up + add_column :repositories, :checkout_url_overwrite, :boolean, :default => false, :null => false + + # existing repositories are set to overwrite the default settings + # This is to keep continuity of settings. + Repository.reset_column_information + Repository.update_all({:checkout_url_overwrite, true}) + end + + def self.down + remove_column :repositories, :checkout_url_overwrite + end +end +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/db/migrate/20100203202320_update_settings.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,36 @@ +class UpdateSettings < ActiveRecord::Migration + def self.up + settings = Setting.plugin_redmine_checkout + if settings['checkout_url_type'] == "overwritten" + settings['checkout_url_type'] = "generated" + end + + if settings.has_key? "checkout_url_regex" + settings['checkout_url_regex_default'] = settings.delete("checkout_url_regex") + end + + if settings.has_key? "checkout_url_regex_replacement" + settings['checkout_url_regex_replacement_default'] = settings.delete("checkout_url_regex_replacement") + end + + Setting.plugin_redmine_checkout = settings + end + + def self.down + settings = Setting.plugin_redmine_checkout + if settings['checkout_url_type'] == "generated" + settings['checkout_url_type'] = "overwritten" + end + + if settings.has_key? "checkout_url_regex_default" + settings['checkout_url_regex'] = settings.delete("checkout_url_regex_default") + end + + if settings.has_key? "checkout_url_regex_replacement_default" + settings['checkout_url_regex_replacement'] = settings.delete("checkout_url_regex_replacement_default") + end + + Setting.plugin_redmine_checkout = settings + end +end +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/db/migrate/20100426154202_rename_render_link_to_render_type.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,31 @@ +class RenameRenderLinkToRenderType < ActiveRecord::Migration + def self.up + render_link = Setting.plugin_redmine_checkout.delete 'render_link' + unless render_link.nil? + Setting.plugin_redmine_checkout['render_type'] = (render_link == 'true' ? 'link' : 'url') + Setting.plugin_redmine_checkout = Setting.plugin_redmine_checkout + end + + add_column :repositories, :render_type, :string, :default => 'url', :null => false + + Repository.update_all({:render_type => 'link'}, :render_link => true) + Repository.update_all({:render_type => 'url'}, ["render_link != ?", true]) + + remove_column :repositories, :render_link + end + + def self.down + render_type = Setting.plugin_redmine_checkout.delete 'render_type' + unless render_type.nil? + Setting.plugin_redmine_checkout['render_link'] = (render_type == 'link' ? 'true' : 'false') + Setting.plugin_redmine_checkout = Setting.plugin_redmine_checkout + end + + add_column :repositories, :render_link, :boolean, :null => true + + Repository.update_all({:render_link => true}, :render_type => 'link') + Repository.update_all({:render_link => false}, ["render_type != ?", 'link']) + + remove_column :repositories, :render_type + end +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/db/migrate/20100512135418_consolidate_repository_options.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,49 @@ +class ConsolidateRepositoryOptions < ActiveRecord::Migration + class Repository < ActiveRecord::Base + def self.inheritance_column + # disable single table inheritance + nil + end + + serialize :checkout_settings, Hash + end + + def self.up + add_column :repositories, :checkout_settings, :text + + Repository.all.each do |r| + r.checkout_settings = { + "checkout_url_type" => r.checkout_url_type, + "checkout_url" => r.checkout_url, + "display_login" => r.display_login, + "render_type" => r.render_type, + "checkout_url_overwrite" => r.checkout_url_overwrite + } + r.save! + end + remove_column :repositories, :checkout_url_type + remove_column :repositories, :checkout_url + remove_column :repositories, :display_login + remove_column :repositories, :render_type + remove_column :repositories, :checkout_url_overwrite + end + + def self.down + add_column :repositories, :checkout_url_type, :string, :default => nil, :null => true + add_column :repositories, :checkout_url, :string, :default => nil, :null => true + add_column :repositories, :display_login, :string, :default => nil, :null => true + add_column :repositories, :render_type, :string, :default => 'url', :null => false + add_column :repositories, :checkout_url_overwrite, :boolean, :default => false, :null => false + + Repository.all.each do |r| + r.checkout_url_type = r.checkout_settings["checkout_url_type"] + r.checkout_url = r.checkout_settings["checkout_url"] + r.display_login = r.checkout_settings["display_login"] + r.render_link = r.checkout_settings["render_link"] + r.checkout_url_overwrite = r.checkout_settings["checkout_url_overwrite"] + r.save! + end + + remove_column :repositories, :checkout_settings + end +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/db/migrate/20100609153630_apply_setting_changes.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,113 @@ +class ApplySettingChanges < ActiveRecord::Migration + class Repository < ActiveRecord::Base + def self.inheritance_column + # disable single table inheritance + nil + end + + def scm_name + self.type || 'Abstract' + end + + serialize :checkout_settings, Hash + end + + def self.up + default_commands = { + 'Bazaar' => 'bzr checkout', + 'Cvs' => 'cvs checkout', + 'Darcs' => 'darcs get', + 'Git' => 'git clone', + 'Mercurial' => 'hg clone', + 'Subversion' => 'svn checkout' + } + + ## First migrate the individual repositories + + Repository.all.each do |r| + allow_subtree_checkout = ['Cvs', 'Subversion'].include? r.scm_name + + protocol = case r.checkout_settings['checkout_url_type'] + when 'none', 'generated' + nil + when 'original', 'overwritten' + HashWithIndifferentAccess.new({ "0" => HashWithIndifferentAccess.new({ + :protocol => r.scm_name, + :command => Setting.plugin_redmine_checkout["checkout_cmd_#{r.scm_name}"] || default_commands[r.scm_name], + :regex => "", + :regex_replacement => "", + :fixed_url => (r.checkout_settings['checkout_url_type'] == 'original' ? (r.url || "") : r.checkout_settings["checkout_url"]), + :access => 'permission', + :append_path => (allow_subtree_checkout ? '1' : '0'), + :is_default => '1'}) + }) + end + + r.checkout_settings = Hash.new({ + 'checkout_protocols' => protocol, + 'checkout_description' => "The data contained in this repository can be downloaded to your computer using one of several clients. +Please see the documentation of your version control software client for more information. + +Please select the desired protocol below to get the URL.", + 'checkout_display_login' => (r.checkout_settings['display_login'] == 'none' ? '' : r.checkout_settings['display_login']), + 'checkout_overwrite' => (r.checkout_settings['checkout_url_overwrite'] == 'true') ? '1': '0', + 'checkout_display_command' => (r.checkout_settings["render_type"].to_s == 'cmd') ? '1' : '0' + }) + r.save! + end + + ## Then the global settings + + settings = HashWithIndifferentAccess.new({ + 'display_login' => Setting.plugin_redmine_checkout['display_login'], + 'use_zero_clipboard' => '1', + + 'display_checkout_info' => (Setting.plugin_redmine_checkout['checkout_url_type'] == 'none' ? '0' : '1'), + 'description_Abstract' => <<-EOF +The data contained in this repository can be downloaded to your computer using one of several clients. +Please see the documentation of your version control software client for more information. + +Please select the desired protocol below to get the URL. +EOF + }) + + default_commands.keys.each do |scm| + settings["description_#{scm}"] = '' + settings["overwrite_description_#{scm}"] = '0' + + display_command = (Setting.plugin_redmine_checkout["render_type"].to_s == 'cmd') ? '1' : '0' + settings["display_command_#{scm}"] = display_command + + case Setting.plugin_redmine_checkout['checkout_url_type'] + when 'generated', 'none': + regex = Setting.plugin_redmine_checkout["checkout_url_regex_#{scm}"] + replacement = Setting.plugin_redmine_checkout["checkout_url_regex_replacement_#{scm}"] + when 'original': + regex = '' + replacement = '' + end + + settings["protocols_#{scm}"] = HashWithIndifferentAccess.new({ + # access can be one of + # read+write => this protocol always allows read/write access + # read-only => this protocol always allows read access only + # permission => Access depends on redmine permissions + '0' => HashWithIndifferentAccess.new({ + :protocol => scm, + :command => Setting.plugin_redmine_checkout["checkout_cmd_#{scm}"] || default_commands[scm], + :regex => regex, + :regex_replacement => replacement, + :fixed_url => '', + :access => 'permission', + :append_path => (['Cvs', 'Subversion'].include?(scm) ? '1' : '0'), + :is_default => '1' + }) + }) + end + Setting.plugin_redmine_checkout = settings + end + + def self.down + raise ActiveRecord::IrreversibleMigration.new "Sorry, there is no down migration yet. If you really need one, please create an issue on http://dev.holgerjust.de/projects/redmine-checkout" + end +end \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/db/migrate/20100808185600_change_protocol_storage_from_hash_to_array.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,58 @@ +class ChangeProtocolStorageFromHashToArray < ActiveRecord::Migration + class Repository < ActiveRecord::Base + def self.inheritance_column + # disable single table inheritance + nil + end + + def scm_name + self.type || 'Abstract' + end + + serialize :checkout_settings, Hash + end + + def self.up + ## First migrate the individual repositories + Repository.all.each do |r| + next unless r.checkout_settings + next unless r.checkout_settings['checkout_protocols'].is_a? Hash + r.checkout_settings['checkout_protocols'] = r.checkout_settings['checkout_protocols'].sort{|(ak,av),(bk,bv)|ak<=>bk}.collect{|id,protocol| protocol} + r.save! + end + + ## Then the global settings + settings = Setting.plugin_redmine_checkout + settings.keys.grep(/^protocols_/).each do |protocols| + next unless settings[protocols].is_a? Hash + settings[protocols] = settings[protocols].sort{|(ak,av),(bk,bv)|ak<=>bk}.collect{|id,protocol| protocol} + end + Setting.plugin_redmine_checkout = settings + end + + def self.down + ## First migrate the individual repositories + Repository.all.each do |r| + next unless r.checkout_settings['checkout_protocols'].is_a? Hash + r.checkout_settings['checkout_protocols'] = r.checkout_settings['checkout_protocols'].inject(HashWithIndifferentAccess.new) do |result, p| + result[result.length.to_s] = p + end + r.save! + end + + ## Then the global settings + settings = Setting.plugin_redmine_checkout + settings.keys.grep(/^protocols_/).each do |protocols| + next unless r.checkout_settings['checkout_protocols'].is_a? Hash + settings[protocols] = settings[protocols].inject(HashWithIndifferentAccess.new) do |result, p| + result[result.length.to_s] = p + end + end + Setting.plugin_redmine_checkout = settings + + + + + raise ActiveRecord::IrreversibleMigration.new "Sorry, there is no down migration yet. If you really need one, please create an issue on http://dev.holgerjust.de/projects/redmine-checkout" + end +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/doc/COPYING Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,22 @@ +Copyright (c) 2009 Holger Just + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated documentation +files (the "Software"), to deal in the Software without +restriction, including without limitation the rights to use, +copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the +Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES +OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT +HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR +OTHER DEALINGS IN THE SOFTWARE.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/init.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,102 @@ +require 'redmine' + +require 'dispatcher' +Dispatcher.to_prepare do + # Patches + require_dependency 'checkout/settings_controller_patch' + + require_dependency 'checkout/repositories_helper_patch' + require_dependency 'checkout/repository_patch' + + require_dependency 'checkout/settings_helper_patch' + require_dependency 'checkout/setting_patch' +end + +# Hooks +require 'checkout/repository_hooks' + +Redmine::Plugin.register :redmine_checkout do + name 'Redmine Checkout plugin' + url 'http://dev.holgerjust.de/projects/redmine-checkout' + author 'Holger Just' + author_url 'http://meine-er.de' + description 'Add links to the actual repository to the repository view.' + version '0.5' + + requires_redmine :version_or_higher => '0.9' + + settings_defaults = HashWithIndifferentAccess.new({ + 'display_login' => nil, + 'use_zero_clipboard' => '1', + + 'display_checkout_info' => '1', + 'description_Abstract' => <<-EOF +The data contained in this repository can be downloaded to your computer using one of several clients. +Please see the documentation of your version control software client for more information. + +Please select the desired protocol below to get the URL. +EOF + }) + + # this is needed for setting the defaults + require 'checkout/repository_patch' + + CheckoutHelper.supported_scm.each do |scm| + klazz = "Repository::#{scm}".constantize + + settings_defaults["description_#{scm}"] = '' + settings_defaults["overwrite_description_#{scm}"] = '0' + settings_defaults["display_command_#{scm}"] = '0' + + # access can be one of + # read+write => this protocol always allows read/write access + # read-only => this protocol always allows read access only + # permission => Access depends on redmine permissions + settings_defaults["protocols_#{scm}"] = [HashWithIndifferentAccess.new({ + :protocol => scm, + :command => klazz.checkout_default_command, + :regex => '', + :regex_replacement => '', + :fixed_url => '', + :access => 'permission', + :append_path => (klazz.allow_subtree_checkout? ? '1' : '0'), + :is_default => '1' + })] + end + + settings :default => settings_defaults, :partial => 'settings/redmine_checkout' + + Redmine::WikiFormatting::Macros.register do + desc <<-EOF +Creates a checkout link to the actual repository. Example: + + use the default checkout protocol !{{repository}} + or use a specific protocol !{{repository(SVN)}} + or use the checkout protocol of a specific specific project: !{{repository(projectname:SVN)}}" +EOF + + macro :repository do |obj, args| + proto = args.first + if proto.to_s =~ %r{^([^\:]+)\:(.*)$} + project_identifier, proto = $1, $2 + project = Project.find_by_identifier(project_identifier) || Project.find_by_name(project_identifier) + else + project = @project + end + + if project && project.repository + protocols = project.repository.checkout_protocols.select{|p| p.access_rw(User.current)} + + if proto.present? + proto_obj = protocols.find{|p| p.protocol.downcase == proto.downcase} + else + proto_obj = protocols.find(&:default?) || protocols.first + end + end + raise "Checkout protocol #{proto} not found" unless proto_obj + + cmd = (project.repository.checkout_display_command? && proto_obj.command.present?) ? proto_obj.command.strip + " " : "" + cmd + link_to(proto_obj.url, proto_obj.url) + end + end +end \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/lib/checkout/protocol.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,114 @@ +module Checkout + class <<self + def awesome? + # Yes, this plugin is awesome! + true + end + end + + class Protocol + attr_accessor :protocol, :regex, :regex_replacement, :access, :repository + attr_writer :default, :command, :fixed_url, :append_path + + + def initialize(args={}) + args = args.dup + + @protocol = args.delete :protocol + @command = args.delete :command # optional, if not set the default from the repo is used + + # either a fixed url + @fixed_url = args.delete :fixed_url + + # or a regex + @regex = args.delete :regex + @regex_replacement = args.delete :regex_replacement + + @access = args.delete :access + @append_path = args.delete :append_path + @default = args.delete :is_default + + @repository = args.delete :repository + end + + def full_command(path = "") + cmd = "" + if repository.checkout_display_command? + cmd = self.command.present? ? self.command.strip + " " : "" + end + cmd + URI.escape(self.url(path)) + end + + def default? + @default.to_i > 0 + end + + def command + @command || self.repository && self.repository.checkout_default_command || "" + end + + def append_path? + @append_path.to_i > 0 + end + + def access_rw(user) + # reduces the three available access levels 'read+write', 'read-only' and 'permission' + # to 'read+write' and 'read-only' and nil (not allowed) + + @access_rw ||= {} + return @access_rw[user] if @access_rw.key? user + @access_rw[user] = case access + when 'permission' + case + when user.allowed_to?(:commit_access, repository.project) && user.allowed_to?(:browse_repository, repository.project) + 'read+write' + when user.allowed_to?(:browse_repository, repository.project) + 'read-only' + else + nil + end + else + @access + end + end + + def access_label(user) + case access_rw(user) + when 'read+write': :label_access_read_write + when 'read-only': :label_access_read_only + end + end + + def fixed_url + @fixed_url.present? ? @fixed_url : begin + if (regex.blank? || regex_replacement.blank?) + repository.url + else + repository.url.gsub(Regexp.new(regex), regex_replacement) + end + end + rescue RegexpError + repository.url || "" + end + + def url(path = "") + return "" unless repository + + url = fixed_url.sub(/\/+$/, "") + if repository.allow_subtree_checkout? && self.append_path? && path.present? + url = "#{url}/#{path}" + end + + if repository.checkout_display_login? + begin + uri = URI.parse url + (uri.user = repository.login) if repository.login + (uri.password = repository.password) if (repository.checkout_display_login == 'password' && repository.login && repository.password) + url = uri.to_s + rescue URI::InvalidURIError + end + end + url + end + end +end \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/lib/checkout/repositories_helper_patch.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,34 @@ +require_dependency 'repositories_helper' + +module Checkout + module RepositoriesHelperPatch + def self.included(base) # :nodoc: + base.send(:include, InstanceMethods) + + base.class_eval do + alias_method_chain :repository_field_tags, :checkout + alias_method_chain :scm_select_tag, :javascript + end + end + + module InstanceMethods + def repository_field_tags_with_checkout(form, repository) + tags = repository_field_tags_without_checkout(form, repository) || "" + return tags if repository.class.name == "Repository" + + tags + @controller.send(:render_to_string, :partial => 'projects/settings/repository_checkout', :locals => {:form => form, :repository => repository, :scm => repository.scm_name}) + end + + def scm_select_tag_with_javascript(*args) + content_for :header_tags do + javascript_include_tag('subform', :plugin => 'redmine_checkout') + + stylesheet_link_tag('checkout', :plugin => 'redmine_checkout') + end + scm_select_tag_without_javascript(*args) + end + end + end +end + +RepositoriesHelper.send(:include, Checkout::RepositoriesHelperPatch) +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/lib/checkout/repository_hooks.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,34 @@ +module Checkout + class RepositoryHooks < Redmine::Hook::ViewListener + # Renders the checkout URL + # + # Context: + # * :project => Current project + # * :repository => Current Repository + # + def view_repositories_show_contextual(context={}) + if context[:repository].present? && Setting.checkout_display_checkout_info? + protocols = context[:repository].checkout_protocols.select do |p| + p.access_rw(User.current) + end + + path = context[:controller].instance_variable_get("@path") + if path && context[:controller].instance_variable_get("@entry") + # a single file is showing, so we return only the directory + path = File.dirname(path) + end + + default = protocols.find(&:default?) || protocols.first + + context.merge!({ + :protocols => protocols, + :default_protocol => default, + :checkout_path => path + }) + + options = {:partial => "redmine_checkout_hooks/view_repositories_show_contextual"} + context[:controller].send(:render_to_string, {:locals => context}.merge(options)) + end + end + end +end \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/lib/checkout/repository_patch.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,186 @@ +require_dependency 'repository' +require_dependency 'checkout_helper' + +module Checkout + module RepositoryPatch + def self.included(base) # :nodoc: + base.extend(ClassMethods) + base.send(:include, InstanceMethods) + + base.class_eval do + unloadable + serialize :checkout_settings, Hash + end + end + + module ClassMethods + def allow_subtree_checkout? + # default implementation + false + end + + def checkout_default_command + # default implementation + "" + end + end + + module InstanceMethods + def after_initialize + self.checkout_settings ||= {} + end + + def checkout_overwrite=(value) + checkout_settings['checkout_overwrite'] = value + end + + def checkout_overwrite + (checkout_settings['checkout_overwrite'].to_i > 0) ? '1' : '0' + end + + def checkout_overwrite? + self.scm_name != 'Abstract' && checkout_overwrite.to_i > 0 + end + + def checkout_description=(value) + checkout_settings['checkout_description'] = value + end + + def checkout_description + if checkout_overwrite? + checkout_settings['checkout_description'] + else + if CheckoutHelper.supported_scm.include?(scm_name) && Setting.send("checkout_overwrite_description_#{scm_name}?") + Setting.send("checkout_description_#{scm_name}") + else + Setting.send("checkout_description_Abstract") + end + end + end + + def checkout_protocols + @checkout_protocols ||= begin + if CheckoutHelper.supported_scm.include? scm_name + if checkout_overwrite? + protocols = checkout_settings['checkout_protocols'] || [] + else + protocols = Setting.send("checkout_protocols_#{scm_name}") || [] + end + else + protocols = [] + end + + protocols.collect do |p| + Checkout::Protocol.new p.merge({:repository => self}) + end + end + end + + def checkout_protocols=(value) + # value is an Array or a Hash + if value.is_a? Hash + value = value.dup.delete_if {|id, protocol| id.to_i < 0 } + value = value.sort{|(ak,av),(bk,bv)|ak<=>bk}.collect{|id,protocol| protocol} + end + + checkout_settings['checkout_protocols'] = value + end + + def checkout_display_login + if checkout_overwrite? && self.scm_name == "Subversion" + result = checkout_settings['checkout_display_login'] + else + result = Setting.checkout_display_login + end + (result.to_i > 0) ? '1' : '0' + end + + def checkout_display_login? + checkout_display_login.to_i > 0 + end + + def checkout_display_login=(value) + value = nil unless self.scm_name == "Subversion" + checkout_settings['checkout_display_login'] = value + end + + def checkout_display_command? + checkout_display_command.to_i > 0 + end + + def checkout_display_command=(value) + checkout_settings['checkout_display_command'] = value + end + + def checkout_display_command + if checkout_overwrite? + checkout_settings['checkout_display_command'] + else + Setting.send("checkout_display_command_#{scm_name}") + end + end + + def allow_subtree_checkout? + self.class.allow_subtree_checkout? + end + + def checkout_default_command + self.class.checkout_default_command + end + end + end +end + +Repository.send(:include, Checkout::RepositoryPatch) + +subtree_checkout_repos = ["Subversion", "Cvs"] +commands = { + 'Bazaar' => 'bzr checkout', + 'Cvs' => 'cvs checkout', + 'Darcs' => 'darcs get', + 'Git' => 'git clone', + 'Mercurial' => 'hg clone', + 'Subversion' => 'svn checkout' +} + +CheckoutHelper.supported_scm.each do |scm| + require_dependency "repository/#{scm.underscore}" + cls = Repository.const_get(scm) + + allow_subtree_checkout = "" + if subtree_checkout_repos.include? scm + allow_subtree_checkout = <<-EOS + def allow_subtree_checkout? + true + end + EOS + end + + checkout_command = "" + if commands[scm] + checkout_command = <<-EOS + def checkout_default_command + '#{commands[scm]}' + end + EOS + end + + class_mod = Module.new + class_mod.module_eval(<<-EOF + def self.included(base) + base.extend ChildClassMethods + + base.class_eval do + unloadable + serialize :checkout_settings, Hash + end + end + + module ChildClassMethods + #{allow_subtree_checkout} + #{checkout_command} + end + EOF + ) + cls.send(:include, class_mod) +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/lib/checkout/setting_patch.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,75 @@ +require_dependency 'setting' + +module Checkout + module SettingPatch + def self.included(base) # :nodoc: + base.extend(ClassMethods) + + base.class_eval do + unloadable + + # Defines getter and setter for each setting + # Then setting values can be read using: Setting.some_setting_name + # or set using Setting.some_setting_name = "some value" + Redmine::Plugin.find(:redmine_checkout).settings[:default].keys.each do |name| + if name.start_with?('protocols_') + default = "[]" + else + default = <<-END_SRC + begin + default = Setting.available_settings['plugin_redmine_checkout']['default']['#{name}'] + # perform a deep copy of the default + Marshal::load(Marshal::dump(default)) + end + END_SRC + end + + src = <<-END_SRC + def self.checkout_#{name} + self.plugin_redmine_checkout[:#{name}] || #{default} + end + + def self.checkout_#{name}? + self.checkout_#{name}.to_i > 0 + end + + def self.checkout_#{name}=(value) + setting = Setting.plugin_redmine_checkout + setting[:#{name}] = value + Setting.plugin_redmine_checkout = setting + end + END_SRC + class_eval src, __FILE__, __LINE__ + end + + class <<self + alias_method :store_without_checkout, :[]= + alias_method :[]=, :store_with_checkout + + alias_method :retrieve_without_checkout, :[] + alias_method :[], :retrieve_with_checkout + end + end + end + + module ClassMethods + def store_with_checkout(name, value) + if name.to_s.starts_with? "checkout_" + self.send("#{name}=", value) + else + store_without_checkout(name, value) + end + end + + def retrieve_with_checkout(name) + if name.to_s.starts_with? "checkout_" + self.send("#{name}") + else + retrieve_without_checkout(name) + end + end + end + end +end + +Setting.send(:include, Checkout::SettingPatch) \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/lib/checkout/settings_controller_patch.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,44 @@ +require_dependency 'settings_controller' + +module Checkout + module SettingsControllerPatch + def self.included(base) # :nodoc: + base.send(:include, InstanceMethods) + + base.class_eval do + unloadable + + alias_method_chain :edit, :checkout + end + end + + module InstanceMethods + def edit_with_checkout + if request.post? && params['tab'] == 'checkout' + if params[:settings] && params[:settings].is_a?(Hash) + settings = HashWithIndifferentAccess.new + (params[:settings] || {}).each do |name, value| + if name = name.to_s.slice(/checkout_(.+)/, 1) + case value + when Array + # remove blank values in array settings + value.delete_if {|v| v.blank? } + when Hash + # change protocols hash to array. + value = value.sort{|(ak,av),(bk,bv)|ak<=>bk}.collect{|id,protocol| protocol} if name.start_with? "protocols_" + end + settings[name.to_sym] = value + end + end + + Setting.plugin_redmine_checkout = settings + params[:settings] = {} + end + end + edit_without_checkout + end + end + end +end + +SettingsController.send(:include, Checkout::SettingsControllerPatch)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/lib/checkout/settings_helper_patch.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,23 @@ +require_dependency 'settings_helper' + +module Checkout + module SettingsHelperPatch + def self.included(base) # :nodoc: + base.send(:include, InstanceMethods) + + base.class_eval do + alias_method_chain :administration_settings_tabs, :checkout + end + end + + module InstanceMethods + def administration_settings_tabs_with_checkout + tabs = administration_settings_tabs_without_checkout + tabs << {:name => 'checkout', :partial => 'settings/checkout', :label => :label_checkout} + end + end + end +end + +SettingsHelper.send(:include, Checkout::SettingsHelperPatch) +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/lib/checkout_helper.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,7 @@ +module CheckoutHelper + class <<self + def supported_scm + Object.const_defined?("REDMINE_SUPPORTED_SCM") ? REDMINE_SUPPORTED_SCM : Redmine::Scm::Base.all + end + end +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/lib/tasks/set_default.rake Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,10 @@ +namespace :redmine do + namespace :plugins do + namespace :redmine_checkout do + desc "Sets all repositories to inherit the default setting for the checkout URL." + task :set_default => :environment do + Repository.all.each{|r| r.update_attributes(:checkout_overwrite => "0")} + end + end + end +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/lib/tasks/spec.rake Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,14 @@ +begin + require "spec/rake/spectask" + namespace :spec do + namespace :plugins do + desc "Runs the examples for redmine_checkout" + Spec::Rake::SpecTask.new(:redmine_checkout) do |t| + t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""] + t.spec_files = FileList['vendor/plugins/redmine_checkout/spec/**/*_spec.rb'] + end + end + end + task :spec => "spec:plugins:redmine_checkout" +rescue LoadError +end \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/spec/controllers/repositories_controller_spec.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,48 @@ +require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') + +describe RepositoriesController do + fixtures :settings, :repositories, :projects, :roles, :users, :enabled_modules + integrate_views + + before(:each) do + Setting.default_language = 'en' + User.current = nil + end + + def get_repo + get :show, :id => 1 + end + + it "should display the protocol selector" do + get_repo + response.should be_success + response.should render_template('show') + + response.should have_tag('ul#checkout_protocols') do + with_tag('a[id=?][href=?]', 'checkout_protocol_subversion', "file:///#{RAILS_ROOT.gsub(%r{config\/\.\.}, '')}/tmp/test/subversion_repository") + with_tag('a[id=?][href=?]', 'checkout_protocol_svn+ssh', 'svn+ssh://subversion_repository@svn.foo.bar/svn') + end + end + + it "should display the description" do + get_repo + response.should be_success + response.should render_template('show') + + response.should have_tag('div.repository-info', /Please select the desired protocol below to get the URL/) + end + + it 'should respect the use zero clipboard option' do + Setting.checkout_use_zero_clipboard = '1' + get_repo + response.should be_success + response.should render_template('show') + response.should have_tag('script[src*=?]', 'ZeroClipboard') + + Setting.checkout_use_zero_clipboard = '0' + get_repo + response.should be_success + response.should render_template('show') + response.should_not have_tag('script[src*=]', 'ZeroClipboard') + end +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/spec/fixtures/enabled_modules.yml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,5 @@ +--- +enabled_modules_001: + name: repository + project_id: 1 + id: 1
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/spec/fixtures/projects.yml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,13 @@ +--- +projects_001: + created_on: 2006-07-19 19:13:59 +02:00 + name: eCookbook + updated_on: 2006-07-19 22:53:01 +02:00 + id: 1 + description: Recipes management application + homepage: http://ecookbook.somenet.foo/ + is_public: true + identifier: ecookbook + parent_id: + lft: 1 + rgt: 10
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/spec/fixtures/repositories.yml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,9 @@ +--- +svn: + project_id: 1 + url: file:///<%= RAILS_ROOT.gsub(%r{config\/\.\.}, '') %>/tmp/test/subversion_repository + id: 1 + root_url: file:///<%= RAILS_ROOT.gsub(%r{config\/\.\.}, '') %>/tmp/test/subversion_repository + password: "" + login: "" + type: Subversion
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/spec/fixtures/roles.yml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,187 @@ +--- +roles_001: + name: Manager + id: 1 + builtin: 0 + permissions: | + --- + - :add_project + - :edit_project + - :manage_members + - :manage_versions + - :manage_categories + - :view_issues + - :add_issues + - :edit_issues + - :manage_issue_relations + - :manage_subtasks + - :add_issue_notes + - :move_issues + - :delete_issues + - :view_issue_watchers + - :add_issue_watchers + - :delete_issue_watchers + - :manage_public_queries + - :save_queries + - :view_gantt + - :view_calendar + - :log_time + - :view_time_entries + - :edit_time_entries + - :delete_time_entries + - :manage_news + - :comment_news + - :view_documents + - :manage_documents + - :view_wiki_pages + - :export_wiki_pages + - :view_wiki_edits + - :edit_wiki_pages + - :delete_wiki_pages_attachments + - :protect_wiki_pages + - :delete_wiki_pages + - :rename_wiki_pages + - :add_messages + - :edit_messages + - :delete_messages + - :manage_boards + - :view_files + - :manage_files + - :browse_repository + - :manage_repository + - :view_changesets + - :manage_project_activities + + position: 1 +roles_002: + name: Developer + id: 2 + builtin: 0 + permissions: | + --- + - :edit_project + - :manage_members + - :manage_versions + - :manage_categories + - :view_issues + - :add_issues + - :edit_issues + - :manage_issue_relations + - :manage_subtasks + - :add_issue_notes + - :move_issues + - :delete_issues + - :view_issue_watchers + - :save_queries + - :view_gantt + - :view_calendar + - :log_time + - :view_time_entries + - :edit_own_time_entries + - :manage_news + - :comment_news + - :view_documents + - :manage_documents + - :view_wiki_pages + - :view_wiki_edits + - :edit_wiki_pages + - :protect_wiki_pages + - :delete_wiki_pages + - :add_messages + - :edit_own_messages + - :delete_own_messages + - :manage_boards + - :view_files + - :manage_files + - :browse_repository + - :view_changesets + + position: 2 +roles_003: + name: Reporter + id: 3 + builtin: 0 + permissions: | + --- + - :edit_project + - :manage_members + - :manage_versions + - :manage_categories + - :view_issues + - :add_issues + - :edit_issues + - :manage_issue_relations + - :add_issue_notes + - :move_issues + - :view_issue_watchers + - :save_queries + - :view_gantt + - :view_calendar + - :log_time + - :view_time_entries + - :manage_news + - :comment_news + - :view_documents + - :manage_documents + - :view_wiki_pages + - :view_wiki_edits + - :edit_wiki_pages + - :delete_wiki_pages + - :add_messages + - :manage_boards + - :view_files + - :manage_files + - :browse_repository + - :view_changesets + + position: 3 +roles_004: + name: Non member + id: 4 + builtin: 1 + permissions: | + --- + - :view_issues + - :add_issues + - :edit_issues + - :manage_issue_relations + - :add_issue_notes + - :move_issues + - :save_queries + - :view_gantt + - :view_calendar + - :log_time + - :view_time_entries + - :comment_news + - :view_documents + - :manage_documents + - :view_wiki_pages + - :view_wiki_edits + - :edit_wiki_pages + - :add_messages + - :view_files + - :manage_files + - :browse_repository + - :view_changesets + + position: 4 +roles_005: + name: Anonymous + id: 5 + builtin: 2 + permissions: | + --- + - :view_issues + - :add_issue_notes + - :view_gantt + - :view_calendar + - :view_time_entries + - :view_documents + - :view_wiki_pages + - :view_wiki_edits + - :view_files + - :browse_repository + - :view_changesets + + position: 5 +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/spec/fixtures/settings.yml Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,115 @@ +--- + settings: + name: plugin_redmine_checkout + value: | + --- !map:HashWithIndifferentAccess + display_checkout_info: "1" + description_Abstract: | + The data contained in this repository can be downloaded to your computer using one of several clients. + Please see the documentation of your version control software client for more information. + + Please select the desired protocol below to get the URL. + display_command_Bazaar: '1' + use_zero_clipboard: "1" + + overwrite_description_Bazaar: "0" + description_Bazaar: "" + display_command_Bazaar: '1' + protocols_Bazaar: + "0": !map:HashWithIndifferentAccess + command: "bzr checkout" + regex: "" + regex_replacement: "" + read_write: readwrite + append_path: "0" + is_default: "1" + protocol: Bazaar + overwrite_description_Cvs: "0" + description_Cvs: "" + display_command_Cvs: '1' + protocols_Cvs: + "0": !map:HashWithIndifferentAccess + command: "cvs checkout" + regex: "" + regex_replacement: "" + read_write: readwrite + append_path: "0" + is_default: "1" + protocol: Cvs + overwrite_description_Darcs: "0" + description_Darcs: "" + display_command_Darcs: '1' + protocols_Darcs: + "0": !map:HashWithIndifferentAccess + command: "darcs get" + regex: "" + regex_replacement: "" + read_write: readwrite + append_path: "0" + is_default: "1" + protocol: Darcs + overwrite_description_Filesystem: "0" + description_Filesystem: "" + display_command_Filesystem: '1' + protocols_Filesystem: !map:HashWithIndifferentAccess + "0": !map:HashWithIndifferentAccess + command: "" + regex: "" + append_path: "0" + is_default: "1" + protocol: Filesystem + access: read+write + regex_replacement: "" + overwrite_description_Git: "0" + description_Git: "" + display_command_Git: '1' + protocols_Git: !map:HashWithIndifferentAccess + "0": !map:HashWithIndifferentAccess + command: "git clone" + regex: "" + append_path: "0" + is_default: "1" + protocol: Git + access: read+write + regex_replacement: "" + overwrite_description_Mercurial: "0" + description_Mercurial: "" + display_command_Mercurial: '1' + protocols_Mercurial: !map:HashWithIndifferentAccess + "0": !map:HashWithIndifferentAccess + command: "hg clone" + regex: "" + append_path: "0" + is_default: "1" + protocol: Mercurial + access: read+write + regex_replacement: "" + display_login: username + overwrite_description_Subversion: "0" + description_Subversion: "" + display_command_Subversion: '1' + protocols_Subversion: !map:HashWithIndifferentAccess + "0": !map:HashWithIndifferentAccess + command: "svn checkout" + regex: foo + append_path: "1" + is_default: "1" + protocol: Subversion + access: permission + regex_replacement: bar + "1": !map:HashWithIndifferentAccess + command: "svn co" + regex: "^.*?([^/]+)/?$" + append_path: "1" + is_default: "0" + protocol: SVN+SSH + access: read-only + regex_replacement: svn+ssh://\1@svn.foo.bar/svn + "2": !map:HashWithIndifferentAccess + command: "svn checkout" + append_path: "0" + is_default: "0" + regex: "" + protocol: Root + access: read+write + regex_replacement: ""
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/spec/macros/macro_spec.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,55 @@ +require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') + +describe "Macros" do + fixtures :settings, :repositories, :projects, :enabled_modules + + include ERB::Util + include ApplicationHelper + include ActionView::Helpers::TextHelper + include ActionView::Helpers::TagHelper + include ActionView::Helpers::UrlHelper + + before(:each) do + Setting.checkout_display_command_Subversion = '0' + + @project = projects :projects_001 + end + + + it "should display default checkout url" do + text = "{{repository}}" + + url = "file:///#{RAILS_ROOT.gsub(%r{config\/\.\.}, '')}/tmp/test/subversion_repository" + textilizable(text).should eql "<p><a href=\"#{url}\">#{url}</a></p>" + end + + it "should display forced checkout url" do + text = "{{repository(svn+ssh)}}" + + url = 'svn+ssh://subversion_repository@svn.foo.bar/svn' + textilizable(text).should eql "<p><a href=\"#{url}\">#{url}</a></p>" + end + + it "should fail without set project" do + @project = nil + + text = "{{repository(svn+ssh)}}" + textilizable(text).should eql "<p><div class=\"flash error\">Error executing the <strong>repository</strong> macro (Checkout protocol svn+ssh not found)</div></p>" + end + + it "should display checkout url from stated project" do + @project = nil + text = "{{repository(ecookbook:svn+ssh)}}" + + url = 'svn+ssh://subversion_repository@svn.foo.bar/svn' + textilizable(text).should eql "<p><a href=\"#{url}\">#{url}</a></p>" + end + + it "should display command" do + Setting.checkout_display_command_Subversion = '1' + + text = "{{repository(svn+ssh)}}" + url = 'svn+ssh://subversion_repository@svn.foo.bar/svn' + textilizable(text).should eql "<p>svn co <a href=\"#{url}\">#{url}</a></p>" + end +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/spec/models/protocol_spec.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,36 @@ +require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') + +describe Checkout::Protocol do + fixtures :settings, :repositories, :projects, :enabled_modules + + before(:each) do + @admin = User.new + @admin.admin = true + @user = User.new + + @repo = repositories :svn + @repo.url = "http://example.com/svn/testrepo" + end + + it "should use regexes for generated URL" do + protocol = @repo.checkout_protocols.find{|r| r.protocol == "SVN+SSH"} + protocol.url.should eql "svn+ssh://testrepo@svn.foo.bar/svn" + end + + it "should resolve access properties" do + protocol = @repo.checkout_protocols.find{|r| r.protocol == "Subversion"} + protocol.access.should eql "permission" + protocol.access_rw(@admin).should eql "read+write" + + User.current = @user + protocol.access_rw(@user).should eql "read-only" + end + + it "should display the checkout command" do + subversion = @repo.checkout_protocols.find{|r| r.protocol == "Subversion"} + svn_ssh = @repo.checkout_protocols.find{|r| r.protocol == "SVN+SSH"} + + subversion.command.should eql "svn checkout" + svn_ssh.command.should eql "svn co" + end +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/spec/models/repository_spec.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,49 @@ +require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') + +describe Repository do + fixtures :settings, :repositories + + describe "initialize" do + before(:each) do + @repo = Repository.new() + end + + it "should properly set default values" do + @repo.checkout_overwrite?.should be_false + @repo.checkout_description.should match /Please select the desired protocol below to get the URL/ + @repo.checkout_display_login?.should be_false # no subversion repo + @repo.allow_subtree_checkout?.should be_false + @repo.checkout_protocols.should eql [] + end + end + + describe "subtree checkout" do + before(:each) do + @svn = Repository::Subversion.new + @git = Repository::Git.new + end + it "should be allowed on subversion" do + @svn.allow_subtree_checkout?.should eql true + end + it "should only be possible if checked" do + + end + + it "should be forbidden on git" do + @git.allow_subtree_checkout?.should eql false + end + end + + describe "extensions" do + before(:each) do + @repo = Repository::Subversion.new + end + + it "should provide protocols" do + protocols = @repo.checkout_protocols + protocols[0].protocol.should eql "Subversion" + protocols[1].protocol.should eql "SVN+SSH" + protocols[2].protocol.should eql "Root" + end + end +end \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/spec/models/setting_spec.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,14 @@ +require File.expand_path(File.dirname(__FILE__) + '/../spec_helper') + +describe Setting do + fixtures :settings + + before(:each) do + Setting.default_language = 'en' + end + + it "should recognize checkout methods" do + Setting.checkout_display_checkout_info.should eql Setting.plugin_redmine_checkout['display_checkout_info'] + Setting.checkout_display_checkout_info.should eql Setting.plugin_redmine_checkout[:display_checkout_info] + end +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/spec/sanity_spec.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,11 @@ +require File.dirname(__FILE__) + '/spec_helper' + +describe Class do + it "should be a class of Class" do + Class.class.should eql(Class) + end + + it "should be awesome" do + Checkout.awesome?.should be_true + end +end
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/spec/spec.opts Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,7 @@ +--colour +--format +progress +--loadby +mtime +--reverse +--backtrace \ No newline at end of file
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/plugins/redmine_checkout/spec/spec_helper.rb Wed Jan 19 15:15:02 2011 +0000 @@ -0,0 +1,27 @@ +ENV['RAILS_ENV'] ||= 'test' + +# prevent case where we are using rubygems and test-unit 2.x is installed +begin + require 'rubygems' + gem "test-unit", "~> 1.2.3" +rescue LoadError +end + +begin + require "config/environment" unless defined? RAILS_ROOT + require RAILS_ROOT + '/spec/spec_helper' +rescue LoadError => error + puts <<-EOS + + You need to install rspec in your Redmine project. + Please execute the following code: + + gem install rspec-rails + script/generate rspec + + EOS + raise error +end + +Fixtures.create_fixtures File.join(File.dirname(__FILE__), "fixtures"), ActiveRecord::Base.connection.tables +require File.join(File.dirname(__FILE__), "..", "init.rb") \ No newline at end of file
--- a/vendor/plugins/rfpdf/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/rfpdf/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/rfpdf +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/rfpdf http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.843778Z +2010-08-12T15:03:29.000000Z 1da9fbada6119233134b3aab6c7d0edf 2008-07-04T17:58:14.743502Z 1623 @@ -72,7 +72,7 @@ -2010-09-23T14:37:45.843778Z +2010-08-12T15:03:29.000000Z 275a3dc6407eaf7c40f1d8f4e6b08803 2006-11-21T18:34:04.275680Z 49 @@ -106,7 +106,7 @@ -2010-09-23T14:37:45.843778Z +2010-08-12T15:03:29.000000Z 40cf182dab06e3de067375de5bbab322 2006-11-21T18:34:04.275680Z 49 @@ -140,7 +140,7 @@ -2010-09-23T14:37:45.843778Z +2010-08-12T15:03:29.000000Z d58199e83ebcaa5d234764407c238bb2 2006-11-21T18:34:04.275680Z 49
--- a/vendor/plugins/rfpdf/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/rfpdf/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/rfpdf/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/rfpdf/lib http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.847779Z +2010-08-12T15:03:29.000000Z 9667df0ee17c3893ec4025f214d990ee 2006-11-21T18:34:04.275680Z 49
--- a/vendor/plugins/rfpdf/test/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 48 -/svn/!svn/ver/67/trunk/vendor/plugins/rfpdf/test -END -test_helper.rb -K 25 -svn:wc:ra_dav:version-url -V 63 -/svn/!svn/ver/67/trunk/vendor/plugins/rfpdf/test/test_helper.rb -END
--- a/vendor/plugins/rfpdf/test/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/rfpdf/test/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/rfpdf/test +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/rfpdf/test http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.855835Z +2010-08-12T15:03:30.000000Z 65b672e3025a6dc9ed22dc2cb1356061 2006-11-21T18:34:04.275680Z 49
--- a/vendor/plugins/ruby-net-ldap-0.0.4/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 59 -/svn/!svn/ver/1148/trunk/vendor/plugins/ruby-net-ldap-0.0.4 -END -LICENCE -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/134/trunk/vendor/plugins/ruby-net-ldap-0.0.4/LICENCE -END -ChangeLog -K 25 -svn:wc:ra_dav:version-url -V 68 -/svn/!svn/ver/134/trunk/vendor/plugins/ruby-net-ldap-0.0.4/ChangeLog -END -COPYING -K 25 -svn:wc:ra_dav:version-url -V 66 -/svn/!svn/ver/134/trunk/vendor/plugins/ruby-net-ldap-0.0.4/COPYING -END -README -K 25 -svn:wc:ra_dav:version-url -V 65 -/svn/!svn/ver/134/trunk/vendor/plugins/ruby-net-ldap-0.0.4/README -END
--- a/vendor/plugins/ruby-net-ldap-0.0.4/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/ruby-net-ldap-0.0.4/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/ruby-net-ldap-0.0.4 +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/ruby-net-ldap-0.0.4 http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.859799Z +2010-08-12T15:03:30.000000Z 100efd8d000514effa3709713ab85acb 2007-01-02T08:48:40.736310Z 134 @@ -72,7 +72,7 @@ -2010-09-23T14:37:45.859799Z +2010-08-12T15:03:30.000000Z e951c712b462c2e6e01f12474d4a23c2 2007-01-02T08:48:40.736310Z 134 @@ -106,7 +106,7 @@ -2010-09-23T14:37:45.859799Z +2010-08-12T15:03:30.000000Z ff6d66271209d878dbe3742d8061151e 2007-01-02T08:48:40.736310Z 134 @@ -140,7 +140,7 @@ -2010-09-23T14:37:45.859799Z +2010-08-12T15:03:30.000000Z 365281a5053e3232092adff0636600b3 2007-01-02T08:48:40.736310Z 134
--- a/vendor/plugins/ruby-net-ldap-0.0.4/lib/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 63 -/svn/!svn/ver/1148/trunk/vendor/plugins/ruby-net-ldap-0.0.4/lib -END
--- a/vendor/plugins/ruby-net-ldap-0.0.4/lib/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/ruby-net-ldap-0.0.4/lib/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/ruby-net-ldap-0.0.4/lib +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/ruby-net-ldap-0.0.4/lib http://redmine.rubyforge.org/svn
--- a/vendor/plugins/ruby-net-ldap-0.0.4/lib/net/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 67 -/svn/!svn/ver/1148/trunk/vendor/plugins/ruby-net-ldap-0.0.4/lib/net -END -ldif.rb -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/134/trunk/vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldif.rb -END -ldap.rb -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/134/trunk/vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap.rb -END -ber.rb -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/1148/trunk/vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ber.rb -END
--- a/vendor/plugins/ruby-net-ldap-0.0.4/lib/net/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/ruby-net-ldap-0.0.4/lib/net/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/ruby-net-ldap-0.0.4/lib/net +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/ruby-net-ldap-0.0.4/lib/net http://redmine.rubyforge.org/svn @@ -35,7 +35,7 @@ -2010-09-23T14:37:45.867778Z +2010-08-12T15:03:30.000000Z bcd7fbc67923f3cc1491ca301a5c39cb 2007-01-02T08:48:40.736310Z 134 @@ -69,7 +69,7 @@ -2010-09-23T14:37:45.863819Z +2010-08-12T15:03:30.000000Z 47d5a9c76d96071a1de184dd49c09194 2007-01-02T08:48:40.736310Z 134 @@ -103,7 +103,7 @@ -2010-09-23T14:37:45.863819Z +2010-08-12T15:03:30.000000Z 40f7f978006674f2b916ce341e5ad684 2008-02-15T17:22:21.293943Z 1148
--- a/vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,35 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 71 -/svn/!svn/ver/252/trunk/vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap -END -entry.rb -K 25 -svn:wc:ra_dav:version-url -V 80 -/svn/!svn/ver/134/trunk/vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap/entry.rb -END -dataset.rb -K 25 -svn:wc:ra_dav:version-url -V 82 -/svn/!svn/ver/134/trunk/vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap/dataset.rb -END -filter.rb -K 25 -svn:wc:ra_dav:version-url -V 81 -/svn/!svn/ver/252/trunk/vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap/filter.rb -END -pdu.rb -K 25 -svn:wc:ra_dav:version-url -V 78 -/svn/!svn/ver/134/trunk/vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap/pdu.rb -END -psw.rb -K 25 -svn:wc:ra_dav:version-url -V 78 -/svn/!svn/ver/134/trunk/vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap/psw.rb -END
--- a/vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.867778Z +2010-08-12T15:03:30.000000Z be6b5dd522a4532ceeda4ab5bddcb53e 2007-01-02T08:48:40.736310Z 134 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.867778Z +2010-08-12T15:03:30.000000Z dce002e156bf793b6219b50e5d4ede3a 2007-01-02T08:48:40.736310Z 134 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.867778Z +2010-08-12T15:03:30.000000Z 39c1aa4a3ff36f2769b6855a4b56faa7 2007-02-18T11:45:55.832750Z 252 @@ -134,7 +134,7 @@ -2010-09-23T14:37:45.867778Z +2010-08-12T15:03:30.000000Z 7acdae44250f47d4b177c0367865d5f7 2007-01-02T08:48:40.736310Z 134 @@ -168,7 +168,7 @@ -2010-09-23T14:37:45.867778Z +2010-08-12T15:03:30.000000Z 7af528c0721148b904f82e64e523ee74 2007-01-02T08:48:40.736310Z 134
--- a/vendor/plugins/ruby-net-ldap-0.0.4/tests/.svn/all-wcprops Wed Jan 19 15:04:22 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,47 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 64 -/svn/!svn/ver/134/trunk/vendor/plugins/ruby-net-ldap-0.0.4/tests -END -testldif.rb -K 25 -svn:wc:ra_dav:version-url -V 76 -/svn/!svn/ver/134/trunk/vendor/plugins/ruby-net-ldap-0.0.4/tests/testldif.rb -END -testldap.rb -K 25 -svn:wc:ra_dav:version-url -V 76 -/svn/!svn/ver/134/trunk/vendor/plugins/ruby-net-ldap-0.0.4/tests/testldap.rb -END -testem.rb -K 25 -svn:wc:ra_dav:version-url -V 74 -/svn/!svn/ver/134/trunk/vendor/plugins/ruby-net-ldap-0.0.4/tests/testem.rb -END -testdata.ldif -K 25 -svn:wc:ra_dav:version-url -V 78 -/svn/!svn/ver/134/trunk/vendor/plugins/ruby-net-ldap-0.0.4/tests/testdata.ldif -END -testfilter.rb -K 25 -svn:wc:ra_dav:version-url -V 78 -/svn/!svn/ver/134/trunk/vendor/plugins/ruby-net-ldap-0.0.4/tests/testfilter.rb -END -testber.rb -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/134/trunk/vendor/plugins/ruby-net-ldap-0.0.4/tests/testber.rb -END -testpsw.rb -K 25 -svn:wc:ra_dav:version-url -V 75 -/svn/!svn/ver/134/trunk/vendor/plugins/ruby-net-ldap-0.0.4/tests/testpsw.rb -END
--- a/vendor/plugins/ruby-net-ldap-0.0.4/tests/.svn/entries Wed Jan 19 15:04:22 2011 +0000 +++ b/vendor/plugins/ruby-net-ldap-0.0.4/tests/.svn/entries Wed Jan 19 15:15:02 2011 +0000 @@ -2,7 +2,7 @@ dir 4732 -http://redmine.rubyforge.org/svn/trunk/vendor/plugins/ruby-net-ldap-0.0.4/tests +http://redmine.rubyforge.org/svn/branches/1.1-stable/vendor/plugins/ruby-net-ldap-0.0.4/tests http://redmine.rubyforge.org/svn @@ -32,7 +32,7 @@ -2010-09-23T14:37:45.871778Z +2010-08-12T15:03:30.000000Z d32a0d5d48658b30de358974dc588b6a 2007-01-02T08:48:40.736310Z 134 @@ -66,7 +66,7 @@ -2010-09-23T14:37:45.871778Z +2010-08-12T15:03:30.000000Z 9a4a1de4982131870bcc016b3062b563 2007-01-02T08:48:40.736310Z 134 @@ -100,7 +100,7 @@ -2010-09-23T14:37:45.871778Z +2010-08-12T15:03:30.000000Z 07fadb83b55212328945590db904016b 2007-01-02T08:48:40.736310Z 134 @@ -134,7 +134,7 @@ -2010-09-23T14:37:45.871778Z +2010-08-12T15:03:30.000000Z f60b9471933a7a534097d3fd1fe38a18 2007-01-02T08:48:40.736310Z 134 @@ -168,7 +168,7 @@ -2010-09-23T14:37:45.871778Z +2010-08-12T15:03:30.000000Z 98e4a39b73665ed7c274457213d8e3d5 2007-01-02T08:48:40.736310Z 134 @@ -202,7 +202,7 @@ -2010-09-23T14:37:45.871778Z +2010-08-12T15:03:30.000000Z a6eed10e89ba06f4ffa2da720bb1752f 2007-01-02T08:48:40.736310Z 134 @@ -236,7 +236,7 @@ -2010-09-23T14:37:45.871778Z +2010-08-12T15:03:30.000000Z 3dcbc8b4c3717fa97211a1d75a7fab4f 2007-01-02T08:48:40.736310Z 134