Fixed less parameter in themedirector to comply to naming convention. NOTE: themedirector configuration should be checked! (default is noch styles/main.less and name changes from themedirectory.less... to themedirector.less....
git-svn-id: https://svn.libreccm.org/ccm/trunk@5358 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
db7807dd6a
commit
850ff0ea2d
|
|
@ -3,7 +3,7 @@
|
||||||
name="ccm-themedirector"
|
name="ccm-themedirector"
|
||||||
prettyName="Theme Director"
|
prettyName="Theme Director"
|
||||||
version="6.6.3"
|
version="6.6.3"
|
||||||
release="1"
|
release="2"
|
||||||
webapp="ROOT">
|
webapp="ROOT">
|
||||||
<ccm:dependencies>
|
<ccm:dependencies>
|
||||||
<ccm:requires name="ccm-core" version="6.6.0" relation="ge"/>
|
<ccm:requires name="ccm-core" version="6.6.0" relation="ge"/>
|
||||||
|
|
|
||||||
|
|
@ -100,10 +100,14 @@ public class ThemeDirectorConfig extends AbstractConfig {
|
||||||
Parameter.REQUIRED,
|
Parameter.REQUIRED,
|
||||||
"bmp css eot gif jpeg jpg js png svg ttf woff xml xsl");
|
"bmp css eot gif jpeg jpg js png svg ttf woff xml xsl");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Specifies the less file(s) used as entry point(s) for compiling
|
||||||
|
* a managed theme on the fly when publishing.
|
||||||
|
*/
|
||||||
private final Parameter m_lessFilesParam = new StringArrayParameter(
|
private final Parameter m_lessFilesParam = new StringArrayParameter(
|
||||||
"themedirectory.less_files.compile",
|
"themedirector.less_files_compile",
|
||||||
Parameter.OPTIONAL,
|
Parameter.OPTIONAL,
|
||||||
new String[]{"styles/style.less"});
|
new String[]{"styles/main.less"});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* number of seconds before checking for updated development files. in a
|
* number of seconds before checking for updated development files. in a
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue