[ofbiz-site] branch master updated (178ec8f -> 947f609)

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

[ofbiz-site] branch master updated (178ec8f -> 947f609)

jleroux@apache.org
This is an automated email from the ASF dual-hosted git repository.

jleroux pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/ofbiz-site.git.


    from 178ec8f  Add two missing past vulnerability reports and update footer of release notes.
     new 7c75d7c  Improved: Update pages of ofbiz website
     new 881baca  Improved: Update pages of ofbiz website
     new 947f609  Merge branch 'master' of https://gitbox.apache.org/repos/asf/ofbiz-site

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 developers.html                           | 55 +++++++++++++++++------------
 template/page/developers.tpl.php          | 55 +++++++++++++++++------------
 template/page/source-repositories.tpl.php | 57 ++++++++++++++++++-------------
 3 files changed, 102 insertions(+), 65 deletions(-)

Reply | Threaded
Open this post in threaded view
|

[ofbiz-site] 01/03: Improved: Update pages of ofbiz website

jleroux@apache.org
This is an automated email from the ASF dual-hosted git repository.

jleroux pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ofbiz-site.git

commit 7c75d7c14b655f7bff4cea1c8fb8259f8fdb8ee4
Author: Jacques Le Roux <[hidden email]>
AuthorDate: Fri May 1 10:35:19 2020 +0200

    Improved: Update pages of ofbiz website
   
    (OFBIZ-11269)
   
    Updates the developpers page
   
    Thanks: Wiebke Pätzold for the patch, Pierre Smits and Pawan for review
---
 developers.html                  | 55 +++++++++++++++++++++++++---------------
 template/page/developers.tpl.php | 55 +++++++++++++++++++++++++---------------
 2 files changed, 68 insertions(+), 42 deletions(-)

diff --git a/developers.html b/developers.html
index 477d887..d7551e5 100644
--- a/developers.html
+++ b/developers.html
@@ -99,7 +99,7 @@
 <!-- header -->
 <!-- globalWrapper -->
 <div id="globalWrapper">
-  
+
   <!-- page content -->
  <section id="content" class="fullWidth">
     <header class="headerPage">
@@ -131,7 +131,7 @@
                 <h2>Pre-Requisites</h2>
                 <div class="divider"><span></span></div>
      <ul class="iconsList">
-      <li><i class="icon-pin"></i> For 16.11, the ofbiz-framework trunk and ofbiz-plugins trunk the minimum requirement you need installed is Java 1.8 SDK.</li>
+      <li><i class="icon-pin"></i> For 17.12, the ofbiz-framework trunk and ofbiz-plugins trunk the minimum requirement you need installed is Java 1.8 SDK.</li>
       <li><i class="icon-pin"></i> Apache OFBiz can be downloaded and run on both Unix based and Windows based systems</li>
     </ul>
                  <p><strong>NOTE:</strong> If you are running an older release or branch then please refer to <a href="//cwiki.apache.org/confluence/display/OFBIZ/Home" target="external" >our Wiki</a> for details</p>
@@ -146,13 +146,27 @@
     <p>Download your required version from one of our <a href="download.html">download mirrors</a> and extract the zip file </p>
     <h3>2. Checkout the Source Code</h3>
     <p>Checkout the source code from the repository</p>
-    <p>Anyone can checkout or <a href="#DevRepo">browse the source code </a>in the OFBiz public Subversion (SVN) repository.</p>
+    <p>Anyone can checkout or <a href="#DevRepo">browse the source code </a>in the OFBiz public gitbox or GitHub repositories.</p>
     <p>To checkout the source code, simply use the following command (if you are using a GUI client, configure it appropriately).</p>
+    <p>We have split OFBiz into ofbiz-framework and ofbiz-plugins, so if you want to use the ofbiz-plugins you need to checkout both trunks.</p>
     <ul class="iconsList">
