Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
fuchsia.googlesource.com-third_party-mako
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fuchsia-mirror
fuchsia.googlesource.com-third_party-mako
Commits
83c74175
Commit
83c74175
authored
15 years ago
by
Mike Bayer
Browse files
Options
Downloads
Patches
Plain Diff
- added "mako.__version__" attribute to
the base module. [ticket:110]
parent
c1b97056
No related branches found
Branches containing commit
Tags
rel_0_2_1
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGES
+3
-0
3 additions, 0 deletions
CHANGES
doc/build/genhtml.py
+1
-2
1 addition, 2 deletions
doc/build/genhtml.py
lib/mako/__init__.py
+3
-0
3 additions, 0 deletions
lib/mako/__init__.py
setup.py
+6
-2
6 additions, 2 deletions
setup.py
with
13 additions
and
4 deletions
CHANGES
+
3
−
0
View file @
83c74175
...
@@ -29,6 +29,9 @@
...
@@ -29,6 +29,9 @@
was causing tags to compile with
was causing tags to compile with
case-insensitive names, thus messing up
case-insensitive names, thus messing up
custom <%call> names. [ticket:108]
custom <%call> names. [ticket:108]
- added "mako.__version__" attribute to
the base module. [ticket:110]
0.2.4
0.2.4
- Fixed compatibility with Jython 2.5b1.
- Fixed compatibility with Jython 2.5b1.
...
...
This diff is collapsed.
Click to expand it.
doc/build/genhtml.py
+
1
−
2
View file @
83c74175
...
@@ -5,7 +5,7 @@ import cPickle as pickle
...
@@ -5,7 +5,7 @@ import cPickle as pickle
sys
.
path
=
[
'
../../lib
'
,
'
./lib/
'
]
+
sys
.
path
sys
.
path
=
[
'
../../lib
'
,
'
./lib/
'
]
+
sys
.
path
from
mako.lookup
import
TemplateLookup
from
mako.lookup
import
TemplateLookup
from
mako
import
exceptions
from
mako
import
exceptions
,
__version__
as
version
import
read_markdown
,
toc
import
read_markdown
,
toc
...
@@ -24,7 +24,6 @@ files = [
...
@@ -24,7 +24,6 @@ files = [
]
]
title
=
'
Mako Documentation
'
title
=
'
Mako Documentation
'
version
=
'
0.2.3
'
root
=
toc
.
TOCElement
(
''
,
'
root
'
,
''
,
version
=
version
,
doctitle
=
title
)
root
=
toc
.
TOCElement
(
''
,
'
root
'
,
''
,
version
=
version
,
doctitle
=
title
)
...
...
This diff is collapsed.
Click to expand it.
lib/mako/__init__.py
+
3
−
0
View file @
83c74175
...
@@ -4,3 +4,6 @@
...
@@ -4,3 +4,6 @@
# This module is part of Mako and is released under
# This module is part of Mako and is released under
# the MIT License: http://www.opensource.org/licenses/mit-license.php
# the MIT License: http://www.opensource.org/licenses/mit-license.php
__version__
=
'
0.2.5
'
This diff is collapsed.
Click to expand it.
setup.py
+
6
−
2
View file @
83c74175
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
,
find_packages
import
os
import
re
version
=
'
0.2.5
'
v
=
file
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'
lib
'
,
'
mako
'
,
'
__init__.py
'
))
VERSION
=
re
.
compile
(
r
"
.*__version__ =
'
(.*?)
'"
,
re
.
S
).
match
(
v
.
read
()).
group
(
1
)
v
.
close
()
setup
(
name
=
'
Mako
'
,
setup
(
name
=
'
Mako
'
,
version
=
version
,
version
=
VERSION
,
description
=
"
A super-fast templating language that borrows the
\
description
=
"
A super-fast templating language that borrows the
\
best ideas from the existing templating languages.
"
,
best ideas from the existing templating languages.
"
,
long_description
=
"""
\
long_description
=
"""
\
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment