Changeset 18 for sitemap-plugin/trunk/sitemap/templates/sitemap_admin.cs
- Timestamp:
- 11/09/06 12:35:18 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sitemap-plugin/trunk/sitemap/templates/sitemap_admin.cs
r16 r18 1 1 <form class="mod" method="post"> 2 2 <h2>Google Sitemap™ settings</h2> 3 <p> The URL of the Google sitemap is: <?cs var:sitemap.url ?></p>3 <p>What ressources should be included in your sitemap located at <strong><?cs var:sitemap.url ?></strong>?</p> 4 4 <table class="listing" id="sitemaplist" style="width:100%;margin-bottom:2em;"> 5 5 <colgroup> … … 11 11 <thead> 12 12 <tr> 13 <th class="sel"> </th>13 <th class="sel">Auto-update</th> 14 14 <th>Source</th> 15 15 <th>Priority</th> … … 18 18 </thead> 19 19 <tbody> 20 <?cs each:item = sitemap.data ?> 20 21 <tr> 21 <td><input type="checkbox" name="wiki" value="1"/></td> 22 <td><strong>Wiki pages</strong></td> 23 <td><select> 22 <td align="center"><input type="checkbox" name="handle_<?cs name:item ?>" value="1" <?cs 23 if:item.handle ?> checked="checked" <?cs /if ?> /></td> 24 <td><strong><?cs var:item.title ?></strong></td> 25 <td><select name="<?cs name:item ?>_priority"> 24 26 <?cs each:priority = sitemap.priorities ?> 25 <option value="<?cs var:priority ?>" ><?cs var:priority ?></option>27 <option value="<?cs var:priority ?>" <?cs if:priority == item.priority ?>selected="selected"<?cs /if ?>><?cs var:priority ?></option> 26 28 <?cs /each ?> 27 29 </select></td> 28 <td><select >30 <td><select name="<?cs name:item ?>_frequency"> 29 31 <?cs each:freq = sitemap.frequencies ?> 30 <option value="<?cs var:freq ?>" ><?cs var:freq ?></option>32 <option value="<?cs var:freq ?>" <?cs if:freq == item.frequency ?>selected="selected"<?cs /if ?>><?cs var:freq ?></option> 31 33 <?cs /each ?> 32 34 </select></td> 33 35 </tr> 34 <tr> 35 <td><input type="checkbox" name="tickets" value="1"/></td> 36 <td><strong>Tickets</strong></td> 37 <td><select> 38 <?cs each:priority = sitemap.priorities ?> 39 <option value="<?cs var:priority ?>"><?cs var:priority ?></option> 40 <?cs /each ?> 41 </select></td> 42 <td><select> 43 <?cs each:freq = sitemap.frequencies ?> 44 <option value="<?cs var:freq ?>"><?cs var:freq ?></option> 45 <?cs /each ?> 46 </select></td> 47 </tr> 36 <?cs /each ?> 48 37 </tbody> 49 38 <tfoot> 50 39 <tr> 51 <td colspan="4" style="font-size:80%;">A note on priorities and frequencies: The <strong>priority</strong> will determine 52 how search results will be ranked <em>within your site</em>. It will not influence 53 your Google PageRank™. The priority defaults to 0.5, you can set higher or 54 lower values to distinguish more or less important parts of your site. 40 <td colspan="4" style="font-size:80%;">Note: The <strong>priority</strong> will determine 41 how search results will be ranked <em>within your site</em>, bigger numbers indicating more important parts of your site. 42 It will not influence your Google PageRank™. 55 43 <p>The <strong>frequency</strong> indicates how often you plan to update 56 44 your site content with respect to this ressource. Setting it to <em>daily</em> doesn't neccessarily mean that Google will pick 57 up your page daily, it's just an indicator.</p></td> 45 up your page daily, it's just an indicator. Even pages marked as <em>never changing</em> (i.e. archives) are visited by the Google crawler 46 every once in a while to detect changes in the page itself.</p></td> 58 47 </tr> 59 48 </tfoot> 60 49 </table> 61 <fieldset>62 <legend>Notification</legend>63 <div class="field">64 <input id="cbPingGoogle" type="checkbox" name="pinggoogle" value="1" style="float:left"/>65 <label for="cbPingGoogle" style="display:block; margin-left: 50px;">66 Do you want to ping the Google Sitemap service each time a wiki67 page is created, updated or deleted?68 </label>69 </div>70 </fieldset>71 50 <div class="buttons"> 72 <input type="submit" value="Save">73 <input type="submit" value="Save & pingnow">51 <input type="submit" name="save" value="Save"> 52 <input type="submit" name="saveping" value="Save & notify now"> 74 53 </div> 75 54 </form>
Note: See TracChangeset
for help on using the changeset viewer.
