Skip to content
Snippets Groups Projects
Commit 7d5223c6 authored by Sebastian Krings's avatar Sebastian Krings
Browse files

Merge remote-tracking branch 'git-svn'

parents 7a8c4ba7 3f79334f
No related branches found
No related tags found
No related merge requests found
Showing
with 718 additions and 0 deletions
org.rodinp.handbook.feature/XHTML/Themes/rodin-theme-eclipse/icons/go-up.gif

336 B

org.rodinp.handbook.feature/XHTML/Themes/rodin-theme-eclipse/icons/gohome.gif

604 B

org.rodinp.handbook.feature/XHTML/Themes/rodin-theme-eclipse/icons/home.png

1.09 KiB

//
// This code fixes up the images so that MSIE doesn't truncate images
// within tables. It also adjusts the line height so that it's prettier.
//
var images = document.getElementsByTagName('img')
var adjusted = new Array();
for ( var i = 0; i < images.length; i++ )
{
image = images[i];
if ( parseInt(image.style.marginBottom) < -8 )
{
if ( !image.height )
continue;
// Make sure that images in IE in tables don't get truncated
ieimgfix = document.createElement('img');
ieimgfix.src = 'iicons/blank.gif';
ieimgfix.style.height = image.style.height;
ieimgfix.style.width = '0px';
// Adjust line height to be prettier
adjust = document.createElement('span');
adjust.style.lineHeight = (parseInt(image.style.height) - 8) + 'px';
adjust.style.visibility = 'hidden';
adjust.nodeValue = '&8205;';
// Store away the nodes for use later
adjusted[image.parentNode] = new Array(image.parentNode, image,
ieimgfix, adjust);
}
}
// Insert the adjuster nodes
for ( var n in adjusted )
{
adjusted[n][0].insertBefore(adjusted[n][2], adjusted[n][1]);
adjusted[n][0].insertBefore(adjusted[n][3], adjusted[n][1]);
}
org.rodinp.handbook.feature/XHTML/Themes/rodin-theme-eclipse/icons/index.gif

221 B

org.rodinp.handbook.feature/XHTML/Themes/rodin-theme-eclipse/icons/loading.gif

2.31 KiB

org.rodinp.handbook.feature/XHTML/Themes/rodin-theme-eclipse/icons/missing.gif

627 B

org.rodinp.handbook.feature/XHTML/Themes/rodin-theme-eclipse/icons/modules.gif

268 B

org.rodinp.handbook.feature/XHTML/Themes/rodin-theme-eclipse/icons/overlay.gif

171 B

org.rodinp.handbook.feature/XHTML/Themes/rodin-theme-eclipse/icons/pdf_icon.gif

1.02 KiB

