mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 03:36:32 +08:00
move development related information (#1454)
This commit is contained in:
parent
12c48ebb50
commit
ac70d2feda
|
@ -1,8 +1,15 @@
|
||||||
title: abapGit documentation
|
title: abapGit documentation
|
||||||
highlighter: rouge
|
highlighter: rouge
|
||||||
|
collections_dir: collections
|
||||||
|
collections:
|
||||||
|
development:
|
||||||
|
output: true
|
||||||
defaults:
|
defaults:
|
||||||
-
|
- scope:
|
||||||
scope:
|
path: ""
|
||||||
path: "" # an empty string here means all files in the project
|
|
||||||
values:
|
values:
|
||||||
layout: "default"
|
layout: "default"
|
||||||
|
- scope:
|
||||||
|
path: "_development"
|
||||||
|
values:
|
||||||
|
layout: "development"
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<footer class="nav-footer wrap">
|
<footer class="nav-footer wrap">
|
||||||
<div class="nav-refs">
|
<div class="nav-refs">
|
||||||
<a href="https://github.com/larshp/abapGit">
|
<a href="https://github.com/larshp/abapGit">
|
||||||
<span class="mega-octicon octicon-mark-github"></span>
|
<span class="mega-octicon octicon-mark-github"></span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<footer>
|
<footer>
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<link rel="shortcut icon" type="image/png" href="favicon.png">
|
<link rel="shortcut icon" type="image/png" href="/img/favicon.png">
|
||||||
<link rel="stylesheet" href="main.css">
|
<link rel="stylesheet" href="/assets/main.css">
|
||||||
<link rel="stylesheet" href="highlight.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">
|
<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>
|
<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 %}" />
|
<meta name="description" content="{% if page.title %}{{ site.title }} - {{ page.title }}{% else %}{{ site.title }} - Home{% endif %}" />
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<div class="page-head">
|
<div class="page-head">
|
||||||
<div class="wrap">
|
<div class="wrap">
|
||||||
<a href="./"><img class="head-logo" src="img/logo.svg" height="40" alt="abapGit"></a>
|
<a href="/"><img class="head-logo" src="/img/logo.svg" height="40" alt="abapGit"></a>
|
||||||
<span class="head-title"> ► documentation</span>
|
<span class="head-title"> ► documentation</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -48,3 +48,5 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<a href="/development">Development</a>
|
27
docs/_layouts/development.html
Normal file
27
docs/_layouts/development.html
Normal 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>
|
|
@ -1,6 +1,5 @@
|
||||||
---
|
---
|
||||||
title: abapGit API
|
title: API
|
||||||
category: other
|
|
||||||
order: 80
|
order: 80
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
---
|
---
|
||||||
title: Contributing to abapGit
|
title: Contributing to abapGit
|
||||||
category: other
|
|
||||||
order: 90
|
order: 90
|
||||||
---
|
---
|
||||||
|
|
10
docs/collections/_development/docs.md
Normal file
10
docs/collections/_development/docs.md
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
---
|
||||||
|
title: Documentation
|
||||||
|
order: 10
|
||||||
|
---
|
||||||
|
|
||||||
|
Building /docs/ locally:
|
||||||
|
|
||||||
|
`bundle install`
|
||||||
|
|
||||||
|
`bundle exec jekyll serve --incremental --port $PORT --host $IP`
|
|
@ -1,6 +1,5 @@
|
||||||
---
|
---
|
||||||
title: Object File Formats
|
title: Object File Formats
|
||||||
category: other
|
|
||||||
order: 40
|
order: 40
|
||||||
---
|
---
|
||||||
|
|
8
docs/collections/_development/index.md
Normal file
8
docs/collections/_development/index.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
title: Development
|
||||||
|
order: 10
|
||||||
|
---
|
||||||
|
|
||||||
|
*******************************
|
||||||
|
|
||||||
|
Development related information
|
|
@ -1,6 +1,5 @@
|
||||||
---
|
---
|
||||||
title: Technical Links
|
title: Technical Links
|
||||||
category: other
|
|
||||||
order: 50
|
order: 50
|
||||||
---
|
---
|
||||||
|
|
Before Width: | Height: | Size: 764 B After Width: | Height: | Size: 764 B |
|
@ -1,7 +1,6 @@
|
||||||
---
|
---
|
||||||
title: Welcome
|
title: Welcome
|
||||||
---
|
---
|
||||||
|
|
||||||
abapGit is a git client for ABAP developed in ABAP. It requires SAP BASIS version 702 or higher.
|
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)
|
Latest build: [zabapgit.abap](https://raw.githubusercontent.com/abapGit/build/master/zabapgit.abap)
|
||||||
|
|
|
@ -6,8 +6,8 @@ order: 45
|
||||||
|
|
||||||
abapGit uses a few external libraries, these are loaded via [cdnjs](https://cdnjs.com/about)
|
abapGit uses a few external libraries, these are loaded via [cdnjs](https://cdnjs.com/about)
|
||||||
|
|
||||||
Library | License
|
Library | Version | License
|
||||||
:------------ | :------------
|
:------------ | :------------ | :------------
|
||||||
[octicons](https://github.com/primer/octicons) 4.4.0 | MIT
|
[octicons](https://github.com/primer/octicons) | 4.4.0 | MIT
|
||||||
[jquery](https://github.com/jquery/jquery) 3.2.1 | MIT
|
[jquery](https://github.com/jquery/jquery) | 3.2.1 | MIT
|
||||||
[gitgraph](https://github.com/nicoespeon/gitgraph.js) 1.2.3 | MIT
|
[gitgraph](https://github.com/nicoespeon/gitgraph.js) | 1.2.3 | MIT
|
||||||
|
|
Loading…
Reference in New Issue
Block a user