Comment 23 for bug 380955

Revision history for this message
GEM (nimp3) wrote :

for webmail :
I'm lookink for th link openlabs :
to solve it with manual build follow this different steps
open a console, tape : easy_install mako
in c\python25\lib\site-packages\mako-0.2.4-py2.5.egg copy folder mako, paste it in c\python25\lib\site-packages\
delete folder mako-0.2.4-py2.5.egg
in file c\python25\lib\site-packages\easy-install.path delete line mako-0.2.4-py2.5.egg save
in mako\__init.py__ add line :
from mako import *
in mako\ext\__init__.py add line :
from mako.ext import *

in server\setup.py line 151 at the end of the list, add module mako imaplib and poplib to be collected :

options = {
    "py2exe": {
        "compressed": 1,
        "optimize": 2,
        "dist_dir": 'dist',
        "packages": ["lxml", "lxml.builder", "lxml._elementpath", "lxml.etree",
                     "lxml.objectify", "decimal", "xml", "xml.dom", "xml.xpath",
                     "encodings","mx.DateTime","wizard","pychart","PIL", "pyparsing",
                     "pydot","asyncore","asynchat", "reportlab", "vobject",
                     "HTMLParser", "select", "libxslt", "libxml2", "mako", "poplib", "imaplib"], (line 151)

launch your script for build server, mako will be in library.zip

for mime files (follow how to get it in library.zip more high)
base64.pyo is in server\library and client\library

if necessary, add in client\setup.py too (some libraries are in client web) line 149 :
"packages": ["encodings","gtk", "matplotlib", "pytz", "OpenSSL"],