-      <li><i class="icon-pin"></i> <strong>ofbiz-framework trunk</strong> : <code>$ svn co http://svn.apache.org/repos/asf/ofbiz/ofbiz-framework/trunk ofbiz-framework</code></li>
-      <li><i class="icon-pin"></i> <strong>ofbiz-plugins trunk</strong> : <code>$ svn co http://svn.apache.org/repos/asf/ofbiz/ofbiz-plugins/trunk plugins</code></li>
-      <li><i class="icon-pin"></i> <strong>branch release16.11 (stable)</strong>: <code>$ svn co http://svn.apache.org/repos/asf/ofbiz/branches/release16.11 ofbiz.16.11</code></li>
+      <li><i class="icon-pin"></i> <strong>ofbiz-framework trunk</strong> : <code>$ git clone https://gitbox.apache.org/repos/asf/ofbiz-framework.git ofbiz-framework </code></li>
+      <li><i class="icon-pin"></i> <strong>ofbiz-plugins trunk</strong> : <code>$ git clone https://gitbox.apache.org/repos/asf/ofbiz-plugins.git plugins </code></li>
+      <li><i class="icon-pin"></i> <strong>branch release17.12 (stable)</strong>: <code>$ git clone https://gitbox.apache.org/repos/asf/ofbiz-framework.git ofbiz-framework</code></li>
+      <li><code>$ git checkout release17.12.01 </code></li>
+      <li><i class="icon-pin"></i> <strong>branch release17.12 (stable)</strong>: <code>$ git clone https://gitbox.apache.org/repos/asf/ofbiz-plugins.git ofbiz-plugins</code></li>
+      <li><code>$ git checkout release17.12.01 </code></li>
     </ul>
+<p>Or from GitHub:</p>
+<ul class="iconsList">
+  <li><i class="icon-pin"></i> <strong>ofbiz-framework trunk</strong> : <code>$ git clone https://github.com/apache/ofbiz-framework.git ofbiz-framework </code></li>
+  <li><i class="icon-pin"></i> <strong>ofbiz-plugins trunk</strong> : <code>$ git clone https://github.com/apache/ofbiz-plugins.git plugins </code></li>
+  <li><i class="icon-pin"></i> <strong>branch release17.12 (stable)</strong>: <code>$ git clone https://github.com/apache/ofbiz-framework.git ofbiz-framework</code></li>
+  <li><code>$ git checkout release17.12.01 </code></li>
+  <li><i class="icon-pin"></i> <strong>branch release17.12 (stable)</strong>: <code>$ git clone https://github.com/apache/ofbiz-plugins.git ofbiz-plugins</code></li>
+  <li><code>$ git checkout release17.12.01 </code></li>
+</ul>
+
     </div>
             </section>
       <section  id="DevBldRun" class="slice row clearfix">
@@ -160,23 +174,21 @@
                 <h2>Build and Run</h2>
                 <div class="divider"><span></span></div>
                 <p>Once you have downloaded the source code it will need to be built. The command to built.</p>
-    <h3>Building Release 16.11</h3>
-    <p>Release 16.11  and our ofbiz-framework trunk uses Gradle as it's build system so the commands to build and run it are different to the previous releases. </p>
-    <p>To build 16.11 release,navigate to the OFBiz or framework-trunk directory and;</p>
+    <h3>Building Release 17.12</h3>
+    <p>To build 17.12 release, navigate to the OFBiz or framework-trunk directory and;</p>
     <p>Run the following command for Unix-like OS</p>
     <code>./gradlew cleanAll loadDefault</code><p></p>
     <p>Run the following command for MS Windows</p>
     <code>gradlew cleanAll loadDefault</code>
     <p></p>
     <h3>Building the Trunk</h3>
-    <p>After the 16.11 release a minor change has been made to the Gradle build command for building OFBiz.</p>
     <p>To build the trunk, navigate to the framework-trunk directory and;</p>
     <p>Run the following command for Unix-like OS</p>
     <code>./gradlew cleanAll loadAll</code><p></p>
     <p>Run the following command for MS Windows</p>
     <code>gradlew cleanAll loadAll</code>
     <p></p>
-    <h3>Starting and Running 16.11 or the ofbiz-framework trunk</h3>
+    <h3>Starting and Running 17.12 or the ofbiz-framework trunk</h3>
     <p>To start OFBiz running locally, navigate to the trunk directory and;</p>
     <p>Run the following command for Unix-like OS</p>
     <code>./gradlew ofbiz</code><p></p>
@@ -194,30 +206,32 @@
     <code>gradlew ofbiz --shutdown</code>
     <p></p>
     <p>
