<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -4,8 +4,8 @@
   - option to auto delete more than N builds
   - [experimental] plugins can be installed w/ script/cruise_plugin script
   - [bugfix] build requested status now stays on dashboard until a build starts
-  - [patch] subversion external support - nathan wilmes
-  - [patch] relative url support - neal clark
+  - [patch] subversion external support - Nathan Wilmes
+  - [patch] relative url support - Neal Clark
 
 ------------------------------------------------------------------------------------------------------------------------
 * 1.2.1</diff>
      <filename>CHANGELOG</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,6 @@
 h2. Source code
 
 * &quot;Check out&quot;:http://rubyforge.org/scm/?group_id=2918
-* &quot;Browse the trunk&quot;:http://rubyforge.org/viewvc/trunk/?root=cruisecontrolrb
 
 h2. Maillists
 
@@ -12,11 +11,11 @@ h2. Maillists
 
 h2. Bugs and patches
 
-* &quot;Browse bug tracker&quot;:http://jira.public.thoughtworks.org/browse/CCRB
+* &quot;Browse bug tracker&quot;:http://cruisecontrolrb.lighthouseapp.com
 
 &lt;small&gt;&lt;em&gt;
 Note: to submit a bug or a patch to our bug tracker, you need to
-&quot;create a JIRA account&quot;:http://jira.public.thoughtworks.org/secure/Signup!default.jspa  
+&quot;create a LightHouse account&quot;:http://cruisecontrolrb.lighthouseapp.com/users/new  
 &lt;/em&gt;&lt;/small&gt;
 
 &lt;/div&gt;
\ No newline at end of file</diff>
      <filename>app/views/documentation/_sidebar_contributing.red</filename>
    </modified>
    <modified>
      <diff>@@ -13,11 +13,11 @@ You can help in four different ways:
 
 h2. &lt;a name=&quot;report&quot;&gt;Report bugs&lt;/a&gt;
 
-CruiseControl.rb uses a public &quot;JIRA bug tracker&quot;:http://jira.public.thoughtworks.org/browse/CCRB to keep track of bugs,
+CruiseControl.rb uses a public &quot;bug tracker&quot;:http://cruisecontrolrb.lighthouseapp.com to keep track of bugs,
 patches, ideas and development stories.
 
 Before you can submit a bug, you need to
-&quot;create a JIRA account&quot;:http://jira.public.thoughtworks.org/secure/Signup!default.jspa for yourself. This way we protect
+&quot;create a Lighthouse account&quot;:http://cruisecontrolrb.lighthouseapp.com/users/new for yourself. This way we protect
 the tracker against spam and make sure that we can get in touch with you if we have questions (or answers).
 
 Please try to be as specific as possible about the symptoms and likely root causes of the problem, include
@@ -36,7 +36,7 @@ an open-source project started this way, and ended up as a truckload of half-hea
 intention whatsoever to fall into that trap.
 
 This is why CruiseControl is trying to satisfy the basic needs of its primary audience (which is small to medium size
-Ruby or Rails projects), while providing enough opportunity for extending and hacking the tool without affecting the
+Ruby projects), while providing enough opportunity for extending and hacking the tool without affecting the
 sweet simplicity of the core codebase.
 
 Ruby, of course, is an interpreted language with open classes that lets you do anything you want.
@@ -63,10 +63,10 @@ write a listener for those events.
 &lt;code&gt;Project#notify()&lt;/code&gt;
 method.&lt;/p&gt;
 
-For an example of a working plugin, look at builder_plugins/installed/email_notifier.rb or
-builder_plugins/available/jabber_notifier. Note that a plugin can be implemented as a single file, or a
+For an example of a working plugin, look at &lt;em&gt;[cruise]&lt;/em&gt;/lib/builder_plugins/email_notifier.rb or
+&lt;em&gt;[cruise]&lt;/em&gt;/lib/builder_plugins/jabber_notifier. Note that a plugin can be implemented as a single file, or a
 directory (containing init.rb). Either way, the file or directory name should match the class name of the listener
