From 5d157fba8abe7a2adeda72e048d131eb4418b0a4 Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Tue, 1 Dec 2020 12:40:49 +0100 Subject: [PATCH] remove building and licence sections for all extensions --- docs/extensions/accounts/building.md | 28 ------------------------ docs/extensions/glauth/building.md | 28 ------------------------ docs/extensions/glauth/license.md | 10 --------- docs/extensions/konnectd/building.md | 28 ------------------------ docs/extensions/ocis-phoenix/building.md | 18 --------------- docs/extensions/ocis-phoenix/license.md | 10 --------- docs/extensions/ocs/building.md | 28 ------------------------ docs/extensions/ocs/license.md | 10 --------- docs/extensions/proxy/building.md | 28 ------------------------ docs/extensions/settings/building.md | 28 ------------------------ docs/extensions/settings/license.md | 10 --------- docs/extensions/storage/building.md | 26 ---------------------- docs/extensions/storage/license.md | 10 --------- docs/extensions/store/building.md | 28 ------------------------ docs/extensions/store/license.md | 10 --------- docs/extensions/thumbnails/building.md | 28 ------------------------ docs/extensions/thumbnails/license.md | 10 --------- docs/extensions/webdav/building.md | 28 ------------------------ 18 files changed, 366 deletions(-) delete mode 100644 docs/extensions/accounts/building.md delete mode 100644 docs/extensions/glauth/building.md delete mode 100644 docs/extensions/glauth/license.md delete mode 100644 docs/extensions/konnectd/building.md delete mode 100644 docs/extensions/ocis-phoenix/building.md delete mode 100644 docs/extensions/ocis-phoenix/license.md delete mode 100644 docs/extensions/ocs/building.md delete mode 100644 docs/extensions/ocs/license.md delete mode 100644 docs/extensions/proxy/building.md delete mode 100644 docs/extensions/settings/building.md delete mode 100644 docs/extensions/settings/license.md delete mode 100644 docs/extensions/storage/building.md delete mode 100644 docs/extensions/storage/license.md delete mode 100644 docs/extensions/store/building.md delete mode 100644 docs/extensions/store/license.md delete mode 100644 docs/extensions/thumbnails/building.md delete mode 100644 docs/extensions/thumbnails/license.md delete mode 100644 docs/extensions/webdav/building.md diff --git a/docs/extensions/accounts/building.md b/docs/extensions/accounts/building.md deleted file mode 100644 index fa96cd0d1..000000000 --- a/docs/extensions/accounts/building.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Building" -date: 2018-05-02T00:00:00+00:00 -weight: 30 -geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/accounts -geekdocFilePath: building.md ---- - -{{< toc >}} - -As this project is built with Go, so you need to install that first. 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. After the installation of the required tools you need to get the sources: - -{{< highlight txt >}} -git clone https://github.com/owncloud/ocis-accounts.git -cd ocis-accounts -{{< / highlight >}} - -All required tool besides Go itself and make are bundled or getting automatically installed within the `GOPATH`. All commands to build this project are part of our `Makefile`. - -## Backend - -{{< highlight txt >}} -make generate -make build -{{< / highlight >}} - -Finally you should have the binary within the `bin/` folder now, give it a try with `./bin/ocis-accounts -h` to see all available options and subcommands. diff --git a/docs/extensions/glauth/building.md b/docs/extensions/glauth/building.md deleted file mode 100644 index bdfdb6b76..000000000 --- a/docs/extensions/glauth/building.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Building" -date: 2018-05-02T00:00:00+00:00 -weight: 30 -geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/glauth -geekdocFilePath: building.md ---- - -{{< toc >}} - -As this project is built with Go, so you need to install that first. 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. After the installation of the required tools you need to get the sources: - -{{< highlight txt >}} -git clone https://github.com/owncloud/ocis-glauth.git -cd ocis-glauth -{{< / highlight >}} - -All required tool besides Go itself and make are bundled or getting automatically installed within the `GOPATH`. All commands to build this project are part of our `Makefile`. - -## Backend - -{{< highlight txt >}} -make generate -make build -{{< / highlight >}} - -Finally you should have the binary within the `bin/` folder now, give it a try with `./bin/ocis-glauth -h` to see all available options. diff --git a/docs/extensions/glauth/license.md b/docs/extensions/glauth/license.md deleted file mode 100644 index 199230269..000000000 --- a/docs/extensions/glauth/license.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: "License" -date: 2018-05-02T00:00:00+00:00 -weight: 40 -geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/glauth -geekdocFilePath: license.md ---- - -This project is licensed under the [Apache 2.0](https://github.com/owncloud/ocis/glauth/blob/master/LICENSE) license. For the license of the used libraries you have to check the respective sources. diff --git a/docs/extensions/konnectd/building.md b/docs/extensions/konnectd/building.md deleted file mode 100644 index 452cc27ed..000000000 --- a/docs/extensions/konnectd/building.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Building" -date: 2020-02-21T00:00:00+00:00 -weight: 30 -geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/konnectd -geekdocFilePath: building.md ---- - -{{< toc >}} - -As this project is built with Go, so you need to install that first. 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. After the installation of the required tools you need to get the sources: - -{{< highlight txt >}} -git clone https://github.com/owncloud/ocis-konnectd.git -cd ocis-konnectd -{{< / highlight >}} - -All required tool besides Go itself and make are bundled or getting automatically installed within the `GOPATH`. All commands to build this project are part of our `Makefile`. - -## Backend - -{{< highlight txt >}} -make generate -make build -{{< / highlight >}} - -Finally you should have the binary within the `bin/` folder now, give it a try with `./bin/ocis-konnectd -h` to see all available options and subcommands. diff --git a/docs/extensions/ocis-phoenix/building.md b/docs/extensions/ocis-phoenix/building.md deleted file mode 100644 index 8b8bcf168..000000000 --- a/docs/extensions/ocis-phoenix/building.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -title: "Building" -date: 2018-05-02T00:00:00+00:00 -weight: 30 -geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/ocis-phoenix -geekdocFilePath: building.md ---- - -## Backend - -{{< highlight txt >}} -cd ocis-phoenix -make generate -make build -{{< / highlight >}} - -The above commands will download a [Phoenix](https://github.com/owncloud/phoenix) release and embed it into the binary. Finally you should have the binary within the `bin/` folder now, give it a try with `./bin/ocis-phoenix -h` to see all available options. diff --git a/docs/extensions/ocis-phoenix/license.md b/docs/extensions/ocis-phoenix/license.md deleted file mode 100644 index c479a90c9..000000000 --- a/docs/extensions/ocis-phoenix/license.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: "License" -date: 2018-05-02T00:00:00+00:00 -weight: 50 -geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/ocis-phoenix -geekdocFilePath: license.md ---- - -This project is licensed under the [Apache 2.0](https://github.com/owncloud/ocis/ocis-phoenix/blob/master/LICENSE) license. For the license of the used libraries you have to check the respective sources. diff --git a/docs/extensions/ocs/building.md b/docs/extensions/ocs/building.md deleted file mode 100644 index 13e6c417c..000000000 --- a/docs/extensions/ocs/building.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Building" -date: 2018-05-02T00:00:00+00:00 -weight: 30 -geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/ocs -geekdocFilePath: building.md ---- - -{{< toc >}} - -As this project is built with Go, so you need to install that first. 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.12. After the installation of the required tools you need to get the sources: - -{{< highlight txt >}} -git clone https://github.com/owncloud/ocis-ocs.git -cd ocis-ocs -{{< / highlight >}} - -All required tool besides Go itself and make are bundled or getting automatically installed within the `GOPATH`. All commands to build this project are part of our `Makefile`. - -## Backend - -{{< highlight txt >}} -make generate -make build -{{< / highlight >}} - -Finally you should have the binary within the `bin/` folder now, give it a try with `./bin/ocis-ocs -h` to see all available options. diff --git a/docs/extensions/ocs/license.md b/docs/extensions/ocs/license.md deleted file mode 100644 index 380192a0f..000000000 --- a/docs/extensions/ocs/license.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: "License" -date: 2018-05-02T00:00:00+00:00 -weight: 40 -geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/ocs -geekdocFilePath: license.md ---- - -This project is licensed under the [Apache 2.0](https://github.com/owncloud/ocis/ocs/blob/master/LICENSE) license. For the license of the used libraries you have to check the respective sources. diff --git a/docs/extensions/proxy/building.md b/docs/extensions/proxy/building.md deleted file mode 100644 index 62b2519f7..000000000 --- a/docs/extensions/proxy/building.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Building" -date: 2018-05-02T00:00:00+00:00 -weight: 30 -geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/proxy -geekdocFilePath: building.md ---- - -{{< toc >}} - -As this project is built with Go, so you need to install that first. 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. After the installation of the required tools you need to get the sources: - -{{< highlight txt >}} -git clone https://github.com/owncloud/ocis-proxy.git -cd ocis-proxy -{{< / highlight >}} - -All required tool besides Go itself and make are bundled or getting automatically installed within the `GOPATH`. All commands to build this project are part of our `Makefile`. - -## Backend - -{{< highlight txt >}} -make generate -make build -{{< / highlight >}} - -Finally you should have the binary within the `bin/` folder now, give it a try with `./bin/ocis-proxy -h` to see all available options and subcommands. diff --git a/docs/extensions/settings/building.md b/docs/extensions/settings/building.md deleted file mode 100644 index 726258d59..000000000 --- a/docs/extensions/settings/building.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Building" -date: 2018-05-02T00:00:00+00:00 -weight: 30 -geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/settings -geekdocFilePath: building.md ---- - -{{< toc >}} - -As this project is built with Go, so you need to install that first. 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.12. After the installation of the required tools you need to get the sources: - -{{< highlight txt >}} -git clone https://github.com/owncloud/ocis-settings.git -cd ocis-settings -{{< / highlight >}} - -All required tool besides Go itself and make are bundled or getting automatically installed within the `GOPATH`. All commands to build this project are part of our `Makefile`. - -## Backend - -{{< highlight txt >}} -make generate -make build -{{< / highlight >}} - -Finally you should have the binary within the `bin/` folder now, give it a try with `./bin/ocis-settings -h` to see all available options. diff --git a/docs/extensions/settings/license.md b/docs/extensions/settings/license.md deleted file mode 100644 index 6382020fd..000000000 --- a/docs/extensions/settings/license.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: "License" -date: 2018-05-02T00:00:00+00:00 -weight: 90 -geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/settings -geekdocFilePath: license.md ---- - -This project is licensed under the [Apache 2.0](https://github.com/owncloud/ocis/settings/blob/master/LICENSE) license. For the license of the used libraries you have to check the respective sources. diff --git a/docs/extensions/storage/building.md b/docs/extensions/storage/building.md deleted file mode 100644 index 737937a06..000000000 --- a/docs/extensions/storage/building.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: "Building" -date: 2018-05-02T00:00:00+00:00 -weight: 30 -geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/storage -geekdocFilePath: building.md ---- - -As this project is built with Go, so you need to install that first. 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. After the installation of the required tools you need to get the sources: - -{{< highlight txt >}} -git clone https://github.com/owncloud/ocis.git -cd ocis/storage -{{< / highlight >}} - -All required tool besides Go itself and make are bundled or getting automatically installed within the `GOPATH`. All commands to build this project are part of our `Makefile`. - - -### Backend - -{{< highlight txt >}} -make build -{{< / highlight >}} - -The above command should produce the binary within the `bin/` folder now, give it a try with `./bin/ocis-reva -h` to see all available options. diff --git a/docs/extensions/storage/license.md b/docs/extensions/storage/license.md deleted file mode 100644 index 6852e63fa..000000000 --- a/docs/extensions/storage/license.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: "License" -date: 2018-05-02T00:00:00+00:00 -weight: 40 -geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/storage -geekdocFilePath: license.md ---- - -This project is licensed under the [Apache 2.0](https://github.com/owncloud/ocis/ocis-revablob/master/LICENSE) license. For the license of the used libraries you have to check the respective sources. diff --git a/docs/extensions/store/building.md b/docs/extensions/store/building.md deleted file mode 100644 index 2dd085713..000000000 --- a/docs/extensions/store/building.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Building" -date: 2018-05-02T00:00:00+00:00 -weight: 30 -geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/store -geekdocFilePath: building.md ---- - -{{< toc >}} - -As this project is built with Go, so you need to install that first. 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.12. After the installation of the required tools you need to get the sources: - -{{< highlight txt >}} -git clone https://github.com/owncloud/ocis-store.git -cd ocis-store -{{< / highlight >}} - -All required tool besides Go itself and make are bundled or getting automatically installed within the `GOPATH`. All commands to build this project are part of our `Makefile`. - -## Backend - -{{< highlight txt >}} -make generate -make build -{{< / highlight >}} - -Finally you should have the binary within the `bin/` folder now, give it a try with `./bin/ocis-store -h` to see all available options. diff --git a/docs/extensions/store/license.md b/docs/extensions/store/license.md deleted file mode 100644 index b9fbea3ef..000000000 --- a/docs/extensions/store/license.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: "License" -date: 2018-05-02T00:00:00+00:00 -weight: 40 -geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/store -geekdocFilePath: license.md ---- - -This project is licensed under the [Apache 2.0](https://github.com/owncloud/ocis/store/blob/master/LICENSE) license. For the license of the used libraries you have to check the respective sources. diff --git a/docs/extensions/thumbnails/building.md b/docs/extensions/thumbnails/building.md deleted file mode 100644 index 0cb8ce3d1..000000000 --- a/docs/extensions/thumbnails/building.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Building" -date: 2018-05-02T00:00:00+00:00 -weight: 30 -geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/thumbnails -geekdocFilePath: building.md ---- - -{{< toc >}} - -As this project is built with Go, so you need to install that first. 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.12. After the installation of the required tools you need to get the sources: - -{{< highlight txt >}} -git clone https://github.com/owncloud/ocis-thubnails.git -cd {{ Name }} -{{< / highlight >}} - -All required tool besides Go itself and make are bundled or getting automatically installed within the `Gopath`. All commands to build this project are part of our `Makefile`. - -## Backend - -{{< highlight txt >}} -make generate -make build -{{< / highlight >}} - -Finally you should have the binary within the `bin/` folder now, give it a try with `./bin/ocis-thumbnails -h` to see all available options. diff --git a/docs/extensions/thumbnails/license.md b/docs/extensions/thumbnails/license.md deleted file mode 100644 index 8aaf04702..000000000 --- a/docs/extensions/thumbnails/license.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -title: "License" -date: 2018-05-02T00:00:00+00:00 -weight: 60 -geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/thumbnails -geekdocFilePath: license.md ---- - -This project is licensed under the [Apache 2.0](https://github.com/owncloud/ocis/thumbnails/blob/master/LICENSE) license. For the license of the used libraries you have to check the respective sources. diff --git a/docs/extensions/webdav/building.md b/docs/extensions/webdav/building.md deleted file mode 100644 index f4087d732..000000000 --- a/docs/extensions/webdav/building.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: "Building" -date: 2018-05-02T00:00:00+00:00 -weight: 30 -geekdocRepo: https://github.com/owncloud/ocis -geekdocEditPath: edit/master/docs/extensions/webdav -geekdocFilePath: building.md ---- - -{{< toc >}} - -As this project is built with Go, so you need to install that first. 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.12. After the installation of the required tools you need to get the sources: - -{{< highlight txt >}} -git clone https://github.com/owncloud/ocis-webdav.git -cd ocis-webdav -{{< / highlight >}} - -All required tool besides Go itself and make are bundled or getting automatically installed within the `GOPATH`. All commands to build this project are part of our `Makefile`. - -### Backend - -{{< highlight txt >}} -make generate -make build -{{< / highlight >}} - -Finally you should have the binary within the `bin/` folder now, give it a try with `./bin/ocis-webdav -h` to see all available options.