[SCM] cecilia/upstream: Imported Upstream version 5.0.7+svn391

tiago at users.alioth.debian.org tiago at users.alioth.debian.org
Mon Feb 11 18:00:51 UTC 2013


The following commit has been merged in the upstream branch:
commit 25b6c68fd5fc3710d5378cb192341976184af4a1
Author: Tiago Bortoletto Vaz <tiago at debian.org>
Date:   Mon Feb 11 12:59:59 2013 -0500

    Imported Upstream version 5.0.7+svn391

diff --git a/Cecilia5.py b/Cecilia5.py
index d5e0832..9a93098 100755
--- a/Cecilia5.py
+++ b/Cecilia5.py
@@ -98,8 +98,6 @@ if __name__ == '__main__':
     reload(sys)
     sys.setdefaultencoding('utf-8')
 
-    global ceciliaPreferences
-
     if not os.path.isdir(TMP_PATH):
         os.mkdir(TMP_PATH)
     if not os.path.isfile(os.path.join(TMP_PATH,'.recent.txt')):
diff --git a/Resources/API_interface.pyc b/Resources/API_interface.pyc
deleted file mode 100644
index 7e8528d..0000000
Binary files a/Resources/API_interface.pyc and /dev/null differ
diff --git a/Resources/CeciliaInterface.pyc b/Resources/CeciliaInterface.pyc
deleted file mode 100644
index 11ca128..0000000
Binary files a/Resources/CeciliaInterface.pyc and /dev/null differ
diff --git a/Resources/CeciliaLib.py b/Resources/CeciliaLib.py
index aa4396e..f8814d3 100644
--- a/Resources/CeciliaLib.py
+++ b/Resources/CeciliaLib.py
@@ -75,7 +75,7 @@ def startCeciliaSound(timer=True, rec=False):
     getVar("presetPanel").presetChoice.setEnable(False)
     getVar("audioServer").start(timer=timer, rec=rec)
     getVar("grapher").toolbar.loadingMsg.SetForegroundColour(TITLE_BACK_COLOUR)
-    getVar("grapher").toolbar.loadingMsg.Refresh()
+    wx.CallAfter(getVar("grapher").toolbar.loadingMsg.Refresh)
 
 def stopCeciliaSound():
     if getVar("audioServer").isAudioServerRunning():
@@ -102,23 +102,21 @@ def audioServerIsRunning(state):
             getControlPanel().transportButtons.setPlay(True)
 
 def queryAudioMidiDrivers():
-    inputs, selectedInput, outputs, selectedOutput, midiInputs, selectedMidiInput = getVar("audioServer").getAvailableAudioMidiDrivers()
+    inputs, inputIndexes, defaultInput, outputs, outputIndexes, defaultOutput, midiInputs, midiInputIndexes, defaultMidiInput = getVar("audioServer").getAvailableAudioMidiDrivers()
 
     setVar("availableAudioOutputs",  outputs)
-    if getVar("audioOutput") < len(outputs):
-        setVar("audioOutput", getVar("audioOutput"))
-    else:
+    setVar("availableAudioOutputIndexes",  outputIndexes)
+    if getVar("audioOutput") not in outputIndexes:
         try:
-            setVar("audioOutput", outputs.index(selectedOutput))
+            setVar("audioOutput", outputIndexes[outputs.index(defaultOutput)])
         except:
             setVar("audioOutput", 0)
 
     setVar("availableAudioInputs", inputs)
-    if getVar("audioInput") < len(inputs):
-        setVar("audioInput", getVar("audioInput"))
-    else:
+    setVar("availableAudioInputIndexes", inputIndexes)
+    if getVar("audioInput") not in inputIndexes:
         try:
-            setVar("audioInput", inputs.index(selectedInput))
+            setVar("audioInput", inputIndexes[inputs.index(defaultInput)])
         except:
             setVar("audioInput", 0)
 
@@ -127,11 +125,10 @@ def queryAudioMidiDrivers():
     else:
         setVar("useMidi", 1)
     setVar("availableMidiInputs", midiInputs)
-    if getVar("midiDeviceIn") <= len(midiInputs):
-        setVar("midiDeviceIn", getVar("midiDeviceIn"))
-    else:
+    setVar("availableMidiInputIndexes", midiInputIndexes)
+    if getVar("midiDeviceIn") not in midiInputIndexes:
         try:
-            setVar("midiDeviceIn", midiInputs.index(selectedMidiInput))
+            setVar("midiDeviceIn", midiInputIndexes[midiInputs.index(defaultMidiInput)])
         except:
             setVar("midiDeviceIn", 0)
 
diff --git a/Resources/CeciliaLib.pyc b/Resources/CeciliaLib.pyc
deleted file mode 100644
index bd8e88d..0000000
Binary files a/Resources/CeciliaLib.pyc and /dev/null differ
diff --git a/Resources/CeciliaMainFrame.pyc b/Resources/CeciliaMainFrame.pyc
deleted file mode 100644
index ce78d86..0000000
Binary files a/Resources/CeciliaMainFrame.pyc and /dev/null differ
diff --git a/Resources/CeciliaPlot.pyc b/Resources/CeciliaPlot.pyc
deleted file mode 100644
index 7e3786f..0000000
Binary files a/Resources/CeciliaPlot.pyc and /dev/null differ
diff --git a/Resources/Control.pyc b/Resources/Control.pyc
deleted file mode 100644
index e2ea3ec..0000000
Binary files a/Resources/Control.pyc and /dev/null differ
diff --git a/Resources/DocFrame.pyc b/Resources/DocFrame.pyc
deleted file mode 100644
index 3ea67b7..0000000
Binary files a/Resources/DocFrame.pyc and /dev/null differ
diff --git a/Resources/Drunk.pyc b/Resources/Drunk.pyc
deleted file mode 100644
index 25b43bb..0000000
Binary files a/Resources/Drunk.pyc and /dev/null differ
diff --git a/Resources/Grapher.pyc b/Resources/Grapher.pyc
deleted file mode 100644
index 261c4c2..0000000
Binary files a/Resources/Grapher.pyc and /dev/null differ
diff --git a/Resources/Grapher_parser.pyc b/Resources/Grapher_parser.pyc
deleted file mode 100644
index bb33a6a..0000000
Binary files a/Resources/Grapher_parser.pyc and /dev/null differ
diff --git a/Resources/Plugins.pyc b/Resources/Plugins.pyc
deleted file mode 100644
index 5a8e0ba..0000000
Binary files a/Resources/Plugins.pyc and /dev/null differ
diff --git a/Resources/PreferencePanel.py b/Resources/PreferencePanel.py
index c55f619..29076ff 100644
--- a/Resources/PreferencePanel.py
+++ b/Resources/PreferencePanel.py
@@ -413,7 +413,7 @@ class PreferenceFrame(wx.Frame):
         for d in CeciliaLib.getVar("availableMidiInputs"):
             availableMidiIns.append(CeciliaLib.ensureNFD(d))
         try:
-            initInput = availableMidiIns[int(CeciliaLib.getVar("midiDeviceIn"))]
+            initInput = availableMidiIns[CeciliaLib.getVar("availableMidiInputIndexes").index(CeciliaLib.getVar("midiDeviceIn"))]
         except:
             if len(availableMidiIns) >= 1:
                 initInput = availableMidiIns[0]
