Skip to content
This repository was archived by the owner on Apr 21, 2021. It is now read-only.

Commit 7fe092f

Browse files
committed
Merge branch '4.3'
2 parents 68e1209 + d324d8a commit 7fe092f

File tree

7 files changed

+19
-29
lines changed

7 files changed

+19
-29
lines changed

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
8.0

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ env:
1111
sudo: required
1212

1313
before_install:
14-
- sudo apt-get update
15-
- sudo apt-get install oracle-java8-installer
16-
- sudo update-java-alternatives -s java-8-oracle
14+
- nvm install 8.0
1715

1816
install:
1917
- sudo apt-get update

Makefile

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ help:
1212
@echo "Other commands:"
1313
@echo " make build Builds HTML version of all books"
1414
@echo " make build-pdf Builds PDFs for the user manual"
15-
@echo " make validate Builds books and validates for invalid HTML output"
1615
@echo " make install Installs latest GitBook and dependencies"
1716
@echo ""
1817

@@ -65,12 +64,4 @@ install-python:
6564
@echo "--> You must have Python virtualenv"
6665
@virtualenv python_modules
6766

68-
validate: build install-python
69-
@python_modules/bin/pip install html5validator
70-
@python_modules/bin/python2.7 python_modules/bin/html5validator --root manual/_book/ --ignore "gitbook/plugins" "element must have an" "A document must not include both" "Duplicate ID"
71-
@python_modules/bin/python2.7 python_modules/bin/html5validator --root cookbook/_book/ --ignore "gitbook/plugins" "element must have an" "A document must not include both" "Duplicate ID"
72-
@python_modules/bin/python2.7 python_modules/bin/html5validator --root api/_book/ --ignore "gitbook/plugins" "element must have an" "A document must not include both" "Duplicate ID"
73-
@python_modules/bin/python2.7 python_modules/bin/html5validator --root extending-contao4/_book/ --ignore "gitbook/plugins" "element must have an" "A document must not include both" "Duplicate ID"
74-
@python_modules/bin/python2.7 python_modules/bin/html5validator --root manager/_book/ --ignore "gitbook/plugins" "element must have an" "A document must not include both" "Duplicate ID"
75-
7667
deploy: build build-pdf

