emitted from main window add container
(self, path)
| 482 | pass |
| 483 | |
| 484 | def slotAddContainer(self, path): |
| 485 | """ |
| 486 | emitted from main window |
| 487 | add container |
| 488 | """ |
| 489 | filename = basename(path) |
| 490 | #type = "".join(filename.split(".")[-1]) |
| 491 | fh = open(path, "r") |
| 492 | content = fh.read() |
| 493 | fh.close() |
| 494 | self.connector.uploadContainer(filename, content) |
| 495 | |
| 496 | def slotSaveMainWindow(self, state, geo): |
| 497 | """ |
nothing calls this directly
no test coverage detected