@@ -444,7 +444,7 @@ class PreferenceFrame(wx.Frame):
         for d in CeciliaLib.getVar("availableAudioInputs"):
             availableAudioIns.append(CeciliaLib.ensureNFD(d))
         try:
-            initInput = availableAudioIns[CeciliaLib.getVar("audioInput")]
+            initInput = availableAudioIns[CeciliaLib.getVar("availableAudioInputIndexes").index(CeciliaLib.getVar("audioInput"))]
         except:
             if len(availableAudioIns) >= 1:
                 initInput = availableAudioIns[0]
@@ -465,7 +465,7 @@ class PreferenceFrame(wx.Frame):
         for d in CeciliaLib.getVar("availableAudioOutputs"):
             availableAudioOuts.append(CeciliaLib.ensureNFD(d))
         try:
-            initOutput = availableAudioOuts[CeciliaLib.getVar("audioOutput")]
+            initOutput = availableAudioOuts[CeciliaLib.getVar("availableAudioOutputIndexes").index(CeciliaLib.getVar("audioOutput"))]
         except:
             if len(availableAudioOuts) >= 1:
                 initOutput = availableAudioOuts[0]
@@ -542,13 +542,16 @@ class PreferenceFrame(wx.Frame):
             CeciliaLib.setVar("audioInput", 0)
 
     def changeAudioInput(self, index, label):
-        CeciliaLib.setVar("audioInput", index)
+        deviceIndex = CeciliaLib.getVar("availableAudioInputIndexes")[index]
+        CeciliaLib.setVar("audioInput", deviceIndex)
 
     def changeAudioOutput(self, index, label):
-        CeciliaLib.setVar("audioOutput", index)
+        deviceIndex = CeciliaLib.getVar("availableAudioOutputIndexes")[index]
+        CeciliaLib.setVar("audioOutput", deviceIndex)
 
     def changeMidiInput(self, index, label):
-        CeciliaLib.setVar("midiDeviceIn", index)
+        deviceIndex = CeciliaLib.getVar("availableMidiInputIndexes")[index]
+        CeciliaLib.setVar("midiDeviceIn", deviceIndex)
 
     def changeSfPlayer(self):
         if CeciliaLib.getVar("systemPlatform")  == 'win32':
diff --git a/Resources/PreferencePanel.pyc b/Resources/PreferencePanel.pyc
deleted file mode 100644
index d311645..0000000
Binary files a/Resources/PreferencePanel.pyc and /dev/null differ
diff --git a/Resources/Preset.pyc b/Resources/Preset.pyc
deleted file mode 100644
index d23c024..0000000
Binary files a/Resources/Preset.pyc and /dev/null differ
diff --git a/Resources/Sliders.pyc b/Resources/Sliders.pyc
deleted file mode 100644
index f793470..0000000
Binary files a/Resources/Sliders.pyc and /dev/null differ
diff --git a/Resources/TogglePopup.pyc b/Resources/TogglePopup.pyc
deleted file mode 100644
index 574b062..0000000
Binary files a/Resources/TogglePopup.pyc and /dev/null differ
diff --git a/Resources/Variables.py b/Resources/Variables.py
index 3fdfdd5..4f0db8e 100644
--- a/Resources/Variables.py
+++ b/Resources/Variables.py
@@ -50,9 +50,13 @@ CeciliaVar['isModified'] = False
 
 # Audio / Midi
 CeciliaVar['availableAudioOutputs'] = []
+CeciliaVar['availableAudioOutputIndexes'] = []
 CeciliaVar['availableAudioInputs'] = []
+CeciliaVar['availableAudioInputIndexes'] = []
 CeciliaVar['availableMidiOutputs'] = []
+CeciliaVar['availableMidiOutputIndexes'] = []
 CeciliaVar['availableMidiInputs'] = []
+CeciliaVar['availableMidiInputIndexes'] = []
 
 # Preferences variables
 CeciliaVar['soundfilePlayer'] = ''
diff --git a/Resources/Variables.pyc b/Resources/Variables.pyc
deleted file mode 100644
index 663a4be..0000000
Binary files a/Resources/Variables.pyc and /dev/null differ
diff --git a/Resources/Widgets.pyc b/Resources/Widgets.pyc
deleted file mode 100644
index fd2e8d3..0000000
Binary files a/Resources/Widgets.pyc and /dev/null differ
diff --git a/Resources/__init__.pyc b/Resources/__init__.pyc
deleted file mode 100644
index 5de959b..0000000
Binary files a/Resources/__init__.pyc and /dev/null differ
diff --git a/Resources/audio.py b/Resources/audio.py
index 1a52d50..885859b 100755
--- a/Resources/audio.py
+++ b/Resources/audio.py
@@ -1129,6 +1129,8 @@ class AudioServer():
             self.server.verbosity = 15
         self.setTimeCallable()
         self.timeOpened = True
