File modules/cms/ui/themes/default/html/views/project/prop.tpl.src.xml

Last commit: Wed Oct 21 00:26:06 2020 +0200	Jan Dankert	Using fieldsets in all templates (replacing the old '')
1 <output xmlns="http://www.openrat.de/template" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 2 xsi:schemaLocation="http://www.openrat.de/template ../../../../../../../template_engine/components/template.xsd"> 3 <form> 4 <group title="${message:NAME}"> 5 <fieldset label="${message:PROJECT_NAME}"> 6 <input name="name" class="name" maxlength="128"/> 7 </fieldset> 8 <fieldset label="${message:PROJECT_HOSTNAME}"> 9 <input name="url" maxlength="255"/> 10 </fieldset> 11 </group> 12 <group title="${message:PUBLISH}"> 13 <fieldset label="${message:PROJECT_TARGET_DIR}"> 14 <input name="target_dir" class="filename" maxlength="255"/> 15 </fieldset> 16 <if true="${config:publish/project/override_system_command}"> 17 <fieldset label="${message:PROJECT_CMD_AFTER_PUBLISH}"> 18 <input name="cmd_after_publish" class="filename" maxlength="255"/> 19 </fieldset> 20 </if> 21 <fieldset label="${message:file_extension}"> 22 <checkbox name="publishFileExtension" label="${message:PROJECT_publish_File_Extension}"/> 23 <checkbox name="publishPageExtension" label="${message:PROJECT_publish_page_Extension}"/> 24 </fieldset> 25 <fieldset label="${message:link_url}"> 26 <radio name="linksAbsolute" value="0" label="${message:LINKS_RELATIVE}"/> 27 <radio name="linksAbsolute" value="1" label="${message:LINKS_ABSOLUTE}"/> 28 </fieldset> 29 </group> 30 <group title="${message:project_FTP}"> 31 <fieldset label="${message:PROJECT_FTP_URL}"> 32 <input name="ftp_url" class="filename"/> 33 <checkbox name="ftp_passive" label="${message:PROJECT_FTP_PASSIVE}"/> 34 </fieldset> 35 </group> 36 <group title="${message:options}"> 37 <fieldset label="${message:OPTIONS}"> 38 <checkbox name="content_negotiation" label="${message:PROJECT_CONTENT_NEGOTIATION}"/> 39 <checkbox name="cut_index" label="${message:PROJECT_CUT_INDEX}"/> 40 </fieldset> 41 </group> 42 </form> 43 </output>
Download modules/cms/ui/themes/default/html/views/project/prop.tpl.src.xml
History Wed, 21 Oct 2020 00:26:06 +0200 Jan Dankert Using fieldsets in all templates (replacing the old '') Sun, 18 Oct 2020 01:30:49 +0200 Jan Dankert New component "fieldset" for better form layout. Sat, 10 Oct 2020 01:29:41 +0200 Jan Dankert Refactoring: Only using CSS classes with the 'or-'-prefix. Sat, 29 Aug 2020 03:23:06 +0200 Jan Dankert Refactoring: Improved Exception-Handling; New: Generating pages using a page context which considers page aliases. Thu, 20 Aug 2020 21:15:48 +0200 Jan Dankert Cleanup: Deleting unused components. Sat, 16 May 2020 01:08:40 +0200 Jan Dankert Refactoring: Switching the ValueExpressions in the templates to the new VariableResolver for supporting nested variables like ${message:prefix_${key}}. Sun, 23 Feb 2020 23:21:22 +0100 Jan Dankert Fix: Path to template.xsd has changed on the last refactoring. Sun, 23 Feb 2020 04:01:30 +0100 Jan Dankert Refactoring with Namespaces for the cms modules, part 1: moving.