diff --git a/config.toml b/config.toml index e19ea716bb3e4e6663c8df5f5f70ab7691195711..16c7e1dfaa62fa102d68b64b7c034766d9a2e5fe 100644 --- a/config.toml +++ b/config.toml @@ -38,7 +38,7 @@ pluralizeListTitles = false # table_classes = "table table-bordered" # hide_cfa_same_page = true # show_collapsible_menu = true -# sidebar_layout = "default" + sidebar_layout = "default" [taxonomies] tag = "tags" @@ -101,3 +101,44 @@ pluralizeListTitles = false url = "/projects/" #pre = "<i data-feather=\"users\"></i>" # https://feathericons.com/ weight = 2 + +[[menu.sidebar]] + identifier = "documentation" + name= "Getting Started" + url = "/getting_started" + weight = 1 + +[[menu.sidebar]] + parent = "documentation" + name = "New to Eclipse?" + url = "/getting_started" + pre = "<i class=\"fa fa-caret-right fa-fw\"></i>" + weight = 2 + +[[menu.sidebar]] + parent = "documentation" + name = "Downloads" + url = "/downloads" + pre = "<i class=\"fa fa-caret-right fa-fw\"></i>" + weight = 3 + +[[menu.sidebar]] + parent = "documentation" + name = "Eclipse Articles" + url = "https://wiki.eclipse.org/Eclipse_Corner" + pre = "<i class=\"fa fa-caret-right fa-fw\"></i>" + weight = 4 + +[[menu.sidebar]] + parent = "documentation" + name = "Eclipse Forums" + url = "/forums" + pre = "<i class=\"fa fa-caret-right fa-fw\"></i>" + weight = 5 + +[[menu.sidebar]] + parent = "documentation" + name = "Resources" + url = "/resources" + pre = "<i class=\"fa fa-caret-right fa-fw\"></i>" + weight = 6 \ No newline at end of file diff --git a/config/nginx/default.conf b/config/nginx/default.conf index 67c054193955f0808c978958e8984669850a9964..655e3d7eb457496a947f995c11b0cf75afd17bac 100644 --- a/config/nginx/default.conf +++ b/config/nginx/default.conf @@ -52,6 +52,10 @@ server { rewrite /home/welcome.php /home/welcome redirect; rewrite /home/whatis.php /home/whatis redirect; + # www.eclipse.org/documentation + # https://git.eclipse.org/c/www.eclipse.org/documentation.git/tree/ + rewrite /documentation/index.php /documentation redirect; + # www.eclipse.org/europe # https://git.eclipse.org/c/www.eclipse.org/europe.git/tree/ rewrite /europe/index.php /europe redirect; diff --git a/content/documentation/_index.md b/content/documentation/_index.md new file mode 100644 index 0000000000000000000000000000000000000000..569051e4a6d9197ea2ff685fe1c0dd398e09533f --- /dev/null +++ b/content/documentation/_index.md @@ -0,0 +1,36 @@ +--- +title: "Eclipse Documentation" +date: 2022-07-25T12:00:00-04:00 +description: "Eclipse IDE documentation" +categories: [] +keywords: ["eclipse", "documentation", "help", "api", "programmer", "javadoc", "sdk", "developer", "network", "code"] +slug: "" +aliases: [] +toc: false +draft: false +container: container +--- + +## Current releases + +{{< html/list_wrapper listClass="fa-ul">}} + <li><a href="http://help.eclipse.org/2022-06/index.jsp"><i class="fa fa-globe"></i> Eclipse IDE 2022-06 (4.24) Documentation</a> (HTML Help Center)</li> +{{</ html/list_wrapper >}} + +## Older releases + +{{< html/list_wrapper listClass="fa-ul">}} + <li><a href="http://help.eclipse.org/2022-03/index.jsp"><i class="fa fa-globe"></i> Eclipse IDE 2022-03 (4.23) Documentation</a> (HTML Help Center)</li> + <li><a href="http://help.eclipse.org/2021-12/index.jsp"><i class="fa fa-globe"></i> Eclipse IDE 2021-12 (4.22) Documentation</a> (HTML Help Center)</li> + <li><a href="http://help.eclipse.org/2021-09/index.jsp"><i class="fa fa-globe"></i> Eclipse IDE 2021-09 (4.21) Documentation</a> (HTML Help Center)</li> + <li><a href="http://help.eclipse.org/2021-06/index.jsp"><i class="fa fa-globe"></i> Eclipse IDE 2021-06 (4.20) Documentation</a> (HTML Help Center)</li> + <li><a href="http://help.eclipse.org/2021-03/index.jsp"><i class="fa fa-globe"></i> Eclipse IDE 2021-03 (4.19) Documentation</a> (HTML Help Center)</li> +{{</ html/list_wrapper >}} + +For even older releases (Photon, Oxygen, Neon, etc), please download the corresponding Eclipse SDK or any EPP package and start the Information center locally as described here: + +{{< html/list_wrapper listClass="fa-ul">}} + <li><a href="https://archive.eclipse.org/eclipse/downloads/"><i class="fa fa-globe"></i> Eclipse project archived downloads</a></li> + <li><a href="https://www.eclipse.org/downloads/packages/release/"><i class="fa fa-globe"></i> Eclipse Packaging Project (EPP) Releases</a></li> + <li><a href="https://help.eclipse.org/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2Fguide%2Fua_help_setup_infocenter.htm"><i class="fa fa-globe"></i> How to start or stop information center from command line</a></li> +{{</ html/list_wrapper >}}