Changeset 1206

Show
Ignore:
Timestamp:
03/16/09 09:05:42 (3 years ago)
Author:
wouter
Message:

Release of his.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • his/tags/1.6.0/configuration/startsite/tomcat/conf/his.properties

    r822 r1206  
    4242# 
    4343xmldb.driver=org.exist.xmldb.DatabaseImpl 
    44 xmldb.url=xmldb:exist:///db 
    45 xmldb.username=admin 
    46 xmldb.password="" 
     44xmldb.url=xmldb:exist://localhost:8080/exist/xmlrpc/db 
     45xmldb.username=build 
     46xmldb.password=build 
    4747xmldb.healthrecord.collection.path=/his/healthrecords 
    4848 
     
    5050# LDAP configuration 
    5151# 
    52 ldap.url=ldap://www.joiningtracks.org:19389 
    53 ldap.baseDn=dc=jttest,dc=joiningtracks,dc=org 
    54 ldap.userDn=uid=root,cn=users,dc=jttest,dc=joiningtracks,dc=org 
    55 ldap.password=jttest 
     52ldap.url=ldap://localhost:19389 
     53ldap.baseDn=dc=jttest,dc=wsh,dc=nl 
     54ldap.userDn=uid=root,cn=users,dc=jttest,dc=wsh,dc=nl 
     55ldap.password=TTadmin11 
    5656 
    5757#The maximum size (in pixels) for the photo by the patient saved in the ldap 
     
    9393# Folder where the OSGi container stores its state (configuration, state of bundles, etc) 
    9494# 
    95 osgi.configuration.dir=/tmp/osgi_config 
     95osgi.configuration.dir=/Users/wouter/Development/tmp/osgi_config 
    9696 
    9797# 
    9898# Folder where the application watches for new plugins 
    9999# 
    100 osgi.bundles.pickup.dir=/tmp/osgi_pickup 
     100osgi.bundles.pickup.dir=/Users/wouter/Development/tmp/osgi_pickup 
    101101 
    102102# 
     
    117117frontpage.order.sample2=2 
    118118 
     119frontpage.order.OGGroupsOverview=3 
     120frontpage.order.ScreeningGroupsOverview=4 
     121frontpage.order.PatientStats=5 
     122 
    119123 
    120124###################################### 
    121125#    CalDav plugin configuration     # 
    122126###################################### 
    123 caldav.host=10.0.114.196 
     127caldav.host=localhost 
    124128caldav.port=8008 
    125129caldav.root=/calendars/ 
    126130 
    127 caldav.username=planning 
    128 caldav.password=planning 
     131caldav.username=admin 
     132caldav.password=admin 
    129133###################################### 
    130134# End of CalDav plugin configuration # 
  • his/tags/1.6.0/configuration/startsite/tomcat/conf/users.properties

    r898 r1206  
    2121anonymousUser=anonymousUser,ROLE_ANONYMOUS 
    2222user=user,ROLE_USER 
     23nok3=nok3,ROLE_USER, ROLE_ADMIN, ROLE_MEDICAL, ROLE_SUPERVISOR, ROLE_SECRETARIAAT 
    2324 
  • his/tags/1.6.0/data/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/frontend/common/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his-frontend</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/frontend/domform/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his-frontend</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/frontend/internal/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his-frontend</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/frontend/pom.xml

    r1140 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/frontend/web/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his-frontend</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/frontend/web/src/test/java/org/joiningtracks/his/frontend/web/misc/StartSite.java

    r1092 r1206  
    3737public class StartSite { 
    3838 
    39     protected final static String URI = "xmldb:exist://localhost:8088/xmlrpc"; 
     39    protected final static String URI = "xmldb:exist://localhost:8080/xmlrpc"; 
    4040    private final static String CHILD_COLLECTION = "his/healthrecords"; 
    4141    public final static String DB_DRIVER = "org.exist.xmldb.DatabaseImpl"; 
     
    9393        Server server = new Server(); 
    9494        SocketConnector connector = new SocketConnector(); 
    95         connector.setPort(8082); 
     95        connector.setPort(8083); 
    9696        server.setConnectors(new Connector[]{connector}); 
    9797 
  • his/tags/1.6.0/plugin/api/pom.xml

    r1183 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his-plugin</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/plugin/bridge/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his-plugin</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/plugin/bridge/src/test/java/org/joiningtracks/his/plugin/FelixContainerManagerTest.java

    r1092 r1206  
    3232public class FelixContainerManagerTest { 
    3333    private FelixContainerManager testObject; 
    34     private static final String TMP_FELIX = "c:/tmp/felix"; 
     34    private static final String TMP_FELIX = "/tmp/felix"; 
    3535 
    3636    private File tempTestFolder = new File(TMP_FELIX); 
  • his/tags/1.6.0/plugin/pom.xml

    r1133 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/pom.xml

    r1164 r1206  
    2424    <groupId>org.joiningtracks</groupId> 
    2525    <artifactId>his</artifactId> 
    26     <version>1.6.0-SNAPSHOT</version> 
     26    <version>1.6.0</version> 
    2727    <packaging>pom</packaging> 
    2828 
  • his/tags/1.6.0/questionnaire/frontend/pom.xml

    r1140 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his-questionnaire</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/questionnaire/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/questionnaire/service/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his-questionnaire</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/samples/form/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his-samples</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/samples/frontend-plugin/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his-samples</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/samples/pathway-plugin/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his-samples</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/samples/patientpropagation-plugin/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his-samples</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/samples/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/service/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/support/data/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his-support</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/support/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/support/testutil/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his-support</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/support/util/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his-support</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/support/xmldb/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his-support</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent> 
  • his/tags/1.6.0/tools/pom.xml

    r1126 r1206  
    1919        <artifactId>his</artifactId> 
    2020        <groupId>org.joiningtracks</groupId> 
    21         <version>1.6.0-SNAPSHOT</version> 
     21        <version>1.6.0</version> 
    2222        <relativePath>../pom.xml</relativePath> 
    2323    </parent> 
  • his/tags/1.6.0/tools/src/main/resources/archetype-resources/pom.xml

    r1126 r1206  
    88        <artifactId>his-samples</artifactId> 
    99        <groupId>org.joiningtracks</groupId> 
    10         <version>1.6.0-SNAPSHOT</version> 
     10        <version>1.6.0</version> 
    1111    </parent> 
    1212 
  • his/tags/1.6.0/vecozo/pom.xml

    r1126 r1206  
    2020        <groupId>org.joiningtracks</groupId> 
    2121        <artifactId>his</artifactId> 
    22         <version>1.6.0-SNAPSHOT</version> 
     22        <version>1.6.0</version> 
    2323        <relativePath>../pom.xml</relativePath> 
    2424    </parent>