(self, index)
| 49 | self.slideName = "htmls" |
| 50 | |
| 51 | def retPrevFile(self, index): |
| 52 | if(index == 0): |
| 53 | return "<span class=\"no_go\">« <b>No Previous</b></span>" |
| 54 | else: |
| 55 | str = """« <a href="%s">Previous</a>""" % (self.slideName + self.files[self.count - 1] + '.htm') |
| 56 | return str |
| 57 | |
| 58 | def retNextFile(self, index): |
| 59 | if(index == len(self.files) - 1): |