fix edit path

This commit is contained in:
Artur Neumann
2020-10-12 13:38:50 +05:45
parent 4a77f6ca8b
commit 4f3bc0c258
17 changed files with 28 additions and 28 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ title: "Development"
date: 2020-10-01T20:35:00+01:00
weight: -12
geekdocRepo: https://github.com/owncloud/ocis
geekdocEditPath: edit/master/docs/development
geekdocEditPath: edit/master/docs/ocis/development
geekdocFilePath: _index.md
---
+3 -3
View File
@@ -3,7 +3,7 @@ title: "Build the documentation"
date: 2020-07-27T08:39:38+00:00
weight: 99
geekdocRepo: https://github.com/owncloud/ocis
geekdocEditPath: edit/master/docs/development
geekdocEditPath: edit/master/docs/ocis/development
geekdocFilePath: building-docs.md
---
@@ -26,11 +26,11 @@ hugo -D server
Then open "http://localhost:1313/"
When making changes to the docs, run
When making changes to the docs, run
```bash
rsync -ax --delete ../docs/ content/
```
```
in the hugo folder and the server will pick up the changes and reload the page automatically.
+2 -2
View File
@@ -3,7 +3,7 @@ title: "Build ocis"
date: 2020-02-27T20:35:00+01:00
weight: 30
geekdocRepo: https://github.com/owncloud/ocis
geekdocEditPath: edit/master/docs/development
geekdocEditPath: edit/master/docs/ocis/development
geekdocFilePath: building.md
---
@@ -11,7 +11,7 @@ geekdocFilePath: building.md
All required tools besides `go` and `make` are bundled or getting automatically installed within the `GOPATH`. All commands to build this project are part of our `Makefile`.
The installation of Go is out of the scope of this document, please follow the official documentation for [Go](https://golang.org/doc/install), to build this project you have to install Go >= v1.13.
The installation of Go is out of the scope of this document, please follow the official documentation for [Go](https://golang.org/doc/install), to build this project you have to install Go >= v1.13.
## Get the sources
+4 -4
View File
@@ -3,7 +3,7 @@ title: "Debugging"
date: 2020-03-19T08:21:00+01:00
weight: 50
geekdocRepo: https://github.com/owncloud/ocis
geekdocEditPath: edit/master/docs/development
geekdocEditPath: edit/master/docs/ocis/development
geekdocFilePath: debugging.md
---
@@ -13,7 +13,7 @@ As a single binary for easy deployment running `ocis server` just forks itself t
Ultimately, we want to be able to stop a single service using eg. `ocis kill phoenix` so that you can start the service you want to debug in debug mode. We need to [change the way we fork processes](https://github.com/owncloud/ocis/issues/77) though, otherwise the runtime will automatically restart a service if killed.
### Start ocis
### Start ocis
For debugging there are two workflows that work well, depending on your preferences.
@@ -146,7 +146,7 @@ This popped up when I tried to add `marie` as a collaborator in phoenix. That tr
```console
# curl 'https://localhost:9200/ocs/v1.php/apps/files_sharing/api/v1/shares' -d 'shareType=0&shareWith=marie&path=%2FNeuer+Ordner&permissions=1' -u einstein:relativity -k -v | xmllint -format -
[... headers ...]
[... headers ...]
<?xml version="1.0" encoding="UTF-8"?>
<ocs>
<meta>
@@ -182,7 +182,7 @@ The last line gives us a hint where the log message originated: `.../github.com/
89: // WriteOCSResponse handles writing ocs responses in json and xml
90: func WriteOCSResponse(w http.ResponseWriter, r *http.Request, res *Response, err error) {
91: var encoded []byte
92:
92:
93: if err != nil {
94: appctx.GetLogger(r.Context()).Error().Err(err).Msg(res.OCS.Meta.Message)
95: }
+1 -1
View File
@@ -3,7 +3,7 @@ title: "Getting Started with Development"
date: 2020-07-07T20:35:00+01:00
weight: 15
geekdocRepo: https://github.com/owncloud/ocis
geekdocEditPath: edit/master/docs/development
geekdocEditPath: edit/master/docs/ocis/development
geekdocFilePath: getting-started.md
---
+1 -1
View File
@@ -3,7 +3,7 @@ title: "Testing"
date: 2018-05-02T00:00:00+00:00
weight: 37
geekdocRepo: https://github.com/owncloud/ocis
geekdocEditPath: edit/master/docs/development
geekdocEditPath: edit/master/docs/ocis/development
geekdocFilePath: testing.md
---
+1 -1
View File
@@ -3,7 +3,7 @@ title: "Tracing"
date: 2020-05-13T12:09:00+01:00
weight: 55
geekdocRepo: https://github.com/owncloud/ocis
geekdocEditPath: edit/master/docs/development
geekdocEditPath: edit/master/docs/ocis/development
geekdocFilePath: tracing.md
---