|
From: Pascal M. <mo...@us...> - 2001-03-26 16:40:24
|
Update of /cvsroot/motu/cocaine
In directory usw-pr-cvs1:/tmp/cvs-serv19895
Modified Files:
README README.gui
Log Message:
a new workspace list property in puser, a bug fix in namingclient display, fixed README.gui
Index: README
===================================================================
RCS file: /cvsroot/motu/cocaine/README,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** README 2001/03/22 16:36:58 1.18
--- README 2001/03/26 16:40:19 1.19
***************
*** 85,97 ****
NT users : you *MUST* have cygwin installed !
-
- edit ENV.sh to reflect your installation (for compiling and running)
-
* compile :
- on NT (under bash) in directory serial or Pjama depending on the installation you wan :
! . compile.sh
!
! We can compile with javac or jikes (jikes is faster). by default, we use jikes, however
! you can use javac by editing ENV.sh in "bin" directory !
* Update the file ${MOTU_HOME}/src/coca/coca.properties to reflect your installation
--- 85,91 ----
NT users : you *MUST* have cygwin installed !
* compile :
- on NT (under bash) in directory serial or Pjama depending on the installation you wan :
! ant all
* Update the file ${MOTU_HOME}/src/coca/coca.properties to reflect your installation
Index: README.gui
===================================================================
RCS file: /cvsroot/motu/cocaine/README.gui,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** README.gui 2001/03/25 18:18:25 1.1
--- README.gui 2001/03/26 16:40:19 1.2
***************
*** 9,52 ****
for i.e: for the admin
>
- from java.awt import *
- from java.awt.event import *
- from javax.swing import *
! from PClient import PClient
! from java.lang import System
! from coca.project import Node
! from coca.util import JLogger
!
! from PClient import changeFile
! from PClient import MOTU_TEST_DATA
! from PClient import MOTU_TEST_WS
! from PClient import createDir
! from PClient import createFile
!
! from coca.base.security import Right
!
! import os
! import os.path
!
! me.StartAct()
!
! me.GroupCreate("Red",3)
! //Creating group
!
! me.UserCreate("util1","toto",3,"Red") //
! Creating user
! me.AddRight("B:Master",Right.WRITE,"OW:util1") //
! Giving Right
!
! me.UserCreate("util2","toto",3,"Red") //
!
! me.AddRight("B:Master",Right.WRITE,"OW:util2")
! me.UserCreate("util3","toto",3,"Red")
! me.AddRight("B:Master",Right.WRITE,"OW:util3")
! me.EndAct()
! me.Import(MOTU_TEST_DATA)
! // importing for the admin !! don't forget !:!
!
!
BEWARE :: the reference on the PClient is 'me' (like me "myself" : me
--- 9,44 ----
for i.e: for the admin
>
! from java.awt import *
! from java.awt.event import *
! from javax.swing import *
!
! from PClient import PClient
! from java.lang import System
! from coca.project import Node
! from coca.util import JLogger
!
! from PClient import changeFile
! from PClient import MOTU_TEST_DATA
! from PClient import MOTU_TEST_WS
! from PClient import createDir
! from PClient import createFile
!
! from coca.base.security import Right
!
! import os
! import os.path
!
! me.StartAct()
!
! me.GroupCreate("Red",3)
! me.UserCreate("util1","toto",3,"Red")
! me.AddRight("B:Master",Right.WRITE,"OW:util1")
! me.UserCreate("util2","toto",3,"Red")
! me.AddRight("B:Master",Right.WRITE,"OW:util2")
! me.UserCreate("util3","toto",3,"Red")
! me.AddRight("B:Master",Right.WRITE,"OW:util3")
! me.EndAct()
! me.Import(MOTU_TEST_DATA)
BEWARE :: the reference on the PClient is 'me' (like me "myself" : me
|