Ignore:
Timestamp:
2014-03-17T12:04:26+13:00 (10 years ago)
Author:
kjdon
Message:

generating OAIConfig.xml from OAIConfig.xml in resources/oai instead of from web/WEB-INF/classes/OAIConfig.xml.in

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/build.xml

    r28904 r28906  
    789789
    790790    <!--Now write out the url with oaiserver suffix as the baseURL property in OAIConfig.xml-->
    791     <available file="${web.classes}/OAIConfig.xml.in" property="oaiconfig.present"/>
     791    <available file="${basedir}/resources/oai/OAIConfig.xml" property="oaiconfig.present"/>
    792792    <antcall target="init-oaiconfig">
    793793      <param name="url" value="${url}"/>
     
    797797  <target name="init-oaiconfig" if="oaiconfig.present">
    798798    <echo>Writing out baseURL ${url}oaiserver to ${web.writableclasses}/OAIConfig.xml</echo>
    799     <copy file="${web.classes}/OAIConfig.xml.in" tofile="${web.writableclasses}/OAIConfig.xml"/>
     799    <copy file="${basedir}/resources/oai/OAIConfig.xml" tofile="${web.writableclasses}/OAIConfig.xml"/>
    800800    <rsr verbosity="1" file="${web.writableclasses}/OAIConfig.xml" pattern="&lt;baseURL&gt;.*&lt;/baseURL&gt;" replacement="&lt;baseURL&gt;${url}oaiserver&lt;/baseURL&gt;" />   
    801801  </target>
Note: See TracChangeset for help on using the changeset viewer.