docs: add new setup category #1891 (#1958)

* docs: add new setup category #1891

* docs: fix is/are error (#1962)
This commit is contained in:
Lars Hvam 2018-09-27 15:03:44 +02:00 committed by GitHub
parent 10ea325ca8
commit 9f548e2083
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 32 additions and 12 deletions

View File

@ -9,6 +9,16 @@
{% endfor %}
</ul>
<h3>Setup</h3>
<ul>
{% assign pages = site.pages | sort: 'order' %}
{% for doc in pages %}
{% if doc.category == "setup" %}
<li><a href=".{{ doc.url }}">{{ doc.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
<h3>Online Projects</h3>
<ul>
{% assign pages = site.pages | sort: 'order' %}

View File

@ -3,7 +3,7 @@ title: Object File Formats
order: 40
---
All files for an object is located in the same folder, each folder corresponds to a package. Subpackages are organized under parent packages(directories) according to the logic described in http://docs.abapgit.org/ref-dot-abapgit.html
All files for an object are located in the same folder, each folder corresponds to a package. Subpackages are organized under parent packages(directories) according to the logic described in http://docs.abapgit.org/ref-dot-abapgit.html
# CLAS
Files corresponding to the editable parts in source based class builder or ABAP in Eclipse:

View File

@ -0,0 +1,8 @@
---
title: Development version
category: setup
order: 30
---
Install the abapGit development version using abapGit, either via online or offline projects.
Recommend keeping the compiled report in a different package, so it can be used as fallback in case of syntax errors.

View File

@ -7,15 +7,7 @@ order: 10
## ABAP Report ##
Copy the [ABAP code](https://raw.githubusercontent.com/abapGit/build/master/zabapgit.abap) into a new report via SE38 or SE80. To update abapGit to a newer version, replace the code in the report with the most recent.
To use the online feature, SSL must be setup. Offline projects will work behind firewalls and without SSL.
## STRUST/SSL setup(online projects only) ##
[SSL setup](guide-ssl-setup.html)
## Proxy setup(online projects only) ##
If your server is behind a proxy, it can be configured under Advanced -> Settings,
![](img/proxy.png)
To use the online feature, [SSL must be setup](guide-ssl-setup.html). Offline projects will work behind firewalls and without SSL.
## Done ##
Run report

View File

@ -0,0 +1,10 @@
---
title: Proxy configuration
category: setup
order: 20
---
Online projects only
If your server is behind a proxy, it can be configured under Advanced -> Settings,
![](img/proxy.png)

View File

@ -1,7 +1,7 @@
---
title: SSL setup
category: online projects
order: 70
category: setup
order: 10
---
##### Option A - Chrome #####