Author: kishore
Date: Fri Apr 28 20:30:03 2017
New Revision: 1793151
URL: http://svn.apache.org/viewvc?rev=1793151&view=rev
Log:
Replace test name to actual css name
Modified:
manifoldcf/branches/CONNECTORS-1418/framework/crawler-ui/pom.xml
manifoldcf/branches/CONNECTORS-1418/framework/less-compiler/src/main/java/org/apache/manifoldcf/less/MCFLessCompiler.java
Modified: manifoldcf/branches/CONNECTORS-1418/framework/crawler-ui/pom.xml
URL:
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1418/framework/crawler-ui/pom.xml?rev=1793151&r1=1793150&r2=1793151&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-1418/framework/crawler-ui/pom.xml (original)
+++ manifoldcf/branches/CONNECTORS-1418/framework/crawler-ui/pom.xml Fri Apr 28
20:30:03 2017
@@ -46,10 +46,7 @@
<executions>
<execution>
<id>compile-less</id>
- <!-- Currently during process-classes phase, css is generated,
but during the package phase,
- the generated css will be over written by the file from source
css folder. It's intentional for now,
- but once the decision is made about approach, we can change the
phase to prepare-package -->
- <phase>process-classes</phase>
+ <phase>prepare-package</phase>
<goals>
<goal>java</goal>
</goals>
Modified:
manifoldcf/branches/CONNECTORS-1418/framework/less-compiler/src/main/java/org/apache/manifoldcf/less/MCFLessCompiler.java
URL:
http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-1418/framework/less-compiler/src/main/java/org/apache/manifoldcf/less/MCFLessCompiler.java?rev=1793151&r1=1793150&r2=1793151&view=diff
==============================================================================
---
manifoldcf/branches/CONNECTORS-1418/framework/less-compiler/src/main/java/org/apache/manifoldcf/less/MCFLessCompiler.java
(original)
+++
manifoldcf/branches/CONNECTORS-1418/framework/less-compiler/src/main/java/org/apache/manifoldcf/less/MCFLessCompiler.java
Fri Apr 28 20:30:03 2017
@@ -106,8 +106,7 @@ public class MCFLessCompiler
{
String outputLess = lessFolderPath + "/style.less";
- //TODO: Need to change to actual name in final impl
- String outputCSS = cssFolderPath + "/style_test.css";
+ String outputCSS = cssFolderPath + "/style.css";
boolean compress = false;
MCFLessCompiler compiler = new MCFLessCompiler();