Update version number to 5.2
authorMatthias Schmidt <gravatronics@live.com>
Sun, 13 Jan 2019 08:21:44 +0000 (09:21 +0100)
committerMatthias Schmidt <gravatronics@live.com>
Sun, 13 Jan 2019 08:21:44 +0000 (09:21 +0100)
README.md
_config.yml
_data/sidebars/sidebar.yml
index.md
pages/javascript/helper-functions.md
pages/migration/wsc-31/migration_wsc-31_form-builder.md
pages/migration/wsc-31/migration_wsc-31_php.md
pages/php/api/php_api_form_builder.md
pages/view/view_template-plugins.md

index 473d9b718347434fc4be1080999f8bbeb533c3a9..fd9e2814042d555fdbf6f635c439ae82a4e3555c 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-## WoltLab Suite 3.1 Documentation
+## WoltLab Suite 5.2 Documentation
 
 This repository is used to build the documentation at [https://docs.woltlab.com](https://docs.woltlab.com), contributions are welcome.
 
index 5d1a49f64fb06c9f4499d66c48c97c3d46720ac6..9539e7913ebc33d3a00f25c387a5657580b92b37 100644 (file)
@@ -2,10 +2,10 @@
 output: web
 # this property is useful for conditional filtering of content that is separate from the PDF.
 
-topnav_title: WoltLab Suite 3.1 Documentation
+topnav_title: WoltLab Suite 5.2 Documentation
 # this appears on the top navigation bar next to the home button
 
-site_title: WoltLab Suite 3.1 Documentation
+site_title: WoltLab Suite 5.2 Documentation
 # this appears in the html browser tab for the site title (seen mostly by search engines, not users)
 
 company_name: WoltLab GmbH
index 01f8a72b69672224db4160dc90ca9e52675edd65..ec9e7f3fc5eef4dd0311a155c0b07dc1141f53a2 100644 (file)
@@ -3,7 +3,7 @@
 entries:
 - title: sidebar
   product: WoltLab Suite
-  version: 3.1
+  version: 5.2
   folders:
 
   - title: Getting Started
index bfe8d11d8bc43e6458e59bbe423ec7b2ae5dac66..a1a6f19caa3b3c128f5522bb9361a93c48ca15bf 100644 (file)
--- a/index.md
+++ b/index.md
@@ -1,5 +1,5 @@
 ---
-title: WoltLab Suite 3.1 Documentation
+title: WoltLab Suite 5.2 Documentation
 sidebar: sidebar
 permalink: index.html
 toc: false
@@ -11,7 +11,7 @@ This documentation explains the basic API functionality and the creation of own
 
 Head over to the [quick start tutorial][getting-started_quick-start] to learn more.
 
-## About WoltLab Suite 3.1
+## About WoltLab Suite 5.2
 
 The [WoltLab Suite Core](https://github.com/WoltLab/WCF) as well as most of the other packages are available on [github.com/WoltLab/](https://github.com/WoltLab) and are licensed under the terms of the [GNU Lesser General Public License 2.1](https://github.com/WoltLab/WCF/blob/master/LICENSE).
 
index e498f965ada4f820e2b9323439e54256a91c5f59..fc55bd0a6be41fa1caa3077c5b3d93d6de61533d 100644 (file)
@@ -7,7 +7,7 @@ folder: javascript
 
 ## Introduction
 
-WoltLab Suite 3.0 and 3.1 ship with a set of global helper functions that are
+Since version 3.0, WoltLab Suite ships with a set of global helper functions that are
 exposed on the `window`-object and thus are available regardless of the context.
 They are meant to reduce code repetition and to increase readability by moving
 potentially relevant parts to the front of an instruction.
index cc09353f93972034d2e14f78ee52b42610df665f..ccb09f5411b4bc8a2cf0b669bcf23c6684cdad43 100644 (file)
@@ -8,7 +8,7 @@ parent: migration_wsc-31_php
 
 ## Example: Two Text Form Fields
 
-As the first example, the pre-WoltLab Suite Core 3.2 versions of the forms to add and edit persons from the [first part of the tutorial series](tutorial_tutorial-series_part-1-base-structure.html) will be updated to the new form builder API.
+As the first example, the pre-WoltLab Suite Core 5.2 versions of the forms to add and edit persons from the [first part of the tutorial series](tutorial_tutorial-series_part-1-base-structure.html) will be updated to the new form builder API.
 This form is the perfect first examples as it is very simple with only two text fields whose only restriction is that they have to be filled out and that their values may not be longer than 255 characters each.
 
 As a reminder, here are the two relevant PHP files and the relevant template file:
index 7ec9fcbdafc90e21b61dfbd745b54d08db94b573..4d6f5dfaa757f8e14c157d831d9b1738c67cbffe 100644 (file)
@@ -7,7 +7,7 @@ folder: migration/wsc-31
 
 ## Form Builder
 
-WoltLab Suite Core 3.2 introduces a new, simpler and quicker way of creating forms:
+WoltLab Suite Core 5.2 introduces a new, simpler and quicker way of creating forms:
 [form builder](php_api_form_builder.html).
 You can find examples of how to migrate existing forms to form builder [here](migration_wsc-31_form-builder.html).
 
index fd7497ace8e39812f2c451819565710bc88d4f18..809f0450299f84d3fa36c00104a9a6c3412fdc67 100644 (file)
@@ -5,9 +5,9 @@ permalink: php_api_form_builder.html
 folder: php/api
 ---
 
-{% include callout.html content="Form builder is only available since WoltLab Suite Core 3.2." type="info" %}
+{% include callout.html content="Form builder is only available since WoltLab Suite Core 5.2." type="info" %}
 
-{% include callout.html content="The [migration guide for WoltLab Suite Core 3.2](migration_wsc-31_form-builder.html) provides some examples of how to migrate existing forms to form builder that can also help in understanding form builder if the old way of creating forms is familiar." type="info" %}
+{% include callout.html content="The [migration guide for WoltLab Suite Core 5.2](migration_wsc-31_form-builder.html) provides some examples of how to migrate existing forms to form builder that can also help in understanding form builder if the old way of creating forms is familiar." type="info" %}
 
 
 ## Advantages of Form Builder
index c9b7b62d4a847e6db3e54a97119f5c5716469c9d..325ffe328fb161e26c9a40c5f065a0d8fd3c2c00 100644 (file)
@@ -345,7 +345,7 @@ All additional attributes are added as attributes of the `select` HTML element.
 | `key` | optional template variable name where the current array key is stored during the iteration |
 
 
-## <span class="label label-info">3.2+</span> `ipSearch`
+## <span class="label label-info">5.2+</span> `ipSearch`
 
 `ipSearch` generates a link to search for an IP address.