From 36b0703e8fceae74db1973a2b0e0c4d5b1482d3e Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Mon, 8 Sep 2014 21:33:58 +0200 Subject: [PATCH 1/4] add easier script tag for templates --- developer_manual/app/js.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/developer_manual/app/js.rst b/developer_manual/app/js.rst index f1e723cd6..ea9656596 100644 --- a/developer_manual/app/js.rst +++ b/developer_manual/app/js.rst @@ -9,7 +9,7 @@ The JavaScript files reside in the **js/** folder and should be included in the .. code-block:: php `_. A nice tutorial screencast collection can be found on `Egghead.io `_ @@ -38,4 +38,4 @@ Full URLs can be genrated by using: .. code-block:: js - var authorUrl = OC.generateUrl('/apps/myapp/authors/1'); \ No newline at end of file + var authorUrl = OC.generateUrl('/apps/myapp/authors/1'); From 5bddf7bbd9939d966316cc3f92af3ce9ddd79655 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Mon, 8 Sep 2014 21:38:27 +0200 Subject: [PATCH 2/4] easier style tag and html imports --- developer_manual/app/css.rst | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/developer_manual/app/css.rst b/developer_manual/app/css.rst index f06fe567c..5343af589 100644 --- a/developer_manual/app/css.rst +++ b/developer_manual/app/css.rst @@ -9,8 +9,15 @@ The CSS files reside in the **css/** folder and should be included in the templa .. code-block:: php Date: Mon, 8 Sep 2014 21:59:22 +0200 Subject: [PATCH 3/4] Added hint for polyfills --- developer_manual/app/css.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/developer_manual/app/css.rst b/developer_manual/app/css.rst index 5343af589..729c915ba 100644 --- a/developer_manual/app/css.rst +++ b/developer_manual/app/css.rst @@ -18,6 +18,8 @@ Web Components go into the **component/** folder and can be imported like this: `_ + Standard layout =============== To use the commonly used layout consisting of sidebar navigation and content the **app-navigation** and **app-content** ids can be used: From d2b2743b0fe00eec7399c2745ccf2c5be440c009 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Tue, 9 Sep 2014 16:30:46 +0200 Subject: [PATCH 4/4] add docs for https://github.com/owncloud/core/pull/10964 --- developer_manual/app/css.rst | 9 +++++++++ developer_manual/app/js.rst | 4 ++++ 2 files changed, 13 insertions(+) diff --git a/developer_manual/app/css.rst b/developer_manual/app/css.rst index 729c915ba..fe7d9f5ac 100644 --- a/developer_manual/app/css.rst +++ b/developer_manual/app/css.rst @@ -9,15 +9,24 @@ The CSS files reside in the **css/** folder and should be included in the templa .. code-block:: php `_ Standard layout diff --git a/developer_manual/app/js.rst b/developer_manual/app/js.rst index ea9656596..63794b91b 100644 --- a/developer_manual/app/js.rst +++ b/developer_manual/app/js.rst @@ -9,8 +9,12 @@ The JavaScript files reside in the **js/** folder and should be included in the .. code-block:: php `_. A nice tutorial screencast collection can be found on `Egghead.io `_ Sending the CSRF token