I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit f42c071d authored by str4d's avatar str4d
Browse files

Copy env's pybabel into base dir to fix string extraction

The jinja2 extracter needs to know about our custom HighlightExtension (used on
pages such as get-involved/develop/applications), which is not in the env's
python path. Copying pybabel into the base dir gives it access to our modules.
This is only required for string extraction; other scripts use pybabel from the
env directly.

If the env's pybabel version is updated, this copy must also be updated.
parent f5bec224
No related branches found
No related tags found
No related merge requests found
#!/bin/sh #!/bin/sh
. ./translation.vars . ./translation.vars
TZ=UTC env/bin/pybabel extract --msgid-bugs-address="http://trac.i2p2.de" \ TZ=UTC ./pybabel extract --msgid-bugs-address="http://trac.i2p2.de" \
--project=$PROJECT \ --project=$PROJECT \
--version=$VERSION \ --version=$VERSION \
-F $BABELCFG \ -F $BABELCFG \
......
[python: **.py] [python: **.py]
[jinja2: **/pages/**.html] [jinja2: **/pages/**.html]
extensions=jinja2.ext.autoescape,jinja2.ext.with_,i2p2www.extensions.HighlightExtension
[jinja2: **/blog/**.rst] [jinja2: **/blog/**.rst]
extensions=jinja2.ext.autoescape,jinja2.ext.with_ extensions=jinja2.ext.autoescape,jinja2.ext.with_
pybabel 0 → 100755
#!env/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'Babel==0.9.6','console_scripts','pybabel'
__requires__ = 'Babel==0.9.6'
import sys
from pkg_resources import load_entry_point
if __name__ == '__main__':
sys.exit(
load_entry_point('Babel==0.9.6', 'console_scripts', 'pybabel')()
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment