File: textfile.py

package info (click to toggle)
python-wikkid 0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 728 kB
  • sloc: python: 3,051; makefile: 12
file content (23 lines) | stat: -rw-r--r-- 546 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# Copyright (C) 2010 Wikkid Developers.
#
# This software is licensed under the GNU Affero General Public License
# version 3 (see the file LICENSE).

"""The source text class.

A source text file is a text file that isn't a wiki file.
"""

from zope.interface import implementer

from wikkid.model.file import FileResource
from wikkid.interface.resource import ITextFile


@implementer(ITextFile)
class TextFile(FileResource):
    """A text file that isn't a wiki page."""

    def __repr__(self):
        return "<TextFile '%s'>" % self.path