[jira] [Commented] (CONNECTORS-1418) Develop Ant build script to compile LESS to CSS

2017-04-26 Thread Kishore Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/CONNECTORS-1418?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15985691#comment-15985691
 ] 

Kishore Kumar commented on CONNECTORS-1418:
---

Thanks [~daddywri], I will surely take a look at this tomorrow.

> Develop Ant build script to compile LESS to CSS
> ---
>
> Key: CONNECTORS-1418
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1418
> Project: ManifoldCF
>  Issue Type: Improvement
>  Components: Framework core
>Affects Versions: ManifoldCF 2.7
>Reporter: Kishore Kumar
>Assignee: Kishore Kumar
>
> We need to add Ant build script to compile LESS files to CSS.
> Currently the compilation is dependent on Intellij IDE Less plugin.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Assigned] (CONNECTORS-1420) Incorrect Date Comparison in Email Filtering

2017-04-26 Thread Karl Wright (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-1420?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright reassigned CONNECTORS-1420:
---

Assignee: Karl Wright

> Incorrect Date Comparison in Email Filtering
> 
>
> Key: CONNECTORS-1420
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1420
> Project: ManifoldCF
>  Issue Type: Bug
>  Components: Email connector
>Affects Versions: ManifoldCF 2.7
>Reporter: Cihad Guzel
>Assignee: Karl Wright
> Fix For: ManifoldCF 2.8
>
> Attachments: CONNECTORS-1420.patch
>
>
> Email date filtering  doesn't work correctly. 
> {code}
>   else if (findParameterName.equals(EmailConfig.EMAIL_START_DATE)) {
> comparisonTerm = ComparisonTerm.LT;
>   } else if (findParameterName.equals(EmailConfig.EMAIL_END_DATE)) {
> comparisonTerm = ComparisonTerm.GT;
>   }
> {code}
> It must be as follow: 
> {code}
>   else if (findParameterName.equals(EmailConfig.EMAIL_START_DATE)) {
> comparisonTerm = ComparisonTerm.GT;
>   } else if (findParameterName.equals(EmailConfig.EMAIL_END_DATE)) {
> comparisonTerm = ComparisonTerm.LT;
>   }
> {code}
> Reference: 
> [ComparisonTerm|https://www.gnu.org/software/classpathx/javamail/javadoc/javax/mail/search/ComparisonTerm.html#LT]
> {noformat}
> ComparisonTerm.GT : The greater than operator.
> ComparisonTerm.LT : The less than operator.
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (CONNECTORS-1418) Develop Ant build script to compile LESS to CSS

2017-04-26 Thread Karl Wright (JIRA)

[ 
https://issues.apache.org/jira/browse/CONNECTORS-1418?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15985549#comment-15985549
 ] 

Karl Wright commented on CONNECTORS-1418:
-

I committed the updated pom.xml to the branch.
It doesn't seem to do anything, however.  I'm not entirely sure it is properly 
configured, especially around the includes.  [~kishorekumar], please experiment 
and see if you can get it to work.  Try the following:

(1) Build entire project with maven using: "mvn -DskipTests -DskipITs install"
(2) When the maven build completes, you can see what was put into the crawler 
UI war by inspecting the directory 
"framework/crawler-ui/target/mcf-crawler-ui-2.8-SNAPSHOT"
(3) See if you can get the maven plugin configured so it generates what you are 
hoping for automatically as part of the build
(4) Delete what you generated via Eclipse from the tree

Once these steps are done successfully I can tackle the ant build part.


> Develop Ant build script to compile LESS to CSS
> ---
>
> Key: CONNECTORS-1418
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1418
> Project: ManifoldCF
>  Issue Type: Improvement
>  Components: Framework core
>Affects Versions: ManifoldCF 2.7
>Reporter: Kishore Kumar
>Assignee: Kishore Kumar
>
> We need to add Ant build script to compile LESS files to CSS.
> Currently the compilation is dependent on Intellij IDE Less plugin.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (CONNECTORS-1420) Incorrect Date Comparison in Email Filtering

2017-04-26 Thread Cihad Guzel (JIRA)
Cihad Guzel created CONNECTORS-1420:
---

 Summary: Incorrect Date Comparison in Email Filtering
 Key: CONNECTORS-1420
 URL: https://issues.apache.org/jira/browse/CONNECTORS-1420
 Project: ManifoldCF
  Issue Type: Bug
  Components: Email connector
Affects Versions: ManifoldCF 2.7
Reporter: Cihad Guzel
 Fix For: ManifoldCF 2.8
 Attachments: CONNECTORS-1420.patch

Email date filtering  doesn't work correctly. 

{code}
  else if (findParameterName.equals(EmailConfig.EMAIL_START_DATE)) {
comparisonTerm = ComparisonTerm.LT;
  } else if (findParameterName.equals(EmailConfig.EMAIL_END_DATE)) {
comparisonTerm = ComparisonTerm.GT;
  }
{code}

It must be as follow: 

{code}
  else if (findParameterName.equals(EmailConfig.EMAIL_START_DATE)) {
comparisonTerm = ComparisonTerm.GT;
  } else if (findParameterName.equals(EmailConfig.EMAIL_END_DATE)) {
comparisonTerm = ComparisonTerm.LT;
  }
{code}

Reference: 
[ComparisonTerm|https://www.gnu.org/software/classpathx/javamail/javadoc/javax/mail/search/ComparisonTerm.html#LT]

{noformat}
ComparisonTerm.GT : The greater than operator.
ComparisonTerm.LT : The less than operator.
{noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (CONNECTORS-1420) Incorrect Date Comparison in Email Filtering

2017-04-26 Thread Cihad Guzel (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-1420?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Cihad Guzel updated CONNECTORS-1420:

Attachment: CONNECTORS-1420.patch

> Incorrect Date Comparison in Email Filtering
> 
>
> Key: CONNECTORS-1420
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1420
> Project: ManifoldCF
>  Issue Type: Bug
>  Components: Email connector
>Affects Versions: ManifoldCF 2.7
>Reporter: Cihad Guzel
> Fix For: ManifoldCF 2.8
>
> Attachments: CONNECTORS-1420.patch
>
>
> Email date filtering  doesn't work correctly. 
> {code}
>   else if (findParameterName.equals(EmailConfig.EMAIL_START_DATE)) {
> comparisonTerm = ComparisonTerm.LT;
>   } else if (findParameterName.equals(EmailConfig.EMAIL_END_DATE)) {
> comparisonTerm = ComparisonTerm.GT;
>   }
> {code}
> It must be as follow: 
> {code}
>   else if (findParameterName.equals(EmailConfig.EMAIL_START_DATE)) {
> comparisonTerm = ComparisonTerm.GT;
>   } else if (findParameterName.equals(EmailConfig.EMAIL_END_DATE)) {
> comparisonTerm = ComparisonTerm.LT;
>   }
> {code}
> Reference: 
> [ComparisonTerm|https://www.gnu.org/software/classpathx/javamail/javadoc/javax/mail/search/ComparisonTerm.html#LT]
> {noformat}
> ComparisonTerm.GT : The greater than operator.
> ComparisonTerm.LT : The less than operator.
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (CONNECTORS-1418) Develop Ant build script to compile LESS to CSS

2017-04-26 Thread Karl Wright (JIRA)

[ 
https://issues.apache.org/jira/browse/CONNECTORS-1418?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15985480#comment-15985480
 ] 

Karl Wright commented on CONNECTORS-1418:
-

I've created a branch, branches/CONNECTORS-1418, to work on this ticket.


> Develop Ant build script to compile LESS to CSS
> ---
>
> Key: CONNECTORS-1418
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1418
> Project: ManifoldCF
>  Issue Type: Improvement
>  Components: Framework core
>Affects Versions: ManifoldCF 2.7
>Reporter: Kishore Kumar
>Assignee: Kishore Kumar
>
> We need to add Ant build script to compile LESS files to CSS.
> Currently the compilation is dependent on Intellij IDE Less plugin.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Comment Edited] (CONNECTORS-1418) Develop Ant build script to compile LESS to CSS

2017-04-26 Thread Karl Wright (JIRA)

[ 
https://issues.apache.org/jira/browse/CONNECTORS-1418?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15985448#comment-15985448
 ] 

Karl Wright edited comment on CONNECTORS-1418 at 4/26/17 8:10 PM:
--

Hi [~kishorekumar], this looks like the right Maven plugin to use:

https://github.com/marceloverdijk/lesscss-maven-plugin

The Maven configuration looks like this:

{code}

org.lesscss
lesscss-maven-plugin
1.7.0.1.1


${project.basedir}/src/main/webapp/less

${project.build.directory}/${project.build.finalName}/css
true

main.less





compile




{code}

This looks like it would compile all source files under the webapp/less source 
directory to the target css directory.

For a start, therefore, I recommend keeping the layout of the src/main/webapp 
files and folders to conform with the standard convention 
(http://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html),
 and modifying the pom to include the lesscss-maven-plugin invocation as 
specified.  Remove the style.css file and see if it gets generated and included 
in the right place in the war when you use Maven to build.

I'll keep looking for an ant plugin we can use.



was (Author: kwri...@metacarta.com):
Hi [~kishorekumar], this looks like the right Maven plugin to use:

https://github.com/marceloverdijk/lesscss-maven-plugin

The Maven configuration looks like this:

{code}

org.lesscss
lesscss-maven-plugin
1.7.0.1.1


${project.basedir}/src/main/webapp/less

${project.build.directory}/${project.build.finalName}/css
true

main.less





compile




{code}

This looks like it would compile all source files under the webapp/less source 
directory to the target/css directory.

For a start, therefore, I recommend rearranging the layout of the 
src/main/webapp files and folders to conform with this general convention.  Do 
the .less files need to be in the final war?  If not, we may want to move them 
out entirely, for example to some place like src/main/less.

I'll keep looking for an ant plugin we can use.


> Develop Ant build script to compile LESS to CSS
> ---
>
> Key: CONNECTORS-1418
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1418
> Project: ManifoldCF
>  Issue Type: Improvement
>  Components: Framework core
>Affects Versions: ManifoldCF 2.7
>Reporter: Kishore Kumar
>Assignee: Kishore Kumar
>
> We need to add Ant build script to compile LESS files to CSS.
> Currently the compilation is dependent on Intellij IDE Less plugin.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Comment Edited] (CONNECTORS-1418) Develop Ant build script to compile LESS to CSS

2017-04-26 Thread Karl Wright (JIRA)

[ 
https://issues.apache.org/jira/browse/CONNECTORS-1418?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15985454#comment-15985454
 ] 

Karl Wright edited comment on CONNECTORS-1418 at 4/26/17 7:54 PM:
--

There does not appear to be a compatible ant plugin to the above, so we'd need 
to invoke compiler code using the ant exec task.

{code}
https://ant.apache.org/manual/Tasks/exec.html
{code}

The compatible compiler jar to the maven plugin above is Apache 2.0 licensed 
and can be found at:

{code}

  org.lesscss
  lesscss
  1.7.0.1.1

{code}

We will need to write a main class to call the compiler since there's no 
existing plugin around to use.  Or we could write an actual Ant plugin, but 
I've never done that before, and I doubt we could build it and register it 
while already executing an ant script.



was (Author: kwri...@metacarta.com):
There does not appear to be a compatible ant plugin to the above, so we'd need 
to invoke compiler code using the ant exec task.

{code}
https://ant.apache.org/manual/Tasks/exec.html
{code}


> Develop Ant build script to compile LESS to CSS
> ---
>
> Key: CONNECTORS-1418
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1418
> Project: ManifoldCF
>  Issue Type: Improvement
>  Components: Framework core
>Affects Versions: ManifoldCF 2.7
>Reporter: Kishore Kumar
>Assignee: Kishore Kumar
>
> We need to add Ant build script to compile LESS files to CSS.
> Currently the compilation is dependent on Intellij IDE Less plugin.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Comment Edited] (CONNECTORS-1418) Develop Ant build script to compile LESS to CSS

2017-04-26 Thread Karl Wright (JIRA)

[ 
https://issues.apache.org/jira/browse/CONNECTORS-1418?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15985454#comment-15985454
 ] 

Karl Wright edited comment on CONNECTORS-1418 at 4/26/17 7:54 PM:
--

There does not appear to be a compatible ant plugin to the above, so we'd need 
to invoke compiler code using the ant exec task.

https://ant.apache.org/manual/Tasks/exec.html

The compatible compiler jar to the maven plugin above is Apache 2.0 licensed 
and can be found at:

{code}

  org.lesscss
  lesscss
  1.7.0.1.1

{code}

We will need to write a main class to call the compiler since there's no 
existing plugin around to use.  Or we could write an actual Ant plugin, but 
I've never done that before, and I doubt we could build it and register it 
while already executing an ant script.



was (Author: kwri...@metacarta.com):
There does not appear to be a compatible ant plugin to the above, so we'd need 
to invoke compiler code using the ant exec task.

{code}
https://ant.apache.org/manual/Tasks/exec.html
{code}

The compatible compiler jar to the maven plugin above is Apache 2.0 licensed 
and can be found at:

{code}

  org.lesscss
  lesscss
  1.7.0.1.1

{code}

We will need to write a main class to call the compiler since there's no 
existing plugin around to use.  Or we could write an actual Ant plugin, but 
I've never done that before, and I doubt we could build it and register it 
while already executing an ant script.


> Develop Ant build script to compile LESS to CSS
> ---
>
> Key: CONNECTORS-1418
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1418
> Project: ManifoldCF
>  Issue Type: Improvement
>  Components: Framework core
>Affects Versions: ManifoldCF 2.7
>Reporter: Kishore Kumar
>Assignee: Kishore Kumar
>
> We need to add Ant build script to compile LESS files to CSS.
> Currently the compilation is dependent on Intellij IDE Less plugin.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (CONNECTORS-1418) Develop Ant build script to compile LESS to CSS

2017-04-26 Thread Karl Wright (JIRA)

[ 
https://issues.apache.org/jira/browse/CONNECTORS-1418?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15985454#comment-15985454
 ] 

Karl Wright commented on CONNECTORS-1418:
-

There does not appear to be a compatible ant plugin to the above, so we'd need 
to invoke compiler code using the ant exec task.

{code}
https://ant.apache.org/manual/Tasks/exec.html
{code}


> Develop Ant build script to compile LESS to CSS
> ---
>
> Key: CONNECTORS-1418
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1418
> Project: ManifoldCF
>  Issue Type: Improvement
>  Components: Framework core
>Affects Versions: ManifoldCF 2.7
>Reporter: Kishore Kumar
>Assignee: Kishore Kumar
>
> We need to add Ant build script to compile LESS files to CSS.
> Currently the compilation is dependent on Intellij IDE Less plugin.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (CONNECTORS-1418) Develop Ant build script to compile LESS to CSS

2017-04-26 Thread Karl Wright (JIRA)

[ 
https://issues.apache.org/jira/browse/CONNECTORS-1418?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15985448#comment-15985448
 ] 

Karl Wright commented on CONNECTORS-1418:
-

Hi [~kishorekumar], this looks like the right Maven plugin to use:

https://github.com/marceloverdijk/lesscss-maven-plugin

The Maven configuration looks like this:

{code}

org.lesscss
lesscss-maven-plugin
1.7.0.1.1


${project.basedir}/src/main/webapp/less

${project.build.directory}/${project.build.finalName}/css
true

main.less





compile




{code}

This looks like it would compile all source files under the webapp/less source 
directory to the target/css directory.

For a start, therefore, I recommend rearranging the layout of the 
src/main/webapp files and folders to conform with this general convention.  Do 
the .less files need to be in the final war?  If not, we may want to move them 
out entirely, for example to some place like src/main/less.

I'll keep looking for an ant plugin we can use.


> Develop Ant build script to compile LESS to CSS
> ---
>
> Key: CONNECTORS-1418
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1418
> Project: ManifoldCF
>  Issue Type: Improvement
>  Components: Framework core
>Affects Versions: ManifoldCF 2.7
>Reporter: Kishore Kumar
>Assignee: Kishore Kumar
>
> We need to add Ant build script to compile LESS files to CSS.
> Currently the compilation is dependent on Intellij IDE Less plugin.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Resolved] (CONNECTORS-1419) JDBC connector: Job without version query doesn't clean up deleted documents

2017-04-26 Thread Karl Wright (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-1419?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright resolved CONNECTORS-1419.
-
Resolution: Fixed

r 1792774


> JDBC connector: Job without version query doesn't clean up deleted documents
> 
>
> Key: CONNECTORS-1419
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1419
> Project: ManifoldCF
>  Issue Type: Bug
>  Components: JDBC connector
>Affects Versions: ManifoldCF 2.7
>Reporter: Karl Wright
>Assignee: Karl Wright
> Fix For: ManifoldCF 2.8
>
> Attachments: CONNECTORS-1419.patch
>
>
> The JDBC connector's logic doesn't seem able to delete documents when there 
> is no "version" query.  This is because the "map" variable does not have 
> documents with no response at all removed from it.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Updated] (CONNECTORS-1419) JDBC connector: Job without version query doesn't clean up deleted documents

2017-04-26 Thread Karl Wright (JIRA)

 [ 
https://issues.apache.org/jira/browse/CONNECTORS-1419?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Karl Wright updated CONNECTORS-1419:

Attachment: CONNECTORS-1419.patch

Here's a patch that should work.  Please try it.


> JDBC connector: Job without version query doesn't clean up deleted documents
> 
>
> Key: CONNECTORS-1419
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1419
> Project: ManifoldCF
>  Issue Type: Bug
>  Components: JDBC connector
>Affects Versions: ManifoldCF 2.7
>Reporter: Karl Wright
>Assignee: Karl Wright
> Fix For: ManifoldCF 2.8
>
> Attachments: CONNECTORS-1419.patch
>
>
> The JDBC connector's logic doesn't seem able to delete documents when there 
> is no "version" query.  This is because the "map" variable does not have 
> documents with no response at all removed from it.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (CONNECTORS-1418) Develop Ant build script to compile LESS to CSS

2017-04-26 Thread Kishore Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/CONNECTORS-1418?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15984961#comment-15984961
 ] 

Kishore Kumar commented on CONNECTORS-1418:
---

Hi [~daddywri],

Less provides a Rhino javascript compiler, that we can use in out Ant build.
For ref http://stackoverflow.com/a/8066977/823369

There are also java maven plugins available
https://github.com/SomMeri/less4j
https://github.com/marceloverdijk/lesscss-java
https://github.com/asual/lesscss-engine


> Develop Ant build script to compile LESS to CSS
> ---
>
> Key: CONNECTORS-1418
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1418
> Project: ManifoldCF
>  Issue Type: Improvement
>  Components: Framework core
>Affects Versions: ManifoldCF 2.7
>Reporter: Kishore Kumar
>Assignee: Kishore Kumar
>
> We need to add Ant build script to compile LESS files to CSS.
> Currently the compilation is dependent on Intellij IDE Less plugin.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Comment Edited] (CONNECTORS-1418) Develop Ant build script to compile LESS to CSS

2017-04-26 Thread Kishore Kumar (JIRA)

[ 
https://issues.apache.org/jira/browse/CONNECTORS-1418?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15984961#comment-15984961
 ] 

Kishore Kumar edited comment on CONNECTORS-1418 at 4/26/17 3:07 PM:


Hi [~daddywri],

Less provides a Rhino javascript compiler, that we can use in our Ant build.
For ref http://stackoverflow.com/a/8066977/823369

There are also Java Maven plugins that we can use
https://github.com/SomMeri/less4j
https://github.com/marceloverdijk/lesscss-java
https://github.com/asual/lesscss-engine



was (Author: kishorekumar):
Hi [~daddywri],

Less provides a Rhino javascript compiler, that we can use in out Ant build.
For ref http://stackoverflow.com/a/8066977/823369

There are also java maven plugins available
https://github.com/SomMeri/less4j
https://github.com/marceloverdijk/lesscss-java
https://github.com/asual/lesscss-engine


> Develop Ant build script to compile LESS to CSS
> ---
>
> Key: CONNECTORS-1418
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1418
> Project: ManifoldCF
>  Issue Type: Improvement
>  Components: Framework core
>Affects Versions: ManifoldCF 2.7
>Reporter: Kishore Kumar
>Assignee: Kishore Kumar
>
> We need to add Ant build script to compile LESS files to CSS.
> Currently the compilation is dependent on Intellij IDE Less plugin.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Comment Edited] (CONNECTORS-1418) Develop Ant build script to compile LESS to CSS

2017-04-26 Thread Karl Wright (JIRA)

[ 
https://issues.apache.org/jira/browse/CONNECTORS-1418?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15984889#comment-15984889
 ] 

Karl Wright edited comment on CONNECTORS-1418 at 4/26/17 2:20 PM:
--

If you can supply an ant rule for compiling these files, I can work it into the 
ant build.  But we will also need a maven way of doing the compilation.  If you 
can find a maven plugin that does what you want, we will need then to 
reorganize the tree so that the maven plugin works properly.  The ant build 
change will need to come after that.




was (Author: kwri...@metacarta.com):
If you can supply an ant rule for compiling these files, I can work it into the 
ant build.


> Develop Ant build script to compile LESS to CSS
> ---
>
> Key: CONNECTORS-1418
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1418
> Project: ManifoldCF
>  Issue Type: Improvement
>  Components: Framework core
>Affects Versions: ManifoldCF 2.7
>Reporter: Kishore Kumar
>Assignee: Kishore Kumar
>
> We need to add Ant build script to compile LESS files to CSS.
> Currently the compilation is dependent on Intellij IDE Less plugin.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (CONNECTORS-1418) Develop Ant build script to compile LESS to CSS

2017-04-26 Thread Karl Wright (JIRA)

[ 
https://issues.apache.org/jira/browse/CONNECTORS-1418?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15984889#comment-15984889
 ] 

Karl Wright commented on CONNECTORS-1418:
-

If you can supply an ant rule for compiling these files, I can work it into the 
ant build.


> Develop Ant build script to compile LESS to CSS
> ---
>
> Key: CONNECTORS-1418
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1418
> Project: ManifoldCF
>  Issue Type: Improvement
>  Components: Framework core
>Affects Versions: ManifoldCF 2.7
>Reporter: Kishore Kumar
>Assignee: Kishore Kumar
>
> We need to add Ant build script to compile LESS files to CSS.
> Currently the compilation is dependent on Intellij IDE Less plugin.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (CONNECTORS-1418) Develop Ant build script to compile LESS to CSS

2017-04-26 Thread Kishore Kumar (JIRA)
Kishore Kumar created CONNECTORS-1418:
-

 Summary: Develop Ant build script to compile LESS to CSS
 Key: CONNECTORS-1418
 URL: https://issues.apache.org/jira/browse/CONNECTORS-1418
 Project: ManifoldCF
  Issue Type: Improvement
  Components: Framework core
Affects Versions: ManifoldCF 2.7
Reporter: Kishore Kumar
Assignee: Kishore Kumar


We need to add Ant build script to compile LESS files to CSS.

Currently the compilation is dependent on Intellij IDE Less plugin.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


Re: [ANNOUNCE] ManifoldCF 2.7 released!

2017-04-26 Thread Karl Wright
Sounds great!!

We need to hire you as our PR person. :-)

