Changeset 38980


Ignore:
Timestamp:
2024-05-02T14:47:48+12:00 (6 weeks ago)
Author:
anupama
Message:

Getting rid of apostrophes in English shortened words which were mucking the tabbing in build.xml

File:
1 edited

Legend:

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

    r38979 r38980  
    24712471    On linux, we use certbot-auto.
    24722472    It says at https://github.com/certbot/certbot/issues/1741
    2473     "you shouldn't run letsencrypt-auto [now called certbot-auto] as superuser,
     2473    "you should not run letsencrypt-auto [now called certbot-auto] as superuser,
    24742474    because the program will invoke sudo when it needs to automatically."   
    24752475    We need to send Y(es) as inputstring to confirm that the
     
    33753375    </if>
    33763376  </target>
    3377 
     3377 
    33783378  <target name="soap-deploy-site" depends="init,get-sitename,get-siteuri,get-webservices,create-deployment-files,deploy-site"
    3379     description="Deploy a SOAP web service for a local Greenstone site. Tomcat must be running for this to work."/>
    3380    
    3381     <target name="deploy-site">
     3379      description="Deploy a SOAP web service for a local Greenstone site. Tomcat must be running for this to work."/>
     3380 
     3381  <target name="deploy-site">
    33823382    <java classname="org.apache.axis.client.AdminClient">
    33833383      <classpath refid="compile.classpath"/>
     
    33903390 
    33913391  <target name="soap-undeploy-site" depends="get-undeploy-service-name"
    3392     description="Undeploy a SOAP web service for a local Greenstone site. Tomcat must be running for this to work.">
     3392      description="Undeploy a SOAP web service for a local Greenstone site. Tomcat must be running for this to work.">
    33933393    <filter token="servicesname" value="${axis.undeploy.servicename}"/>
    33943394    <copy file="${basedir}/resources/soap/undeploy-site.wsdd.template"
    3395       tofile="${basedir}/resources/soap/undeploy.wsdd"
    3396       filtering="true"
    3397       overwrite="true"/>
     3395      tofile="${basedir}/resources/soap/undeploy.wsdd"
     3396      filtering="true"
     3397      overwrite="true"/>
    33983398    <java classname="org.apache.axis.client.AdminClient">
    33993399      <classpath refid="compile.classpath"/>
     
    34043404    <delete file="${basedir}/resources/soap/undeploy.wsdd"/> <!--clean up, no longer used-->
    34053405  </target> 
    3406 
     3406 
    34073407  <!-- this target used to deploy the default web service SOAPServer (base.webservice.name) on the localsite server
    3408   with the default servicename of localsite-->
     3408       with the default servicename of localsite-->
    34093409  <target name="deploy-localsite" depends="init"
    3410     description="Deploy the SOAP server for localsite. Will start and stop Tomcat.">
     3410      description="Deploy the SOAP server for localsite. Will start and stop Tomcat.">
    34113411    <antcall target="force-start-tomcat"/>
    34123412    <echo>Deploying ${base.webservice.name} web services for localsite under service name: localsite</echo>
     
    34313431  <target name="get-undeploy-service-name" unless="axis.undeploy.servicename">
    34323432    <input addproperty="axis.undeploy.servicename" defaultvalue="localsite">Please enter the full name of the service you wish to undeploy.
    3433 To find out which web services you've got deployed, point your browser to ${default.server.protocol}://${tomcat.server}:${default.tomcat.port}/greenstone3/services
     3433To find out which web services you have got deployed, point your browser to ${default.server.protocol}://${tomcat.server}:${default.tomcat.port}/greenstone3/services
    34343434Or press Enter for undeploying the default:localsite /&gt;</input>
    34353435     <echo>Name of service to undeploy: ${axis.undeploy.servicename}</echo>
     
    35123512    </exec>
    35133513  </target>
    3514 
     3514 
    35153515  <target name="clean-core"
    35163516      description="Clean only the Greenstone core">
     
    35203520 
    35213521  <target name="compile-core" depends="needs-gs3-devel,init"
    3522     description="Compile only the Greenstone core">
     3522      description="Compile only the Greenstone core">
    35233523    <mkdir dir="${build.home}"/>
    3524    
     3524   
    35253525    <if><bool><istrue value="${with.jni}"/></bool>
    35263526    <javac srcdir="${src.home}"
Note: See TracChangeset for help on using the changeset viewer.