/usr/local/Slides/2_Palestras%2F2023%2F01_PyTikZ%2F03_TikZ%2F03_Taylor/Images.txt not found! --> -->
 
 
<type 'exceptions.KeyError'>
Python 2.7.13: /usr/bin/python
Tue May 6 20:15:19 2025

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /usr/lib/cgi-bin/Slides in ()
     13 cgitb.enable()
     14 
     15 slides=Slides()
=>   16 slides.Run()
     17 
slides = <Slides.Slides instance>, slides.Run = <bound method Slides.Run of <Slides.Slides instance>>
 /usr/local/Python/HTML/__init__.py in Run(self=<Slides.Slides instance>)
    215         html=[]
    216         html=html+self.HTML_Header()
=>  217         html=html+self.HTML_Body()
    218         html=html+self.HTML_Tailer()
    219 
html = ['<!DOCTYPE html>', '<HTML>', ['<HEAD>', [['<TITLE>', 'SmtC: Show me the Code!', '</TITLE>'], '<META content="text/html; charset=utf-8" http-equiv="Content-type">', '<META content="Prof. Dr. Ole Peter Smith, IME/UFG" name="Autor">', '<LINK href="/Slides.css" rel="stylesheet">', '<LINK href="/W3.css" rel="stylesheet">', '<LINK href="/fontawesome-free-5.3.1-web/css/all.css" rel="stylesheet">', ['<SCRIPT src="/Slides.js">', '', '</SCRIPT>'], ['<SCRIPT src="/Karru.js">', '', '</SCRIPT>'], ['<SCRIPT>', 'MathJax = {', ' tex: {', r" inlineMath: [ ['$', '$'], ['[;',';]'], ['\\(', '\\)'] ] ", ' },', ' svg: {', " fontCache: 'global'", ' }', '};', '</SCRIPT>'], ['<SCRIPT id="MathJax-script" src="https://cdn.jsd...mathjax@3/es5/tex-svg.js" type="text/javascript">', '</SCRIPT>'], ['<SCRIPT src="/Slides.js">', '', '</SCRIPT>'], ['<SCRIPT src="/Karru.js">', '', '</SCRIPT>']], '</HEAD>']], self = <Slides.Slides instance>, self.HTML_Body = <bound method Slides.HTML_Body of <Slides.Slides instance>>
 /usr/local/Python/HTML/Body.py in HTML_Body(self=<Slides.Slides instance>)
      7         html=[]
      8         html=html+[ self.XML_Tag_Start("BODY") ]
=>    9         html=html+[ self.HTML_Body_Matrix() ]
     10         html=html+[ self.XML_Tag_End("BODY") ]
     11 
html = ['<BODY>'], self = <Slides.Slides instance>, self.HTML_Body_Matrix = <bound method Slides.HTML_Body_Matrix of <Slides.Slides instance>>
 /usr/local/Python/HTML/Body.py in HTML_Body_Matrix(self=<Slides.Slides instance>)
     27         rhtml=[]
     28         for cellmethods in self.Body_Matrix:
=>   29             rhtml=rhtml+[ self.HTML_Body_Row(n) ]         
     30             n+=1
     31 
rhtml = [['<TR class="Body_Top">', [['<TD class="Body_Top Body_Left">', ['<IMG src="/icons/ufg.png">'], '</TD>'], ['<TD class="Body_Top Body_Center">', [['<DIV class="H1">', 'SmtC: Show me the Code', '</DIV>'], ['<DIV class="H2">', 'Ole Peter Smith', '</DIV>'], ['<DIV class="H3">', 'Instituto de Matem&aacute;tica e Estat&iacute;stica', '</DIV>'], ['<DIV class="H4">', 'Universidade Federal de Goi&aacute;s', '</DIV>'], ['<DIV class="H5">', 'http://www.olesmith.com.br', '</DIV>']], '</TD>'], ['<TD class="Body_Top Body_Right">', ['<IMG src="/icons/ufg.png">'], '</TD>']], '</TR>']], self = <Slides.Slides instance>, self.HTML_Body_Row = <bound method Slides.HTML_Body_Row of <Slides.Slides instance>>, n = 1
 /usr/local/Python/HTML/Body.py in HTML_Body_Row(self=<Slides.Slides instance>, n=1)
     53         rhtml=[]
     54         for cellmethod in self.Body_Matrix[ n ]:
=>   55             rhtml=rhtml+[ self.HTML_Body_Row_Cell(n,m) ]
     56 
     57             m+=1