-     <strong>NOTE</strong>: That quotes are needed for the Unix based command. For further details and a full list of all available OFBiz Gradle commands, please take a look at the main
+     <strong>NOTE</strong>: That quotes are needed for the Unix based command. For further details and a full list of all available OFBiz Gradle commands, please take a look at the main
      <a href="//svn.apache.org/repos/asf/ofbiz/tools/wiki-files/README.md.html" target="external"><strong>README.md file.</strong></a>
      <br/>
-     If you are an user migrating from a  version which uses Ant you might be interested by:    
-     <a href="//cwiki.apache.org/confluence/display/OFBIZ/From+Ant+to+Gradle+-+trunk+version" target="external"><strong>From Ant to Gradle</strong></a>
-    
+     If you are an user migrating from a  version which uses Ant you might be interested by:
+     <a href="//cwiki.apache.org/confluence/display/OFBIZ/From+Ant+to+Gradle+-+trunk+version" target="external"><strong>From Ant to Gradle</strong></a>
+
     </p>
     <p></p>
             </div>
-            </section>            
+            </section>
             <section  id="DevRepo" class="slice row clearfix">
               <div class="span10">
                 <h2>Browse Repository</h2>
                 <div class="divider"><span></span></div>
                 <p>You can browse the repository using any of the following links.</p>
                 <ul class="iconsList">
-                   <li><i class="icon-pin"></i> <a href="//svn.apache.org/repos/asf/ofbiz/" target="external"><strong>SVN - WebDAV</strong></a></li>
-        <li><i class="icon-pin"></i> <a href="//svn.apache.org/viewvc/ofbiz/" target="external"><strong>SVN - ViewVC</strong></a></li>
+                   <li><i class="icon-pin"></i> <a href="https://gitbox.apache.org/repos/asf/ofbiz-framework.git" target="external"><strong>ofbiz-framework on gitbox</strong></a></li>
+        <li><i class="icon-pin"></i> <a href="https://gitbox.apache.org/repos/asf/ofbiz-plugins.git" target="external"><strong>ofbiz-plugins on gitbox</strong></a></li>
+        <li><i class="icon-pin"></i> <a href="https://gitbox.apache.org/repos/asf/ofbiz-site.git" target="external"><strong>ofbiz-site on gitbox</strong></a></li>
+        <li><i class="icon-pin"></i> <a href="https://gitbox.apache.org/repos/asf/ofbiz-tools.git" target="external"><strong>ofbiz-tools on gitbox</strong></a></li>
     </ul>
     <p></p>
     <p>Our ofbiz-framework trunk and ofbiz-plugins trunk are also available on Git at the links below:</p>
     <ul class="iconsList">
-        <li><i class="icon-pin"></i> <a href="//github.com/apache/ofbiz-framework" target="external"><strong>ofbiz-framework trunk on Github</strong></a></li>
-       <li><i class="icon-pin"></i> <a href="//github.com/apache/ofbiz-plugins" target="external"><strong>ofbiz-plugins trunk on Github</strong></a></li>
+        <li><i class="icon-pin"></i> <a href="https://github.com/apache/ofbiz-framework" target="external"><strong>ofbiz-framework trunk on Github</strong></a></li>
+       <li><i class="icon-pin"></i> <a href="https://github.com/apache/ofbiz-plugins" target="external"><strong>ofbiz-plugins trunk on Github</strong></a></li>
     </ul>
             </div>
             </section>
@@ -259,7 +273,6 @@
    </section>
  </section>
   <!-- page content -->
-
 <!-- footer -->
 <footer class="footer1">
   <div class="container" id="footer">
diff --git a/template/page/developers.tpl.php b/template/page/developers.tpl.php
index 221c5cf..d30cc56 100644
--- a/template/page/developers.tpl.php
+++ b/template/page/developers.tpl.php
@@ -1,7 +1,7 @@
 <?php //Variable declarations for region templates
   $head_title = '<title>The Apache OFBiz&reg; Project - Developers</title>';
 ?>
-  
+
   <!-- page content -->
  <section id="content" class="fullWidth">
     <header class="headerPage">
@@ -33,7 +33,7 @@
                 <h2>Pre-Requisites</h2>
                 <div class="divider"><span></span></div>
      <ul class="iconsList">
