/usr/lib/python2.7/dist-packages/nevow/inevow.py is in python-nevow 0.14.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 | # -*- test-case-name: nevow -*-
# Copyright (c) 2004-2009 Divmod.
# See LICENSE for details.
"""
Nevow interface definitions.
"""
from zope.interface import Interface, Attribute
class IQ(Interface):
"""Interface for querying. Adapters implement this for objects which may
appear in the stan DOM to allow introspecting the DOM and finding nodes
with certain qualities.
"""
def patternGenerator(pattern, default=None):
"""Returns a pseudo-Tag which will generate clones of matching
pattern tags forever, looping around to the beginning when running
out of unique matches.
If no matches are found, and default is None, raise an exception,
otherwise, generate clones of default forever.
You can use the normal stan syntax on the return value.
Useful to find repeating pattern elements. Example rendering
function:
>>> def simpleSequence(context, data):
... pattern = IQ(context).patternGenerator('item')
... return [pattern(data=element) for element in data]
"""
def allPatterns(pattern):
"""Return a list of all matching pattern tags, cloned.
Useful if you just want to insert them in the output in one
place.
E.g. the sequence renderer's header and footer are found with this.
"""
def onePattern(pattern):
"""Return a single matching pattern, cloned.
If there is more than one matching pattern or no matching patterns,
raise an exception.
Useful in the case where you want to locate one and only one
sub-tag and do something with it.
"""
def keyed(key):
"""Locate the node with the key 'key', clone it, call fillSlots(key, clone)
and return the clone.
This method lets you effectively locate and mutate a node in the DOM.
It is useful for setting the data special on a specific node, and also for
calling fillSlots on a specific node, as well as other node-mutation operations
such as setting a handler or assigning a class or id to a node.
"""
class IResource(Interface):
def locateChild(ctx, segments):
"""
Locate another object which can be adapted to IResource.
@param ctx: The context object for the request being responded to.
@param segments: A tuple of strings giving the remaining query segments
to resolve into an IResource.
@return: A two-tuple of an L{IResource} provider and a tuple giving the
query segments which remain to be processed. A L{Deferred} which
is called back with such a two-tuple may also be returned.
"""
def renderHTTP(ctx):
"""Render a request
"""
class IRenderer(Interface):
"""Things implementing this interface are serialized by calling their
'rend' method.
"""
def rend(ctx, data):
"""Turn this instance into stan suitable for displaying it in a web page.
"""
class IRenderable(Interface):
def renderer(name):
"""
Return the render function associated with the given name.
@type name: C{str}
@param name: The value of a render directive encountered in the
document returned by a call to L{IRenderable.render}.
@return: A two-argument callable which will be invoked with the request
being responded to and the tag object on which the render directive
was encountered.
"""
def render(request):
"""
Get the document for this L{IRenderable}.
@type request: L{IRequest} provider or L{NoneType}
@param request: The request in response to which this method is being
invoked.
@return: An object which can be flattened.
"""
class IRendererFactory(Interface):
"""A renderer factory is capable of taking a renderer directive (a string)
and returning a callable which when called, will render a portion of DOM.
"""
def renderer(context, name):
"""Given a context object and a name, return a callable which responds
to the signature (context, data) or (data) and returns an object which
is flattenable.
"""
class IMacroFactory(Interface):
"""A macro factory is capable of taking a macro directive (a string)
and returning a callable which when called, will replace the portion
of the DOM upon which the macro was placed with some different
DOM.
"""
def macro(context, name):
"""Given a context object and a name, return a callable which responds
to the signature (context, *parameters) and returns an object which
is flattenable.
"""
class IData(Interface):
"""Any python object to be used as model data to be passed
to view functions. Used for marking the context stack only.
ANY python object is said to implement IData.
"""
class IGettable(Interface):
def get(context):
"""Return the data
Return any object
"""
class ISettable(Interface):
def set(context, data):
"""Set the data
This might be removed.
"""
class IContainer(Interface):
def child(context, name):
"""Return a conceptual child; an attribute, or a key,
or the result of a function call.
Returns any object; the result may be adapted to IGettable
if possible.
Return None if the adaptee does not have a child with the
given name.
TODO: Maybe returning None is bad, and .child should just
raise whatever exception is natural
"""
class IComponentized(Interface):
"""I am a mixin to allow you to be adapted in various ways persistently.
I define a list of persistent adapters. This is to allow adapter classes
to store system-specific state, and initialized on demand. The
getComponent method implements this. You must also register adapters for
this class for the interfaces that you wish to pass to getComponent.
Many other classes and utilities listed here are present in Zope3; this one
is specific to Twisted.
"""
def setComponent(interfaceClass, component):
"""
Add a component to me for the indicated interface.
"""
def addComponent(component, ignoreClass=0, registry=None):
"""
Add a component to me, for all appropriate interfaces.
In order to determine which interfaces are appropriate, the component's
provided interfaces will be scanned.
If the argument 'ignoreClass' is True, then all interfaces are
considered appropriate.
Otherwise, an 'appropriate' interface is one for which its class has
been registered as an adapter for my class according to the rules of
getComponent.
@return: the list of appropriate interfaces
"""
def getComponent(interface, registry=None, default=None):
"""Create or retrieve an adapter for the given interface.
If such an adapter has already been created, retrieve it from the cache
that this instance keeps of all its adapters. Adapters created through
this mechanism may safely store system-specific state.
If you want to register an adapter that will be created through
getComponent, but you don't require (or don't want) your adapter to be
cached and kept alive for the lifetime of this Componentized object,
set the attribute 'temporaryAdapter' to True on your adapter class.
If you want to automatically register an adapter for all appropriate
interfaces (with addComponent), set the attribute 'multiComponent' to
True on your adapter class.
"""
def unsetComponent(interfaceClass):
"""Remove my component specified by the given interface class."""
def removeComponent(component):
"""
Remove the given component from me entirely, for all interfaces for which
it has been registered.
@return: a list of the interfaces that were removed.
"""
class ISession(IComponentized):
"""
A web session
You can locate a Session object to represent a unique web session using
ISession(ctx). This default session implementation uses cookies to
store a session identifier in the user's browser.
TODO: Need better docs; what's a session and why and how do you use it
"""
uid = Attribute("The unique identifier for this session.")
def setLifetime(lifetime):
"""
Set the approximate lifetime of this session, in seconds.
This is highly imprecise, but it allows you to set some general
parameters about when this session will expire. A callback will be
scheduled each 'lifetime' seconds, and if I have not been 'touch()'ed
in half a lifetime, I will be immediately expired.
If you need to change the lifetime of all the sessions change sessionsLifeTime
attribute in class guard.SessionWrapper
"""
def notifyOnExpire(callback):
"""
Call this callback when the session expires or logs out.
"""
def expire():
"""
Expire/logout of the session.
"""
def touch():
"""
Refresh the session
"""
class IGuardSession(ISession):
""" A web session base interface
Needed for guard to do its dirty job
guard: SessionWrapper object
"""
def portalLogout(port):
"""Logout from portal port
"""
class IRequest(IComponentized):
"""A HTTP request.
Subclasses should override the process() method to determine how
the request will be processed.
@ivar method: The HTTP method that was used.
@ivar uri: The full URI that was requested (includes arguments).
@ivar path: The path only (arguments not included).
@ivar args: All of the arguments, including URL and POST arguments.
@type args: A mapping of strings (the argument names) to lists of values.
i.e., ?foo=bar&foo=baz&quux=spam results in
{'foo': ['bar', 'baz'], 'quux': ['spam']}.
@ivar requestHeaders: Header fields received in the request.
@ivar received_headers: DEPRECATED: All received headers.
"""
method = Attribute("The HTTP method that was used.")
uri = Attribute("The full URI that was requested (includes arguments).")
path = Attribute("The path only (arguments not included).")
prepath = Attribute("Path segments that have already been handled.")
postpath = Attribute("Path segments still to be handled.")
args = Attribute("All of the arguments, including URL and POST arguments.")
requestHeaders = Attribute(
"A L{http_headers.Headers} instance giving all received HTTP request "
"header fields.")
deferred = Attribute("Fired once request processing is finished.")
client = Attribute("The client that sent this request.")
content = Attribute("File-like object containing the request body.")
# DEPRECATED:
received_headers = Attribute("DEPRECATED: All received headers.")
# Methods for received request
def getHeader(key):
"""Get a header that was sent from the network.
Return C{None} if the header is not present.
"""
def getCookie(key):
"""Get a cookie that was sent from the network.
"""
def getAllHeaders():
"""Return dictionary of all headers the request received."""
def getRequestHostname():
"""Get the hostname that the user passed in to the request.
This will either use the Host: header (if it is available) or the
host we are listening on if the header is unavailable.
"""
def getHost():
"""Get my originally requesting transport's host.
Don't rely on the 'transport' attribute, since Request objects may be
copied remotely. For information on this method's return value, see
twisted.internet.tcp.Port.
"""
def getClientIP():
pass
def getClient():
pass
def getUser():
pass
def getPassword():
pass
def isSecure():
pass
def getSession(sessionInterface = None):
pass
def URLPath():
pass
def prePathURL():
pass
def rememberRootURL():
"""
Remember the currently-processed part of the URL for later
recalling.
"""
def getRootURL():
"""
Get a previously-remembered URL.
"""
# Methods for outgoing request
def finish():
"""We are finished writing data."""
def write(data):
"""
Write some data as a result of an HTTP request. The first
time this is called, it writes out response data.
"""
def addCookie(k, v, expires=None, domain=None, path=None, max_age=None, comment=None, secure=None):
"""Set an outgoing HTTP cookie.
In general, you should consider using sessions instead of cookies, see
twisted.web.server.Request.getSession and the
twisted.web.server.Session class for details.
"""
def setResponseCode(code, message=None):
"""Set the HTTP response code.
"""
def setHeader(k, v):
"""Set an outgoing HTTP header.
"""
def redirect(url):
"""Utility function that does a redirect.
The request should have finish() called after this.
"""
def setLastModified(when):
"""Set the X{Last-Modified} time for the response to this request.
If I am called more than once, I ignore attempts to set
Last-Modified earlier, only replacing the Last-Modified time
if it is to a later value.
If I am a conditional request, I may modify my response code
to L{NOT_MODIFIED} if appropriate for the time given.
@param when: The last time the resource being returned was
modified, in seconds since the epoch.
@type when: number
@return: If I am a X{If-Modified-Since} conditional request and
the time given is not newer than the condition, I return
L{http.CACHED<CACHED>} to indicate that you should write no
body. Otherwise, I return a false value.
"""
def setETag(etag):
"""Set an X{entity tag} for the outgoing response.
That's \"entity tag\" as in the HTTP/1.1 X{ETag} header, \"used
for comparing two or more entities from the same requested
resource.\"
If I am a conditional request, I may modify my response code
to L{NOT_MODIFIED<twisted.protocols.http.NOT_MODIFIED>} or
L{PRECONDITION_FAILED<twisted.protocols.http.PRECONDITION_FAILED>},
if appropriate for the tag given.
@param etag: The entity tag for the resource being returned.
@type etag: string
@return: If I am a X{If-None-Match} conditional request and
the tag matches one in the request, I return
L{CACHED<twisted.protocols.http.CACHED>} to indicate that
you should write no body. Otherwise, I return a false
value.
"""
def setHost(host, port, ssl=0):
"""Change the host and port the request thinks it's using.
This method is useful for working with reverse HTTP proxies (e.g.
both Squid and Apache's mod_proxy can do this), when the address
the HTTP client is using is different than the one we're listening on.
For example, Apache may be listening on https://www.example.com, and then
forwarding requests to http://localhost:8080, but we don't want HTML produced
by Twisted to say 'http://localhost:8080', they should say 'https://www.example.com',
so we do:
>>> request.setHost('www.example.com', 443, ssl=1)
This method is experimental.
"""
def notifyFinish(success):
"""
Return a deferred that fires when the request is finished.
The deferred will fire with C{None} if the request finished
successfully, or with the error that caused it to be unsuccessful.
"""
class ISerializable(Interface):
"""DEPRECATED. Use nevow.flat.registerFlattener instead of registering
an ISerializable adapter.
"""
def serialize(context):
"""Serialize the adaptee, with the given context
stack if necessary.
"""
class IStatusMessage(Interface):
"""A marker interface, which should be set on the user's web session
to an object which can be cast to a string, which will be shown to the
user to indicate the status of the most recent operation.
"""
class IHand(Interface):
"""A marker interface which indicates what object the user is currently
holding in their hand. This is conceptually the "result" of the last operation;
this interface can be used to mark a status string which indicates whether
the most recent operation completed successfully, or can be used to hold
an object which resulted from the most recent operation.
"""
class ICanHandleException(Interface):
def renderHTTP_exception(context, failure):
"""Render an exception to the given request object.
"""
def renderInlineException(context, reason):
"""Return stan representing the exception, to be printed in the page,
not replacing the page."""
class ICanHandleNotFound(Interface):
def renderHTTP_notFound(context):
"""Render a not found message to the given request.
"""
class IEventMaster(Interface):
pass
class IDocFactory(Interface):
"""Interface for objects that load and parse templates for Nevow's
renderers.
The load method's context arg is optional. Loaders should be written to cope
with no context arg and either create a new context (if necessary) or raise
a ValueError if the context of the caller is important.
If a context is passed to load() it should *not* be passed on to the
flattener/precompiler; a new context should be created if necessary. This
measure is to ensure that nothing remembered in the caller's context, i.e.
personal information in the session, leaks into the template until it is
actually rendered.
"""
def load(ctx=None, preprocessors=(), precompile=None):
"""
Load a template and return a stan document tree.
@param preprocessors: An iterable of one-argument callables which will
be given the stan document tree to transform before it is compiled.
"""
class IRemainingSegments(Interface):
"""During the URL traversal process, requesting this from the context
will result in a tuple of the segments remaining to be processed.
Equivalent to request.postpath in twisted.web
"""
class ICurrentSegments(Interface):
"""Requesting this from the context will result in a tuple of path segments
which have been consumed to reach the current Page instance during
the URL traversal process.
Equivalent to request.prepath in twisted.web
"""
class IViewParameters(Interface):
"""An interface used by url.viewhere. When this interface is remembered
above a url.viewhere embedded in a page, and the url to the current page
is rendered, this object will be consulted for additional manipulations
to perform on the url object before returning it.
"""
def __iter__():
"""Return an iterator which yields a series of (command, args, kw) triples,
where 'command' is a string, indicating which url method to call, 'args' is a
list indicating the arguments to be passed to this method, and 'kw' is a dict
of keyword arguments to pass to this method.
"""
class II18NConfig(Interface):
"""
Interface for I18N configuration.
@ivar domain: the gettext domain
@type domain: str
@ivar localeDir: path to the messages files or None to use the
system default
@type localeDir: str or None
"""
domain = Attribute("The gettext domain")
localeDir = Attribute("Path to the messages files or None to use the system default")
class ILanguages(Interface):
"""
Marker interface for the sequence of strings that defines the
languages requested by the user.
"""
class ILogger(Interface):
"""
An access.log writing interface.
Remember this interface in the context stack to use alternative
logging for the resources below that point in the tree.
"""
def log(ctx):
"""Write a log entry for this request."""
class IFilesystemPackage(Interface):
"""
Represents information about the filesystem layout of a set of modules.
"""
mapping = Attribute("""
A C{dict} mapping C{unicode} to C{str}. The keys in this dictionary are
CSS or Javascript module names which can be imported by
L{nevow.athena.LivePage}. The values give locations in the filesystem
where the implementation of each module can be found.
""")
class IJavascriptPackage(IFilesystemPackage):
"""
Represents information about the filesystem layout of a set of JavaScript
modules.
"""
class ICSSPackage(IFilesystemPackage):
"""
Represents information about the filesystem layout of a set of CSS
modules.
"""
class IAthenaTransportable(Interface):
"""
An object which can be sent by Athena from the Python server to the
JavaScript client.
"""
jsClass = Attribute(
"""
A C{unicode} string giving the fully-qualified name of a JavaScript
function which will be invoked to unserialize the serialized form of
this object.
The current serialization implementation is limited to supporting
values for this attribute which refer to JavaScript functions which
are defined in modules which have already been imported by the
client receiving the serialized data. An attempt to lift this
limitation will likely be made at some future point.
""")
def getInitialArguments():
"""
Define the arguments which will be passed to L{jsClass}.
@rtype: L{tuple}
@return: A tuple of simple types which will be passed as positional
arguments to L{jsClass}.
"""
|