This commit is contained in:
larshp 2017-06-11 11:23:31 +00:00
parent d663aef5fc
commit a17b32a7b0
23 changed files with 93 additions and 89 deletions

View File

@ -1,54 +0,0 @@
- title: Guides
items:
- file: guide-install
title: Installation
- file: guide-upgrade
title: Upgrading
- file: guide-uninstall
title: Uninstalling
- title: Online projects
subitems:
- file: guide-online-install
title: Installing a repository
- title: Keeping code up to date
file: guide-online-update
- title: Uninstalling a repository
file: guide-online-uninstall
- title: Your first abapGit project
file: guide-first-project
- title: Moving package into git
file: guide-moving-package
- title: Contributing to a project
file: guide-contributing
- title: Offline projects
subitems:
- title: Importing zip
file: guide-import-zip
- title: Exporting zip
file: guide-export-zip
- title: Regular backup
file: guide-regular-backup
- title: Migrating from SAPlink
file: guide-saplink
- title: Reference
items:
- title: .abapgit.xml
file: ref-dot-abapgit
- title: Write protect
file: ref-write-protect
- title: Supported object types
file: ref-supported
- title: Other
items:
- title: Articles and Presentations
file: other-articles-and-presentations
- title: ZABAPGIT_TEST_SSL
file: other-test-ssl
- title: XML mismatch
file: other-xml-mismatch
- title: Object File Formats
file: other-file-formats
- title: Technical Links
file: other-technical-links

View File