-      <li><i class="icon-pin"></i> For 16.11, the ofbiz-framework trunk and ofbiz-plugins trunk the minimum requirement you need installed is Java 1.8 SDK.</li>
+      <li><i class="icon-pin"></i> For 17.12, the ofbiz-framework trunk and ofbiz-plugins trunk the minimum requirement you need installed is Java 1.8 SDK.</li>
       <li><i class="icon-pin"></i> Apache OFBiz can be downloaded and run on both Unix based and Windows based systems</li>
     </ul>
                  <p><strong>NOTE:</strong> If you are running an older release or branch then please refer to <a href="//cwiki.apache.org/confluence/display/OFBIZ/Home" target="external" >our Wiki</a> for details</p>
@@ -48,13 +48,27 @@
     <p>Download your required version from one of our <a href="download.html">download mirrors</a> and extract the zip file </p>
     <h3>2. Checkout the Source Code</h3>
     <p>Checkout the source code from the repository</p>
-    <p>Anyone can checkout or <a href="#DevRepo">browse the source code </a>in the OFBiz public Subversion (SVN) repository.</p>
+    <p>Anyone can checkout or <a href="#DevRepo">browse the source code </a>in the OFBiz public gitbox or GitHub repositories.</p>
     <p>To checkout the source code, simply use the following command (if you are using a GUI client, configure it appropriately).</p>
+    <p>We have split OFBiz into ofbiz-framework and ofbiz-plugins, so if you want to use the ofbiz-plugins you need to checkout both trunks.</p>
     <ul class="iconsList">
-      <li><i class="icon-pin"></i> <strong>ofbiz-framework trunk</strong> : <code>$ svn co http://svn.apache.org/repos/asf/ofbiz/ofbiz-framework/trunk ofbiz-framework</code></li>
-      <li><i class="icon-pin"></i> <strong>ofbiz-plugins trunk</strong> : <code>$ svn co http://svn.apache.org/repos/asf/ofbiz/ofbiz-plugins/trunk plugins</code></li>
-      <li><i class="icon-pin"></i> <strong>branch release16.11 (stable)</strong>: <code>$ svn co http://svn.apache.org/repos/asf/ofbiz/branches/release16.11 ofbiz.16.11</code></li>
+      <li><i class="icon-pin"></i> <strong>ofbiz-framework trunk</strong> : <code>$ git clone https://gitbox.apache.org/repos/asf/ofbiz-framework.git ofbiz-framework </code></li>
+      <li><i class="icon-pin"></i> <strong>ofbiz-plugins trunk</strong> : <code>$ git clone https://gitbox.apache.org/repos/asf/ofbiz-plugins.git plugins </code></li>
+      <li><i class="icon-pin"></i> <strong>branch release17.12 (stable)</strong>: <code>$ git clone https://gitbox.apache.org/repos/asf/ofbiz-framework.git ofbiz-framework</code></li>
+      <li><code>$ git checkout release17.12.01 </code></li>
+      <li><i class="icon-pin"></i> <strong>branch release17.12 (stable)</strong>: <code>$ git clone https://gitbox.apache.org/repos/asf/ofbiz-plugins.git ofbiz-plugins</code></li>
+      <li><code>$ git checkout release17.12.01 </code></li>
     </ul>
+<p>Or from GitHub:</p>
+<ul class="iconsList">
+  <li><i class="icon-pin"></i> <strong>ofbiz-framework trunk</strong> : <code>$ git clone https://github.com/apache/ofbiz-framework.git ofbiz-framework </code></li>
+  <li><i class="icon-pin"></i> <strong>ofbiz-plugins trunk</strong> : <code>$ git clone https://github.com/apache/ofbiz-plugins.git plugins </code></li>
+  <li><i class="icon-pin"></i> <strong>branch release17.12 (stable)</strong>: <code>$ git clone https://github.com/apache/ofbiz-framework.git ofbiz-framework</code></li>
+  <li><code>$ git checkout release17.12.01 </code></li>
+  <li><i class="icon-pin"></i> <strong>branch release17.12 (stable)</strong>: <code>$ git clone https://github.com/apache/ofbiz-plugins.git ofbiz-plugins</code></li>
+  <li><code>$ git checkout release17.12.01 </code></li>
+</ul>
+
     </div>
             </section>
       <section  id="DevBldRun" class="slice row clearfix">
