| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
I discovered several packages that did not have a doc string at all.
|
| |
|
| |
|
|
|
|
|
| |
docstring.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
during the development, see "srichter-inlinepython-branch". I tested the
code with both, Python 2.2.3 and Python 2.3 and all works fine.
Here an example of what you can do:
<script type="text/server-python">
print "Hello World!"
</script>
and
<p tal:script="text/server-python">
print "Hello World!"
</p>
A more elaborate example would be:
<html><body>
<script type="text/server-python">
global x
x = "Hello World!"
</script>
<b tal:content="x" />
</body></html>
This support is currently only available in "Templated Pages" after you
activate the hook using the "Inline Code" screen.
|
|
|
|
|
|
|
| |
Fixed bug where a different 'default' marker object was used in
zope.app.pagetemplate than in zope.tales
Added documentation of the required semantics of evaluateText to
the ITALExpressionEngine interface.
|
| |
|
|
|
|
| |
than TALES.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
order. Some required domain before msgid, others had those two
reversed. We standardize on msgid before domain because msgid can be
a MessageID instance which carries its domain around with it. So in
that case we don't need to specify domain and can make it an argument
with a default value of None.
Update all found call sites of the old order, fixed interfaces and
tests. Ran the tests and z3.py with Python 2.2.2 -- I hope I got them
all!
|
|
|
|
|
|
|
|
|
| |
msgid is a MessageID, the mapping tags along with the object so it
needn't be specified.
Ideally, I'd like to change the signature of this method so that
msgid comes first and domain defaults to None. The domain tags along
with MessageIDs too, so they needn't be always specified.
|
| |
|
|
- Renamed most files (especially python modules) to lower case.
- Moved views and interfaces into separate hierarchies within each
project, where each top-level directory under the zope package
is a separate project.
- Moved everything to src from lib/python.
lib/python will eventually go away. I need access to the cvs
repository to make this happen, however.
There are probably some bits that are broken. All tests pass
and zope runs, but I haven't tried everything. There are a number
of cleanups I'll work on tomorrow.
|