|
Revision 1850, 2.6 kB
(checked in by bsmith, 20 months ago)
|
|
bugzid:76495 - moving publishing profiles to modal action
|
| Line | |
|---|
| 1 | <mt:var name="page_title" value="<__trans phrase="Publishing Profile">"> |
|---|
| 2 | |
|---|
| 3 | <mt:include name="dialog/header.tmpl"> |
|---|
| 4 | |
|---|
| 5 | <form action="#"> |
|---|
| 6 | |
|---|
| 7 | <mtapp:setting |
|---|
| 8 | id="dynamicity" |
|---|
| 9 | label="<__trans phrase="Publishing Profile">" |
|---|
| 10 | show_label="0" |
|---|
| 11 | help_page="blog_settings_publishing" |
|---|
| 12 | help_section="dynamic_publishing"> |
|---|
| 13 | <ul> |
|---|
| 14 | <li> |
|---|
| 15 | <input type="radio" id="dynamicity-sync" name="dynamicity" value="none" <mt:if name="dynamicity" eq="none"> checked="checked"</mt:if>/> |
|---|
| 16 | <label for="dynamicity-sync"><__trans phrase="Static Publishing"> <span class="hint"><__trans phrase="Publish all files statically."></span></label> |
|---|
| 17 | </li> |
|---|
| 18 | <li> |
|---|
| 19 | <input type="radio" id="dynamicity-async" name="dynamicity" value="async_all" <mt:if name="dynamicity" eq="async_all"> checked="checked"</mt:if>/> |
|---|
| 20 | <label for="dynamicity-async"><__trans phrase="Asynchronous Publishing"> <span class="hint"><__trans phrase="Publish all files via the asynchronous job queue."></span></label> |
|---|
| 21 | </li> |
|---|
| 22 | <li> |
|---|
| 23 | <input type="radio" id="dynamicity-partialasync" name="dynamicity" value="async_partial" <mt:if name="dynamicity" eq="async_partial"> checked="checked"</mt:if>/> |
|---|
| 24 | <label for="dynamicity-partialasync"><__trans phrase="High Priority Static Publishing"> <span class="hint"><__trans phrase="Publish main index template and all individual archive templates statically, and publish all other files asynchronously."></span></label> |
|---|
| 25 | </li> |
|---|
| 26 | <li> |
|---|
| 27 | <input type="radio" id="dynamicity-dynamic" name="dynamicity" value="all" <mt:if name="dynamicity" eq="all"> checked="checked"</mt:if>/> |
|---|
| 28 | <label for="dynamicity-dynamic"><__trans phrase="Dynamic Publishing"> <span class="hint"><__trans phrase="Publish all files dynamically."></span></label> |
|---|
| 29 | </li> |
|---|
| 30 | <li> |
|---|
| 31 | <input type="radio" id="dynamicity-archives" name="dynamicity" value="archives" <mt:if name="dynamicity" eq="archives"> checked="checked"</mt:if>/> |
|---|
| 32 | <label for="dynamicity-archives"><__trans phrase="Dynamic Archives Only"> <span class="hint"><__trans phrase="Publish all archives dynamically. Publish all other files statically."></span></label> |
|---|
| 33 | </li> |
|---|
| 34 | <li> |
|---|
| 35 | <input type="radio" id="dynamicity-custom" name="dynamicity" value="custom" <mt:if name="dynamicity" eq="custom"> checked="checked"</mt:if>/> |
|---|
| 36 | <label for="dynamicity-custom"><__trans phrase="Custom"> <span class="hint"><__trans phrase="Publishing options are configured on a template-by-template basis."></span></label> |
|---|
| 37 | </li> |
|---|
| 38 | </ul> |
|---|
| 39 | </mtapp:setting> |
|---|
| 40 | |
|---|
| 41 | </form> |
|---|
| 42 | |
|---|
| 43 | <mt:include name="dialog/footer.tmpl"> |
|---|