@@ -62,23 +76,21 @@
                 <h2>Build and Run</h2>
                 <div class="divider"><span></span></div>
                 <p>Once you have downloaded the source code it will need to be built. The command to built.</p>
-    <h3>Building Release 16.11</h3>
-    <p>Release 16.11  and our ofbiz-framework trunk uses Gradle as it's build system so the commands to build and run it are different to the previous releases. </p>
-    <p>To build 16.11 release,navigate to the OFBiz or framework-trunk directory and;</p>
+    <h3>Building Release 17.12</h3>
+    <p>To build 17.12 release, navigate to the OFBiz or framework-trunk directory and;</p>
     <p>Run the following command for Unix-like OS</p>
     <code>./gradlew cleanAll loadDefault</code><p></p>
     <p>Run the following command for MS Windows</p>
     <code>gradlew cleanAll loadDefault</code>
     <p></p>
     <h3>Building the Trunk</h3>
-    <p>After the 16.11 release a minor change has been made to the Gradle build command for building OFBiz.</p>
     <p>To build the trunk, navigate to the framework-trunk directory and;</p>
     <p>Run the following command for Unix-like OS</p>
     <code>./gradlew cleanAll loadAll</code><p></p>
     <p>Run the following command for MS Windows</p>
     <code>gradlew cleanAll loadAll</code>
     <p></p>
-    <h3>Starting and Running 16.11 or the ofbiz-framework trunk</h3>
+    <h3>Starting and Running 17.12 or the ofbiz-framework trunk</h3>
     <p>To start OFBiz running locally, navigate to the trunk directory and;</p>
     <p>Run the following command for Unix-like OS</p>
     <code>./gradlew ofbiz</code><p></p>
@@ -96,30 +108,32 @@
     <code>gradlew ofbiz --shutdown</code>
     <p></p>
     <p>
-     <strong>NOTE</strong>: That quotes are needed for the Unix based command. For further details and a full list of all available OFBiz Gradle commands, please take a look at the main
+     <strong>NOTE</strong>: That quotes are needed for the Unix based command. For further details and a full list of all available OFBiz Gradle commands, please take a look at the main
      <a href="//svn.apache.org/repos/asf/ofbiz/tools/wiki-files/README.md.html" target="external"><strong>README.md file.</strong></a>
      <br/>
-     If you are an user migrating from a  version which uses Ant you might be interested by:    
-     <a href="//cwiki.apache.org/confluence/display/OFBIZ/From+Ant+to+Gradle+-+trunk+version" target="external"><strong>From Ant to Gradle</strong></a>
-    
+     If you are an user migrating from a  version which uses Ant you might be interested by:
+     <a href="//cwiki.apache.org/confluence/display/OFBIZ/From+Ant+to+Gradle+-+trunk+version" target="external"><strong>From Ant to Gradle</strong></a>
+
     </p>
     <p></p>
             </div>
-            </section>            
+            </section>
             <section  id="DevRepo" class="slice row clearfix">
               <div class="span10">
                 <h2>Browse Repository</h2>
                 <div class="divider"><span></span></div>
                 <p>You can browse the repository using any of the following links.</p>
                 <ul class="iconsList">
-                   <li><i class="icon-pin"></i> <a href="//svn.apache.org/repos/asf/ofbiz/" target="external"><strong>SVN - WebDAV</strong></a></li>
-        <li><i class="icon-pin"></i> <a href="//svn.apache.org/viewvc/ofbiz/" target="external"><strong>SVN - ViewVC</strong></a></li>
+                   <li><i class="icon-pin"></i> <a href="https://gitbox.apache.org/repos/asf/ofbiz-framework.git" target="external"><strong>ofbiz-framework on gitbox</strong></a></li>
+        <li><i class="icon-pin"></i> <a href="https://gitbox.apache.org/repos/asf/ofbiz-plugins.git" target="external"><strong>ofbiz-plugins on gitbox</strong></a></li>
+        <li><i class="icon-pin"></i> <a href="https://gitbox.apache.org/repos/asf/ofbiz-site.git" target="external"><strong>ofbiz-site on gitbox</strong></a></li>
+        <li><i class="icon-pin"></i> <a href="https://gitbox.apache.org/repos/asf/ofbiz-tools.git" target="external"><strong>ofbiz-tools on gitbox</strong></a></li>
     </ul>
     <p></p>
     <p>Our ofbiz-framework trunk and ofbiz-plugins trunk are also available on Git at the links below:</p>
     <ul class="iconsList">