-class, and the plugin should be placed in builder_plugins/installed directory.
+class, and the plugin should be placed in &lt;em&gt;[cruise]&lt;/em&gt;/lib/builder_plugins directory.
 
 It would be good to have more documentation here, as well as some guarantees about published API for plugins, but it's
 too early to make such commitments. Let's build some great plugins, and see what kind of API evolves in the process.
@@ -96,13 +96,13 @@ h2. &lt;a name=&quot;patches&quot;&gt;Submit patches&lt;/a&gt;
 We absolutely love receiving bug reports. Who doesn't, after all? But what can make us really happy is a bug
 report coming with a patch that fixes the bug and adds unit tests to prevent it from ever happening again.
 Contributing a well packaged patch that is accepted into the codebase places your name for posterity in
-CruiseControl.rb Eternal Hall of Fame, aka the Contributors section of README.
+CruiseControl.rb Eternal Hall of Fame, aka the CHANGELOG.
 
 &lt;em&gt;Official Standard Procedure for the Submission of Patches&lt;/em&gt; is hereby defined as follows:
 
-1. Check out the latest source from Subversion repository:&lt;br/&gt;
+1. Check out the latest source from the git repository:&lt;br/&gt;
 
-&lt;pre&gt;&lt;code&gt;    svn co svn://rubyforge.org/var/svn/cruisecontrolrb&lt;/code&gt;&lt;/pre&gt;
+&lt;pre&gt;&lt;code&gt;    git clone git://rubyforge.org/cruisecontrolrb.git&lt;/code&gt;&lt;/pre&gt;
 
 2. Run the build, make sure that it passes: &lt;code&gt;rake&lt;/code&gt;
 
@@ -113,11 +113,13 @@ CruiseControl.rb Eternal Hall of Fame, aka the Contributors section of README.
 p(hint). Besides, your tests should not leave any by-products in the file system. If you need to create a file in your
          test, use &lt;code&gt;in_sandbox()&lt;/code&gt; or &lt;code&gt;with_sandbox_project()&lt;/code&gt; test helpers.
 
-5. Check that Subversion is fully aware of files you added/deleted/renamed : &lt;code&gt;svn stat&lt;/code&gt;
+5. Commit changes into your local git repository.
 
-6. Create a patch: &lt;code&gt;svn diff &gt; patch_to_fix_global_warming.diff&lt;/code&gt;
+5. Check that Git is fully aware of files you added/deleted/renamed, using &lt;code&gt;git stat&lt;/code&gt;
 
-7. Login to JIRA
+6. Create a patch with &lt;code&gt;git-format-patch&lt;/code&gt;
+
+7. Login to &quot;Lighthouse&quot;:http://cruisecontrolrb.lighthouseapp.com
 
 8. Create a new issue, prefix the summary with the word [PATCH].
 </diff>
      <filename>app/views/documentation/contributing.red</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>03276448e2037c154b2f35d0c8fba72d067ae78c</id>
    </parent>
  </parents>
  <author>
    <name>alexeyv</name>
    <email>alexeyv@c04ce798-636b-4ca8-9149-0f9336831111</email>
  </author>
  <url>http://github.com/dustin/cruisecontrolrb/commit/57848cbb588b3fc8b86d21b9e09ca89404b49492</url>
  <id>57848cbb588b3fc8b86d21b9e09ca89404b49492</id>
  <committed-date>2008-04-23T16:57:41-07:00</committed-date>
  <authored-date>2008-04-23T16:57:41-07:00</authored-date>
  <message>More documentation updates

git-svn-id: http://cruisecontrolrb.rubyforge.org/svn/trunk@618 c04ce798-636b-4ca8-9149-0f9336831111</message>
  <tree>08e63bba3a922393ff667301d96be4eee88a1bee</tree>
  <committer>
    <name>alexeyv</name>
    <email>alexeyv@c04ce798-636b-4ca8-9149-0f9336831111</email>
  </committer>
</commit>
