Changeset 3acd49ee48aa04654c4f96927cbe128a7e3343ad
- Timestamp:
- 12/29/07 21:32:53
(11 months ago)
- Author:
- William McBrine <wmcbrine@gmail.com>
- git-committer:
- William McBrine <wmcbrine@gmail.com> 1198985573 -0500
- git-parent:
[6c43706e0a9fbcf5d82c8f538bc8ab254234942d]
- git-author:
- William McBrine <wmcbrine@gmail.com> 1198985573 -0500
- Message:
Spelling
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd49819f |
r3acd49e |
|
| 54 | 54 | #If we are looking at the root container |
|---|
| 55 | 55 | if command == "QueryContainer" and ( not query.has_key('Container') or query['Container'][0] == '/'): |
|---|
| 56 | | self.root_continer() |
|---|
| | 56 | self.root_container() |
|---|
| 57 | 57 | return |
|---|
| 58 | 58 | |
|---|
| … | … | |
| 71 | 71 | self.unsuported(query) |
|---|
| 72 | 72 | |
|---|
| 73 | | def root_continer(self): |
|---|
| | 73 | def root_container(self): |
|---|
| 74 | 74 | t = Template(file=os.path.join(SCRIPTDIR, 'templates', 'root_container.tmpl')) |
|---|
| 75 | 75 | t.containers = self.server.containers |
|---|