rhtml = [['<TD class="Body_Middle Body_Left">', ['<UL>', [['<LI>', '<A class="leftmenu" href="?Path=#" title="Show me the Code">SmtC</A>', '</LI>'], ['<LI>', '<A class="leftmenu" href="?Path=2_Palestras#" title="">Palestras</A>', '</LI>'], ['<LI>', '<A class="leftmenu" href="?Path=2_Palestras/2023#" title="Ano de 2023">2023</A>', '</LI>'], ['<LI>', r'<A class="leftmenu" href="?Path=2_Palestras/2023...uras 3D com Python e $\LaTeX$/TikZ.">PyTikZ3D</A>', '</LI>']], '</UL>', '<BR>', ['<A class="leftmenu" href="?Path=2_Palestras/2023/01_PyTikZ/03_TikZ#" title="TikZ/PGF">TikZ</A>'], ['<UL style="list-style-type:square">', [['<LI>', r'<A class="leftmenu" href="?Path=2_Palestras/2023...Z#" title="$\LaTeX$ V: TikZ">$\LaTeX$ V: TikZ</A>', '</LI>'], ['<LI>', '<A class="leftmenu" href="?Path=2_Palestras/2023... TikZ">Geometria Axiom\xc3\xa1tica com LaTeX e TikZ</A>', '</LI>'], ['<LI>', [...], [...], '</LI>']], '</UL>'], ['<DIV class="Phrase">', 'Quando eu dou de comer aos pobres<BR>', 'Me chamam de santo<BR>', 'Quando eu pergunto por que eles s\xc3\xa3o pobres<BR>', 'Me chamam de comunista<BR>', ['<DIV class="Author">', 'Dom Helder C\xc3\xa2mera', '</DIV>'], '</DIV>']], '</TD>']], self = <Slides.Slides instance>, self.HTML_Body_Row_Cell = <bound method Slides.HTML_Body_Row_Cell of <Slides.Slides instance>>, n = 1, m = 1
 /usr/local/Python/HTML/Body.py in HTML_Body_Row_Cell(self=<Slides.Slides instance>, n=1, m=1)
     70         if ( hasattr(self,cellmethod) ):
     71             method=getattr(self,cellmethod)
=>   72             cellcontent=method()
     73 
     74         args={
cellcontent = 'HTML_Middle_Center: undef', method = <bound method Slides.HTML_Middle_Center of <Slides.Slides instance>>
 /usr/local/Python/HTML/Body.py in HTML_Middle_Center(self=<Slides.Slides instance>)
    139     
    140     def HTML_Middle_Center(self):
=>  141         return self.HTML_Central_Screen()
    142 
    143     ##! 
self = <Slides.Slides instance>, self.HTML_Central_Screen = <bound method Slides.HTML_Central_Screen of <Slides.Slides instance>>
 /usr/local/Python/Slides/__init__.py in HTML_Central_Screen(self=<Slides.Slides instance>)
    190         
    191         html=[]
=>  192         html=html+self.Slide_Cell(paths)
    193 
    194         html=self.HTML_Parse_Html(html,paths)
html = [], self = <Slides.Slides instance>, self.Slide_Cell = <bound method Slides.Slide_Cell of <Slides.Slides instance>>, paths = ['2_Palestras', '2023', '01_PyTikZ', '03_TikZ', '03_Taylor']
 /usr/local/Python/Slides/Slide/Cell/__init__.py in Slide_Cell(self=<Slides.Slides instance>, paths=['2_Palestras', '2023', '01_PyTikZ', '03_TikZ', '03_Taylor'])
     47         )+self.Slide_Cell_Contents_Parse(
     48             paths,
=>   49             self.Slide_Contents_Get(paths)
     50         )
     51 
self = <Slides.Slides instance>, self.Slide_Contents_Get = <bound method Slides.Slide_Contents_Get of <Slides.Slides instance>>, paths = ['2_Palestras', '2023', '01_PyTikZ', '03_TikZ', '03_Taylor']
 /usr/local/Python/Slides/Slide/Cell/__init__.py in Slide_Cell_Contents_Parse(self=<Slides.Slides instance>, paths=['2_Palestras', '2023', '01_PyTikZ', '03_TikZ', '03_Taylor'], contents=["<H1>Taylor's Formula for Planar Curvas, $n=2$</H1>", '', r'\[', r' \underline{r}(t)', r' \simeq', r' \underline{r}(t_0)', ' +', ' (t-t_0)', r" \underline{r}'(t_0)", ' +', r' \frac{1}{2}(t-t_0)^2', r" \underline{r}''(t_0)", r'\]', '', '', '@Karru Images.txt', '', 'Click above!', '', '', ...], options={})
    169                     args,
    170                     contents[n],
=>  171                     paths
    172                 )
    173 
paths = ['2_Palestras', '2023', '01_PyTikZ', '03_TikZ', '03_Taylor']
 /usr/local/Python/Slides/Slide/Cell/Karru.py in Slide_Cell_Karru_Toggles(self=<Slides.Slides instance>, args=['Images.txt'], content='@Karru Images.txt', paths=['2_Palestras', '2023', '01_PyTikZ', '03_TikZ', '03_Taylor'])
      8             self.Slide_Cell_Karru_Setup_File(args,content,paths),
      9             self.Slide_Cell_Karru_ID(
=>   10                 args,content,paths
     11             )
     12         )
args = ['Images.txt'], content = '@Karru Images.txt', paths = ['2_Palestras', '2023', '01_PyTikZ', '03_TikZ', '03_Taylor']
 /usr/local/Python/Slides/Karru.py in Slides_Setup(self=<Slides.Slides instance>, setup_file='Images.txt', dest='2_Palestras_2023_01_PyTikZ_03_TikZ_03_Taylor_0')
    169                 setup[ comps[0] ]=comps[1]
    170 
=>  171         paths=[self.DocRoot]+paths+[setup[ "Files"  ]]
    172         
    173         files_glob="/".join(paths)
paths = ['2_Palestras%2F2023%2F01_PyTikZ%2F03_TikZ%2F03_Taylor'], self = <Slides.Slides instance>, self.DocRoot = '/usr/local/Slides', setup = {}

<type 'exceptions.KeyError'>: 'Files'
      args = ('Files',)
      message = 'Files'