OSDN Git Service

scm: subversion: fix newline 'LF' to 'CRLF' and remove trailing white-space.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 4 May 2011 08:25:04 +0000 (08:25 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 4 May 2011 08:25:04 +0000 (08:25 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5635 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/scm/adapters/subversion_adapter.rb

index b82f5e6..c59a053 100644 (file)
@@ -70,7 +70,7 @@ module Redmine
             end\r
             begin\r
               doc = ActiveSupport::XmlMini.parse(output)\r
-              #root_url = doc.elements["info/entry/repository/root"].text          \r
+              # root_url = doc.elements["info/entry/repository/root"].text\r
               info = Info.new({:root_url => doc['info']['entry']['repository']['root']['__content__'],\r
                                :lastrev => Revision.new({\r
                                  :identifier => doc['info']['entry']['commit']['revision'],\r
@@ -263,7 +263,7 @@ module Redmine
         end\r
 \r
         # Helper that iterates over the child elements of a xml node\r
-        # MiniXml returns a hash when a single child is found
+        # MiniXml returns a hash when a single child is found\r
         # or an array of hashes for multiple children\r
         def each_xml_element(node, name)\r
           if node && node[name]\r