-        <li><i class="icon-pin"></i> <a href="//github.com/apache/ofbiz-framework" target="external"><strong>ofbiz-framework trunk on Github</strong></a></li>
-       <li><i class="icon-pin"></i> <a href="//github.com/apache/ofbiz-plugins" target="external"><strong>ofbiz-plugins trunk on Github</strong></a></li>
+        <li><i class="icon-pin"></i> <a href="https://github.com/apache/ofbiz-framework" target="external"><strong>ofbiz-framework trunk on Github</strong></a></li>
+       <li><i class="icon-pin"></i> <a href="https://github.com/apache/ofbiz-plugins" target="external"><strong>ofbiz-plugins trunk on Github</strong></a></li>
     </ul>
             </div>
             </section>
@@ -161,4 +175,3 @@
    </section>
  </section>
   <!-- page content -->
-

Reply | Threaded
Open this post in threaded view
|

[ofbiz-site] 02/03: Improved: Update pages of ofbiz website

jleroux@apache.org
In reply to this post by jleroux@apache.org
This is an automated email from the ASF dual-hosted git repository.

jleroux pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ofbiz-site.git

commit 881baca4b11b9ee244b24eac997448957fca78a6
Author: Jacques Le Roux <[hidden email]>
AuthorDate: Fri May 1 10:39:46 2020 +0200

    Improved: Update pages of ofbiz website
   
    (OFBIZ-11269)
   
    Updates the source-repositories page
   
    Thanks: Wiebke Pätzold for the patch, Pierre Smits and Pawan for review
---
 template/page/source-repositories.tpl.php | 57 ++++++++++++++++++-------------
 1 file changed, 34 insertions(+), 23 deletions(-)

diff --git a/template/page/source-repositories.tpl.php b/template/page/source-repositories.tpl.php
index a4aab6c..ae4de3c 100644
--- a/template/page/source-repositories.tpl.php
+++ b/template/page/source-repositories.tpl.php
@@ -1,7 +1,7 @@
 <?php //Variable declarations for region templates
   $head_title = '<title>The Apache OFBiz&reg; Project - Source Repository</title>';
 ?>
-  
+
   <!-- page content -->
  <section id="content" class="fullWidth">
     <header class="headerPage">
@@ -27,58 +27,69 @@
               <div class="span10">
                 <h2>Public Access</h2>
                 <div class="divider"><span></span></div>
-    <p>Anyone can checkout or browse the source code in the OFBiz public Subversion (SVN) repository.</P>
+    <p>Anyone can checkout or browse the source code in the OFBiz gitbox repository.</P>
     <h3>Browsing the Repository</h3>
                 <div class="divider"><span></span></div>
                 <p>You can browse the repository using any of the following links.</p>
                 <ul class="iconsList">
-                   <li><i class="icon-pin"></i> <a href="//svn.apache.org/repos/asf/ofbiz/" target="external"><strong>SVN - WebDAV</strong></a></li>
-        <li><i class="icon-pin"></i> <a href="//svn.apache.org/viewvc/ofbiz/" target="external"><strong>SVN - ViewVC</strong></a></li>
+                   <li><i class="icon-pin"></i> <a href="https://gitbox.apache.org/repos/asf/ofbiz-framework.git" target="external"><strong>gitbox ofbiz-framework</strong></a></li>
+        <li><i class="icon-pin"></i> <a href="https://gitbox.apache.org/repos/asf/ofbiz-plugins.git" target="external"><strong>gitbox ofbiz-plugins</strong></a></li>
+        <li><i class="icon-pin"></i> <a href="https://gitbox.apache.org/repos/asf/ofbiz-site.git" target="external"><strong>gitbox ofbiz-site</strong></a></li>
+        <li><i class="icon-pin"></i> <a href="https://gitbox.apache.org/repos/asf/ofbiz-tools.git" target="external"><strong>gitbox ofbiz-tools</strong></a></li>
     </ul>
     <p></p>
     <p>Our ofbiz-framework trunk and ofbiz-plugins trunk are also available on Git at the links below:</p>
     <ul class="iconsList">
