Thanks hda and Stephane for your interest,
I followed steps of the branch win-installer but script and a few libraries 
don't work :
- the script I modified to build  package and which work for me is (client web 
part):

:packaging

:: package client for allinone
echo debut client build
cd client
python setup.py --quiet py2exe
makensis /DVERSION=%VERSION% /DALLINONE=1 /V1 setup.nsi
echo client build

:: package server for allinone
echo debut server build
cd ..
cd server\win32
python setup.py --quiet py2exe
cd ..
python setup.py --quiet py2exe
makensis /DVERSION=%VERSION% /DALLINONE=1 /V1 setup.nsi
echo server build


:: package client-web for allinone
echo debut client web build
cd ..
cd client-web 
python win32\setup.py --quiet bdist_wininst 
move win32\openerp-web-setup-* win32\openerp-web-setup-%VERSION%.exe 
makensis /DVERSION=%VERSION% /DALLINONE=1 /V1 win32\setup.nsi 
move win32\openerp-web-setup-%VERSION%.exe . 
echo client-web compile

:: package all-in-one
cd ..
makensis /DVERSION=%VERSION% /V1 setup.nsi
echo all in one compile

in fact the line which must move the client web build don't work, because the 
build don't catch the %version%, we obtain all the time version=5.0.1-0
And I use Nsis with stup.nsi (the line is not in the branch script, i don't 
know if it is util))

Secondly I have a lot of problem with libraries which cause error in gtk client 
:
matplotlib => error and display not graphic for modules board_manufacturing :
problem in figure.py backend_gdk and mlab
the first is solved with last version matplotlib 0.98.5.3, there is correction 
for the figure.py code.
But if I install this version and uninstall the previous, i have another error, 
because the compiled file _backend_gdk.pyc is not present in the last version : 
conclusion we must let installed the two version  

in mlab error with kwdoc : TypeError: unsupported operand type(s) for %: 
'NoneType' and 'tuple'
error because we can't do operation with different type
solution :
in site-packages\matplotlib, in mlab.py :
in the head put under "import matplotlib.cbook as cbook" : 
import matplotlib.artist as martist
search (CTRL+F) keyword kwdoc:
and for lines :
psd.__doc__.... put psd.__doc__ = cbook.dedent(psd.__doc__) % martist.kwdocd
csd.__doc__.... put csd.__doc__ = cbook.dedent(psd.__doc__) % martist.kwdocd
specgram.__doc__.... put specgram.__doc__ = cbook.dedent(specgram.__doc__) %
martist.kwdocd
cohere.__doc__.... put cohere.__doc__ = cbook.dedent(cohere.__doc__) %
martist.kwdocd

and last big problem I have solved but I don't know how I have done, I can't 
retrieve solution :pytz
all type of error 
with your package 2008i, when we want to create database =>crash impossible to 
create it
I have tried pytz2006p work but not totally,
and with last version, probleme : no module zoneinfo (perhaps now it is 
tzinfo). I don't understand why files in zoneinfo have no extansion .py like in 
pytz-2006p, and in the client in preferences for timezone there is no list and 
I can't choose a timezone.
If I put in pytz\zoneinfo the file .py in pytz2006p\zoneinfo\*, I have a 
listing, but after I have error :
can't read the file in archive library.zip (IO error 2), or unknow timezone 
'Paris, Madrid' (timezone windows i suppose), ...
Try in pytz file __init__.py to put the absolut path to the place of 
"os.path.dirname(__file__), 'zoneinfo'" line 57 in def open_resource(name) ...
I spend a lot of time with this, hope this will help you to solve the problem 
for pytz, because some people stand to have possibility to build themself 
openerp.

For info i don't know if you have solved the problem import/export for 
database, but I had a message which said  :impossible to read data, and the 
message was with special characters like @% ...

thanks again for your interest to this problem
A+

------------------------
Let us safeguard the ice floe, else the penguins will disappear !




-------------------- m2f --------------------

--
http://www.openobject.com/forum/viewtopic.php?p=38774#38774

-------------------- m2f --------------------


_______________________________________________
Tinyerp-users mailing list
http://tiny.be/mailman2/listinfo/tinyerp-users

Reply via email to