Changeset 337
- Timestamp:
- 07/29/05 10:25:31 (3 years ago)
- Files:
-
- django/trunk/django/conf/admin_templates/doc/bookmarklets.html (modified) (4 diffs)
- django/trunk/django/conf/admin_templates/doc/index.html (modified) (2 diffs)
- django/trunk/django/conf/admin_templates/doc/missing_docutils.html (modified) (2 diffs)
- django/trunk/django/conf/admin_templates/doc/model_detail.html (modified) (1 diff)
- django/trunk/django/conf/admin_templates/doc/model_index.html (modified) (1 diff)
- django/trunk/django/conf/admin_templates/doc/template_filter_index.html (modified) (1 diff)
- django/trunk/django/conf/admin_templates/doc/template_tag_index.html (modified) (1 diff)
- django/trunk/django/conf/admin_templates/doc/view_detail.html (modified) (1 diff)
- django/trunk/django/conf/admin_templates/doc/view_index.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/conf/admin_templates/doc/bookmarklets.html
r92 r337 1 1 {% extends "base_site" %} 2 2 3 {% block breadcrumbs %}<div class="breadcrumbs"><a href=" /">Home</a> › <a href="/doc/">Documentation</a> › Bookmarklets</div>{% endblock %}3 {% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">Home</a> › <a href="../">Documentation</a> › Bookmarklets</div>{% endblock %} 4 4 5 5 {% block title %}Documentation bookmarklets{% endblock %} … … 11 11 select the bookmarklet from any page in the site. Note that some of these 12 12 bookmarklets require you to be viewing the site from a computer designated 13 as "internal" (talk to your system administrator if you aren't sure if 13 as "internal" (talk to your system administrator if you aren't sure if 14 14 your computer is "internal").</p> 15 15 … … 17 17 <h3><a href="javascript:(function(){if(typeof ActiveXObject!='undefined'){x=new ActiveXObject('Microsoft.XMLHTTP')}else if(typeof XMLHttpRequest!='undefined'){x=new XMLHttpRequest()}else{return;}x.open('HEAD',location.href,false);x.send(null);try{view=x.getResponseHeader('x-view');}catch(e){alert('No view found for this page');return;}if(view=="undefined"){alert("No view found for this page");}document.location='{{ admin_url }}/doc/views/'+view+'/';})()">Documentation for this page</a></h3> 18 18 <p>Jumps you from any page to the documentation for the view that generates that page.</p> 19 19 20 20 <h3><a href="javascript:(function(){if(typeof ActiveXObject!='undefined'){x=new ActiveXObject('Microsoft.XMLHTTP')}else if(typeof XMLHttpRequest!='undefined'){x=new XMLHttpRequest()}else{return;}x.open('GET',location.href,false);x.send(null);try{type=x.getResponseHeader('x-object-type');id=x.getResponseHeader('x-object-id');}catch(e){type='(none)';id='(none)';}d=document;b=d.body;e=d.createElement('div');e.id='xxxhhh';s=e.style;s.position='absolute';s.left='10px';s.top='10px';s.font='10px monospace';s.border='1px black solid';s.padding='4px';s.backgroundColor='#eee';e.appendChild(d.createTextNode('Type: '+type));e.appendChild(d.createElement('br'));e.appendChild(d.createTextNode('ID: '+id));e.appendChild(d.createElement('br'));l=d.createElement('a');l.href='#';l.onclick=function(){b.removeChild(e);};l.appendChild(d.createTextNode('[close]'));l.style.textDecoration='none';e.appendChild(l);b.appendChild(e);})();">Show object ID</a></h3> 21 21 <p>Shows the content-type and unique ID for pages that represent a single object.</p> … … 23 23 <h3><a href="javascript:(function(){if(typeof ActiveXObject!='undefined'){var x=new ActiveXObject('Microsoft.XMLHTTP')}else if(typeof XMLHttpRequest!='undefined'){var x=new XMLHttpRequest()}else{return;}x.open('GET',location.href,false);x.send(null);try{var type=x.getResponseHeader('x-object-type');var id=x.getResponseHeader('x-object-id');}catch(e){return;}document.location='{{ admun_url }}/'+type.split('.').join('/')+'/'+id+'/';})()">Edit this object (current window)</a></h3> 24 24 <p>Jumps to the admin page for pages that represent a single object.</p> 25 25 26 26 <h3><a href="javascript:(function(){if(typeof ActiveXObject!='undefined'){var x=new ActiveXObject('Microsoft.XMLHTTP')}else if(typeof XMLHttpRequest!='undefined'){var x=new XMLHttpRequest()}else{return;}x.open('GET',location.href,false);x.send(null);try{var type=x.getResponseHeader('x-object-type');var id=x.getResponseHeader('x-object-id');}catch(e){return;}window.open('{{ admun_url }}/'+type.split('.').join('/')+'/'+id+'/');})()">Edit this object (new window)</a></h3> 27 27 <p>As above, but opens the admin page in a new window.</p> django/trunk/django/conf/admin_templates/doc/index.html
r92 r337 1 1 {% extends "base_site" %} 2 2 3 {% block breadcrumbs %}<div class="breadcrumbs"><a href=" /">Home</a> › Documentation</div>{% endblock %}3 {% block breadcrumbs %}<div class="breadcrumbs"><a href="../">Home</a> › Documentation</div>{% endblock %} 4 4 5 5 {% block title %}Documentation{% endblock %} … … 12 12 <h3><a href="tags/">Tags</a></h3> 13 13 <p>List of all the template tags and their functions.</p> 14 14 15 15 <h3><a href="filters/">Filters</a></h3> 16 16 <p>Filters are actions which can be applied to variables in a template to alter the output.</p> 17 17 18 18 <h3><a href="models/">Models</a></h3> 19 19 <p>Models are descriptions of all the objects in the system and their associated fields. Each model has a list of fields which can be accessed as template variables.</p> 20 20 21 21 <h3><a href="views/">Views</a></h3> 22 22 <p>Each page on the public site is generated by a view. The view defines which template is used to generate the page and which objects are available to that template.</p> 23 23 24 24 <h3><a href="views/">Views</a></h3> 25 25 <p>Each page on the public site is generated by a view. The view defines which template is used to generate the page and which objects are available to that template.</p> 26 26 27 27 <h3><a href="bookmarklets/">Bookmarklets</a></h3> 28 28 <p>Tools for your browser to quickly access admin functionality.</p> django/trunk/django/conf/admin_templates/doc/missing_docutils.html
r92 r337 1 1 {% extends "base_site" %} 2 2 3 {% block breadcrumbs %}<div class="breadcrumbs"><a href=" /">Home</a> › Documentation</div>{% endblock %}3 {% block breadcrumbs %}<div class="breadcrumbs"><a href="../">Home</a> › Documentation</div>{% endblock %} 4 4 5 5 {% block title %}Please install docutils{% endblock %} … … 11 11 <div id="content-main"> 12 12 <h3>The admin documentation system requires Python's <a href="http://docutils.sf.net/">docutils</a> library.</h3> 13 13 14 14 <p>Please ask your administrators to install <a href="http://docutils.sf.net/">docutils</a>.</p> 15 15 </div> django/trunk/django/conf/admin_templates/doc/model_detail.html
r92 r337 13 13 {% endblock %} 14 14 15 {% block breadcrumbs %}<div class="breadcrumbs"><a href=" /">Home</a> › <a href="/doc/">Documentation</a> › <a href="/doc/models/">Models</a> › {{ name }}</div>{% endblock %}15 {% block breadcrumbs %}<div class="breadcrumbs"><a href="../../../">Home</a> › <a href="../../">Documentation</a> › <a href="../">Models</a> › {{ name }}</div>{% endblock %} 16 16 17 17 {% block title %}Model: {{ name }}{% endblock %} django/trunk/django/conf/admin_templates/doc/model_index.html
r92 r337 3 3 {% block coltype %}colSM{% endblock %} 4 4 5 {% block breadcrumbs %}<div class="breadcrumbs"><a href=" /">Home</a> › <a href="/doc/">Documentation</a> › Models</div>{% endblock %}5 {% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">Home</a> › <a href="../">Documentation</a> › Models</div>{% endblock %} 6 6 7 7 {% block title %}Models{% endblock %} django/trunk/django/conf/admin_templates/doc/template_filter_index.html
r92 r337 1 1 {% extends "base_site" %} 2 3 2 4 3 {% block coltype %}colSM{% endblock %} 5 4 6 7 8 {% block breadcrumbs %}<div class="breadcrumbs"><a href="/">Home</a> › <a href="/doc/">Documentation</a> › filters</div>{% endblock %} 9 5 {% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">Home</a> › <a href="../">Documentation</a> › filters</div>{% endblock %} 10 6 11 7 {% block title %}Template filters{% endblock %} django/trunk/django/conf/admin_templates/doc/template_tag_index.html
r92 r337 1 1 {% extends "base_site" %} 2 3 2 4 3 {% block coltype %}colSM{% endblock %} 5 4 6 7 8 {% block breadcrumbs %}<div class="breadcrumbs"><a href="/">Home</a> › <a href="/doc/">Documentation</a> › Tags</div>{% endblock %} 9 5 {% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">Home</a> › <a href="../">Documentation</a> › Tags</div>{% endblock %} 10 6 11 7 {% block title %}Template tags{% endblock %} django/trunk/django/conf/admin_templates/doc/view_detail.html
r92 r337 1 1 {% extends "base_site" %} 2 2 3 {% block breadcrumbs %}<div class="breadcrumbs"><a href=" /">Home</a> › <a href="/doc/">Documentation</a> › <a href="/doc/views/">Views</a> › {{ name }}</div>{% endblock %}3 {% block breadcrumbs %}<div class="breadcrumbs"><a href="../../../">Home</a> › <a href="../../">Documentation</a> › <a href="../">Views</a> › {{ name }}</div>{% endblock %} 4 4 5 5 {% block title %}View: {{ name }}{% endblock %} django/trunk/django/conf/admin_templates/doc/view_index.html
r92 r337 3 3 {% block coltype %}colSM{% endblock %} 4 4 5 {% block breadcrumbs %}<div class="breadcrumbs"><a href=" /">Home</a> › <a href="/doc/">Documentation</a> › Views</div>{% endblock %}5 {% block breadcrumbs %}<div class="breadcrumbs"><a href="../../">Home</a> › <a href="../">Documentation</a> › Views</div>{% endblock %} 6 6 7 7 {% block title %}Views{% endblock %} 8 8 9 10 9 {% block content %} 11 12 13 10 14 11 <h1>View documentation</h1> 15 12 16 17 13 <div id="content-main"> 18 19 14 20 15 {% regroup views|dictsort:"site_id" by site as views_by_site %} … … 35 30 </div> 36 31 37 38 32 {% endblock %} 39 33