var toolTipLib = {
xCord : 0,
yCord : 0,
obj : null,
tipElements : ['a','abbr','acronym'],
attachToolTipBehavior: function() {
if ( !document.getElementById ||
!document.createElement ||
!document.getElementsByTagName ) {
return;
}
var i,j;
addEvent(document,'mousemove',toolTipLib.updateXY,false);
if ( document.captureEvents ) {
document.captureEvents(Event.MOUSEMOVE);
}
for ( i=0;i<toolTipLib.tipElements.length;i++ ) {
var current = document.getElementsByTagName(toolTipLib.tipElements[i]);
for ( j=0;j<current.length;j++ ) {
addEvent(current[j],'mouseover',toolTipLib.tipOver,false);
addEvent(current[j],'mouseout',toolTipLib.tipOut,false);
current[j].setAttribute('tip',current[j].title);
current[j].removeAttribute('title');
}
}
},
updateXY : function(e) {
if ( document.captureEvents ) {
toolTipLib.xCord = e.pageX;
toolTipLib.yCord = e.pageY;
} else if ( window.event.clientX ) {
toolTipLib.xCord = window.event.clientX+document.documentElement.scrollLeft;
toolTipLib.yCord = window.event.clientY+document.documentElement.scrollTop;
}
},
tipOut: function(e) {
if ( window.tID ) {
clearTimeout(tID);
}
if ( window.opacityID ) {
clearTimeout(opacityID);
}
var l = getEventSrc(e);
var div = document.getElementById('toolTip');
if ( div ) {
div.parentNode.removeChild(div);
}
},
checkNode : function(obj) {
var trueObj = obj;
if ( trueObj.nodeName.toLowerCase() == 'a' || trueObj.nodeName.toLowerCase() == 'acronym' || trueObj.nodeName.toLowerCase() == 'abbr' ) {
return trueObj;
} else {
return trueObj.parentNode;
}
},
tipOver : function(e) {
toolTipLib.obj = getEventSrc(e);
tID = setTimeout("toolTipLib.tipShow()",500)
},
tipShow : function() {
var newDiv = document.createElement('div');
var scrX = Number(toolTipLib.xCord);
var scrY = Number(toolTipLib.yCord);
var tp = parseInt(scrY+15);
var lt = parseInt(scrX+10);
var anch = toolTipLib.checkNode(toolTipLib.obj);
var addy = '';
var access = '';
if ( anch.nodeName.toLowerCase() == 'a' ) {
addy = (anch.href.length > 25 ? anch.href.toString().substring(0,25)+"..." : anch.href);
var access = ( anch.accessKey ? ' <span>['+anch.accessKey+']</span> ' : '' );
} else {
addy = anch.firstChild.nodeValue;
}
newDiv.id = 'toolTip';
document.getElementsByTagName('body')[0].appendChild(newDiv);
newDiv.style.opacity = '.1';
newDiv.innerHTML = "<p>"+anch.getAttribute('tip')+"<em>"+access+addy+"</em></p>";
if ( parseInt(document.documentElement.clientWidth+document.documentElement.scrollLeft) < parseInt(newDiv.offsetWidth+lt) ) {
newDiv.style.left = parseInt(lt-(newDiv.offsetWidth+10))+'px';
} else {
newDiv.style.left = lt+'px';
}
if ( parseInt(document.documentElement.clientHeight+document.documentElement.scrollTop) < parseInt(newDiv.offsetHeight+tp) ) {
newDiv.style.top = parseInt(tp-(newDiv.offsetHeight+10))+'px';
} else {
newDiv.style.top = tp+'px';
}
toolTipLib.tipFade('toolTip',10);
},
tipFade: function(div,opac) {
var obj = document.getElementById(div);
var passed = parseInt(opac);
var newOpac = parseInt(passed+10);
if ( newOpac < 80 ) {
obj.style.opacity = '.'+newOpac;
obj.style.filter = "alpha(opacity:"+newOpac+")";
opacityID = setTimeout("toolTipLib.tipFade('toolTip','"+newOpac+"')",20);
}
else {
obj.style.opacity = '.80';
obj.style.filter = "alpha(opacity:80)";
}
}
};
addEvent(window,'load',toolTipLib.attachToolTipBehavior,false);
\ No newline at end of file
org.rodinp.handbook.feature/XHTML/Themes/rodin-theme-eclipse/icons/wikipedia.png

3.33 KiB

