Changeset 32528


Ignore:
Timestamp:
2018-10-19T17:17:08+13:00 (6 years ago)
Author:
ak19
Message:

Related to previous commit, part 2 of commit. Renamed new MySQLPlugout to GreenstoneSQLPlugout to indicate that it deals with the internal Greenstone doc format and to match with the in-progress GreenstoneSQLPlugin (whereas the extant DatabasePlugin, like most other plugins, appears to work with external document formats, database records in DatabasePlugin's case).

Location:
main/trunk/greenstone2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/bin/script/import.pl

    r32518 r32528  
    8888      { 'name' => "GreenstoneMETS",
    8989        'desc' => "{export.saveas.GreenstoneMETS}"},
    90       { 'name' => "MySQL",
    91         'desc' => "{export.saveas.MySQL}"},
    92       { 'name' => "MySQL_metadata_only",
    93         'desc' => "{export.saveas.MySQL.meta_only}"},
    94       { 'name' => "MySQL_fulltext_only",
    95         'desc' => "{export.saveas.MySQL.text_only}"},
     90      { 'name' => "GreenstoneSQL",
     91        'desc' => "{export.saveas.GreenstoneSQL}"},
     92      { 'name' => "GreenstoneSQL_metadata_only",
     93        'desc' => "{export.saveas.GreenstoneSQL.meta_only}"},
     94      { 'name' => "GreenstoneSQL_fulltext_only",
     95        'desc' => "{export.saveas.GreenstoneSQL.text_only}"},
    9696      ];
    9797
  • main/trunk/greenstone2/perllib/strings.properties

    r32518 r32528  
    417417
    418418export.saveas.GreenstoneXML:Greenstone XML Archive format
    419 export.saveas.MySQL:Save metadata and text in MySQL database
    420 export.saveas.MySQL.meta_only:Store metadata in MySQL database (and full text in Greenstone XML Archive format)
    421 export.saveas.MySQL.text_only:Store full text in MySQL database (and metadata in Greenstone XML Archive format)
     419export.saveas.GreenstoneSQL:Save metadata and text in MySQL database
     420export.saveas.GreenstoneSQL.meta_only:Store metadata in a MySQL database (and full text in Greenstone XML Archive format)
     421export.saveas.GreenstoneSQL.text_only:Store full text in a MySQL database (and metadata in Greenstone XML Archive format)
    422422
    423423export.saveas.MARCXML:MARC XML format (an XML version of MARC 21)
     
    14431443METSPlugout.xslt_mets:Transform a mets's docmets.xml with the XSLT in the named file. 
    14441444
    1445 MySQLPlugout.desc:Output metadata and/or full text to a MySQL database instead of doc.xml.
    1446 MySQLPlugout.process_mode:Setting determines whether full text and/or metadata will be output to a MySQL database instead of to doc.xml during import.
    1447 MySQLPlugout.process_mode.all:Import stage outputs the full text and metadata to a MySQL database instead of to doc.xml.
    1448 MySQLPlugout.process_mode.meta_only:Import stage outputs the metadata to a MySQL database and any text to doc.xml.
    1449 MySQLPlugout.process_mode.text_only:Import stage outputs the full text to a MySQL database and any metadata to doc.xml.
     1445GreenstoneSQLPlugout.desc:Output metadata and/or full text to a MySQL database instead of doc.xml.
     1446GreenstoneSQLPlugout.process_mode:Setting determines whether full text and/or metadata will be output to a MySQL database instead of to doc.xml during import.
     1447GreenstoneSQLPlugout.process_mode.all:Import stage outputs the full text and metadata to a MySQL database instead of to doc.xml.
     1448GreenstoneSQLPlugout.process_mode.meta_only:Import stage outputs the metadata to a MySQL database and any text to doc.xml.
     1449GreenstoneSQLPlugout.process_mode.text_only:Import stage outputs the full text to a MySQL database and any metadata to doc.xml.
    14501450
    14511451
Note: See TracChangeset for help on using the changeset viewer.