aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastien Douheret <sebastien.douheret@iot.bzh>2017-06-19 16:52:06 +0200
committerSebastien Douheret <sebastien.douheret@iot.bzh>2017-06-19 18:13:44 +0200
commitd1b49a7d26bf344d9f00ae12144cbcc7d930b08b (patch)
tree58d5276d2b6097e535fe90f447f336b72c4c12e3
parenta07557a06366d5c5ed6e62cd91beb48ae478de1a (diff)
Re-order doc chapters
Change-Id: I44cf2054fa06816480e26fc19b45c6f8a464a708 Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
-rw-r--r--docs/1-afm-daemons.md (renamed from docs/afm-daemons.md)0
-rw-r--r--docs/2-widgets.md8
-rw-r--r--docs/2.1-widgets.md (renamed from docs/widgets.md)9
-rw-r--r--docs/2.2-config.xml.md (renamed from docs/config.xml.md)12
-rw-r--r--docs/3-permissions.md (renamed from docs/permissions.md)0
-rw-r--r--docs/4-quick-tutorial.md (renamed from docs/quick-tutorial.md)0
-rw-r--r--docs/5-frameworks.md (renamed from docs/1-frameworks.md)0
-rw-r--r--docs/5.1-application-framework.md (renamed from docs/application-framework.md)0
-rw-r--r--docs/5.2-security-framework.md (renamed from docs/security-framework.md)0
-rw-r--r--docs/SUMMARY.md17
10 files changed, 23 insertions, 23 deletions
diff --git a/docs/afm-daemons.md b/docs/1-afm-daemons.md
index 6d31e34..6d31e34 100644
--- a/docs/afm-daemons.md
+++ b/docs/1-afm-daemons.md
diff --git a/docs/2-widgets.md b/docs/2-widgets.md
index e69de29..24de661 100644
--- a/docs/2-widgets.md
+++ b/docs/2-widgets.md
@@ -0,0 +1,8 @@
+The widgets
+===========
+
+The widgets are described by the W3C's technical recommendations
+[Packaged Web Apps (Widgets)](http://www.w3.org/TR/widgets) and [XML Digital Signatures for Widgets](http://www.w3.org/TR/widgets-digsig)
+
+In summary, **widgets are ZIP files that can be signed and
+whose content is described by the file <config.xml>**.
diff --git a/docs/widgets.md b/docs/2.1-widgets.md
index 3966eab..93cd788 100644
--- a/docs/widgets.md
+++ b/docs/2.1-widgets.md
@@ -1,12 +1,3 @@
-The widgets
-===========
-
-The widgets are described by the W3C's technical recommendations
-[Packaged Web Apps (Widgets)][widgets] and [XML Digital Signatures for Widgets][widgets-digsig]
-
-In summary, **widgets are ZIP files that can be signed and
-whose content is described by the file <config.xml>**.
-
Tools for managing widgets
--------------------------
diff --git a/docs/config.xml.md b/docs/2.2-config.xml.md
index 8894667..cccedd4 100644
--- a/docs/config.xml.md
+++ b/docs/2.2-config.xml.md
@@ -1,5 +1,5 @@
-The configuration file config.xml
-===========
+Configuration file - config.xml
+===============================
The widgets are described by the W3C's technical recommendations
[Packaged Web Apps (Widgets)][widgets] and [XML Digital Signatures for Widgets][widgets-digsig]
@@ -16,7 +16,7 @@ to the framework:
- the type of the application
- the icon of the application
- the permissions linked to the application
-- the services and dependancies of the application
+- the services and dependencies of the application
The file MUST be at the root of the widget and MUST be case sensitively name
***config.xml***.
@@ -32,7 +32,7 @@ Here is the example of the config file for the QML application SmartHome.
<name>SmartHome</name>
<icon src="smarthome.png"/>
<content src="qml/smarthome/smarthome.qml" type="text/vnd.qt.qml"/>
- <description>This is the Smarthome QML demo application. It shows some user interfaces for controlling an
+ <description>This is the Smarthome QML demo application. It shows some user interfaces for controlling an
automated house. The user interface is completely done with QML.</description>
<author>Qt team</author>
<license>GPL</license>
@@ -284,7 +284,7 @@ The mimetype of the provided unit.
#### param name="content.src"
-A path to the
+A path to the
#### other parameters
@@ -367,7 +367,7 @@ how to create systemd units for widgets.
Known types for the type of content are:
-- ***text/html***:
+- ***text/html***:
HTML application,
content.src designates the home page of the application
diff --git a/docs/permissions.md b/docs/3-permissions.md
index 0c18180..0c18180 100644
--- a/docs/permissions.md
+++ b/docs/3-permissions.md
diff --git a/docs/quick-tutorial.md b/docs/4-quick-tutorial.md
index c8122d4..c8122d4 100644
--- a/docs/quick-tutorial.md
+++ b/docs/4-quick-tutorial.md
diff --git a/docs/1-frameworks.md b/docs/5-frameworks.md
index e69de29..e69de29 100644
--- a/docs/1-frameworks.md
+++ b/docs/5-frameworks.md
diff --git a/docs/application-framework.md b/docs/5.1-application-framework.md
index 0b9750d..0b9750d 100644
--- a/docs/application-framework.md
+++ b/docs/5.1-application-framework.md
diff --git a/docs/security-framework.md b/docs/5.2-security-framework.md
index 61b01bb..61b01bb 100644
--- a/docs/security-framework.md
+++ b/docs/5.2-security-framework.md
diff --git a/docs/SUMMARY.md b/docs/SUMMARY.md
index 7357214..30c105f 100644
--- a/docs/SUMMARY.md
+++ b/docs/SUMMARY.md
@@ -1,11 +1,12 @@
# Summary
* [Overview](README.md)
-* [Quick tutorial](quick-tutorial.md)
-* [The frameworks](1-frameworks.md)
- * [The application framework](application-framework.md)
- * [The security framework](security-framework.md)
-* [The afm daemons](afm-daemons.md)
-* [Widgets of the framework](2-widgets.md)
- * [Overview of widgets](widgets.md)
- * [The configuration file](config.xml.md) \ No newline at end of file
+* [The afm daemons](1-afm-daemons.md)
+* [Widgets](2-widgets.md)
+ * [Overview of widgets](2.1-widgets.md)
+ * [The configuration file](2.2-config.xml.md)
+* [The permissions](3-permissions.md)
+* [Quick tutorial](4-quick-tutorial.md)
+* [The frameworks](5-frameworks.md)
+ * [The application framework](5.1-application-framework.md)
+ * [The security framework](5.2-security-framework.md)