Karl


On Wed, Apr 26, 2017 at 3:49 AM, Piergiorgio Lucidi 
wrote:

> Hi,
>
> I have just published a post about this release:
> http://www.open4dev.com/journal/2017/4/26/apache-manifoldcf-27-new-ux-and-
> sharepoint-2016-support.html
>
> Hope this helps.
>
> ^__^
>
> Cheers,
> PJ
>
> 2017-04-21 12:35 GMT+02:00 Karl Wright :
>
> > Hi KK,
> >
> > The duplication I can fix, but the logo is harder; it's a Forrest site,
> and
> > the logo is only mentioned here:
> >
> >   images/asf_18_years.png
> >
> >
> > Karl
> >
> >
> > On Fri, Apr 21, 2017 at 6:22 AM, Kishore Kumar 
> > wrote:
> >
> > > Hi Karl,
> > >
> > >
> > >
> > > Thanks for the release, I noticed something in ManifoldCF Apache site
> > > https://manifoldcf.apache.org/en_US/index.html
> > >
> > >
> > >
> > > 1. The release 2.6 appears twice in the news sections.
> > >
> > >
> > >
> > > 2. The Apache support logo looks too big, can we reduce the size of the
> > > logo to 128px or relative to header. You can refer the below element
> > >
> > >  > > src="../images/asf_18_years.png" title="Apache Software Foundation"
> > > width="128px" height="128px">
> > >
> > >
> > >
> > > Thanks,
> > >
> > > Kishore Kumar
> > >
> > >
> > >
> > > -Original Message-
> > > From: Karl Wright [mailto:daddy...@gmail.com]
> > > Sent: 21 April 2017 06:35
> > > To: dev 
> > > Subject: [ANNOUNCE] ManifoldCF 2.7 released!
> > >
> > >
> > >
> > > The Apache ManifoldCF team has just released Apache ManifoldCF 2.7.
> This
> > > release includes many significant changes, including a new Ajax-based
> > user
> > > interface, SharePoint 2016 support, and numerous bug fixes.
> > >
> > >
> > >
> > > Please join me in congratulating the development community for their
> hard
> > > work in getting this challenging release together!
> > >
> > >
> > >
> > > Karl
> > >
> >
>
>
>
> --
> Piergiorgio Lucidi
> Technology Evangelist @ Sourcesense
> Author and Technical Reviewer @ Packt Publishing
> Mentor / PMC Member / Committer @ Apache Software Foundation
> Wiki Gardener / Forum Moderator / Certified Instructor, Engineer and
> Administrator @ Alfresco
> Top Community Contributor @ Crafter
> Project Leader / Committer @ JBoss
> Technology Advisory Team Member @ Microsoft
> http://www.open4dev.com
>