@ -1,34 +1,50 @@
<!-- Navigation --> <!-- Navigation -->
{% for section in site.data.navigation %} <h3>Getting Started</h3>
<div class="nav-section">
{% if section.file %}
<a href="{{ section.file }}.html">
{% endif %}
<b>{{ section.title }}</b>
{% if section.file %}
</a>
{% endif %}
<ul> <ul>
{% for item in section.items %} {% assign pages = site.pages | sort: 'order' %}
<li> {% for doc in pages %}
{% if item.file %} {% if doc.category == "getting-started" %}
<a href="{{ item.file }}.html"> <li><a href=".{{ doc.url }}">{{ doc.title }}</a></li>
{% endif %} {% endif %}
{{ item.title }}
{% if item.file %}
</a>
{% endif %}
{% if item.subitems %}
<ul>
{% for subitem in item.subitems %}
<li>
<a href="{{ subitem.file }}.html">{{ subitem.title }}</a>
</li>
{% endfor %} {% endfor %}
</ul> </ul>
<h3>Online Projects</h3>
<ul>
{% assign pages = site.pages | sort: 'order' %}
{% for doc in pages %}
{% if doc.category == "online projects" %}
<li><a href=".{{ doc.url }}">{{ doc.title }}</a></li>
{% endif %} {% endif %}
</li>
{% endfor %} {% endfor %}
</ul> </ul>
</div>
<h3>Offline Projects</h3>
<ul>
{% assign pages = site.pages | sort: 'order' %}
{% for doc in pages %}
{% if doc.category == "offline projects" %}
<li><a href=".{{ doc.url }}">{{ doc.title }}</a></li>
{% endif %}
{% endfor %} {% endfor %}
</ul>
<h3>Reference</h3>
<ul>
{% assign pages = site.pages | sort: 'order' %}
{% for doc in pages %}
{% if doc.category == "reference" %}
<li><a href=".{{ doc.url }}">{{ doc.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
<h3>Other</h3>
<ul>
{% assign pages = site.pages | sort: 'order' %}
{% for doc in pages %}
{% if doc.category == "other" %}
<li><a href=".{{ doc.url }}">{{ doc.title }}</a></li>
{% endif %}
{% endfor %}
</ul>

View File

@ -1,5 +1,7 @@
--- ---
title: Contributing to a project title: Contributing to a project
category: online projects
order: 60
--- ---
* Fork the repository * Fork the repository

View File

@ -1,5 +1,7 @@
--- ---
title: Export zip title: Export zip
category: offline projects
order: 20
--- ---
Assuming the offline project has been created. Assuming the offline project has been created.

View File

@ -1,5 +1,7 @@
--- ---
title: First project title: First project
category: online projects
order: 40
--- ---
## Repository Setup ## ## Repository Setup ##

View File

@ -1,5 +1,7 @@
--- ---
title: Import zip title: Import zip
category: offline projects
order: 10
--- ---
1: Run report ZABAPGIT via SE38 or SA38 1: Run report ZABAPGIT via SE38 or SA38

View File

@ -1,5 +1,7 @@
--- ---
title: Installation title: Installation
category: getting-started
order: 10
--- ---
## ABAP Report ## ## ABAP Report ##

View File

@ -1,5 +1,7 @@
--- ---
title: Moving existing package contents into git title: Moving package into git
category: online projects
order: 50
--- ---
You have an existing package in your system that you want to copy to a new git repository, You have an existing package in your system that you want to copy to a new git repository,

View File

@ -1,5 +1,7 @@
--- ---
title: Installing online repo title: Installing online repo
category: online projects
order: 10
--- ---
* Start ZABAPGIT * Start ZABAPGIT

View File

@ -1,5 +1,7 @@
--- ---
title: Uninstall repository title: Uninstall repository
category: online projects
order: 30
--- ---
* Start ZABAPGIT * Start ZABAPGIT

View File

@ -1,5 +1,7 @@
--- ---
title: Keeping code up to date title: Keeping code up to date
category: online projects
order: 20
--- ---
* Start ZABAPGIT, it will automatically compare local and remote code. If code is updated in the remote repository a "pull" link will appear * Start ZABAPGIT, it will automatically compare local and remote code. If code is updated in the remote repository a "pull" link will appear

View File

@ -1,5 +1,7 @@
--- ---
title: Regular backup title: Regular backup
category: other
order: 10
--- ---
Editing Using abapGit and abapGitServer for regular backup Editing Using abapGit and abapGitServer for regular backup

View File

@ -1,5 +1,7 @@
--- ---
title: Migrating from SAPlink title: Migrating from SAPlink
category: other
order: 20
--- ---
1: Install the slinkee/nuggets into the ABAP system using saplink 1: Install the slinkee/nuggets into the ABAP system using saplink

View File

@ -1,5 +1,7 @@
--- ---
title: Uinstalling abapGit title: Uninstalling
category: getting-started
order: 30
--- ---
* Delete ABAP reports ZABAPGIT* using SE38 or SE80 * Delete ABAP reports ZABAPGIT* using SE38 or SE80

View File

@ -1,5 +1,7 @@
--- ---
title: Upgrading abapGit title: Upgrading
category: getting-started
order: 20
--- ---

View File

@ -1,5 +1,7 @@
--- ---
title: Articles and Presentations title: Articles and Presentations
category: other
order: 30
--- ---
### 2014 ### 2014

View File

@ -1,5 +1,7 @@
--- ---
title: Object File Formats title: Object File Formats
category: other
order: 40
--- ---
# CLAS # CLAS

View File

@ -1,5 +1,7 @@
--- ---
title: Technical Links title: Technical Links
category: other
order: 50
--- ---
Collection of links to various git related documentation, Collection of links to various git related documentation,

View File

@ -1,5 +1,7 @@
--- ---
title: ZABAPGIT_TEST_SSL title: ZABAPGIT_TEST_SSL
category: other
order: 60
--- ---
Following report can be used to test SSL connection to github, Following report can be used to test SSL connection to github,

View File

@ -1,5 +1,7 @@
--- ---
title: XML Mismatch title: XML Mismatch
category: other
order: 70
--- ---
### For end-users ### For end-users

View File

@ -1,5 +1,7 @@
--- ---
title: .abapgit.xml title: .abapgit.xml
category: reference
order: 10
--- ---
**.abapgit.xml** is a special abapGit file. It contains meta information of the abapGit project. **.abapgit.xml** is a special abapGit file. It contains meta information of the abapGit project.

View File

@ -1,5 +1,7 @@
--- ---
title: Supported object types title: Supported object types
category: reference
order: 20
--- ---

View File

@ -1,5 +1,7 @@
--- ---
title: Write protect title: Write protect
category: reference
order: 30
--- ---
The write protected repository feature will make sure users cannot overwrite objects in the SAP system with objects from the git repository. So it helps enforcing that data can only go from the SAP system to the Git repository. The write protected repository feature will make sure users cannot overwrite objects in the SAP system with objects from the git repository. So it helps enforcing that data can only go from the SAP system to the Git repository.