// This script looks for index elements and replaces them with the title of the linked element.
// We could probably do this in Plastex as well, but this is quick and dirty and works.
var indexElements = document.getElementsByTagName("plastex.base.latex.index.indexdestination");
var elements = new Array();
for(var i = 0; i < indexElements.length; i++){
elements[i] = indexElements[i];
}
for(var i = 0; i < elements.length; i++){
elements[i].parentNode.innerHTML = elements[i].parentNode.title;
}
pre {
color: #004000;
font-size: 90%;
background-color: #f0f0f0;
padding-top: 5px;
padding-bottom: 5px;
border: 1px #aaffaa solid;
font-family: Monaco, "Courier New", Courier, fixed;
padding-left: 4ex;
}
.breadcrumbs {
font-family: "Lucida Grande", Arial, Helvetica, sans-serif;
font-size: small;
font-style: italic;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Lucida Grande", Arial, Helvetica, sans-serif;
}
.navigation { clear:both }
.navigation td { background-color: #ffffff;
color: #000000;
font-weight: bold;
font-family: avantgarde, sans-serif;
font-size: 110% }
.navigation img { border-width: 0px }
.navtitle { width: 100% }
.contents ul {
font-family: "Lucida Grande", Arial, Helvetica, sans-serif;
list-style-type: none;
font-weight: bold;
}
.contents ul ul {
font-size: small;
font-weight: normal;
}
.minitoc {
border-top: 1px solid black;
border-bottom: 1px solid block;
margin-bottom: 1em;
}
.minitoc li {
list-style-type: none;
}
/*************/
/* Footnotes */
/*************/
/*
a.footnote .footnotemark {
color: #ff8000;
}
a.footnote:hover .footnotemark {
cursor: help;
}
a.footnote .footnotetext {
display: none;
}
a.footnote:hover .footnotetext {
display: block;
position: absolute;
bottom: 0em;
left: 0em;
background-color: #F8F8CB;
color: #000;
text-align: left;
border: 7px #ff8000 solid;
padding: 10px;
margin: 0px;
z-index: 20;
}
*/
a.footnote {
text-decoration: none;
}
#footnotes {
padding: 1em;
border-top: 1px solid black;
font-size: smaller;
}
/*******/
/* TeX */
/*******/
/* Fonts */
.rm {
font-family: serif;
font-style: normal;
font-weight: normal;
}
.cal {
font-family: serif;
font-style: italic;
font-weight: normal;
}
.it {
font-family: serif;
font-style: italic;
font-weight: normal;
}
.sl {
font-family: serif;
font-style: oblique;
font-weight: normal;
}
.bf {
font-family: serif;
font-style: normal;
font-weight: bold;
}
.tt {
font-family: monospace;
font-style: normal;
font-weight: normal;
}
/* Text */
.underbar {text-decoration: underline}
/*********/
/* LaTeX */
/*********/
/* Alignment */
.center, .centering {text-align: center}
.flushleft, .raggedright {text-align: left}
.flushright, .raggedleft {text-align: right}
/* Arrays */
.tabular { border-collapse: collapse }
.tabular td, .tabular th {
vertical-align: top;
text-align: left;
padding-top: 0.3em;
padding-bottom: 0.3em;
padding-left: 0.6em;
padding-right: 0.6em;
empty-cells: show;
}
/* Boxes */
.fbox, .framebox {
border: 1px black solid;
padding-top: 1px;
padding-bottom: 1px;
padding-left: 3px;
padding-right: 3px;
}
/* Font Selection */
.mdseries, .textmf {font-weight: normal}
.bfseries, .textbf {font-weight: bold}
.rmfamily, .textrm {font-family: serif}
.sffamily, .textsf {font-family: sans-serif}
.ttfamily, .texttt {font-family: monospace}
.upshape, .textup {text-transform: uppercase}
.itshape, .textit {font-style: italic}
.slshape, .textsl {font-style: oblique}
.scshape, .textsc {font-variant: small-caps}
small.tiny {font-size: x-small}
small.scriptsize {font-size: smaller}
small.footnotesize {font-size: small}
small.small {font-size: small}
.normalsize {font-size: normal}
big.large {font-size: large}
big.xlarge {font-size: x-large}
big.xxlarge {font-size: x-large}
big.huge {font-size: xx-large}
big.xhuge {font-size: xx-large}
/* Lists */
/*ul.itemize {}*/
/*ol.enumerate {}*/
dl.description dt {font-weight: bold}
table.list {
margin-left: 15px;
margin-top: 1em;
margin-bottom: 1em;
}
table.list td {
padding-right: 5px;
}
/* Title Page */
.titlepage {text-align: center}
.titlepage h1 {font-weight: normal}
.titlepage p {text-align: center; font-family: avantgarde, sans-serif;}
/* Math */
.displaymath, .eqnarray, .equation {
margin-top: 15px;
margin-bottom: 15px;
text-align: center;
}
.eqnnum {
width: 16ex;
text-align: center;
}
.fleqn {width: 2em}
/* Quotations and Verse */
.quotation, .quote, .verse {
}
.quotation p, .quote p, .verse p {
margin-top: 0px;
margin-bottom: 0px;
}
/* Image offset classes */
.raise15 {margin-bottom: 10px}
.raise14 {margin-bottom: 10px}
.raise13 {margin-bottom: 10px}
.raise12 {margin-bottom: 10px}
.raise11 {margin-bottom: 10px}
.raise10 {margin-bottom: 10px}
.raise9 {margin-bottom: 9px}
.raise8 {margin-bottom: 8px}
.raise7 {margin-bottom: 7px}
.raise6 {margin-bottom: 6px}
.raise5 {margin-bottom: 5px}
.raise4 {margin-bottom: 4px}
.raise3 {margin-bottom: 3px}
.raise2 {margin-bottom: 2px}
.raise1 {margin-bottom: 1px}
.raise0 {margin-bottom: 0px}
.lower0 {margin-bottom: -0px}
.lower1 {margin-bottom: -1px}
.lower2 {margin-bottom: -2px}
.lower3 {margin-bottom: -3px}
.lower4 {margin-bottom: -4px}
.lower5 {margin-bottom: -5px}
.lower6 {margin-bottom: -6px}
.lower7 {margin-bottom: -7px}
.lower8 {margin-bottom: -8px}
.lower10 {margin-bottom: -10px}
.lower11 {margin-bottom: -11px}
.lower12 {margin-bottom: -12px}
.lower13 {margin-bottom: -13px}
.lower14 {margin-bottom: -14px}
.lower15 {margin-bottom: -15px}
.lower16 {margin-bottom: -16px}
.lower17 {margin-bottom: -17px}
.lower18 {margin-bottom: -18px}
.lower19 {margin-bottom: -19px}
.lower20 {margin-bottom: -20px}
.lower21 {margin-bottom: -21px}
.lower22 {margin-bottom: -22px}
.lower23 {margin-bottom: -23px}
.lower24 {margin-bottom: -24px}
.lower25 {margin-bottom: -25px}
.lower26 {margin-bottom: -26px}
.lower27 {margin-bottom: -27px}
.lower28 {margin-bottom: -28px}
.lower29 {margin-bottom: -29px}
.lower30 {margin-bottom: -20px}
.lower20 {margin-bottom: -20px}
td p:first-child, th p:first-child {
margin-top: 0px;
margin-bottom: 0px;
}
td p, th p {
margin-top: 1em;
margin-bottom: 0px;
}
p {
text-indent: 0em;
margin-top: 0px;
margin-bottom: 1em;
text-align: justify;
font-family: Georgia;
}
img {
border: none;
vertical-align: baseline;
}
img.ieimgfix {
width: 0;
visibility: hidden;
vertical-align: top;
display: none;
}
td img.ieimgfix {
display: inline;
}
body {
color: #000000;
background-color: #ffffff;
}
/* Index */
.theindex li {
list-style-type: none
}
.changebar {
border-right: 2px solid red;
padding-right: 1em;
}
.deletebar {
color: red;
font-size: 150%;
padding-left: 0.5ex;
padding-right: 0.5ex;
}
/* (mj) Used for the Hint-Images */
blockquote p span.rmfamily img {
float: left;
position: absolute;
left: 0.5em;
}
/* (mj) Used for making the Plugin-Boxes gray */
blockquote.verse {
background-color: #eeeeee;
margin-left: 0px;
margin-right: 0px;
}
blockquote.verse p span img {
padding: 5px;
}
/* (mj) Formatting Marginpar */
p.marginpar {
background-color: #ffff00;
}
.footer {
font-family: "Lucida Grande", Arial, Helvetica, sans-serif;
color: #888;
text-align: center;
}
hr {
color: #888;
background-color: #888;
height: 1px;
}
.figure, .caption {
margin:25px;
}
.math.gen {
margin:3px;
}
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html tal:define="links self/links" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta name="generator" content="plasTeX" />
<meta http-equiv="content-type"
tal:attributes="content string:text/html;; charset=${config/files/output-encoding}" />
<title tal:condition="python:path('self/level') &gt; -10" tal:content="stripped string:${links/document/title}: ${self/title}">Morbi metus pede, imperdiet vitae</title>
<title tal:condition="python:path('self/level') &lt;= -10" tal:content="stripped self/title">Morbi metus pede, imperdiet vitae</title>
<link tal:condition="links/next" rel="next" tal:attributes="href links/next/url; title links/next/title/textContent" />
<link tal:condition="links/prev" rel="prev" tal:attributes="href links/prev/url; title links/prev/title/textContent" />
<link tal:condition="links/up" rel="up" tal:attributes="href links/up/url; title links/up/title/textContent" />
<link rel="stylesheet" href="styles/styles.css" />
<style tal:condition="not:links/prev" type="text/css">
#indexbg {
background-image:url('icons/rodin_miikka_skaffari_index.jpg');
background-repeat:no-repeat;
background-position:top left;
margin:0;
padding:0;
}
</style>
</head>
<body>
<table width="100%" border="0">
<tr><td valign="top" width="135px">
<center>
<h2><a id="navlist" href="index.html">Rodin Handbook</a></h2>
</center>
<div id="navcontainer">
<ul id="navlist">
<li><a href="index.html">Handbook Home</a>
<li><a href="" id="feedback">Feedback</a>
<li><a href="" id="feedbackmail">Email Feedback</a>
<li><a href="../pdf/rodin-doc.pdf">Handbook as PDF</a>
<li><a href="http://www.amazon.de/gp/product/1495438147/ref=as_li_tf_tl?ie=UTF8&camp=1638&creative=6742&creativeASIN=1495438147&linkCode=as2&tag=jastramde-21">Handbook Hardcopy</a>
<li><a href="http://wiki.event-b.org/">Rodin Wiki</a>
<li><a href=" http://wiki.event-b.org/index.php/Rodin_Platform_Releases">Rodin Download</a>
<li><a href="mailto:rodin-handbook@formalmind.com">Contact</a>
</ul>
</div>
<br/>
<br/>
<form id="searchbox_017699211055551047357:sj1wifmh8k8" action="http://handbook.event-b.org/searchresult.html">
<input value="017699211055551047357:sj1wifmh8k8" name="cx" type="hidden"/>
<input value="FORID:11" name="cof" type="hidden"/>
<input id="q" style="width:100px;" name="q" size="75" type="text"/>
<input value="Go" name="sa" type="image" src="icons/search.png"/>
</form>
<br/>
<br/>
<center id="navlist">
<img src="icons/deploy.png" border="0"><br>
This work is sponsored by the
<a href="http://www.deploy-project.eu/">Deploy Project</a><br>
<br/>
<img src="icons/advance-logo.png" border="0" width="125"><br/><br/>
This work is sponsored by the
<a href="http://www.advance-ict.eu/">ADVANCE Project</a><br>
<br/>
<br/>
<img alt="Creative Commons License" style="border-width:0" src="icons/cc-by-sa.png" /><br />
This work is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution 3.0 Unported License</a>
</center>
<div style="visibility:hidden;" id="section" tal:content="self/title"></div>
<div style="visibility:hidden;" id="doctitle" tal:content="links/document/title"></div>
<script>
section = encodeURIComponent(document.getElementById("section").innerHTML);
doctitle = encodeURIComponent(document.getElementById("doctitle").innerHTML);
url = "https://spreadsheets.google.com/spreadsheet/viewform?formkey=dEJmXzUydnRzZGdDVE16WFZmZmd1alE6MQ"
+ String.fromCharCode(38) + "entry_0=" + section;
mail = "mailto:rodin-handbook@formalmind.com?subject=Feedback " + doctitle + " (" + section + ")";
document.getElementById("feedback").href = url;
document.getElementById("feedbackmail").href = mail;
</script>
</td><td valign="top" width="40">&nbsp;</td><td valign="top">
<div id="indexbg">
<div class="navigation" metal:define-macro="navigation">
<table cellspacing="2" cellpadding="0" width="100%">
<tr>
<td tal:condition="links/prev"><a tal:attributes="href links/prev/url; title stripped:links/prev/title"><img border="0" tal:attributes="alt stripped:Previous: ${links/prev/title}" src="icons/arrow_left.png" width="28" height="28" /></a></td>
<td tal:condition="not:links/prev"><img border="0" alt="" src="icons/blank.gif" width="16" height="16" /></td>
<td tal:condition="links/up"><a tal:attributes="href links/up/url; title stripped:links/up/title"><img border="0" tal:attributes="alt stripped:Up: ${links/up/title}" src="icons/arrow_up.png" width="28" height="28" /></a></td>
<td tal:condition="not:links/up"><img border="0" alt="" src="icons/blank.gif" width="16" height="16" /></td>
<td tal:condition="links/next"><a tal:attributes="href links/next/url; title stripped:links/next/title"><img border="0" tal:attributes="alt stripped:Next: ${links/next/title}" src="icons/arrow_right.png" width="28" height="28" /></a></td>
<td tal:condition="not:links/next"><img border="0" alt="" src="icons/blank.gif" width="16" height="16" /></td>
<td class="navtitle" align="center" tal:content="links/document/title">Section Title</td>
<td tal:condition="links/contents"><a tal:attributes="href links/contents/url" title="Table of Contents"><img border="0" alt="" src="icons/home.png" width="32" height="32" /></a></td>
<td tal:condition="not:links/contents"><img border="0" alt="" src="icons/blank.gif" width="16" height="16" /></td>
<td tal:condition="links/index"><a tal:attributes="href links/index/url" title="Index"><img border="0" alt="" src="icons/go-jump.png" width="32" height="32" /></a></td>
<td tal:condition="not:links/index"><img border="0" alt="" src="icons/blank.gif" width="16" height="16" /></td>
<td><img border="0" alt="" src="icons/blank.gif" width="16" height="16" /></td>
</tr>
</table>
</div>
<!--
<div style="float: right; text-align: center; font-family: sans-serif;">
<a href="" id="feedbackbubble" style="color: red; text-decoration: none;">
<img src="icons/bubble_48.png" border="0" align="middle"><br><b>Feedback</b></a>
<script>
document.getElementById("feedbackbubble").href = url;
</script>
</div>
-->
<div tal:content="self">File contents</div>
<div tal:condition="self/tableofcontents" tal:attributes="class string:contents ${self/nodeName}-contents"><!--<strong>Subsections</strong>-->
<ul>
<li tal:repeat="section self/tableofcontents"><a href="." tal:attributes="href section/url" tal:content="section/fullTocEntry">Aliquam est. Aliquam fringilla pede</a>
<ul tal:condition="section/tableofcontents">
<li tal:repeat="subsection section/tableofcontents"><a href="." tal:attributes="href subsection/url" tal:content="subsection/fullTocEntry"></a>
<ul tal:condition="subsection/tableofcontents">
<li tal:repeat="subsubsection subsection/tableofcontents"><a href="." tal:attributes="href subsubsection/url" tal:content="subsubsection/fullTocEntry"></a>
<ul tal:condition="subsubsection/tableofcontents">
<li tal:repeat="paragraph subsubsection/tableofcontents"><a href="." tal:attributes="href paragraph/url" tal:content="paragraph/fullTocEntry"></a>
<ul tal:condition="paragraph/tableofcontents">
<li tal:repeat="subparagraph paragraph/tableofcontents"><a href="." tal:attributes="href subparagraph/url" tal:content="subparagraph/fullTocEntry"></a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li tal:replace="nothing"><a href=".">Maecenas id purus</a></li>
<li tal:replace="nothing"><a href=".">Duis et eros</a></li>
<li tal:replace="nothing"><a href=".">Duis est</a></li>
</ul>
</div>
</div>
<div class="navigation">
<table cellspacing="2" cellpadding="0" width="100%">
<tr>
<td tal:condition="links/prev"><a tal:attributes="href links/prev/url; title stripped:links/prev/title"><img border="0" tal:attributes="alt stripped:Previous: ${links/prev/title}" src="icons/arrow_left.png" width="28" height="28" /></a></td>
<td tal:condition="not:links/prev"><img border="0" alt="" src="icons/blank.gif" width="16" height="16" /></td>
<td tal:condition="links/up"><a tal:attributes="href links/up/url; title stripped:links/up/title"><img border="0" tal:attributes="alt stripped:Up: ${links/up/title}" src="icons/arrow_up.png" width="28" height="28" /></a></td>
<td tal:condition="not:links/up"><img border="0" alt="" src="icons/blank.gif" width="16" height="16" /></td>
<td tal:condition="links/next"><a tal:attributes="href links/next/url; title stripped:links/next/title"><img border="0" tal:attributes="alt stripped:Next: ${links/next/title}" src="icons/arrow_right.png" width="28" height="28" /></a></td>
<td tal:condition="not:links/next"><img border="0" alt="" src="icons/blank.gif" width="16" height="16" /></td>
<td style="width:100%">&nbsp;</td>
<td tal:condition="links/contents"><a tal:attributes="href links/contents/url" title="Table of Contents"><img border="0" alt="" src="icons/home.png" width="32" height="32" /></a></td>
<td tal:condition="not:links/contents"><img border="0" alt="" src="icons/blank.gif" width="16" height="16" /></td>
<td tal:condition="links/index"><a tal:attributes="href links/index/url" title="Index"><img border="0" alt="" src="icons/go-jump.png" width="32" height="32" /></a></td>
<td tal:condition="not:links/index"><img border="0" alt="" src="icons/blank.gif" width="16" height="16" /></td>
<td><img border="0" alt="" src="icons/blank.gif" width="16" height="16" /></td>
</tr>
</table>
</div>
<div id="footnotes" tal:condition="self/footnotes">
<p><b>Footnotes</b></p>
<ol>
<li tal:repeat="footnote self/footnotes" tal:content="footnote" tal:attributes="id footnote/id">footnote text</li>
</ol>
</div>
<hr />
<div tal:condition="python:path('self/level') &gt; -10" class="breadcrumbs">
<span tal:repeat="crumb links/breadcrumbs">
<span tal:condition="not:repeat/crumb/end">
<a href="." tal:attributes="href crumb/url" tal:content="crumb/title">Parent Section</a> <b>:</b>
</span>
<span tal:condition="repeat/crumb/end">
<b class="current" tal:content="crumb/title">Current Section</b>
</span>
</span>
</div>
</td></tr></table>
<script language="javascript" src="icons/imgadjust.js" type="text/javascript"></script>
<script language="javascript" src="makeindex.js" type="text/javascript"></script>
</body>
</html>
org.rodinp.handbook.feature/XHTML/Themes/rodin-theme-html/icons/advance-logo.png

21.3 KiB

org.rodinp.handbook.feature/XHTML/Themes/rodin-theme-html/icons/arrow_down.png

1.1 KiB

org.rodinp.handbook.feature/XHTML/Themes/rodin-theme-html/icons/arrow_left.png

1.17 KiB

org.rodinp.handbook.feature/XHTML/Themes/rodin-theme-html/icons/arrow_right.png

3.83 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment