(self, path)
| 1292 | for child in self.children: |
| 1293 | child.show(tab+1) |
| 1294 | def getNode(self, path): # Answer the node with this path, oatherwise add it. |
| 1295 | if path is None: |
| 1296 | return None |
| 1297 | for child in self.children: |
| 1298 | if path is not None and path == child.path: |
| 1299 | return child |
| 1300 | |
| 1301 | node = PageNode(path) |
| 1302 | self.children.append(node) |
| 1303 | return node |
| 1304 | |
| 1305 | def addPageNode(page, node): |
| 1306 | if page.url: |
no test coverage detected