Index: C:/Eclipse3.3/workspace/cc-svn/xsl/ant.xsl =================================================================== --- C:/Eclipse3.3/workspace/cc-svn/xsl/ant.xsl (revision 3919) +++ C:/Eclipse3.3/workspace/cc-svn/xsl/ant.xsl (working copy) @@ -1,6 +1,6 @@ - - - - - + - - - - - - - - - - - - -
- - http://jakarta.apache.org - - - Apache Ant -
- - - -

+ + + +
+ + +
+
+ + + + + + failed + complete + + -
- See the stacktrace. +
+ + + + + + + + + +
Build Failed Build Complete + Total Time: +
+ + + + +
+ + See the stacktrace. + +
+
+ + + + + + + + + + + + + + + + + +
ant.file + +
ant.version + +
java.version + +
os.name + +
+ +

Build events

+ + + + + + + +
targettaskmessage
+

+ + + +

Error details

+ + + + +
+
+                
+              
+
+ +

+
+ + + + + + + a + b + + + + + [ ] + + + + - - - - - - -
ant.file
ant.version
java.version
os.name
- -

Build events

- - - - - - - -
targettaskmessage
-

- - - -

Error details

- - -
-
-
- -

-
+ - - - - - - a - b - - - [ ] - - - - - - -
+ \ No newline at end of file Index: C:/Eclipse3.3/workspace/cc-svn/reporting/dashboard/src/net/sourceforge/cruisecontrol/dashboard/service/WidgetPluginService.java =================================================================== --- C:/Eclipse3.3/workspace/cc-svn/reporting/dashboard/src/net/sourceforge/cruisecontrol/dashboard/service/WidgetPluginService.java (revision 3919) +++ C:/Eclipse3.3/workspace/cc-svn/reporting/dashboard/src/net/sourceforge/cruisecontrol/dashboard/service/WidgetPluginService.java (working copy) @@ -82,5 +82,7 @@ parameters.put(Widget.PARAM_PJT_LOG_ROOT, build.getLogFolder()); parameters.put(Widget.PARAM_BUILD_LOG_FILE, build.getLogFile()); parameters.put(Widget.PARAM_BUILD_ARTIFACTS_ROOT, build.getArtifactFolder()); + //Hardcode PARAM_CC_ROOT for now - CC Devs, is there a good place to pull this from? + parameters.put(Widget.PARAM_CC_ROOT, "c:\\program files\\CruiseControl"); } } Index: C:/Eclipse3.3/workspace/cc-svn/reporting/dashboard/src/net/sourceforge/cruisecontrol/dashboard/widgets/AbstractXslOutputWidget.java =================================================================== --- C:/Eclipse3.3/workspace/cc-svn/reporting/dashboard/src/net/sourceforge/cruisecontrol/dashboard/widgets/AbstractXslOutputWidget.java (revision 3919) +++ C:/Eclipse3.3/workspace/cc-svn/reporting/dashboard/src/net/sourceforge/cruisecontrol/dashboard/widgets/AbstractXslOutputWidget.java (working copy) @@ -35,9 +35,9 @@ } public Object getOutput(Map parameters) { - File logFile = (File) parameters.get(Widget.PARAM_BUILD_LOG_FILE); + File logFile = new File( (String)parameters.get(Widget.PARAM_BUILD_LOG_FILE) ); try { - File ccHome = (File) parameters.get(Widget.PARAM_CC_ROOT); + File ccHome = new File( (String)parameters.get(Widget.PARAM_CC_ROOT) ); File xsl = new File(ccHome.getCanonicalPath() + "/" + getXslPath()); Source xmlSource = new StreamSource(logFile); Source xsltSource = new StreamSource(xsl);