allows easy linking to nuxeo.war directory
------------------------------------------

                 Key: NXIDE-14
                 URL: http://jira.nuxeo.org/browse/NXIDE-14
             Project: Nuxeo ECM IDE
          Issue Type: New Feature
            Reporter: Alexandre Russel
            Assignee: Sun Tan


In dev mode, I use this script:
#!/bin/sh
JBOSS="/opt/jboss-4.2.3.GA"
NUXEO_WAR=$JBOSS"/server/default/deploy/nuxeo.ear/nuxeo.war"
for file in `ls -AR --ignore=$0` ;
do
     echo "removing $file"
     rm $NUXEO_WAR/$file
     echo "linking ./$file to $NUXEO_WAR/$file"
     ln ./$file $NUXEO_WAR/$file
done

When I run it in the src/main/resources/nuxeo.war of a module, it allows to 
link the .xhtml in my module in the deployed nuxeo. When 
facelets.REFRESH_PERIOD=2 is set, then change done in xhtml in eclipse are seen 
in jboss.
It would be nice to have something similar in NXIDE

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.nuxeo.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

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

Reply via email to