Skip to content

Commit

Permalink
Dev Add Tammo template and set ir to default
Browse files Browse the repository at this point in the history
  • Loading branch information
Shnoulle committed Oct 25, 2016
1 parent 962e82b commit fcd3d96
Show file tree
Hide file tree
Showing 69 changed files with 25,162 additions and 0 deletions.
116 changes: 116 additions & 0 deletions templates/default/config.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Default configuration for the template.
In future versions of LimeSurvey, it will be used to fill a template table,
and to give user control on template configuration (like variables to use to render the questions, banners, background, etc.)
-->

<config>
<!-- Those metadatas will be display in the template configuration page. They are not used for now. -->
<metadatas>
<name>New Default</name>
<creationDate>20/10/2016</creationDate>
<author>Tammo ter Hark</author>
<authorEmail>Tammo.terHark@toolsforresearch.com</authorEmail>
<authorUrl>http://www.toolsforresearch.com</authorUrl>
<copyright>Copyright 2016 Tools for Research BV. All rights reserved.</copyright>
<license>GNU General Public License version 2 or later</license>
<version>1.0</version>
<description>Another Default LimeSurvey Template.</description>
<last_update>2016-10-20 10:10:10</last_update>
</metadatas>

<!--
Here the list of the css/js files to load.
Any file here will be loaded via the asset manager
-->
<files>
<css>
<filename>css/bootstrap.min.css</filename>
<filename>css/jquery-ui-custom.css</filename>
<filename>css/bootstrap-slider.css</filename>
<filename>css/awesome-bootstrap-checkbox/awesome-bootstrap-checkbox.css</filename>
<filename>css/ls-functional.css</filename>
<filename>css/styling.css</filename>
</css>
<js>
<filename>scripts/template.js</filename>
<filename>scripts/bootstrap-slider.js</filename>
</js>
<print_css>
<filename>css/print_template.css</filename>
</print_css>

<!--
Those files will be loaded for right to left languages only
NOTE 1: If for any reason, you need to edit the RTL behaviors, feel free to contact the LimeSurvey team about it.
We'll be always pleased to make the right to left display better.
NOTE 2: those files are generated with the script R2. See: https://github.com/ded/R2
-->
<rtl>
<css>
<filename>cssrtl/jquery-ui-custom-rtl.css</filename>
<filename>cssrtl/bootstrap-slider-rtl.css</filename>
<filename>cssrtl/awesome-bootstrap-checkbox/awesome-bootstrap-checkbox-rtl.css</filename>
<filename>cssrtl/flat_and_modern-rtl.css</filename>
<filename>cssrtl/template-rtl.css</filename>
</css>
<js>
<filename>scripts/template.js</filename>
<filename>scripts/bootstrap-slider.js</filename>
</js>
<print_css>
<filename>css/print_template-rtl.css</filename>
</print_css>
</rtl>

<!-- The logo is used for now only for Surveys List -->
<logo>
<filename>files/logo.png</filename>
</logo>
</files>

<!--
Here the list of the css/js files the user is allowed to edit from the template editor.
If the template does not contain any reference to external images, those files will be published one by one with the asset manager.
So any edition of those files will update the tmp/asset directory, and users will not need to refresh browser cache
-->
<files_editable>
<css>
<filename>css/flat_and_modern.css</filename>
<filename>css/template.css</filename>
</css>
<js>
<filename>scripts/template.js</filename>
<filename>scripts/bootstrap-slider.js</filename>
</js>
</files_editable>

<!-- Here datas about how LimeSurvey should load the template -->
<engine>
<!-- If empty, bootstrap css/js files will not be loaded. In the future, we could had more engines, like foundation -->
<cssframework>bootstrap</cssframework>
<!-- Path of the pstpl files -->
<pstpldirectory>views</pstpldirectory>

<!--
Set to yes to overwrite the question views,
then, just copy application/views/survey/* to template/{your_view_directory}/survey/
You also must allow the template to overwrite the views from your site configuration
In application/config/config.php, find : 'config'=>array
and add this line in it : 'allow_templates_to_overwrite_views'=>1
-->
<overwrite_question_views>false</overwrite_question_views>

<!-- Asset manager will copy the whole template directory to tmp. So it's possible to refer any file in the files directory in CSS via relative path (e.g: '../files/foo.jpg') -->
<filesdirectory>files</filesdirectory>

<!-- Here, you can publish packages set as third party extensions in application/config/third_party -->
<!-- If bootstrap is registred as a css framework, it will be loaded first -->
<packages>
<package>jqueryui</package>
<package>jquery-touch-punch</package>
</packages>
</engine>
</config>
Loading

0 comments on commit fcd3d96

Please sign in to comment.