-        <li><i class="icon-pin"></i> <a href="//github.com/apache/ofbiz-framework" target="external"><strong>ofbiz-framework trunk on Github</strong></a></li>
-       <li><i class="icon-pin"></i> <a href="//github.com/apache/ofbiz-plugins" target="external"><strong>ofbiz-plugins trunk on Github</strong></a></li>
+        <li><i class="icon-pin"></i> <a href="https://github.com/apache/ofbiz-framework" target="external"><strong>ofbiz-framework trunk on Github</strong></a></li>
+       <li><i class="icon-pin"></i> <a href="https://github.com/apache/ofbiz-plugins" target="external"><strong>ofbiz-plugins trunk on Github</strong></a></li>
     </ul>
 
     <h3>Checking out the Repository Source Code</h3>
-    <p><strong>NOTE: </strong> Apache OFBiz uses <a href="//subversion.apache.org/" target="external"><strong>Apache Subversion</strong></a> for version control of our source repository. If you are not familiar with Apache Subversion and you don't have an SVN client tool, then following links could be useful:</p>
-    <p><i class="icon-pin"></i><a href="//subversion.apache.org/packages.html" target="external"><strong>SVN Client Tools</strong></a></p>
-    <p><i class="icon-pin"></i><a href="//subversion.apache.org/docs/" target="external"><strong>SVN Documenentation</strong></a></p>
+    <p><strong>NOTE: </strong> Apache OFBiz uses <a href="//git.apache.org/" target="external"><strong>Git</strong></a> for version control of our source repository. If you are not familiar with Git and you don't have a Git client tool, then the following could be useful:</p>
+    <p><i class="icon-pin"></i><a href="//git.apache.org/" target="external"><strong>ASF Writable Git Services</strong></a></p>
     <p>To checkout the source code, simply use the following command (if you are using a GUI client, configure it appropriately).</p>
     <h2>Trunk</h2>
+    <p>On gitbox:</p>
+     <dl class="iconsList">
+        <dt><i class="icon-pin"></i> <strong>ofbiz-framework</strong></dt>
+        <dd><code>$ git clone https://gitbox.apache.org/repos/asf/ofbiz-framework.git ofbiz-framework </code></dd>
+        <dt><i class="icon-pin"></i> <strong>ofbiz-plugins</strong></dt>
+        <dd><code>git clone https://gitbox.apache.org/repos/asf/ofbiz-plugins.git plugins </code></dd>
+    </dl>
+    <p>On GitHub:</p>
      <dl class="iconsList">
         <dt><i class="icon-pin"></i> <strong>ofbiz-framework</strong></dt>
-        <dd><code>$ svn co http://svn.apache.org/repos/asf/ofbiz/ofbiz-framework/trunk ofbiz-framework</code></dd>
+        <dd><code>$ git clone https://github.com/apache/ofbiz-framework.git ofbiz-framework </code></dd>
         <dt><i class="icon-pin"></i> <strong>ofbiz-plugins</strong></dt>
-        <dd><code>$ svn co http://svn.apache.org/repos/asf/ofbiz/ofbiz-plugins/trunk ofbiz-plugins </code></dd>
+        <dd><code>$ git clone https://github.com/apache/ofbiz-plugins.git plugins </code></dd>
     </dl>
     <h2>Releases</h2>
     <dl class="iconsList">
+        <dt><i class="icon-pin"></i> <strong>ofbiz-framework branch release17.12 (stable)</strong><dt>
+        <dd><code>$ git clone https://gitbox.apache.org/repos/asf/ofbiz-framework.git ofbiz-framework </code></dd>
+        <dd><code>$ git checkout release17.12.01</code></dd>
+        <dt><i class="icon-pin"></i> <strong>ofbiz-plugins branch release17.12 (stable)</strong><dt>
+        <dd><code>$ git clone https://gitbox.apache.org/repos/asf/ofbiz-plugins.git plugins </code></dd>
+        <dd><code>$ git checkout release17.12.01</code></dd>
         <dt><i class="icon-pin"></i> <strong>ofbiz-framework branch release18.12 </strong></dt>
