move development related information (#1454)

This commit is contained in:
Lars Hvam 2018-06-06 16:23:49 +02:00 committed by GitHub
parent 12c48ebb50
commit ac70d2feda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
17 changed files with 76 additions and 27 deletions

View File

@ -1,8 +1,15 @@
title: abapGit documentation
highlighter: rouge
collections_dir: collections
collections:
development:
output: true
defaults:
-
scope:
path: "" # an empty string here means all files in the project
- scope:
path: ""
values:
layout: "default"
- scope:
path: "_development"
values:
layout: "development"

View File

@ -1,8 +1,8 @@
<footer class="nav-footer wrap">
<div class="nav-refs">
<a href="https://github.com/larshp/abapGit">
<span class="mega-octicon octicon-mark-github"></span>
</a>
</div>
<div class="nav-refs">
<a href="https://github.com/larshp/abapGit">
<span class="mega-octicon octicon-mark-github"></span>
</a>
</div>
<footer>

View File

@ -1,8 +1,8 @@
<head>
<meta charset="utf-8">
<link rel="shortcut icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="highlight.css">
<link rel="shortcut icon" type="image/png" href="/img/favicon.png">
<link rel="stylesheet" href="/assets/main.css">
<link rel="stylesheet" href="/assets/highlight.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/octicons/4.4.0/font/octicons.min.css">
<title>{% if page.title %}{{ site.title }} - {{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
<meta name="description" content="{% if page.title %}{{ site.title }} - {{ page.title }}{% else %}{{ site.title }} - Home{% endif %}" />

View File

@ -1,6 +1,6 @@
<div class="page-head">
<div class="wrap">
<a href="./"><img class="head-logo" src="img/logo.svg" height="40" alt="abapGit"></a>
<span class="head-title"> &#x25BA; documentation</span>
</div>
<div class="wrap">
<a href="/"><img class="head-logo" src="/img/logo.svg" height="40" alt="abapGit"></a>
<span class="head-title"> &#x25BA; documentation</span>
</div>
</div>

View File

@ -47,4 +47,6 @@
<li><a href=".{{ doc.url }}">{{ doc.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
</ul>
<a href="/development">Development</a>

View File

@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
{% include header.html %}
<div class="container wrap">
<div class="nav">
<h3>Development</h3>
<ul>
{% assign pages = site.development | sort: 'order' %}
{% for doc in pages %}
{% if doc.title != "Development" %}
<li><a href="{{ doc.url }}">{{ doc.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
</div>
<div class="content">
<h1>{{ page.title }}</h1>
{{ content }}
</div>
</div>
{% include footer.html %}
</body>
</html>

View File

@ -1,6 +1,5 @@
---
title: abapGit API
category: other
title: API
order: 80
---

View File

@ -1,6 +1,5 @@
---
title: Contributing to abapGit
category: other
order: 90
---

View File

@ -0,0 +1,10 @@
---
title: Documentation
order: 10
---
Building /docs/ locally:
`bundle install`
`bundle exec jekyll serve --incremental --port $PORT --host $IP`

View File

@ -1,6 +1,5 @@
---
title: Object File Formats
category: other
order: 40
---

View File

@ -0,0 +1,8 @@
---
title: Development
order: 10
---
*******************************
Development related information

View File

@ -1,6 +1,5 @@
---
title: Technical Links
category: other
order: 50
---

View File

Before

Width:  |  Height:  |  Size: 764 B

After

Width:  |  Height:  |  Size: 764 B

View File

@ -1,7 +1,6 @@
---
title: Welcome
---
abapGit is a git client for ABAP developed in ABAP. It requires SAP BASIS version 702 or higher.
Latest build: [zabapgit.abap](https://raw.githubusercontent.com/abapGit/build/master/zabapgit.abap)

View File

@ -6,8 +6,8 @@ order: 45
abapGit uses a few external libraries, these are loaded via [cdnjs](https://cdnjs.com/about)
Library | License
:------------ | :------------
[octicons](https://github.com/primer/octicons) 4.4.0 | MIT
[jquery](https://github.com/jquery/jquery) 3.2.1 | MIT
[gitgraph](https://github.com/nicoespeon/gitgraph.js) 1.2.3 | MIT
Library | Version | License
:------------ | :------------ | :------------
[octicons](https://github.com/primer/octicons) | 4.4.0 | MIT
[jquery](https://github.com/jquery/jquery) | 3.2.1 | MIT
[gitgraph](https://github.com/nicoespeon/gitgraph.js) | 1.2.3 | MIT