Skip to content

Commit

Permalink
housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
unclebob committed Nov 1, 2010
1 parent 4a19a4f commit b438f44
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 13 deletions.
2 changes: 1 addition & 1 deletion FitNesseRoot/FrontPage/content.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ To add your first "page", click the [[Edit][FrontPage?edit]] button and add a [[
| [[User Guide][FitNesse.UserGuide]]|''Answer the rest of your questions here.''|
| [[Acceptance Tests][FitNesse.SuiteAcceptanceTests]]|''FitNesse's suite of Acceptance Tests''|

!note Release v20100919
!note Release v20101101
2 changes: 1 addition & 1 deletion FitNesseRoot/properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ PropertiesToXmlUpdate=applied
FilesAttributeUpdate=applied
SymLinkPropertyFormatUpdate=applied
VirtualWikiDeprecationUpdate=applied
Version=v20100919
Version=v20101101
WhereUsedAttributeUpdate=applied
RecentChangesAttributeUpdate=applied
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<description> The fully integrated standalone wiki, and acceptance
testing framework. </description>
<url>http://fitnesse.org</url>
<version>20100919</version>
<version>20101101</version>
<licenses>
<license>
<name>GNU Public License, Version 2.0</name>
Expand Down
2 changes: 1 addition & 1 deletion src/fitnesse/FitNesseExpediter.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
import fitnesse.http.Response;
import fitnesse.http.ResponseSender;
import fitnesse.responders.ErrorResponder;
import util.StringUtil;
import util.Clock;
import util.StringUtil;

import java.io.IOException;
import java.io.InputStream;
Expand Down
2 changes: 1 addition & 1 deletion src/fitnesse/FitNesseVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public class FitNesseVersion {
private final String version;

public FitNesseVersion() {
this("v20100919");
this("v20101101");
}

public FitNesseVersion(String version) {
Expand Down
3 changes: 2 additions & 1 deletion src/fitnesse/components/Logger.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ public class Logger {
private File directory;

public static SimpleDateFormat makeLogFormat() {
//SimpleDateFormat is not thread safe, so we need to create each instance independently.
//SimpleDateFormat is not thread safe,
// so we need to create each instance independently.
return new SimpleDateFormat("dd/MMM/yyyy:HH:mm:ss Z");
}

Expand Down
1 change: 0 additions & 1 deletion src/fitnesse/responders/NotFoundResponder.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import fitnesse.wikitext.widgets.WikiWordWidget;

// TODO: Some of this code may now be obsolete, because this responder is no longer used for some

// scenarios (we skip directly to an EditResponder...).
public class NotFoundResponder implements Responder {
private String resource;
Expand Down
2 changes: 0 additions & 2 deletions src/fitnesseMain/ant/StartFitnesseTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ public void execute() throws BuildException {

/**
* Port on which fitnesse would run. Defaults to <b>8082</b>.
*
* @param fitnessePort
*/
public void setFitnessePort(int fitnessePort) {
this.fitnessePort = fitnessePort;
Expand Down
19 changes: 15 additions & 4 deletions src/fitnesseMain/ant/TestRunnerTask.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,28 @@
import fitnesseMain.FitNesseMain;

/**
* Task to run fit tests. This task starts the fit server, runs fitnesse tests and publishes the results. <p/>
* Task to run fit tests. This task starts the fit server,
* runs fitnesse tests and publishes the results. <p/>
* <p/>
* <pre>
* Usage:
* &lt;taskdef name=&quot;run-fitnesse-tests&quot; classname=&quot;fitnesse.ant.TestRunnerTask&quot; classpathref=&quot;classpath&quot; /&gt;
* &lt;taskdef name=&quot;run-fitnesse-tests&quot;
* classname=&quot;fitnesse.ant.TestRunnerTask&quot;
* classpathref=&quot;classpath&quot; /&gt;
* OR
* &lt;taskdef classpathref=&quot;classpath&quot; resource=&quot;tasks.properties&quot; /&gt;
* &lt;taskdef classpathref=&quot;classpath&quot;
* resource=&quot;tasks.properties&quot; /&gt;
* &lt;p/&gt;
* &lt;run-fitnesse-tests wikidirectoryrootpath=&quot;.&quot; suitepage=&quot;FitNesse.SuiteAcceptanceTests&quot; fitnesseport=&quot;8082&quot; resultsdir=&quot;${results.dir}&quot; resultshtmlpage=&quot;fit-results.html&quot; resultsxmlpage=&quot;fit-results.xml&quot; classpathref=&quot;classpath&quot; /&gt;
* &lt;run-fitnesse-tests wikidirectoryrootpath=&quot;.&quot;
* suitepage=&quot;FitNesse.SuiteAcceptanceTests&quot;
* fitnesseport=&quot;8082&quot; resultsdir=&quot;
* ${results.dir}&quot; resultshtmlpage=&quot;
* fit-results.html&quot; resultsxmlpage=&quot;
* fit-results.xml&quot; classpathref=&quot;
* classpath&quot; /&gt;
* </pre>
*/

public class TestRunnerTask extends Task {
private String wikiDirectoryRootPath;
private int fitnessePort = 8082;
Expand Down

0 comments on commit b438f44

Please sign in to comment.