[jira] [Comment Edited] (CONNECTORS-1495) Brand new website

2023-12-19 Thread Piergiorgio Lucidi (Jira)


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

Piergiorgio Lucidi edited comment on CONNECTORS-1495 at 12/19/23 3:57 PM:
--

ManifoldCF SDK 0.0.4 is released and available here (actually on my github 
account):

[https://github.com/OpenPj/manifoldcf-sdk/releases/tag/v0.0.4]

I'm going to create a new GitHub project in ASF for hosting this project.

I have also added Windows .bat scripts but it would be great if someone can 
spend some time testing them :P

README available here:

https://github.com/OpenPj/manifoldcf-sdk


was (Author: piergiorgioluc...@gmail.com):
ManifoldCF SDK 0.0.4 is released and available here (actually on my github 
account):

[https://github.com/OpenPj/manifoldcf-sdk/releases/tag/v0.0.4]

I'm going to create a new GitHub project in ASF for hosting this project.

> Brand new website
> -
>
> Key: CONNECTORS-1495
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1495
> Project: ManifoldCF
>  Issue Type: New Feature
>  Components: Site
>Affects Versions: ManifoldCF 2.9.1
>Reporter: Piergiorgio Lucidi
>Assignee: Piergiorgio Lucidi
>Priority: Major
> Fix For: ManifoldCF next
>
> Attachments: ManifoldCF-FluidoSkin.png, PDF-Rendition-1.png, 
> PDF-Rendition-2.png, Website - status - 20180510-2.png, Website - status - 
> 20180510.png
>
>   Original Estimate: 480h
>  Remaining Estimate: 480h
>
> The community decided to work on a brand new website:
> [http://mail-archives.apache.org/mod_mbox/manifoldcf-dev/201712.mbox/%3CCAHVHQx8odjgXMw%3DnhmSeDt0pYOUd0j%2BtkmMNtFnCJvHFcZwyEg%40mail.gmail.com%3E]
> The proposed technology is Jekyll but we have also to decide the website 
> template to use.
> [~kamaci] suggested the [Apache CloudStack|https://cloudstack.apache.org/] 
> template.
> [~molgun] proposed this approach:
>  # Find a modern new static site generator like Jekyll [1]
>  # Create a template
>  # Start to use it in a specific path like 
> [https://manifoldcf.apache.org/*new*]
>  # Migrate our Forrest xml's to Markdown (we can automate this somehow)
>  # Start to serve our new site on root path
> [1] [https://jekyllrb.com/docs/home/]
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Comment Edited] (CONNECTORS-1495) Brand new website

2023-12-17 Thread Piergiorgio Lucidi (Jira)


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

Piergiorgio Lucidi edited comment on CONNECTORS-1495 at 12/17/23 3:59 PM:
--

Here I have something working as a preliminary environment for building the 
website using Docker:
{code:java}
FROM alpine:3.15.11
ARG ANT_VERSION=1.9.16
RUN apk update \
&& apk upgrade \
&& apk --update add openjdk7 \  
&& apk --update add subversion

#Installing Apache Ant 1.9.x
RUN mkdir -p /opt/ant/ \    
&& wget 
http://archive.apache.org/dist/ant/binaries/apache-ant-${ANT_VERSION}-bin.tar.gz
 -P /opt/ant \  
&& tar -xvzf /opt/ant/apache-ant-${ANT_VERSION}-bin.tar.gz -C /opt/ant/ \   
&& rm -f /opt/ant/apache-ant-${ANT_VERSION}-bin.tar.gz  

ENV ANT_HOME=/opt/ant/apache-ant-${ANT_VERSION}ENV ANT_OPTS="-Xms256M -Xmx512M"
ENV PATH="${PATH}:${HOME}/bin:${ANT_HOME}/bin"

RUN apk add --no-cache python2 && \    
python -m ensurepip && \    
rm -r /usr/lib/python*/ensurepip && \    
pip install --upgrade pip setuptools && \    
rm -r /root/.cache{code}
 
Trying to use the container built with the image above, I have the following 
results:
{code:java}
/ # ant -version
Apache Ant(TM) version 1.9.16 compiled on July 10 2021
/ # java -version
java version "1.7.0_311"
OpenJDK Runtime Environment (IcedTea 2.6.27) (Alpine 7.311.2.6.27-r1)
OpenJDK 64-Bit Server VM (build 24.311-b01, mixed mode)
/ # python2
Python 2.7.18 (default, Oct 16 2021, 08:19:50)
[GCC 10.3.1 20210921] on linux2 {code}
I think that this can be a good start for managing the generation of the site 
contents.
I'm continuing investigating...


was (Author: piergiorgioluc...@gmail.com):
Here I have something working as a preliminary environment for building the 
website using Docker:
 
{code:java}
FROM alpine:3.15.11
ARG ANT_VERSION=1.9.16
RUN apk update \
&& apk upgrade \
&& apk --update add openjdk7 \  
&& apk --update add subversion

#Installing Apache Ant 1.9.x
RUN mkdir -p /opt/ant/ \    
&& wget 
http://archive.apache.org/dist/ant/binaries/apache-ant-${ANT_VERSION}-bin.tar.gz
 -P /opt/ant \  
&& tar -xvzf /opt/ant/apache-ant-${ANT_VERSION}-bin.tar.gz -C /opt/ant/ \   
&& rm -f /opt/ant/apache-ant-${ANT_VERSION}-bin.tar.gz  

ENV ANT_HOME=/opt/ant/apache-ant-${ANT_VERSION}ENV ANT_OPTS="-Xms256M -Xmx512M"
ENV PATH="${PATH}:${HOME}/bin:${ANT_HOME}/bin"

RUN apk add --no-cache python2 && \    
python -m ensurepip && \    
rm -r /usr/lib/python*/ensurepip && \    
pip install --upgrade pip setuptools && \    
rm -r /root/.cache{code}
 
Trying to use the container built with the image above, I have the following 
results:
 
{code:java}
/ # ant -version
Apache Ant(TM) version 1.9.16 compiled on July 10 2021
/ # java -version
java version "1.7.0_311"
OpenJDK Runtime Environment (IcedTea 2.6.27) (Alpine 7.311.2.6.27-r1)
OpenJDK 64-Bit Server VM (build 24.311-b01, mixed mode)
/ # python2
Python 2.7.18 (default, Oct 16 2021, 08:19:50)
[GCC 10.3.1 20210921] on linux2 {code}
I think that this can be a good start for managing the generation of the site 
contents.
I'm continuing investigating...

> Brand new website
> -
>
> Key: CONNECTORS-1495
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1495
> Project: ManifoldCF
>  Issue Type: New Feature
>  Components: Site
>Affects Versions: ManifoldCF 2.9.1
>Reporter: Piergiorgio Lucidi
>Assignee: Piergiorgio Lucidi
>Priority: Major
> Fix For: ManifoldCF next
>
> Attachments: ManifoldCF-FluidoSkin.png, PDF-Rendition-1.png, 
> PDF-Rendition-2.png, Website - status - 20180510-2.png, Website - status - 
> 20180510.png
>
>   Original Estimate: 480h
>  Remaining Estimate: 480h
>
> The community decided to work on a brand new website:
> [http://mail-archives.apache.org/mod_mbox/manifoldcf-dev/201712.mbox/%3CCAHVHQx8odjgXMw%3DnhmSeDt0pYOUd0j%2BtkmMNtFnCJvHFcZwyEg%40mail.gmail.com%3E]
> The proposed technology is Jekyll but we have also to decide the website 
> template to use.
> [~kamaci] suggested the [Apache CloudStack|https://cloudstack.apache.org/] 
> template.
> [~molgun] proposed this approach:
>  # Find a modern new static site generator like Jekyll [1]
>  # Create a template
>  # Start to use it in a specific path like 
> [https://manifoldcf.apache.org/*new*]
>  # Migrate our Forrest xml's to Markdown (we can automate this somehow)
>  # Start to serve our new site on root path
> [1] [https://jekyllrb.com/docs/home/]
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Comment Edited] (CONNECTORS-1495) Brand new website

2023-12-14 Thread Piergiorgio Lucidi (Jira)


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

Piergiorgio Lucidi edited comment on CONNECTORS-1495 at 12/14/23 2:34 PM:
--

The current production website is managed inside the asf-site branch:

[https://github.com/apache/manifoldcf-site/tree/asf-site]

The staged website should be hosted in the asf-staging branch created by the 
build process if everything is correctly generated.

 


was (Author: piergiorgioluc...@gmail.com):
The current production website is managed inside the asf-site branch:

[https://github.com/apache/manifoldcf-site/tree/asf-site]

The generated staged website should be hosted in the asf-staging branch 
automatically generated by the build process if everything is correctly 
generated.

 

> Brand new website
> -
>
> Key: CONNECTORS-1495
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1495
> Project: ManifoldCF
>  Issue Type: New Feature
>  Components: Site
>Affects Versions: ManifoldCF 2.9.1
>Reporter: Piergiorgio Lucidi
>Assignee: Piergiorgio Lucidi
>Priority: Major
> Fix For: ManifoldCF next
>
> Attachments: ManifoldCF-FluidoSkin.png, PDF-Rendition-1.png, 
> PDF-Rendition-2.png, Website - status - 20180510-2.png, Website - status - 
> 20180510.png
>
>   Original Estimate: 480h
>  Remaining Estimate: 480h
>
> The community decided to work on a brand new website:
> [http://mail-archives.apache.org/mod_mbox/manifoldcf-dev/201712.mbox/%3CCAHVHQx8odjgXMw%3DnhmSeDt0pYOUd0j%2BtkmMNtFnCJvHFcZwyEg%40mail.gmail.com%3E]
> The proposed technology is Jekyll but we have also to decide the website 
> template to use.
> [~kamaci] suggested the [Apache CloudStack|https://cloudstack.apache.org/] 
> template.
> [~molgun] proposed this approach:
>  # Find a modern new static site generator like Jekyll [1]
>  # Create a template
>  # Start to use it in a specific path like 
> [https://manifoldcf.apache.org/*new*]
>  # Migrate our Forrest xml's to Markdown (we can automate this somehow)
>  # Start to serve our new site on root path
> [1] [https://jekyllrb.com/docs/home/]
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Comment Edited] (CONNECTORS-1495) Brand new website

2023-12-14 Thread Piergiorgio Lucidi (Jira)


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

Piergiorgio Lucidi edited comment on CONNECTORS-1495 at 12/14/23 2:31 PM:
--

I'm using OpenJDK 1.8 so this means that I can use JDK 1.7, updating the Java 
version in the build/forrest/main/build.xml solved this problem:
{{}}

I have restored a partial website dropping the generated content in the 
asf-site branch of the manifoldcf-site GitHub project. Unfortunately I had the 
following error that it doesn't allow me to generate all the pages:
{code:java}
 Finished copying the non-generated resources.
     [exec] Now Cocoon will generate the rest.
     [exec]
     [exec]
     [exec] Static site will be generated at:
     [exec] 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build/site
     [exec]
     [exec] Cocoon will report the status of each document:
     [exec]   - in column 1: *=okay X=brokenLink ^=pageSkipped (see FAQ).
     [exec]
     [exec] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
     [exec] 
-Djava.endorsed.dirs=/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/lib/endorsed:${java.endorsed.dirs}
 is not supported. Endorsed standards and standalone APIs
     [exec] in modular form will be supported via the concept of upgradeable 
modules.
     [exec] Error: Could not create the Java Virtual Machine.
     [exec] Error: A fatal exception has occurred. Program will exit.
     [exec]
     [exec]   Copying broken links file to site root.
     [exec]
     [exec] Warning: 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/webapp/skins/lucene/images
 not found.
     [exec] Warning: 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/webapp/skins/lucene
 not found.
     [exec] Java Result: 1
     [exec]
     [exec] BUILD FAILED
     [exec] 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/targets/site.xml:180:
 Warning: Could not find file 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build/tmp/brokenlinks.xml
 to copy.
     [exec]
     [exec] Total time: 0 secondsBUILD FAILED
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build.xml:473:
 exec returned: 1{code}


was (Author: piergiorgioluc...@gmail.com):
I'm using OpenJDK 1.8 so this means that I can use JDK 1.7, updating the Java 
version in the build/forrest/main/build.xml solved this problem:
{{}}

I have restored a partial website due to the following error:
{code:java}
 Finished copying the non-generated resources.
     [exec] Now Cocoon will generate the rest.
     [exec]
     [exec]
     [exec] Static site will be generated at:
     [exec] 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build/site
     [exec]
     [exec] Cocoon will report the status of each document:
     [exec]   - in column 1: *=okay X=brokenLink ^=pageSkipped (see FAQ).
     [exec]
     [exec] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
     [exec] 
-Djava.endorsed.dirs=/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/lib/endorsed:${java.endorsed.dirs}
 is not supported. Endorsed standards and standalone APIs
     [exec] in modular form will be supported via the concept of upgradeable 
modules.
     [exec] Error: Could not create the Java Virtual Machine.
     [exec] Error: A fatal exception has occurred. Program will exit.
     [exec]
     [exec]   Copying broken links file to site root.
     [exec]
     [exec] Warning: 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/webapp/skins/lucene/images
 not found.
     [exec] Warning: 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/webapp/skins/lucene
 not found.
     [exec] Java Result: 1
     [exec]
     [exec] BUILD FAILED
     [exec] 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/targets/site.xml:180:
 Warning: Could not find file 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build/tmp/brokenlinks.xml
 to copy.
     [exec]
     [exec] Total time: 0 secondsBUILD FAILED
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build.xml:473:
 exec returned: 1{code}

> Brand new website
> -
>
> Key: CONNECTORS-1495
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1495
> Project: ManifoldCF
>  Issue Type: New Feature
>  Components: Site
>Affects Versions: ManifoldCF 2.9.1
>Reporter: Piergiorgio Lucidi
>Assignee: Piergiorgio Lucidi
>Priority: Major
> Fix For: ManifoldCF next
>
> Attachments: ManifoldCF-FluidoSkin.png, PDF-Rendition-1.png, 

[jira] [Comment Edited] (CONNECTORS-1495) Brand new website

2023-12-14 Thread Piergiorgio Lucidi (Jira)


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

Piergiorgio Lucidi edited comment on CONNECTORS-1495 at 12/14/23 2:30 PM:
--

I'm using OpenJDK 1.8 so this means that I can use JDK 1.7, updating the Java 
version in the build/forrest/main/build.xml solved this problem:
{{}}

I have restored a partial website due to the following error:
{code:java}
 Finished copying the non-generated resources.
     [exec] Now Cocoon will generate the rest.
     [exec]
     [exec]
     [exec] Static site will be generated at:
     [exec] 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build/site
     [exec]
     [exec] Cocoon will report the status of each document:
     [exec]   - in column 1: *=okay X=brokenLink ^=pageSkipped (see FAQ).
     [exec]
     [exec] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
     [exec] 
-Djava.endorsed.dirs=/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/lib/endorsed:${java.endorsed.dirs}
 is not supported. Endorsed standards and standalone APIs
     [exec] in modular form will be supported via the concept of upgradeable 
modules.
     [exec] Error: Could not create the Java Virtual Machine.
     [exec] Error: A fatal exception has occurred. Program will exit.
     [exec]
     [exec]   Copying broken links file to site root.
     [exec]
     [exec] Warning: 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/webapp/skins/lucene/images
 not found.
     [exec] Warning: 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/webapp/skins/lucene
 not found.
     [exec] Java Result: 1
     [exec]
     [exec] BUILD FAILED
     [exec] 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/targets/site.xml:180:
 Warning: Could not find file 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build/tmp/brokenlinks.xml
 to copy.
     [exec]
     [exec] Total time: 0 secondsBUILD FAILED
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build.xml:473:
 exec returned: 1{code}


was (Author: piergiorgioluc...@gmail.com):
I'm using OpenJDK 1.8 so this means that I can use JDK 1.7, updating the Java 
version in the build/forrest/main/build.xml solved this problem:
{{}}

 

but now I have the following:
{code:java}
 Finished copying the non-generated resources.
     [exec] Now Cocoon will generate the rest.
     [exec]
     [exec]
     [exec] Static site will be generated at:
     [exec] 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build/site
     [exec]
     [exec] Cocoon will report the status of each document:
     [exec]   - in column 1: *=okay X=brokenLink ^=pageSkipped (see FAQ).
     [exec]
     [exec] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
     [exec] 
-Djava.endorsed.dirs=/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/lib/endorsed:${java.endorsed.dirs}
 is not supported. Endorsed standards and standalone APIs
     [exec] in modular form will be supported via the concept of upgradeable 
modules.
     [exec] Error: Could not create the Java Virtual Machine.
     [exec] Error: A fatal exception has occurred. Program will exit.
     [exec]
     [exec]   Copying broken links file to site root.
     [exec]
     [exec] Warning: 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/webapp/skins/lucene/images
 not found.
     [exec] Warning: 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/webapp/skins/lucene
 not found.
     [exec] Java Result: 1
     [exec]
     [exec] BUILD FAILED
     [exec] 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/targets/site.xml:180:
 Warning: Could not find file 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build/tmp/brokenlinks.xml
 to copy.
     [exec]
     [exec] Total time: 0 secondsBUILD FAILED
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build.xml:473:
 exec returned: 1{code}

> Brand new website
> -
>
> Key: CONNECTORS-1495
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1495
> Project: ManifoldCF
>  Issue Type: New Feature
>  Components: Site
>Affects Versions: ManifoldCF 2.9.1
>Reporter: Piergiorgio Lucidi
>Assignee: Piergiorgio Lucidi
>Priority: Major
> Fix For: ManifoldCF next
>
> Attachments: ManifoldCF-FluidoSkin.png, PDF-Rendition-1.png, 
> PDF-Rendition-2.png, Website - status - 20180510-2.png, Website - status - 
> 20180510.png
>
>   Original Estimate: 480h
>  Remaining Estimate: 480h
>
> The community decided to work 

[jira] [Comment Edited] (CONNECTORS-1495) Brand new website

2023-12-14 Thread Piergiorgio Lucidi (Jira)


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

Piergiorgio Lucidi edited comment on CONNECTORS-1495 at 12/14/23 2:05 PM:
--

I'm using OpenJDK 1.8 so this means that I can use JDK 1.7, updating the Java 
version in the build/forrest/main/build.xml solved this problem:
{{}}

 

but now I have the following:
{code:java}
 Finished copying the non-generated resources.
     [exec] Now Cocoon will generate the rest.
     [exec]
     [exec]
     [exec] Static site will be generated at:
     [exec] 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build/site
     [exec]
     [exec] Cocoon will report the status of each document:
     [exec]   - in column 1: *=okay X=brokenLink ^=pageSkipped (see FAQ).
     [exec]
     [exec] Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
     [exec] 
-Djava.endorsed.dirs=/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/lib/endorsed:${java.endorsed.dirs}
 is not supported. Endorsed standards and standalone APIs
     [exec] in modular form will be supported via the concept of upgradeable 
modules.
     [exec] Error: Could not create the Java Virtual Machine.
     [exec] Error: A fatal exception has occurred. Program will exit.
     [exec]
     [exec]   Copying broken links file to site root.
     [exec]
     [exec] Warning: 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/webapp/skins/lucene/images
 not found.
     [exec] Warning: 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/webapp/skins/lucene
 not found.
     [exec] Java Result: 1
     [exec]
     [exec] BUILD FAILED
     [exec] 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/targets/site.xml:180:
 Warning: Could not find file 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build/tmp/brokenlinks.xml
 to copy.
     [exec]
     [exec] Total time: 0 secondsBUILD FAILED
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build.xml:473:
 exec returned: 1{code}


was (Author: piergiorgioluc...@gmail.com):
I'm using OpenJDK 1.8 so this means that I can use JDK 1.7, updating the Java 
version in the build/forrest/main/build.xml solved this problem:
{{}}

 

but now I have the following:
{code:java}
  Warning: 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/webapp/skins/lucene/images
 not found.
     [exec] Warning: 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/webapp/skins/lucene
 not found.
     [exec] Java Result: 1
     [exec]
     [exec] BUILD FAILED
     [exec] 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/targets/site.xml:180:
 Warning: Could not find file 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build/tmp/brokenlinks.xml
 to copy.
     [exec]
     [exec] Total time: 0 seconds
BUILD FAILED
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build.xml:473:
 exec returned: 1Total time: 1 minute 14 seconds{code}

> Brand new website
> -
>
> Key: CONNECTORS-1495
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1495
> Project: ManifoldCF
>  Issue Type: New Feature
>  Components: Site
>Affects Versions: ManifoldCF 2.9.1
>Reporter: Piergiorgio Lucidi
>Assignee: Piergiorgio Lucidi
>Priority: Major
> Fix For: ManifoldCF next
>
> Attachments: ManifoldCF-FluidoSkin.png, PDF-Rendition-1.png, 
> PDF-Rendition-2.png, Website - status - 20180510-2.png, Website - status - 
> 20180510.png
>
>   Original Estimate: 480h
>  Remaining Estimate: 480h
>
> The community decided to work on a brand new website:
> [http://mail-archives.apache.org/mod_mbox/manifoldcf-dev/201712.mbox/%3CCAHVHQx8odjgXMw%3DnhmSeDt0pYOUd0j%2BtkmMNtFnCJvHFcZwyEg%40mail.gmail.com%3E]
> The proposed technology is Jekyll but we have also to decide the website 
> template to use.
> [~kamaci] suggested the [Apache CloudStack|https://cloudstack.apache.org/] 
> template.
> [~molgun] proposed this approach:
>  # Find a modern new static site generator like Jekyll [1]
>  # Create a template
>  # Start to use it in a specific path like 
> [https://manifoldcf.apache.org/*new*]
>  # Migrate our Forrest xml's to Markdown (we can automate this somehow)
>  # Start to serve our new site on root path
> [1] [https://jekyllrb.com/docs/home/]
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Comment Edited] (CONNECTORS-1495) Brand new website

2023-12-14 Thread Piergiorgio Lucidi (Jira)


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

Piergiorgio Lucidi edited comment on CONNECTORS-1495 at 12/14/23 2:04 PM:
--

I'm using OpenJDK 1.8 so this means that I can use JDK 1.7, updating the Java 
version in the build/forrest/main/build.xml solved this problem:
{{}}

 

but now I have the following:
{code:java}
  Warning: 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/webapp/skins/lucene/images
 not found.
     [exec] Warning: 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/webapp/skins/lucene
 not found.
     [exec] Java Result: 1
     [exec]
     [exec] BUILD FAILED
     [exec] 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/targets/site.xml:180:
 Warning: Could not find file 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build/tmp/brokenlinks.xml
 to copy.
     [exec]
     [exec] Total time: 0 seconds
BUILD FAILED
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build.xml:473:
 exec returned: 1Total time: 1 minute 14 seconds{code}


was (Author: piergiorgioluc...@gmail.com):
I'm using OpenJDK 1.8 so this means that I can use JDK 1.7, updating the Java 
version in the build/forrest/main/build.xml solved this problem:
{{}}

 

but now I have the following:
{code:java}
 Warning: 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/webapp/skins/lucene/images
 not found.
     [exec] Warning: 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/webapp/skins/lucene
 not found.
     [exec] Java Result: 1
     [exec]
     [exec] BUILD FAILED
     [exec] 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/targets/site.xml:180:
 Warning: Could not find file 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build/tmp/brokenlinks.xml
 to copy.
     [exec]
     [exec] Total time: 0 secondsBUILD FAILED
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build.xml:473:
 exec returned: 1Total time: 1 minute 14 seconds{code}

> Brand new website
> -
>
> Key: CONNECTORS-1495
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1495
> Project: ManifoldCF
>  Issue Type: New Feature
>  Components: Site
>Affects Versions: ManifoldCF 2.9.1
>Reporter: Piergiorgio Lucidi
>Assignee: Piergiorgio Lucidi
>Priority: Major
> Fix For: ManifoldCF next
>
> Attachments: ManifoldCF-FluidoSkin.png, PDF-Rendition-1.png, 
> PDF-Rendition-2.png, Website - status - 20180510-2.png, Website - status - 
> 20180510.png
>
>   Original Estimate: 480h
>  Remaining Estimate: 480h
>
> The community decided to work on a brand new website:
> [http://mail-archives.apache.org/mod_mbox/manifoldcf-dev/201712.mbox/%3CCAHVHQx8odjgXMw%3DnhmSeDt0pYOUd0j%2BtkmMNtFnCJvHFcZwyEg%40mail.gmail.com%3E]
> The proposed technology is Jekyll but we have also to decide the website 
> template to use.
> [~kamaci] suggested the [Apache CloudStack|https://cloudstack.apache.org/] 
> template.
> [~molgun] proposed this approach:
>  # Find a modern new static site generator like Jekyll [1]
>  # Create a template
>  # Start to use it in a specific path like 
> [https://manifoldcf.apache.org/*new*]
>  # Migrate our Forrest xml's to Markdown (we can automate this somehow)
>  # Start to serve our new site on root path
> [1] [https://jekyllrb.com/docs/home/]
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Comment Edited] (CONNECTORS-1495) Brand new website

2023-12-14 Thread Piergiorgio Lucidi (Jira)


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

Piergiorgio Lucidi edited comment on CONNECTORS-1495 at 12/14/23 2:04 PM:
--

I'm using OpenJDK 1.8 so this means that I can use JDK 1.7, updating the Java 
version in the build/forrest/main/build.xml solved this problem:
{{}}

 

but now I have the following:
{code:java}
 Warning: 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/webapp/skins/lucene/images
 not found.
     [exec] Warning: 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/webapp/skins/lucene
 not found.
     [exec] Java Result: 1
     [exec]
     [exec] BUILD FAILED
     [exec] 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/tmp/forrest/main/targets/site.xml:180:
 Warning: Could not find file 
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build/tmp/brokenlinks.xml
 to copy.
     [exec]
     [exec] Total time: 0 secondsBUILD FAILED
/Users/piergiorgiolucidi/Documents/workspaces/manifoldNew/site-trunk/build.xml:473:
 exec returned: 1Total time: 1 minute 14 seconds{code}


was (Author: piergiorgioluc...@gmail.com):
I'm using OpenJDK 1.8 so this means that I can use JDK 1.7, updating the Java 
version in the build/forrest/main/build.xml solved this problem:
{{}}

> Brand new website
> -
>
> Key: CONNECTORS-1495
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1495
> Project: ManifoldCF
>  Issue Type: New Feature
>  Components: Site
>Affects Versions: ManifoldCF 2.9.1
>Reporter: Piergiorgio Lucidi
>Assignee: Piergiorgio Lucidi
>Priority: Major
> Fix For: ManifoldCF next
>
> Attachments: ManifoldCF-FluidoSkin.png, PDF-Rendition-1.png, 
> PDF-Rendition-2.png, Website - status - 20180510-2.png, Website - status - 
> 20180510.png
>
>   Original Estimate: 480h
>  Remaining Estimate: 480h
>
> The community decided to work on a brand new website:
> [http://mail-archives.apache.org/mod_mbox/manifoldcf-dev/201712.mbox/%3CCAHVHQx8odjgXMw%3DnhmSeDt0pYOUd0j%2BtkmMNtFnCJvHFcZwyEg%40mail.gmail.com%3E]
> The proposed technology is Jekyll but we have also to decide the website 
> template to use.
> [~kamaci] suggested the [Apache CloudStack|https://cloudstack.apache.org/] 
> template.
> [~molgun] proposed this approach:
>  # Find a modern new static site generator like Jekyll [1]
>  # Create a template
>  # Start to use it in a specific path like 
> [https://manifoldcf.apache.org/*new*]
>  # Migrate our Forrest xml's to Markdown (we can automate this somehow)
>  # Start to serve our new site on root path
> [1] [https://jekyllrb.com/docs/home/]
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Comment Edited] (CONNECTORS-1495) Brand new website

2023-12-14 Thread Piergiorgio Lucidi (Jira)


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

Piergiorgio Lucidi edited comment on CONNECTORS-1495 at 12/14/23 1:54 PM:
--

Considering that I have an Apple Silicon probably I can't use JDK 1.5...

I'm trying to understand how to solve...


was (Author: piergiorgioluc...@gmail.com):
Considering that I have an Apple Silicon probably I can't use JDK 1.5...

> Brand new website
> -
>
> Key: CONNECTORS-1495
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1495
> Project: ManifoldCF
>  Issue Type: New Feature
>  Components: Site
>Affects Versions: ManifoldCF 2.9.1
>Reporter: Piergiorgio Lucidi
>Assignee: Piergiorgio Lucidi
>Priority: Major
> Fix For: ManifoldCF next
>
> Attachments: ManifoldCF-FluidoSkin.png, PDF-Rendition-1.png, 
> PDF-Rendition-2.png, Website - status - 20180510-2.png, Website - status - 
> 20180510.png
>
>   Original Estimate: 480h
>  Remaining Estimate: 480h
>
> The community decided to work on a brand new website:
> [http://mail-archives.apache.org/mod_mbox/manifoldcf-dev/201712.mbox/%3CCAHVHQx8odjgXMw%3DnhmSeDt0pYOUd0j%2BtkmMNtFnCJvHFcZwyEg%40mail.gmail.com%3E]
> The proposed technology is Jekyll but we have also to decide the website 
> template to use.
> [~kamaci] suggested the [Apache CloudStack|https://cloudstack.apache.org/] 
> template.
> [~molgun] proposed this approach:
>  # Find a modern new static site generator like Jekyll [1]
>  # Create a template
>  # Start to use it in a specific path like 
> [https://manifoldcf.apache.org/*new*]
>  # Migrate our Forrest xml's to Markdown (we can automate this somehow)
>  # Start to serve our new site on root path
> [1] [https://jekyllrb.com/docs/home/]
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Comment Edited] (CONNECTORS-1495) Brand new website

2023-12-14 Thread Piergiorgio Lucidi (Jira)


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

Piergiorgio Lucidi edited comment on CONNECTORS-1495 at 12/14/23 9:07 AM:
--

A new GitHub repository for the website is available here:
[https://github.com/apache/manifoldcf-site]
 
In this new repo you will also find the site contents correctly converted in 
markdown format:
[https://github.com/apache/manifoldcf-site/tree/main/content/pages]

Our new staged website is available here:
[https://manifoldcf.staged.apache.org/]
 
I'm currently trying to figure out how to configure ASF Pelican in order to 
correctly render our pages.

I raised a new ticket to INFRA to understand what is missing:

https://issues.apache.org/jira/browse/INFRA-25278

 


was (Author: piergiorgioluc...@gmail.com):
A new GitHub repository for the website is available here:
[https://github.com/apache/manifoldcf-site]
 
In this new repo you will also find the site contents correctly converted in 
markdown format:
[https://github.com/apache/manifoldcf-site/tree/main/content/pages]
 
I'm currently trying to figure out how to configure ASF Pelican in order to 
correctly render our pages.
 
Our new staged website is available here:
[https://manifoldcf.staged.apache.org/]
 

> Brand new website
> -
>
> Key: CONNECTORS-1495
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1495
> Project: ManifoldCF
>  Issue Type: New Feature
>  Components: Site
>Affects Versions: ManifoldCF 2.9.1
>Reporter: Piergiorgio Lucidi
>Assignee: Piergiorgio Lucidi
>Priority: Major
> Fix For: ManifoldCF next
>
> Attachments: ManifoldCF-FluidoSkin.png, PDF-Rendition-1.png, 
> PDF-Rendition-2.png, Website - status - 20180510-2.png, Website - status - 
> 20180510.png
>
>   Original Estimate: 480h
>  Remaining Estimate: 480h
>
> The community decided to work on a brand new website:
> [http://mail-archives.apache.org/mod_mbox/manifoldcf-dev/201712.mbox/%3CCAHVHQx8odjgXMw%3DnhmSeDt0pYOUd0j%2BtkmMNtFnCJvHFcZwyEg%40mail.gmail.com%3E]
> The proposed technology is Jekyll but we have also to decide the website 
> template to use.
> [~kamaci] suggested the [Apache CloudStack|https://cloudstack.apache.org/] 
> template.
> [~molgun] proposed this approach:
>  # Find a modern new static site generator like Jekyll [1]
>  # Create a template
>  # Start to use it in a specific path like 
> [https://manifoldcf.apache.org/*new*]
>  # Migrate our Forrest xml's to Markdown (we can automate this somehow)
>  # Start to serve our new site on root path
> [1] [https://jekyllrb.com/docs/home/]
>  



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Comment Edited] (CONNECTORS-1495) Brand new website

2018-05-28 Thread Piergiorgio Lucidi (JIRA)

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

Piergiorgio Lucidi edited comment on CONNECTORS-1495 at 5/28/18 8:40 AM:
-

I have tested the latest version of forrest2md converter that works better now!

Thank you so much [~sonosolobit]!

We only need to work on converting the release documentation but the XML 
templates are managed outside the site project.

We probably need to create another branch to work on that.


was (Author: piergiorgioluc...@gmail.com):
I have tested the latest version of forrest2md converter that works better now!

Thank you so much [~sonosolobit]!

We only need to work on converting the release documentation but the XML 
templates are managed outside the site project.

> Brand new website
> -
>
> Key: CONNECTORS-1495
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1495
> Project: ManifoldCF
>  Issue Type: New Feature
>  Components: Site
>Affects Versions: ManifoldCF 2.9.1
>Reporter: Piergiorgio Lucidi
>Assignee: Piergiorgio Lucidi
>Priority: Major
> Fix For: ManifoldCF next
>
> Attachments: ManifoldCF-FluidoSkin.png, PDF-Rendition-1.png, 
> PDF-Rendition-2.png, Website - status - 20180510-2.png, Website - status - 
> 20180510.png
>
>   Original Estimate: 480h
>  Remaining Estimate: 480h
>
> The community decided to work on a brand new website:
> [http://mail-archives.apache.org/mod_mbox/manifoldcf-dev/201712.mbox/%3CCAHVHQx8odjgXMw%3DnhmSeDt0pYOUd0j%2BtkmMNtFnCJvHFcZwyEg%40mail.gmail.com%3E]
> The proposed technology is Jekyll but we have also to decide the website 
> template to use.
> [~kamaci] suggested the [Apache CloudStack|https://cloudstack.apache.org/] 
> template.
> [~molgun] proposed this approach:
>  # Find a modern new static site generator like Jekyll [1]
>  # Create a template
>  # Start to use it in a specific path like 
> [https://manifoldcf.apache.org/*new*]
>  # Migrate our Forrest xml's to Markdown (we can automate this somehow)
>  # Start to serve our new site on root path
> [1] [https://jekyllrb.com/docs/home/]
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Comment Edited] (CONNECTORS-1495) Brand new website

2018-05-09 Thread Piergiorgio Lucidi (JIRA)

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

Piergiorgio Lucidi edited comment on CONNECTORS-1495 at 5/9/18 10:44 PM:
-

I worked this night on some nice improvements for our new website:
 * Removed the sidebar [^Website - status - 20180510.png]
 * Updated the maven-site-plugin dependency with the latest stable 3.7.1 that 
includes what we asked for fixing the multilingual feature
 * Added the PDF rendition for each language using the maven-pdf-plugin 
[^PDF-Rendition-1.png] | [^PDF-Rendition-2.png]
 * Downgraded the maven-fluido-skin to 1.6 for some compatibility issues with 
maven-pdf-plugin
 * Temporary fix of who.md template waiting for an hotfix from our friend 
[~sonosolobit] :)

The fix that I'm asking to implement in the converter is related to the 
markdown lists,  a list can be rendered only if before the first element we put 
an empty line.

The PDF rendition generates three different PDF files but it seems to have some 
issues with japanese and chinese language :(.

Probably I have to drop a new question to the Maven list, we could have a 
similar bug related to multilingual rendering.


was (Author: piergiorgioluc...@gmail.com):
I worked this night on some nice improvements for our new website:
 * Updated the maven-site-plugin dependency with the latest stable 3.7.1 that 
includes what we asked for fixing the multilingual feature
 * Added the PDF rendition for each language using the maven-pdf-plugin
 * Downgraded the maven-fluido-skin to 1.6 for some compatibility issues with 
maven-pdf-plugin
 * Temporary fix of who.md template waiting for an hotfix from our friend 
[~sonosolobit] :)

The fix that I'm asking to implement in the converter is related to the 
markdown lists,  a list can be rendered only if before the first element we put 
an empty line.

The PDF rendition generates three different PDF files but it seems to have some 
issues with japanese and chinese language :(.

Probably I have to drop a new question to the Maven list, we could have a 
similar bug related to multilingual rendering.

> Brand new website
> -
>
> Key: CONNECTORS-1495
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1495
> Project: ManifoldCF
>  Issue Type: New Feature
>  Components: Site
>Affects Versions: ManifoldCF 2.9.1
>Reporter: Piergiorgio Lucidi
>Assignee: Piergiorgio Lucidi
>Priority: Major
> Fix For: ManifoldCF next
>
> Attachments: ManifoldCF-FluidoSkin.png, PDF-Rendition-1.png, 
> PDF-Rendition-2.png, Website - status - 20180510.png
>
>   Original Estimate: 480h
>  Remaining Estimate: 480h
>
> The community decided to work on a brand new website:
> [http://mail-archives.apache.org/mod_mbox/manifoldcf-dev/201712.mbox/%3CCAHVHQx8odjgXMw%3DnhmSeDt0pYOUd0j%2BtkmMNtFnCJvHFcZwyEg%40mail.gmail.com%3E]
> The proposed technology is Jekyll but we have also to decide the website 
> template to use.
> [~kamaci] suggested the [Apache CloudStack|https://cloudstack.apache.org/] 
> template.
> [~molgun] proposed this approach:
>  # Find a modern new static site generator like Jekyll [1]
>  # Create a template
>  # Start to use it in a specific path like 
> [https://manifoldcf.apache.org/*new*]
>  # Migrate our Forrest xml's to Markdown (we can automate this somehow)
>  # Start to serve our new site on root path
> [1] [https://jekyllrb.com/docs/home/]
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Comment Edited] (CONNECTORS-1495) Brand new website

2018-04-15 Thread Piergiorgio Lucidi (JIRA)

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

Piergiorgio Lucidi edited comment on CONNECTORS-1495 at 4/15/18 6:04 PM:
-

Today I have started to include the library written by [~sonosolobit] inside 
the site module of ManifoldCF.

Essentially I'm introducing Maven for the site module adding the new 
implementation introduced by David and managing the execution of all the 
transformations using the exec-maven-plugin using different execution 
configurations inside the pom.xml.

Hope to commit something soon :P


was (Author: piergiorgioluc...@gmail.com):
Today I started to include the library written by [~sonosolobit] inside the 
site module of ManifoldCF.

 

Essentially I'm introducing Maven for the site module adding the new 
implementation introduced by David and managing the execution of all the 
transformations using the exec-maven-plugin using different execution 
configurations inside the pom.xml.

Hope to commit something soon :P

> Brand new website
> -
>
> Key: CONNECTORS-1495
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1495
> Project: ManifoldCF
>  Issue Type: New Feature
>  Components: Site
>Affects Versions: ManifoldCF 2.9.1
>Reporter: Piergiorgio Lucidi
>Assignee: Piergiorgio Lucidi
>Priority: Major
> Fix For: ManifoldCF next
>
>   Original Estimate: 480h
>  Remaining Estimate: 480h
>
> The community decided to work on a brand new website:
> [http://mail-archives.apache.org/mod_mbox/manifoldcf-dev/201712.mbox/%3CCAHVHQx8odjgXMw%3DnhmSeDt0pYOUd0j%2BtkmMNtFnCJvHFcZwyEg%40mail.gmail.com%3E]
> The proposed technology is Jekyll but we have also to decide the website 
> template to use.
> [~kamaci] suggested the [Apache CloudStack|https://cloudstack.apache.org/] 
> template.
> [~molgun] proposed this approach:
>  # Find a modern new static site generator like Jekyll [1]
>  # Create a template
>  # Start to use it in a specific path like 
> [https://manifoldcf.apache.org/*new*]
>  # Migrate our Forrest xml's to Markdown (we can automate this somehow)
>  # Start to serve our new site on root path
> [1] [https://jekyllrb.com/docs/home/]
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Comment Edited] (CONNECTORS-1495) Brand new website

2018-02-21 Thread Piergiorgio Lucidi (JIRA)

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

Piergiorgio Lucidi edited comment on CONNECTORS-1495 at 2/21/18 11:28 AM:
--

I'm taking a look at the [Apache Mesos|http://mesos.apache.org/] website 
template, it seems very clear and simple with also an internal blog section :P

Apache Spark template also can be a good candidate.


was (Author: piergiorgioluc...@gmail.com):
I'm taking a look at the [Apache Mesos|http://mesos.apache.org/] website 
template, it seems very clear and simple with also an internal blog section :P

> Brand new website
> -
>
> Key: CONNECTORS-1495
> URL: https://issues.apache.org/jira/browse/CONNECTORS-1495
> Project: ManifoldCF
>  Issue Type: New Feature
>  Components: Site
>Affects Versions: ManifoldCF 2.9.1
>Reporter: Piergiorgio Lucidi
>Assignee: Piergiorgio Lucidi
>Priority: Major
> Fix For: ManifoldCF next
>
>   Original Estimate: 480h
>  Remaining Estimate: 480h
>
> The community decided to work on a brand new website:
> [http://mail-archives.apache.org/mod_mbox/manifoldcf-dev/201712.mbox/%3CCAHVHQx8odjgXMw%3DnhmSeDt0pYOUd0j%2BtkmMNtFnCJvHFcZwyEg%40mail.gmail.com%3E]
> The proposed technology is Jekyll but we have also to decide the website 
> template to use.
> [~kamaci] suggested the [Apache CloudStack|https://cloudstack.apache.org/] 
> template.
> [~molgun] proposed this approach:
>  # Find a modern new static site generator like Jekyll [1]
>  # Create a template
>  # Start to use it in a specific path like 
> [https://manifoldcf.apache.org/*new*]
>  # Migrate our Forrest xml's to Markdown (we can automate this somehow)
>  # Start to serve our new site on root path
> [1] [https://jekyllrb.com/docs/home/]
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)