|
Last change
on this file since 3145 was
3145,
checked in by vmaksymiv, 15 years ago
|
|
pep8 fixes
|
-
Property svn:eol-style set to
native
|
|
File size:
552 bytes
|
| Line | |
|---|
| 1 | from zope.interface import Interface, Attribute |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | class ICanonicalPath(Interface): |
|---|
| 5 | """canonical_path provider interface |
|---|
| 6 | """ |
|---|
| 7 | |
|---|
| 8 | canonical_path = Attribute("canonical_path", |
|---|
| 9 | "canonical_path - for the object. Adapter must implement " |
|---|
| 10 | "*setter* and *getter* for the attribute") |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | class ICanonicalLink(Interface): |
|---|
| 14 | """canonical_link provider interface |
|---|
| 15 | """ |
|---|
| 16 | |
|---|
| 17 | canonical_link = Attribute("canonical_link", |
|---|
| 18 | "canonical_link - for the object. Adapter must implement " |
|---|
| 19 | "*setter* and *getter* for the attribute") |
|---|
Note: See
TracBrowser
for help on using the repository browser.