-        <dd><code>$ svn co http://svn.apache.org/repos/asf/ofbiz/ofbiz-framework/branches/release18.12 ofbiz.18.12</code></dd>
-        <dt><i class="icon-pin"></i> <strong>ofbiz-plugins branch release18.12 </strong></dt>
-        <dd><code>$ svn co http://svn.apache.org/repos/asf/ofbiz/ofbiz-plugins/branches/release18.12 ofbiz.18.12-plugins</code></dd>
-        <dt><i class="icon-pin"></i> <strong>ofbiz-framework branch release17.12 </strong></dt>
-        <dd><code>$ svn co http://svn.apache.org/repos/asf/ofbiz/ofbiz-framework/branches/release17.12 ofbiz.17.12</code></dd>
-        <dt><i class="icon-pin"></i> <strong>ofbiz-plugins branch release17.12 </strong></dt>
-        <dd><code>$ svn co http://svn.apache.org/repos/asf/ofbiz/ofbiz-plugins/branches/release17.12 ofbiz.17.12-plugins</code></dd>
-        <dt><i class="icon-pin"></i> <strong>branch release16.11 (stable)</strong><dt>
-        <dd><code>$ svn co http://svn.apache.org/repos/asf/ofbiz/branches/release16.11 ofbiz.16.11</code></dd>
+        <dd><code>$ git clone https://gitbox.apache.org/repos/asf/ofbiz-framework.git ofbiz-framework </code></dd>
+        <dd><code>$ git checkout origin/release18.12</code></dd>
+        <dt><i class="icon-pin"></i> <strong>ofbiz-plugins branch release18.12 </strong><dt>
+        <dd><code>$ git clone https://gitbox.apache.org/repos/asf/ofbiz-plugins.git plugins </code></dd>
+        <dd><code>$ git checkout origin/release18.12 </code></dd>
     </dl>
     <h2>Tools</h2>
     <dl class="iconsList">
       <dt><i class="icon-pin"></i> <strong>ofbiz tools</strong></dt>
-      <dd><code>$ svn co http://svn.apache.org/repos/asf/ofbiz/tools ofbiz-tools </code></dd>
+      <dd><code>$ git clone https://gitbox.apache.org/repos/asf/ofbiz-tools.git ofbiz-tools </code></dd>
     </dl>
     <h2>Website</h2>
     <dl class="iconsList">
       <dt><i class="icon-pin"></i> <strong>ofbiz website</strong></dt>
-      <dd><code>$ svn co http://svn.apache.org/repos/asf/ofbiz/site ofbiz-website </code></dd>
+      <dd><code>$ git clone https://gitbox.apache.org/repos/asf/ofbiz-site.git ofbiz-website </code></dd>
     </dl>
     </div>
-            </section>
+            </section>
 
       <section  id="SRepoComm" class="slice row clearfix">
               <div class="span10">

Reply | Threaded
Open this post in threaded view
|

[ofbiz-site] 03/03: Merge branch 'master' of https://gitbox.apache.org/repos/asf/ofbiz-site

jleroux@apache.org
In reply to this post by jleroux@apache.org
This is an automated email from the ASF dual-hosted git repository.

jleroux pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ofbiz-site.git

commit 947f6093570b4802ea6f3186b17bd531eb998ffc
Merge: 881baca 178ec8f
Author: Jacques Le Roux <[hidden email]>
AuthorDate: Fri May 1 10:40:38 2020 +0200

    Merge branch 'master' of https://gitbox.apache.org/repos/asf/ofbiz-site
   
    Not sure why this is necessary

 download.html                                |   24 +-
 download.html => release-notes-16.11.07.html |  136 +-
 release-notes-17.12.01.html                  | 2095 ++++++++++++++++++++++++++
 download.html => release-notes-17.12.03.html |  130 +-
 security.html                                |    2 +
 template/page/download.tpl.php               |   24 +-
 template/page/release-notes-16.11.07.tpl.php |   80 +
 template/page/release-notes-17.12.01.tpl.php | 1892 +++++++++++++++++++++++
 template/page/release-notes-17.12.03.tpl.php |   76 +
 template/page/security.tpl.php               |    2 +
 10 files changed, 4304 insertions(+), 157 deletions(-)