+        self.recording = False
+        self.withTimer = False
         self.plugins = [None, None, None]
         self.out = self.plugin1 = self.plugin2 = self.plugin3 = None
         self.pluginDict = {"Reverb": CeciliaReverbPlugin, "WGVerb": CeciliaWGReverbPlugin, "Filter": CeciliaFilterPlugin, "Para EQ": CeciliaEQPlugin, 
@@ -1148,16 +1150,22 @@ class AudioServer():
         return sr, bufsize, nchnls, duplex, host, outdev, indev
 
     def start(self, timer=True, rec=False):
+        if CeciliaLib.getVar("DEBUG"):
+            print "Audio server start: begin"
         self.timeOpened = True
         fade = CeciliaLib.getVar("globalFade")
         self.globalamp = Fader(fadein=fade, fadeout=fade, dur=CeciliaLib.getVar("totalTime")).play()
         self.out.mul = self.globalamp
         if CeciliaLib.getVar("automaticMidiBinding") and CeciliaLib.getVar("useMidi"):
+            if CeciliaLib.getVar("DEBUG"):
+                print "Audio server start: use midi"
+                print "midi input device: %d" % CeciliaLib.getVar("midiDeviceIn")
             self.checkCtl7 = Midictl(ctlnumber=7, minscale=-48, maxscale=18, init=0)
             self.checkCtl7.setInterpolation(False)
             self.onNewCtl7Value = Change(self.checkCtl7)
             self.ctl7TrigFunc = TrigFunc(self.onNewCtl7Value, self.newCtl7Value)
         if rec:
+            self.recording = True
             fileformat = {"wav": 0, "aiff": 1}[CeciliaLib.getVar("audioFileType")]
             sampletype = CeciliaLib.getVar("sampSize")
             self.recamp = SigTo(self.amp, time=0.05, init=self.amp)
@@ -1166,15 +1174,25 @@ class AudioServer():
         if CeciliaLib.getVar("startOffset") > 0.0:
             self.server.startoffset = CeciliaLib.getVar("startOffset")
         if timer:
-            self.endcall = CallAfter(function=CeciliaLib.stopCeciliaSound, time=CeciliaLib.getVar("totalTime")+0.2)
+            self.withTimer = True
+            self.endcall = wx.CallLater(int((CeciliaLib.getVar("totalTime")+0.05)*1000), CeciliaLib.stopCeciliaSound)
+            #self.endcall = CallAfter(function=CeciliaLib.stopCeciliaSound, time=CeciliaLib.getVar("totalTime")+0.2)
             self.server.start()
         else:
             self.server.start()
             CeciliaLib.resetControls()
+        if CeciliaLib.getVar("DEBUG"):
+            print "Audio server start: end"
 
     def stop(self):
+        if CeciliaLib.getVar("DEBUG"):
+            print "Audio server stop: begin"
+        if self.withTimer:
+            self.endcall.Stop()
+            self.withTimer = False
         self.server.stop()
-        if getattr(self, "recorder", None) != None:
+        if self.recording:
+            self.recording = False
             self.recorder.stop()
         self.timeOpened = False
         if CeciliaLib.getVar("grapher") != None:
@@ -1182,6 +1200,8 @@ class AudioServer():
         time.sleep(.15)
         if CeciliaLib.getVar("currentModule") != None:
             CeciliaLib.getVar("currentModule")._deleteOscReceivers()
+        if CeciliaLib.getVar("DEBUG"):
+            print "Audio server stop: end"
 
     def shutdown(self):
         self.server.shutdown()
@@ -1190,10 +1210,7 @@ class AudioServer():
         sr, bufsize, nchnls, duplex, host, outdev, indev = self.getPrefs()
         if CeciliaLib.getVar("DEBUG"):
             print "AUDIO CONFIG:\nsr: %s, buffer size: %s, num of channels: %s, duplex: %s, host: %s, output device: %s, input device: %s" % (sr, bufsize, nchnls, duplex, host, outdev, indev)
-        outdevs = pa_get_output_devices()
-        outdev = outdevs[1][outdev]
-        indevs = pa_get_input_devices()
-        indev = indevs[1][indev]
+            print "MIDI CONFIG: \ninput device: %d" % CeciliaLib.getVar("midiDeviceIn")
         self.server.setSamplingRate(sr)
         self.server.setBufferSize(bufsize)
         self.server.setNchnls(nchnls)
@@ -1247,8 +1264,10 @@ class AudioServer():
     def setAmp(self, x):
         self.amp = math.pow(10.0, x * 0.05)
         self.server.amp = self.amp
-        if getattr(self, "recamp", None) != None:
+        try:
             self.recamp.value = self.amp
+        except:
+            pass
 
     def setInOutDevice(self, device):
         self.server.setInOutDevice(device)
@@ -1269,65 +1288,51 @@ class AudioServer():
             return False
 
     def openCecFile(self, filepath):
-        print "1"
         CeciliaLib.setVar("currentModule", None)
-        print "2"
         CeciliaLib.setVar("currentModuleRef", None)
-        print "3"
         CeciliaLib.setVar("interfaceWidgets", [])
-        print "4"
         CeciliaLib.setVar("startOffset", 0.0)
-        print "5"
         try:
-            print "5.5"
             global Module, Interface
             del Module, Interface
         except:
-            print "5.6"
             pass
         try:
-            print "6.6"
             global CECILIA_PRESETS
             del CECILIA_PRESETS
         except:
-            print "6.7"
             pass
         if not serverBooted():
             self.boot()
-        print "7"
         execfile(filepath, globals())
-        print "8"
         CeciliaLib.setVar("currentModuleRef", copy.deepcopy(Module))
-        print "9"
         CeciliaLib.setVar("interfaceWidgets", copy.deepcopy(Interface))
-        print "10"
         try:
             CeciliaLib.setVar("presets", copy.deepcopy(CECILIA_PRESETS))
         except:
             CeciliaLib.setVar("presets", {})
-        print "11"
         CeciliaLib.getVar("mainFrame").onUpdateInterface(None)
 
     def loadModule(self, module):
-        if getattr(self, "plugin1", None) != None:
+        if self.plugin1 != None:
             del self.plugin1
-        if getattr(self, "plugin2", None) != None:
+        if self.plugin2 != None:
             del self.plugin2
-        if getattr(self, "plugin3", None) != None:
+        if self.plugin3 != None:
             del self.plugin3
-        if getattr(self, "out", None) != None:
-            del self.out
-        if getattr(self, "globalamp", None) != None:
-            del self.globalamp
-        if getattr(self, "endcall", None) != None:
-            del self.endcall
-        if getattr(self, "recorder", None) != None:
-            del self.recorder
-            del self.recamp
-        if getattr(self, "checkCtl7", None) != None:
-            del self.checkCtl7
-            del self.onNewCtl7Value
-            del self.ctl7TrigFunc
+#        if getattr(self, "globalamp", None) != None:
+#            del self.globalamp
+#        if getattr(self, "out", None) != None:
+#            del self.out
+#        if getattr(self, "endcall", None) != None:
+#            del self.endcall
+#        if getattr(self, "recorder", None) != None:
+#            del self.recorder
+#            del self.recamp
+#        if getattr(self, "checkCtl7", None) != None:
+#            del self.checkCtl7
+#            del self.onNewCtl7Value
+#            del self.ctl7TrigFunc
 
         try:
             CeciliaLib.getVar("currentModule").__del__()
@@ -1456,8 +1461,7 @@ class AudioServer():
         if not self.midiLearnRange:
             self.midiLearnSlider.setMidiCtl(number)
             self.midiLearnSlider.setMidiChannel(midichnl)
-            self.server.stop()
-            del self.scan
+            wx.CallAfter(self.server.stop)
         else:
             tmp = [number, midichnl]
             if not tmp in self.midiLearnCtlsAndChnls:
@@ -1465,8 +1469,7 @@ class AudioServer():
                 if len(self.midiLearnCtlsAndChnls) == 2:
                     self.midiLearnSlider.setMidiCtl([self.midiLearnCtlsAndChnls[0][0], self.midiLearnCtlsAndChnls[1][0]])
                     self.midiLearnSlider.setMidiChannel([self.midiLearnCtlsAndChnls[0][1], self.midiLearnCtlsAndChnls[1][1]])
-                    self.server.stop()
-                    del self.scan
+                    wx.CallAfter(self.server.stop)
 
     def midiLearn(self, slider, rangeSlider=False):
         self.midiLearnSlider = slider
@@ -1479,15 +1482,16 @@ class AudioServer():
 
     def getAvailableAudioMidiDrivers(self):
         inputDriverList, inputDriverIndexes = pa_get_input_devices()
-        selectedInputDriver = inputDriverList[inputDriverIndexes.index(pa_get_default_input())]
+        defaultInputDriver = inputDriverList[inputDriverIndexes.index(pa_get_default_input())]
         outputDriverList, outputDriverIndexes = pa_get_output_devices()
-        selectedOutputDriver = outputDriverList[outputDriverIndexes.index(pa_get_default_output())]
+        defaultOutputDriver = outputDriverList[outputDriverIndexes.index(pa_get_default_output())]
         midiDriverList, midiDriverIndexes = pm_get_input_devices()
         if midiDriverList == []:
-            selectedMidiDriver = ""
+            defaultMidiDriver = ""
         else:
-            selectedMidiDriver = midiDriverList[midiDriverIndexes.index(pm_get_default_input())]
-        return inputDriverList, selectedInputDriver, outputDriverList, selectedOutputDriver, midiDriverList, selectedMidiDriver
+            defaultMidiDriver = midiDriverList[midiDriverIndexes.index(pm_get_default_input())]
+        return inputDriverList, inputDriverIndexes, defaultInputDriver, outputDriverList, outputDriverIndexes, \
+                defaultOutputDriver, midiDriverList, midiDriverIndexes, defaultMidiDriver
     
     def getSoundInfo(self, path):
         """
diff --git a/Resources/audio.pyc b/Resources/audio.pyc
deleted file mode 100644
index 5cb1ada..0000000
Binary files a/Resources/audio.pyc and /dev/null differ
diff --git a/Resources/constants.pyc b/Resources/constants.pyc
deleted file mode 100644
index 0b095ff..0000000
Binary files a/Resources/constants.pyc and /dev/null differ
diff --git a/Resources/images.pyc b/Resources/images.pyc
deleted file mode 100644
index c61807c..0000000
Binary files a/Resources/images.pyc and /dev/null differ
diff --git a/Resources/menubar.pyc b/Resources/menubar.pyc
deleted file mode 100644
index d499641..0000000
Binary files a/Resources/menubar.pyc and /dev/null differ
diff --git a/Resources/modules/Time/Granulator.c5 b/Resources/modules/Time/Granulator.c5
index 1773aad..39b9edb 100644
--- a/Resources/modules/Time/Granulator.c5
+++ b/Resources/modules/Time/Granulator.c5
@@ -80,7 +80,7 @@ Interface = [   cfilein(name="sndtable", label="Audio"),
                 cslider(name="pitrnd", label="Pitch Random", min=0, max=0.5, init=0.005, rel="lin", unit="x", col="red3",half=True),
                 cslider(name="cut", label="Filter Freq", min=100, max=18000, init=20000, rel="log", unit="Hz", col="green3"),
                 cslider(name="filterq", label="Filter Q", min=0.5, max=10, init=0.707, rel="log", unit="Q", col="green3"),
-                cslider(name="dur", label="Grain Duration", min=0.01, max=1, init=0.1, up=True, rel="lin", unit="sec", col="blue",half=True),
+                cslider(name="dur", label="Grain Duration", min=0.01, max=10, init=0.1, up=True, rel="log", unit="sec", col="blue",half=True),
                 cslider(name="num", label="# of Grains", min=1, max=150, init=24, rel="lin", gliss=0, res="int", up=True, unit="grs", col="tan",half=True),
                 cpopup(name="filttype", label="Filter Type", init="Lowpass", col="green3", value=["Lowpass","Highpass","Bandpass","Bandstop"]),
                 cpopup(name="balance", label = "Balance", init= "Off", col="blue", value=["Off","Compress", "Source"]),
diff --git a/doc/Cecilia5_manuel.aux b/doc/Cecilia5_manuel.aux
new file mode 100644
index 0000000..72c9678
--- /dev/null
+++ b/doc/Cecilia5_manuel.aux
@@ -0,0 +1,31 @@
+\relax 
+\catcode`:\active
+\catcode`;\active
+\catcode`!\active
+\catcode`?\active
+\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
+\HyperFirstAtBeginDocument{\ifx\hyper at anchor\@undefined
+\global\let\oldcontentsline\contentsline
+\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
+\global\let\oldnewlabel\newlabel
+\gdef\newlabel#1#2{\newlabelxx{#1}#2}
+\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
+\AtEndDocument{\ifx\hyper at anchor\@undefined
+\let\contentsline\oldcontentsline
+\let\newlabel\oldnewlabel
+\fi}
+\fi}
+\global\let\hyper at last\relax 
+\gdef\HyperFirstAtBeginDocument#1{#1}
+\providecommand\HyField at AuxAddToFields[1]{}
+\select at language{french}
+\@writefile{toc}{\select at language{french}}
+\@writefile{lof}{\select at language{french}}
+\@writefile{lot}{\select at language{french}}
+\@writefile{toc}{\contentsline {chapter}{\numberline {1}Template}{5}{chapter.1}}
+\@writefile{lof}{\addvspace {10\p@ }}
+\@writefile{lot}{\addvspace {10\p@ }}
+\@writefile{toc}{\contentsline {section}{\numberline {1.1}Hi\IeC {\'e}rarchie}{5}{section.1.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {1.1.1}Chapitres}{5}{subsection.1.1.1}}
+\@writefile{toc}{\contentsline {subsection}{\numberline {1.1.2}Images}{5}{subsection.1.1.2}}
+\@writefile{lof}{\contentsline {figure}{\numberline {1.1}{\ignorespaces Exemple d'insertion d'image simple.}}{6}{figure.1.1}}
diff --git a/doc/Cecilia5_manuel.log b/doc/Cecilia5_manuel.log
new file mode 100644
index 0000000..3a0aff2
--- /dev/null
+++ b/doc/Cecilia5_manuel.log
@@ -0,0 +1,695 @@
+This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012/Debian) (format=pdflatex 2013.2.5)  7 FEB 2013 16:44
+entering extended mode
+ restricted \write18 enabled.
+ %&-line parsing enabled.
+**Cecilia5_manuel.tex
+(./Cecilia5_manuel.tex
+LaTeX2e <2011/06/27>
+Babel <v3.8m> and hyphenation patterns for english, dumylang, nohyphenation, lo
+aded.
+(/usr/share/texlive/texmf-dist/tex/latex/base/book.cls
+Document Class: book 2007/10/19 v1.4h Standard LaTeX document class
+(/usr/share/texlive/texmf-dist/tex/latex/base/bk11.clo
+File: bk11.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
+)
+\c at part=\count79
+\c at chapter=\count80
+\c at section=\count81
+\c at subsection=\count82
+\c at subsubsection=\count83
+\c at paragraph=\count84
+\c at subparagraph=\count85
+\c at figure=\count86
+\c at table=\count87
+\abovecaptionskip=\skip41
+\belowcaptionskip=\skip42
+\bibindent=\dimen102
+)
+(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty
+Package: amssymb 2009/06/22 v3.00
+
+(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty
+Package: amsfonts 2009/06/22 v3.00 Basic AMSFonts support
+\@emptytoks=\toks14
+\symAMSa=\mathgroup4
+\symAMSb=\mathgroup5
+LaTeX Font Info:    Overwriting math alphabet `\mathfrak' in version `bold'
+(Font)                  U/euf/m/n --> U/euf/b/n on input line 96.
+))
+(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty
+Package: amsmath 2000/07/18 v2.13 AMS math features
+\@mathmargin=\skip43
+
+For additional information on amsmath, use the `?' option.
+(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty
+Package: amstext 2000/06/29 v2.01
+
+(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty
+File: amsgen.sty 1999/11/30 v2.0
+\@emptytoks=\toks15
+\ex@=\dimen103
+))
+(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty
+Package: amsbsy 1999/11/29 v1.2d
+\pmbraise@=\dimen104
+)
+(/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty
+Package: amsopn 1999/12/14 v2.01 operator names
+)
+\inf at bad=\count88
+LaTeX Info: Redefining \frac on input line 211.
+\uproot@=\count89
+\leftroot@=\count90
+LaTeX Info: Redefining \overline on input line 307.
+\classnum@=\count91
+\DOTSCASE@=\count92
+LaTeX Info: Redefining \ldots on input line 379.
+LaTeX Info: Redefining \dots on input line 382.
+LaTeX Info: Redefining \cdots on input line 467.
+\Mathstrutbox@=\box26
+\strutbox@=\box27
+\big at size=\dimen105
+LaTeX Font Info:    Redeclaring font encoding OML on input line 567.
+LaTeX Font Info:    Redeclaring font encoding OMS on input line 568.
+\macc at depth=\count93
+\c at MaxMatrixCols=\count94
+\dotsspace@=\muskip10
+\c at parentequation=\count95
+\dspbrk at lvl=\count96
+\tag at help=\toks16
+\row@=\count97
+\column@=\count98
+\maxfields@=\count99
+\andhelp@=\toks17
+\eqnshift@=\dimen106
+\alignsep@=\dimen107
+\tagshift@=\dimen108
+\tagwidth@=\dimen109
+\totwidth@=\dimen110
+\lineht@=\dimen111
+\@envbody=\toks18
+\multlinegap=\skip44
+\multlinetaggap=\skip45
+\mathdisplay at stack=\toks19
+LaTeX Info: Redefining \[ on input line 2666.
+LaTeX Info: Redefining \] on input line 2667.
+)
+(/usr/share/texlive/texmf-dist/tex/latex/graphics/epsfig.sty
+Package: epsfig 1999/02/16 v1.7a (e)psfig emulation (SPQR)
+
+(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty
+Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR)
+
+(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty
+Package: keyval 1999/03/16 v1.13 key=value parser (DPC)
+\KV at toks@=\toks20
+)
+(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty
+Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR)
+
+(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty
+Package: trig 1999/03/16 v1.09 sin cos tan (DPC)
+)
+(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg
+File: graphics.cfg 2010/04/23 v1.9 graphics configuration of TeX Live
+)
+Package graphics Info: Driver file: pdftex.def on input line 91.
+
+(/usr/share/texlive/texmf-dist/tex/latex/pdftex-def/pdftex.def
+File: pdftex.def 2011/05/27 v0.06d Graphics/color for pdfTeX
+
+(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty
+Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty
+Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO)
+)
+\Gread at gobject=\count100
+))
+\Gin at req@height=\dimen112
+\Gin at req@width=\dimen113
+)
+\epsfxsize=\dimen114
+\epsfysize=\dimen115
+)
+(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty
+Package: inputenc 2008/03/30 v1.1d Input encoding file
+\inpenc at prehook=\toks21
+\inpenc at posthook=\toks22
+
+(/usr/share/texlive/texmf-dist/tex/latex/base/utf8.def
+File: utf8.def 2008/04/05 v1.1m UTF-8 support for inputenc
+Now handling font encoding OML ...
+... no UTF-8 mapping file for font encoding OML
+Now handling font encoding T1 ...
+... processing UTF-8 mapping file for font encoding T1
+
+(/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.dfu
+File: t1enc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
+   defining Unicode char U+00A1 (decimal 161)
+   defining Unicode char U+00A3 (decimal 163)
+   defining Unicode char U+00AB (decimal 171)
+   defining Unicode char U+00BB (decimal 187)
+   defining Unicode char U+00BF (decimal 191)
+   defining Unicode char U+00C0 (decimal 192)
+   defining Unicode char U+00C1 (decimal 193)
+   defining Unicode char U+00C2 (decimal 194)
+   defining Unicode char U+00C3 (decimal 195)
+   defining Unicode char U+00C4 (decimal 196)
+   defining Unicode char U+00C5 (decimal 197)
+   defining Unicode char U+00C6 (decimal 198)
+   defining Unicode char U+00C7 (decimal 199)
+   defining Unicode char U+00C8 (decimal 200)
+   defining Unicode char U+00C9 (decimal 201)
+   defining Unicode char U+00CA (decimal 202)
+   defining Unicode char U+00CB (decimal 203)
+   defining Unicode char U+00CC (decimal 204)
+   defining Unicode char U+00CD (decimal 205)
+   defining Unicode char U+00CE (decimal 206)
+   defining Unicode char U+00CF (decimal 207)
+   defining Unicode char U+00D0 (decimal 208)
+   defining Unicode char U+00D1 (decimal 209)
+   defining Unicode char U+00D2 (decimal 210)
+   defining Unicode char U+00D3 (decimal 211)
+   defining Unicode char U+00D4 (decimal 212)
+   defining Unicode char U+00D5 (decimal 213)
+   defining Unicode char U+00D6 (decimal 214)
+   defining Unicode char U+00D8 (decimal 216)
+   defining Unicode char U+00D9 (decimal 217)
+   defining Unicode char U+00DA (decimal 218)
+   defining Unicode char U+00DB (decimal 219)
+   defining Unicode char U+00DC (decimal 220)
+   defining Unicode char U+00DD (decimal 221)
+   defining Unicode char U+00DE (decimal 222)
+   defining Unicode char U+00DF (decimal 223)
+   defining Unicode char U+00E0 (decimal 224)
+   defining Unicode char U+00E1 (decimal 225)
+   defining Unicode char U+00E2 (decimal 226)
+   defining Unicode char U+00E3 (decimal 227)
+   defining Unicode char U+00E4 (decimal 228)
+   defining Unicode char U+00E5 (decimal 229)
+   defining Unicode char U+00E6 (decimal 230)
+   defining Unicode char U+00E7 (decimal 231)
+   defining Unicode char U+00E8 (decimal 232)
+   defining Unicode char U+00E9 (decimal 233)
+   defining Unicode char U+00EA (decimal 234)
+   defining Unicode char U+00EB (decimal 235)
+   defining Unicode char U+00EC (decimal 236)
+   defining Unicode char U+00ED (decimal 237)
+   defining Unicode char U+00EE (decimal 238)
+   defining Unicode char U+00EF (decimal 239)
+   defining Unicode char U+00F0 (decimal 240)
+   defining Unicode char U+00F1 (decimal 241)
+   defining Unicode char U+00F2 (decimal 242)
+   defining Unicode char U+00F3 (decimal 243)
+   defining Unicode char U+00F4 (decimal 244)
+   defining Unicode char U+00F5 (decimal 245)
+   defining Unicode char U+00F6 (decimal 246)
+   defining Unicode char U+00F8 (decimal 248)
+   defining Unicode char U+00F9 (decimal 249)
+   defining Unicode char U+00FA (decimal 250)
+   defining Unicode char U+00FB (decimal 251)
+   defining Unicode char U+00FC (decimal 252)
+   defining Unicode char U+00FD (decimal 253)
+   defining Unicode char U+00FE (decimal 254)
+   defining Unicode char U+00FF (decimal 255)
+   defining Unicode char U+0102 (decimal 258)
+   defining Unicode char U+0103 (decimal 259)
+   defining Unicode char U+0104 (decimal 260)
+   defining Unicode char U+0105 (decimal 261)
+   defining Unicode char U+0106 (decimal 262)
+   defining Unicode char U+0107 (decimal 263)
+   defining Unicode char U+010C (decimal 268)
+   defining Unicode char U+010D (decimal 269)
+   defining Unicode char U+010E (decimal 270)
+   defining Unicode char U+010F (decimal 271)
+   defining Unicode char U+0110 (decimal 272)
+   defining Unicode char U+0111 (decimal 273)
+   defining Unicode char U+0118 (decimal 280)
+   defining Unicode char U+0119 (decimal 281)
+   defining Unicode char U+011A (decimal 282)
+   defining Unicode char U+011B (decimal 283)
+   defining Unicode char U+011E (decimal 286)
+   defining Unicode char U+011F (decimal 287)
+   defining Unicode char U+0130 (decimal 304)
+   defining Unicode char U+0131 (decimal 305)
+   defining Unicode char U+0132 (decimal 306)
+   defining Unicode char U+0133 (decimal 307)
+   defining Unicode char U+0139 (decimal 313)
+   defining Unicode char U+013A (decimal 314)
+   defining Unicode char U+013D (decimal 317)
+   defining Unicode char U+013E (decimal 318)
+   defining Unicode char U+0141 (decimal 321)
+   defining Unicode char U+0142 (decimal 322)
+   defining Unicode char U+0143 (decimal 323)
+   defining Unicode char U+0144 (decimal 324)
+   defining Unicode char U+0147 (decimal 327)
+   defining Unicode char U+0148 (decimal 328)
+   defining Unicode char U+014A (decimal 330)
+   defining Unicode char U+014B (decimal 331)
+   defining Unicode char U+0150 (decimal 336)
+   defining Unicode char U+0151 (decimal 337)
+   defining Unicode char U+0152 (decimal 338)
+   defining Unicode char U+0153 (decimal 339)
+   defining Unicode char U+0154 (decimal 340)
+   defining Unicode char U+0155 (decimal 341)
+   defining Unicode char U+0158 (decimal 344)
+   defining Unicode char U+0159 (decimal 345)
+   defining Unicode char U+015A (decimal 346)
+   defining Unicode char U+015B (decimal 347)
+   defining Unicode char U+015E (decimal 350)
+   defining Unicode char U+015F (decimal 351)
+   defining Unicode char U+0160 (decimal 352)
+   defining Unicode char U+0161 (decimal 353)
+   defining Unicode char U+0162 (decimal 354)
+   defining Unicode char U+0163 (decimal 355)
+   defining Unicode char U+0164 (decimal 356)
+   defining Unicode char U+0165 (decimal 357)
+   defining Unicode char U+016E (decimal 366)
+   defining Unicode char U+016F (decimal 367)
+   defining Unicode char U+0170 (decimal 368)
+   defining Unicode char U+0171 (decimal 369)
+   defining Unicode char U+0178 (decimal 376)
+   defining Unicode char U+0179 (decimal 377)
+   defining Unicode char U+017A (decimal 378)
+   defining Unicode char U+017B (decimal 379)
+   defining Unicode char U+017C (decimal 380)
+   defining Unicode char U+017D (decimal 381)
+   defining Unicode char U+017E (decimal 382)
+   defining Unicode char U+200C (decimal 8204)
+   defining Unicode char U+2013 (decimal 8211)
+   defining Unicode char U+2014 (decimal 8212)
+   defining Unicode char U+2018 (decimal 8216)
+   defining Unicode char U+2019 (decimal 8217)
+   defining Unicode char U+201A (decimal 8218)
+   defining Unicode char U+201C (decimal 8220)
+   defining Unicode char U+201D (decimal 8221)
+   defining Unicode char U+201E (decimal 8222)
+   defining Unicode char U+2030 (decimal 8240)
+   defining Unicode char U+2031 (decimal 8241)
+   defining Unicode char U+2039 (decimal 8249)
+   defining Unicode char U+203A (decimal 8250)
+   defining Unicode char U+2423 (decimal 9251)
+)
+Now handling font encoding OT1 ...
+... processing UTF-8 mapping file for font encoding OT1
+
+(/usr/share/texlive/texmf-dist/tex/latex/base/ot1enc.dfu
+File: ot1enc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
+   defining Unicode char U+00A1 (decimal 161)
+   defining Unicode char U+00A3 (decimal 163)
+   defining Unicode char U+00B8 (decimal 184)
+   defining Unicode char U+00BF (decimal 191)
+   defining Unicode char U+00C5 (decimal 197)
+   defining Unicode char U+00C6 (decimal 198)
+   defining Unicode char U+00D8 (decimal 216)
+   defining Unicode char U+00DF (decimal 223)
+   defining Unicode char U+00E6 (decimal 230)
+   defining Unicode char U+00EC (decimal 236)
+   defining Unicode char U+00ED (decimal 237)
+   defining Unicode char U+00EE (decimal 238)
+   defining Unicode char U+00EF (decimal 239)
+   defining Unicode char U+00F8 (decimal 248)
+   defining Unicode char U+0131 (decimal 305)
+   defining Unicode char U+0141 (decimal 321)
+   defining Unicode char U+0142 (decimal 322)
+   defining Unicode char U+0152 (decimal 338)
+   defining Unicode char U+0153 (decimal 339)
+   defining Unicode char U+2013 (decimal 8211)
+   defining Unicode char U+2014 (decimal 8212)
+   defining Unicode char U+2018 (decimal 8216)
+   defining Unicode char U+2019 (decimal 8217)
+   defining Unicode char U+201C (decimal 8220)
+   defining Unicode char U+201D (decimal 8221)
+)
+Now handling font encoding OMS ...
+... processing UTF-8 mapping file for font encoding OMS
+
+(/usr/share/texlive/texmf-dist/tex/latex/base/omsenc.dfu
+File: omsenc.dfu 2008/04/05 v1.1m UTF-8 support for inputenc
+   defining Unicode char U+00A7 (decimal 167)
+   defining Unicode char U+00B6 (decimal 182)
+   defining Unicode char U+00B7 (decimal 183)
+   defining Unicode char U+2020 (decimal 8224)
+   defining Unicode char U+2021 (decimal 8225)
+   defining Unicode char U+2022 (decimal 8226)
+)
+Now handling font encoding OMX ...
+... no UTF-8 mapping file for font encoding OMX
+Now handling font encoding U ...
+... no UTF-8 mapping file for font encoding U
+   defining Unicode char U+00A9 (decimal 169)
+   defining Unicode char U+00AA (decimal 170)
+   defining Unicode char U+00AE (decimal 174)
+   defining Unicode char U+00BA (decimal 186)
+   defining Unicode char U+02C6 (decimal 710)
+   defining Unicode char U+02DC (decimal 732)
+   defining Unicode char U+200C (decimal 8204)
+   defining Unicode char U+2026 (decimal 8230)
+   defining Unicode char U+2122 (decimal 8482)
+   defining Unicode char U+2423 (decimal 9251)
+))
+(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty
+Package: babel 2008/07/08 v3.8m The Babel package
+
+(/usr/share/texlive/texmf-dist/tex/generic/babel/frenchb.ldf
+Language: frenchb 2010/08/21 v2.5a French support from the babel system
+
+(/usr/share/texlive/texmf-dist/tex/generic/babel/babel.def
+File: babel.def 2008/07/08 v3.8m Babel common definitions
+\babel at savecnt=\count101
+\U at D=\dimen116
+)
+
+Package babel Warning: No hyphenation patterns were loaded for
+(babel)                the language `French'
+(babel)                I will use the patterns loaded for \language=0 instead.
+
+\l at french = a dialect from \language0
+Package babel Info: Making : an active character on input line 234.
+Package babel Info: Making ; an active character on input line 235.
+Package babel Info: Making ! an active character on input line 236.
+Package babel Info: Making ? an active character on input line 237.
+\FB at Mht=\dimen117
+\std at mcc=\count102
+\dec at mcc=\count103
+\parindentFFN=\dimen118
+*************************************
+* Local config file frenchb.cfg used
+*
+(/usr/share/texlive/texmf-dist/tex/generic/babel/frenchb.cfg))
+(/usr/share/texlive/texmf-dist/tex/generic/babel/frenchb.ldf
+Language: frenchb 2010/08/21 v2.5a French support from the babel system
+))
+(/usr/share/texlive/texmf-dist/tex/latex/carlisle/scalefnt.sty)
+(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty
+\lst at mode=\count104
+\lst at gtempboxa=\box28
+\lst at token=\toks23
+\lst at length=\count105
+\lst at currlwidth=\dimen119
+\lst at column=\count106
+\lst at pos=\count107
+\lst at lostspace=\dimen120
+\lst at width=\dimen121
+\lst at newlines=\count108
+\lst at lineno=\count109
+\lst at maxwidth=\dimen122
+
+(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty
+File: lstmisc.sty 2007/02/22 1.4 (Carsten Heinz)
+\c at lstnumber=\count110
+\lst at skipnumbers=\count111
+\lst at framebox=\box29
+)
+(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg
+File: listings.cfg 2007/02/22 1.4 listings configuration
+))
+Package: listings 2007/02/22 1.4 (Carsten Heinz)
+
+(/usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty
+Package: color 2005/11/14 v1.0j Standard LaTeX Color (DPC)
+
+(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg
+File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive
+)
+Package color Info: Driver file: pdftex.def on input line 130.
+)
+(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty
+Package: hyperref 2012/05/13 v6.82q Hypertext links for LaTeX
+
+(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty
+Package: hobsub-hyperref 2012/05/28 v1.13 Bundle oberdiek, subset hyperref (HO)
+
+
+(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty
+Package: hobsub-generic 2012/05/28 v1.13 Bundle oberdiek, subset generic (HO)
+Package: hobsub 2012/05/28 v1.13 Construct package bundles (HO)
+Package hobsub Info: Skipping package `infwarerr' (already loaded).
+Package hobsub Info: Skipping package `ltxcmds' (already loaded).
+Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO)
+Package ifluatex Info: LuaTeX not detected.
+Package: ifvtex 2010/03/01 v1.5 Detect VTeX and its facilities (HO)
+Package ifvtex Info: VTeX not detected.
+Package: intcalc 2007/09/27 v1.1 Expandable calculations with integers (HO)
+Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO)
+Package ifpdf Info: pdfTeX in PDF mode is detected.
+Package: etexcmds 2011/02/16 v1.5 Avoid name clashes with e-TeX commands (HO)
+Package etexcmds Info: Could not find \expanded.
+(etexcmds)             That can mean that you are not using pdfTeX 1.50 or
+(etexcmds)             that some package has redefined \expanded.
+(etexcmds)             In the latter case, load this package earlier.
+Package: kvsetkeys 2012/04/25 v1.16 Key value parser (HO)
+Package: kvdefinekeys 2011/04/07 v1.3 Define keys (HO)
+Package: pdftexcmds 2011/11/29 v0.20 Utility functions of pdfTeX for LuaTeX (HO
+)
+Package pdftexcmds Info: LuaTeX not detected.
+Package pdftexcmds Info: \pdf at primitive is available.
+Package pdftexcmds Info: \pdf at ifprimitive is available.
+Package pdftexcmds Info: \pdfdraftmode found.
+Package: pdfescape 2011/11/25 v1.13 Implements pdfTeX's escape features (HO)
+Package: bigintcalc 2012/04/08 v1.3 Expandable calculations on big integers (HO
+)
+Package: bitset 2011/01/30 v1.1 Handle bit-vector datatype (HO)
+Package: uniquecounter 2011/01/30 v1.2 Provide unlimited unique counter (HO)
+)
+Package hobsub Info: Skipping package `hobsub' (already loaded).
+Package: letltxmacro 2010/09/02 v1.4 Let assignment for LaTeX macros (HO)
+Package: hopatch 2012/05/28 v1.2 Wrapper for package hooks (HO)
+Package: xcolor-patch 2011/01/30 xcolor patch
+Package: atveryend 2011/06/30 v1.8 Hooks at the very end of document (HO)
+Package atveryend Info: \enddocument detected (standard20110627).
+Package: atbegshi 2011/10/05 v1.16 At begin shipout hook (HO)
+Package: refcount 2011/10/16 v3.4 Data extraction from label references (HO)
+Package: hycolor 2011/01/30 v1.7 Color options for hyperref/bookmark (HO)
+)
+(/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty
+Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional
+)
+(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty
+Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO)
+)
+\@linkdim=\dimen123
+\Hy at linkcounter=\count112
+\Hy at pagecounter=\count113
+
+(/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def
+File: pd1enc.def 2012/05/13 v6.82q Hyperref: PDFDocEncoding definition (HO)
+Now handling font encoding PD1 ...
+... no UTF-8 mapping file for font encoding PD1
+)
+\Hy at SavedSpaceFactor=\count114
+
+(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/hyperref.cfg
+File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive
+)
+
+Package hyperref Warning: Invalid value `0'
+(hyperref)                for option `pdfborder'.
+(hyperref)                Option setting is ignored on input line 3941.
+
+Package hyperref Info: Hyper figures OFF on input line 4062.
+Package hyperref Info: Link nesting OFF on input line 4067.
+Package hyperref Info: Hyper index ON on input line 4070.
+Package hyperref Info: Plain pages OFF on input line 4077.
+Package hyperref Info: Backreferencing OFF on input line 4082.
+Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
+Package hyperref Info: Bookmarks ON on input line 4300.
+\c at Hy@tempcnt=\count115
+(/usr/share/texlive/texmf-dist/tex/latex/url/url.sty
+\Urlmuskip=\muskip11
+Package: url 2006/04/12  ver 3.3  Verb mode for urls, etc.
+)
+LaTeX Info: Redefining \url on input line 4653.
+\Fld at menulength=\count116
+\Field at Width=\dimen124
+\Fld at charsize=\dimen125
+Package hyperref Info: Hyper figures OFF on input line 5773.
+Package hyperref Info: Link nesting OFF on input line 5778.
+Package hyperref Info: Hyper index ON on input line 5781.
+Package hyperref Info: backreferencing OFF on input line 5788.
+Package hyperref Info: Link coloring OFF on input line 5793.
+Package hyperref Info: Link coloring with OCG OFF on input line 5798.
+Package hyperref Info: PDF/A mode OFF on input line 5803.
+LaTeX Info: Redefining \ref on input line 5843.
+LaTeX Info: Redefining \pageref on input line 5847.
+\Hy at abspage=\count117
+\c at Item=\count118
+\c at Hfootnote=\count119
+)
+
+Package hyperref Message: Driver (autodetected): hpdftex.
+
+(/usr/share/texlive/texmf-dist/tex/latex/hyperref/hpdftex.def
+File: hpdftex.def 2012/05/13 v6.82q Hyperref driver for pdfTeX
+\Fld at listcount=\count120
+\c at bookmark@seq at number=\count121
+
+(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty
+Package: rerunfilecheck 2011/04/15 v1.7 Rerun checks for auxiliary files (HO)
+Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 2
+82.
+)
+\Hy at SectionHShift=\skip46
+)
+Package hyperref Info: Option `colorlinks' set `true' on input line 17.
+Package color Info: Redefining color green on input line 27.
+
+No file Cecilia5_manuel.aux.
+\openout1 = `Cecilia5_manuel.aux'.
+
+LaTeX Font Info:    Checking defaults for OML/cmm/m/it on input line 104.
+LaTeX Font Info:    ... okay on input line 104.
+LaTeX Font Info:    Checking defaults for T1/cmr/m/n on input line 104.
+LaTeX Font Info:    ... okay on input line 104.
+LaTeX Font Info:    Checking defaults for OT1/cmr/m/n on input line 104.
+LaTeX Font Info:    ... okay on input line 104.
+LaTeX Font Info:    Checking defaults for OMS/cmsy/m/n on input line 104.
+LaTeX Font Info:    ... okay on input line 104.
+LaTeX Font Info:    Checking defaults for OMX/cmex/m/n on input line 104.
+LaTeX Font Info:    ... okay on input line 104.
+LaTeX Font Info:    Checking defaults for U/cmr/m/n on input line 104.
+LaTeX Font Info:    ... okay on input line 104.
+LaTeX Font Info:    Checking defaults for PD1/pdf/m/n on input line 104.
+LaTeX Font Info:    ... okay on input line 104.
+(/usr/share/texlive/texmf-dist/tex/context/base/supp-pdf.mkii
+[Loading MPS to PDF converter (version 2006.09.02).]
+\scratchcounter=\count122
+\scratchdimen=\dimen126
+\scratchbox=\box30
+\nofMPsegments=\count123
+\nofMParguments=\count124
+\everyMPshowfont=\toks24
+\MPscratchCnt=\count125
+\MPscratchDim=\dimen127
+\MPnumerator=\count126
+\makeMPintoPDFobject=\count127
+\everyMPtoPDFconversion=\toks25
+) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
+Package: epstopdf-base 2010/02/09 v2.5 Base part for package epstopdf
+
+(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/grfext.sty
+Package: grfext 2010/08/19 v1.1 Manage graphics extensions (HO)
+)
+Package grfext Info: Graphics extension search list:
+(grfext)             [.png,.pdf,.jpg,.mps,.jpeg,.jbig2,.jb2,.PNG,.PDF,.JPG,.JPE
+G,.JBIG2,.JB2,.eps]
+(grfext)             \AppendGraphicsExtensions on input line 452.
+
+(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
+File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv
+e
+))
+LaTeX Info: Redefining \degres on input line 104.
+LaTeX Info: Redefining \dots on input line 104.
+LaTeX Info: Redefining \up on input line 104.
+
+
+Package frenchb.ldf Warning: OT1 encoding should not be used for French. 
+(frenchb.ldf)                Add \usepackage[T1]{fontenc} to the preamble
+(frenchb.ldf)                of your document, on input line 104.
+
+\c at lstlisting=\count128
+\AtBeginShipoutBox=\box31
+Package hyperref Info: Link coloring ON on input line 104.
+(/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty
+Package: nameref 2010/04/30 v2.40 Cross-referencing by name of section
+
+(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/gettitlestring.sty
+Package: gettitlestring 2010/12/03 v1.4 Cleanup title references (HO)
+)
+\c at section@level=\count129
+)
+LaTeX Info: Redefining \ref on input line 104.
+LaTeX Info: Redefining \pageref on input line 104.
+LaTeX Info: Redefining \nameref on input line 104.
+\@outlinefile=\write3
+\openout3 = `Cecilia5_manuel.out'.
+
+LaTeX Font Info:    Try loading font information for U+msa on input line 109.
+
+(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd
+File: umsa.fd 2009/06/22 v3.00 AMS symbols A
+)
+LaTeX Font Info:    Try loading font information for U+msb on input line 109.
+
+(/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd
+File: umsb.fd 2009/06/22 v3.00 AMS symbols B
+) [1
+
+
+{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map}] [2
+
+]
+\tf at toc=\write4
+\openout4 = `Cecilia5_manuel.toc'.
+
+ [3] [4
+
+]
+Chapitre 1.
+(./chapitres/template.tex
+<images/template/preferences.pdf, id=27, 349.305pt x 328.22626pt>
+File: images/template/preferences.pdf Graphic file (type pdf)
+
+<use images/template/preferences.pdf>
+Package pdftex.def Info: images/template/preferences.pdf used on input line 43.
+
+(pdftex.def)             Requested size: 216.81pt x 203.72855pt.
+
+<images/template/postprocessing.pdf, id=28, 231.86626pt x 269.005pt>
+File: images/template/postprocessing.pdf Graphic file (type pdf)
+
+<use images/template/postprocessing.pdf>
+Package pdftex.def Info: images/template/postprocessing.pdf used on input line 
+52.
+(pdftex.def)             Requested size: 180.67499pt x 209.61781pt.
+
+Overfull \hbox (12.0941pt too wide) in paragraph at lines 52--52
+[][]   [] 
+ []
+
+File: images/template/postprocessing.pdf Graphic file (type pdf)
+<use images/template/postprocessing.pdf>
+Package pdftex.def Info: images/template/postprocessing.pdf used on input line 
+61.
+(pdftex.def)             Requested size: 180.67499pt x 209.61781pt.
+
+Overfull \hbox (12.0941pt too wide) in paragraph at lines 61--61
+[][]   [] 
+ []
+
+) [5] [6 <./images/template/preferences.pdf> <./images/template/postprocessing.
+pdf>] [7] [8
+
+]
+Chapitre 2.
+
+! Package inputenc Error: Keyboard character used is undefined
+(inputenc)                in inputencoding `utf8'.
+
+See the inputenc package documentation for explanation.
+Type  H <return>  for immediate help.
+ ...                                              
+                                                  
+l.116 \section{PrŽsentation}
+                            
+? 
+! Emergency stop.
+ ...                                              
+                                                  
+l.116 \section{PrŽsentation}
+                            
+You need to provide a definition with \DeclareInputText 
+or \DeclareInputMath before using this key.
+
+ 
+Here is how much of TeX's memory you used:
+ 8151 strings out of 495059
+ 115399 string characters out of 3182031
+ 208943 words of memory out of 3000000
+ 11215 multiletter control sequences out of 15000+200000
+ 11830 words of font info for 44 fonts, out of 3000000 for 9000
+ 14 hyphenation exceptions out of 8191
+ 34i,8n,32p,2505b,388s stack positions out of 5000i,500n,10000p,200000b,50000s
+!  ==> Fatal error occurred, no output PDF file produced!
diff --git a/doc/Cecilia5_manuel.out b/doc/Cecilia5_manuel.out
new file mode 100644
index 0000000..cb3c40d
--- /dev/null
+++ b/doc/Cecilia5_manuel.out
@@ -0,0 +1,4 @@
+\BOOKMARK [0][-]{chapter.1}{Template}{}% 1
+\BOOKMARK [1][-]{section.1.1}{Hi\351rarchie}{chapter.1}% 2
+\BOOKMARK [2][-]{subsection.1.1.1}{Chapitres}{section.1.1}% 3
+\BOOKMARK [2][-]{subsection.1.1.2}{Images}{section.1.1}% 4
diff --git a/doc/Cecilia5_manuel.toc b/doc/Cecilia5_manuel.toc
new file mode 100644
index 0000000..e69de29

-- 
cecilia packaging



More information about the pkg-multimedia-commits mailing list