Changeset 36106


Ignore:
Timestamp:
2022-03-13T08:38:18+13:00 (2 years ago)
Author:
kjdon
Message:

greenstone.org is now under https. when I just tried doc editing, tomcat gave me a fatal error about Archive.dtd - something to do with http being redirected to https? not sure as I can't see what tomcat is trying to parse as archive.dtd. anyhow, rebuilding the collection using https declaration has fixed the problem.

Location:
main/trunk/greenstone2/perllib/plugouts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/perllib/plugouts/BasePlugout.pm

    r35834 r36106  
    443443    # Used to be '<!DOCTYPE Archive SYSTEM ...'
    444444   
    445     print $handle "<!DOCTYPE $doctype SYSTEM \"http://greenstone.org/dtd/Archive/1.0/Archive.dtd\">\n";
     445    print $handle "<!DOCTYPE $doctype SYSTEM \"https://greenstone.org/dtd/Archive/1.0/Archive.dtd\">\n";
    446446    }
    447447
  • main/trunk/greenstone2/perllib/plugouts/GreenstoneXMLPlugout.pm

    r32784 r36106  
    175175
    176176    print $outhandle '<?xml version="1.0" encoding="utf-8" standalone="no"?>' . "\n";
    177     print $outhandle "<!DOCTYPE Archive SYSTEM \"http://greenstone.org/dtd/Archive/1.0/Archive.dtd\">\n";
     177    print $outhandle "<!DOCTYPE Archive SYSTEM \"https://greenstone.org/dtd/Archive/1.0/Archive.dtd\">\n";
    178178    print $outhandle "<Archive>\n";
    179179}
Note: See TracChangeset for help on using the changeset viewer.