manual/book.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"piwik",
1010
"toggle-chapters",
1111
"image-captions",
12-
"versions",
12+
"versions-select",
1313
"canonical-link"
1414
],
1515
"links": {
@@ -38,7 +38,7 @@
3838
"versions": {
3939
"gitbookConfigURL": "https://raw.githubusercontent.com/contao/docs/master/manual/book.json",
4040
"options": [
41-
{ "value": "https://docs.contao.org/books/manual/4.3", "text": "Contao 4.3", "selected": true },
41+
{ "value": "https://docs.contao.org/books/manual/4.3", "text": "Contao 4.3" },
4242
{ "value": "https://docs.contao.org/books/manual/4.2", "text": "Contao 4.2" },
4343
{ "value": "https://docs.contao.org/books/manual/4.0", "text": "Contao 4.0" },
4444
{ "value": "https://docs.contao.org/books/manual/3.5", "text": "Contao 3.5" },

manual/de/01-installation/contao-installieren.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ curl -L http://download.contao.org/3.5.2 | tar -xzp
2828

2929
### Installation mit Composer
3030

31-
Mit Composer kann Contao über die [contao/standard-edition][3] installiert
31+
Mit Composer kann Contao über die [contao/managed-edition][3] installiert
3232
werden.
3333

3434
Als Erstes muss [Composer verfügbar sein][4], welcher mit folgendem Befehl
@@ -44,7 +44,7 @@ Unter Windows erfolgt die Installation mittels dem [Installer][5].
4444
Nun kann die Installation von Contao mit folgendem Befehl gestartet werden:
4545

4646
```bash
47-
composer create-project contao/standard-edition <ziel>
47+
composer create-project --no-dev contao/managed-edition <ziel>
4848
```
4949

5050
Geben Sie als `<ziel>` den Ordner ein, in welchen die Contao-Dateien
@@ -54,7 +54,7 @@ automatisch angelegt.
5454
> #### info:: Hinweis
5555
> Der oben erwähnte Befehl installiert immer die neuste stabile Version.
5656
> Um eine andere Version zu installieren, kann diese im Befehl wie folgt eingegeben
57-
> werden: `composer create-project contao/standard-edition:4.1.3 <ziel>`
57+
> werden: `composer create-project contao/managed-edition:4.3.10 <ziel>`
5858
5959
<!-- Quote break -->
6060

@@ -156,8 +156,8 @@ Backend-Anmeldung weiter.
156156

157157
[1]: https://contao.org/de/download.html
158158
[2]: http://www.winscp.net
159-
[3]: https://github.com/contao/standard-edition
159+
[3]: https://github.com/contao/managed-edition
160160
[4]: https://getcomposer.org/download/
161161
[5]: https://getcomposer.org/doc/00-intro.md#using-the-installer
162162
[6]: http://symfony.com/doc/current/reference/configuration/framework.html#secret
163-
[7]: https://docs.contao.org/books/cookbook/en/folder-structure.html
163+
[7]: https://docs.contao.org/books/cookbook/en/folder-structure.html

manual/en/01-installation/installing-contao.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ curl -L http://download.contao.org/3.5.2 | tar -xzp
2828

2929
### Installing with Composer
3030

31-
You can also install Contao with Composer using the [contao/standard-edition][3]
31+
You can also install Contao with Composer using the [contao/managed-edition][3]
3232
repository.
3333

3434
First of all, you must [install Composer][4]. It can be installed globally with
@@ -44,7 +44,7 @@ On Windows, you can download and run the [installer][5].
4444
Now, you can run the installation process of Contao with the following command:
4545

4646
```bash
47-
composer create-project contao/standard-edition <target>
47+
composer create-project contao/managed-edition <target>
4848
```
4949

5050
You have to replace the `<target>` parameter with a path to a folder where the
@@ -54,7 +54,7 @@ created automatically.
5454
> #### info:: Note
5555
> The command above always installs the latest stable version. If you
5656
> want to install a specific version, you must insert it in the command as for
57-
> example: `composer create-project contao/standard-edition:4.1.3 <target>`
57+
> example: `composer create-project contao/managed-edition:4.3.10 <target>`
5858
5959
<!-- Quote break -->
6060

@@ -153,8 +153,8 @@ administration area.
153153

154154
[1]: https://contao.org/en/download.html
155155
[2]: http://www.winscp.net/
156-
[3]: https://github.com/contao/standard-edition
156+
[3]: https://github.com/contao/managed-edition
157157
[4]: https://getcomposer.org/download/
158158
[5]: https://getcomposer.org/doc/00-intro.md#using-the-installer
159159
[6]: http://symfony.com/doc/current/reference/configuration/framework.html#secret
160-
[7]: https://docs.contao.org/books/cookbook/en/folder-structure.html
160+
[7]: https://docs.contao.org/books/cookbook/en/folder-structure.html

manual/fr/01-installation/installer-contao.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ curl -L http://download.contao.org/3.5.2 | tar -xzp
3030
### Installation avec Composer
3131

3232
Vous pouvez également installer Contao avec Composer en utilisant le référentiel
33-
[contao/standard-edition][3].
33+
[contao/managed-edition][3].
3434

3535
En premier lieu, vous devez [installer Composer][4]. Il peut être installé
3636
globalement avec les deux commandes suivantes sur macOS ou Linux:
@@ -47,7 +47,7 @@ Maintenant, vous pouvez exécuter le processus d'installation de Contao avec la
4747
commande suivante :
4848

4949
```bash
50-
composer create-project contao/standard-edition <target>
50+
composer create-project contao/managed-edition <target>
5151
```
5252

5353
Vous devez remplacer le paramètre `<target>` avec un chemin d'accès vers un
@@ -58,7 +58,7 @@ pas, il sera créé automatiquement.
5858
> La commande ci-dessus installe toujours la dernière version stable.
5959
> Si vous souhaitez installer une version spécifique, vous devez l'insérer dans
6060
> la commande comme par exemple :
61-
> `composer create-project contao/standard-edition:4.1.3 <target>`
61+
> `composer create-project contao/managed-edition:4.3.10 <target>`
6262
6363
<!-- Quote break -->
6464

@@ -161,8 +161,8 @@ droit vous amènera vers le panneau d'administration.
161161

162162
[1]: https://contao.org/en/download.html
163163
[2]: http://www.winscp.net/
164-
[3]: https://github.com/contao/standard-edition
164+
[3]: https://github.com/contao/managed-edition
165165
[4]: https://getcomposer.org/download/
166166
[5]: https://getcomposer.org/doc/00-intro.md#using-the-installer
167167
[6]: http://symfony.com/doc/current/reference/configuration/framework.html#secret
168-
[7]: https://docs.contao.org/books/cookbook/en/folder-structure.html
168+
[7]: https://docs.contao.org/books/cookbook/en/folder-structure.html

0 commit comments

Comments
 (0)