Re: [ANNOUNCE] ManifoldCF 2.7 released!

2017-04-26 Thread Piergiorgio Lucidi
Hi,

I have just published a post about this release:
http://www.open4dev.com/journal/2017/4/26/apache-manifoldcf-27-new-ux-and-sharepoint-2016-support.html

Hope this helps.

^__^

Cheers,
PJ

2017-04-21 12:35 GMT+02:00 Karl Wright :

> Hi KK,
>
> The duplication I can fix, but the logo is harder; it's a Forrest site, and
> the logo is only mentioned here:
>
>   images/asf_18_years.png
>
>
> Karl
>
>
> On Fri, Apr 21, 2017 at 6:22 AM, Kishore Kumar 
> wrote:
>
> > Hi Karl,
> >
> >
> >
> > Thanks for the release, I noticed something in ManifoldCF Apache site
> > https://manifoldcf.apache.org/en_US/index.html
> >
> >
> >
> > 1. The release 2.6 appears twice in the news sections.
> >
> >
> >
> > 2. The Apache support logo looks too big, can we reduce the size of the
> > logo to 128px or relative to header. You can refer the below element
> >
> >  > src="../images/asf_18_years.png" title="Apache Software Foundation"
> > width="128px" height="128px">
> >
> >
> >
> > Thanks,
> >
> > Kishore Kumar
> >
> >
> >
> > -Original Message-
> > From: Karl Wright [mailto:daddy...@gmail.com]
> > Sent: 21 April 2017 06:35
> > To: dev 
> > Subject: [ANNOUNCE] ManifoldCF 2.7 released!
> >
> >
> >
> > The Apache ManifoldCF team has just released Apache ManifoldCF 2.7.  This
> > release includes many significant changes, including a new Ajax-based
> user
> > interface, SharePoint 2016 support, and numerous bug fixes.
> >
> >
> >
> > Please join me in congratulating the development community for their hard
> > work in getting this challenging release together!
> >
> >
> >
> > Karl
> >
>



-- 
Piergiorgio Lucidi
Technology Evangelist @ Sourcesense
Author and Technical Reviewer @ Packt Publishing
Mentor / PMC Member / Committer @ Apache Software Foundation
Wiki Gardener / Forum Moderator / Certified Instructor, Engineer and
Administrator @ Alfresco
Top Community Contributor @ Crafter
Project Leader / Committer @ JBoss
Technology Advisory Team Member @ Microsoft
http://www.open4dev.com