Hi all,

I'm trying to work on the 5.1 trunk.

I've found that the nuxeo-platform-imaging-web is missing in my directories but is cited in
http://download.nuxeo.org/addons/jsp/listing.jsp

The other four addons (nuxeo-platform-imaging-api, nuxeo-platform-imaging-core, nuxeo-platform-imaging-facade and nuxeo-platform-imaging-transform) are regularly pulled from mercurial.

In order to test imaging in trunk, what I have to do?

Thanks
   Mirto

P.S. here is what I'm doing:

In the past I pulled from mercurial with these commands:
===========================================
hg clone http://hg.nuxeo.org/nuxeo#5.1
cd nuxeo
hg clone http://hg.nuxeo.org/nuxeo/nuxeo-common#1.4
hg clone http://hg.nuxeo.org/nuxeo/nuxeo-runtime#1.4
hg clone http://hg.nuxeo.org/nuxeo/nuxeo-core#1.4
hg clone http://hg.nuxeo.org/nuxeo/nuxeo-theme#5.1
hg clone http://hg.nuxeo.org/nuxeo/nuxeo-platform#5.1
===========================================

and routinely I update using these commands:
===========================================
#!/bin/bash
# to be run in the directory where you have done the hg fclone
ORA=`date +%y%m%d%H%M`
HGCO=/MySw/Deb/Nuxeo/mercurial/nuxeo
LOG=$HGCO/mya-hgup$ORA.log

echo "_________________________ it extract____________________________________________________"
#./mycopyit
./mycopyxx

echo "_________________________ myhgup log in " $HGCO "______________"
echo "_________________________ hg update____________________________________________________"

cd $HGCO
echo "_________________________ hg update nuxeo ____________________________" `pwd` >$LOG

hg pull >>$LOG 2>&1
hg update >>$LOG 2>&1
hg branch >>$LOG 2>&1

cd nuxeo-common
echo "_________________________ hg update nuxeo-common _____________________" `pwd` >>$LOG
hg pull >>$LOG 2>&1
hg update >>$LOG 2>&1
hg branch >>$LOG 2>&1

cd ../nuxeo-runtime
echo "_________________________ hg update nuxeo-runtime ____________________" `pwd` >>$LOG
hg pull >>$LOG 2>&1
hg update >>$LOG 2>&1
hg branch >>$LOG 2>&1

cd ../nuxeo-core
echo "_________________________ hg update nuxeo-core _______________________" `pwd` >>$LOG
hg pull >>$LOG 2>&1
hg update >>$LOG 2>&1
hg branch >>$LOG 2>&1

cd ../nuxeo-theme
echo "_________________________ hg update nuxeo-theme ______________________" `pwd` >>$LOG
hg pull >>$LOG 2>&1
hg update >>$LOG 2>&1
hg branch >>$LOG 2>&1

cd ../nuxeo-platform
echo "_________________________ hg update nuxeo-platform ___________________" `pwd` >>$LOG
hg pull >>$LOG 2>&1
hg update >>$LOG 2>&1
hg branch >>$LOG 2>&1

cd ..
===========================================


_______________________________________________
ECM mailing list
[email protected]
http://lists.nuxeo.com/mailman/listinfo/ecm

Reply via email to