Changeset 2159


Ignore:
Timestamp:
08/28/12 14:20:38 (12 years ago)
Author:
mwindhouwer
Message:

D mod-ISOcat-access-system/info/revision.xml

  • generated by the ant build file

M mod-ISOcat-utils/build.xml

  • copy the correct JAR

M mod-ISOcat-site/module.xml

  • don't process the doc requests

M mod-ISOcat-access-data/dbms/ISOcat-schema-init.sql

  • fixed the owner references

M mod-ISOcat-access-data/dbms/ISOcat-schema-constraints.sql

  • commented out some grants

M mod-ISOcat-access-data/dbms/ISOcat-schema-empty.sql

  • pgsql is already loaded im/explicit
Location:
cats/ISOcat/trunk
Files:
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • cats/ISOcat/trunk/mod-ISOcat-access-data/dbms/ISOcat-schema-constraints.sql

    r2029 r2159  
    29482948--
    29492949
    2950 REVOKE ALL ON SCHEMA public FROM PUBLIC;
    2951 REVOKE ALL ON SCHEMA public FROM postgres;
    2952 GRANT ALL ON SCHEMA public TO postgres;
    2953 GRANT ALL ON SCHEMA public TO PUBLIC;
     2950--REVOKE ALL ON SCHEMA public FROM PUBLIC;
     2951--REVOKE ALL ON SCHEMA public FROM postgres;
     2952--GRANT ALL ON SCHEMA public TO postgres;
     2953--GRANT ALL ON SCHEMA public TO PUBLIC;
    29542954
    29552955
  • cats/ISOcat/trunk/mod-ISOcat-access-data/dbms/ISOcat-schema-empty.sql

    r2029 r2159  
    1717--
    1818
    19 CREATE PROCEDURAL LANGUAGE plpgsql;
     19--CREATE PROCEDURAL LANGUAGE plpgsql;
    2020
    2121
  • cats/ISOcat/trunk/mod-ISOcat-access-data/dbms/ISOcat-schema-init.sql

    r2029 r2159  
    185185ALTER SEQUENCE core_data_type_id_seq RESTART WITH 1;
    186186
    187 ALTER SEQUENCE core_decision_group_id_seq RESTART WITH 1;
    188 
    189187ALTER SEQUENCE core_language_id_seq RESTART WITH 1;
    190188
     
    199197ALTER SEQUENCE core_registration_authority_id_seq RESTART WITH 1;
    200198
    201 ALTER SEQUENCE core_registration_group_id_seq RESTART WITH 1;
    202 
    203199ALTER SEQUENCE core_rule_id_seq RESTART WITH 1;
    204200
     
    208204
    209205ALTER SEQUENCE core_session_id_seq RESTART WITH 1;
    210 
    211 ALTER SEQUENCE core_submission_group_id_seq RESTART WITH 1;
    212206
    213207ALTER SEQUENCE generic_lock_id_seq RESTART WITH 1;
     
    356350-- an example TDG
    357351INSERT INTO core_account(id) VALUES (5);
     352INSERT INTO core_owner(id) VALUES (5);
    358353INSERT INTO core_group (id) VALUES (5);
    359354INSERT INTO core_thematic_domain_group (id,"name",description,"order",status,activity) VALUES (5,'Example','This is an example TDG and profile. To rename them the PostgreSQL database needs to be updated.',1,'example','example');
  • cats/ISOcat/trunk/mod-ISOcat-site/module.xml

    r2029 r2159  
    262262        <!-- index.html and friends -->
    263263        <rule>
    264             <match>ffcpl:/(.*?)/index.html((\+.*)?)</match>
     264            <match>ffcpl:/(?!doc)(.*?)/index.html((\+.*)?)</match>
    265265            <to>ffcpl:/$1/index.html</to>
    266266        </rule>
    267267        <rule>
    268             <match>ffcpl:/(.*?)/index.htm((\+.*)?)</match>
     268            <match>ffcpl:/(?!doc)(.*?)/index.htm((\+.*)?)</match>
    269269            <to>ffcpl:/$1/index.html</to>
    270270        </rule>
    271271        <rule>
    272             <match>ffcpl:/(.*?)/((\+.*)?)</match>
     272            <match>ffcpl:/(?!doc)(.*?)/((\+.*)?)</match>
    273273            <to>ffcpl:/$1/index.html</to>
    274274        </rule>
    275275        <rule>
    276             <match>ffcpl:/(.*?)/index.html</match>
     276            <match>ffcpl:/(?!doc)(.*?)/index.html</match>
    277277            <to>active:sloot.accessor+operand@ffcpl:/site/$1/index.acc</to>
    278278        </rule>
     
    280280        <!-- all other static files -->
    281281        <rule>
    282             <match>ffcpl:/(?!site)(.*?)/([^+]+)((\+.*)?)</match>
     282            <match>ffcpl:/(?!site|doc)(.*?)/([^+]+)((\+.*)?)</match>
    283283            <to>ffcpl:/site/$1/$2</to>
    284284        </rule>
  • cats/ISOcat/trunk/mod-ISOcat-utils/build.xml

    r2029 r2159  
    1212        <target name="lib" depends="init" description="collect external libraries" >
    1313                <!-- Copy the Ostermiller libraries to the lib directory -->
    14                 <copy file="${ostermiller}/ostermillerutils.jar" todir="${libs}"/>
     14                <copy todir="${libs}">
     15                        <fileset dir="${ostermiller}" includes="ostermillerutils-*.jar" excludes="*-*-*.jar"/>
     16                </copy>
    1517        </target>
    1618
Note: See TracChangeset for help on using the changeset viewer.