PubMan 7 3

From MPDLMediaWiki
Jump to navigation Jump to search

This page shall contain every change that is made during a qa release of the version mentioned above. If it's not here, it never happened!

PubMan 7.3 Release[edit]

Affected Servers[edit]





Fedora[edit]

Coreservice Apache[edit]

Coreservice JBoss[edit]

Core Infrastructure[edit]

Core Properties[edit]

Core Index Properties[edit]

Core Lucene Index[edit]

PubMan EAR[edit]

PubMan Properties[edit]

  • Siegelnummer für PubMan:
    • escidoc.pubman.instance.seal_number=ZDB-97-MPR
  • Kontexte für die der SSRN-Button verfügbar ist:
    • escidoc.pubman.instance.ssrn_contexts= TODO
  • Stylesheet paths (Die anderen Stylesheets aus dem Ordner müssen auch aktuell sein! Genauso die vocabulary Mappings in transformations!)
    • escidoc.transformation.pmc2escidoc_publication_item.stylesheet.filename=/usr/share/jboss/server/default/conf/transformation/transformations/thirdParty/xslt/bmc2escidoc-publication-item.xsl
    • escidoc.transformation.pmc2escidoc_publication_component.stylesheet.filename=/usr/share/jboss/server/default/conf/transformation/transformations/thirdParty/xslt/pmc2escidoc-publication-component.xsl
    • escidoc.transformation.pmc_fulltext_xml2pmc_fulltext_xslfo.stylesheet.filename=/usr/share/jboss/server/default/conf/transformation/transformations/thirdParty/xslt/pmc_fulltext_xml2pmc_fulltext_xslfo.xsl
    • escidoc.transformation.bmc2escidoc_publication_item.stylesheet.filename=/usr/share/jboss/server/default/conf/transformation/transformations/thirdParty/xslt/bmc2escidoc-publication-item.xsl
    • escidoc.transformation.bmc2escidoc_publication_component.stylesheet.filename=/usr/share/jboss/server/default/conf/transformation/transformations/thirdParty/xslt/bmc2escidoc-publication-component.xsl
    • escidoc.transformation.bmc_fulltext_xml2bmc_fulltext_html.stylesheet.filename=/usr/share/jboss/server/default/conf/transformation/transformations/thirdParty/xslt/bmc_fulltext_xml2bmc_fulltext_html.xsl
    • escidoc.transformation.arxiv2escidoc_publication_item.stylesheet.filename=/usr/share/jboss/server/default/conf/transformation/transformations/thirdParty/xslt/arxiv2escidoc-publication-item.xsl
    • escidoc.transformation.arxiv2escidoc_publication_component.stylesheet.filename=/usr/share/jboss/server/default/conf/transformation/transformations/thirdParty/xslt/arxiv2escidoc-publication-component.xsl
  • PID-Component-Pattern
    • escidoc.pubman.component.pattern=/item/$1/component/$2/$3
  • Policy-Link
  • Bibtex-import implementierende Klasse
    • escidoc.transformation.bibtex.class=de.mpg.escidoc.services.transformation.transformations.commonPublicationFormats.Bibtex

Transformation Properties[edit]


PubMan Apache[edit]

PubMan JBoss[edit]

AA[edit]

Validation Database[edit]

Migration database[edit]

CoNE Database (all except zim02.gwdg.de)[edit]

  • Add new columns type and sort to result table:
CREATE TABLE results (
   id character varying NOT NULL,
   value character varying NOT NULL,
   lang character varying,
   type character varying,
   sort character varying
);

eSciDoc Admin[edit]

Data Migration[edit]

PubMan Software Homepage[edit]

http://pubman.mpdl.mpg.de/software/

Miscellaneous[edit]

Statistics[edit]

  • A new aggregation definition for the statistics was defined and is automatically created in the coreservice when PubMan starts up for the first time. Additionally, the complete statistics have to be preprocessed for this aggregation definition:
    • After first pubman start, find out aggregation-definition id (eg. by having a look in the escidoc-core database under sm: The prefix of the table 'pubman_object_stats' is the correct id)
    • Go to escidoc_core database
    • Copy values from old aggregation table to new aggregation table using the following sql


DELETE FROM sm.<aggregation_definition_id>_pubman_object_stats;
INSERT INTO sm.<aggregation_definition_id>_pubman_object_stats (
SELECT handler, request, regexp_replace(object_id, '(.*:.*)(:.*)', '\1') AS short_object_id, 
regexp_replace(parent_object_id, '(.*:.*)(:.*)', '\1') AS short_parent_object_id,
(user_id IS NOT NULL and user_id!=) AS user_id_available, month, year, sum(requests)
FROM sm.escidocaggdef1_object_stats 
GROUP BY handler, request, short_object_id, short_parent_object_id, user_id_available, month, year);

Installer[edit]

  • apache-fop-config.xml soll auch im Installer direkt ins conf-Verzeichnis des Servers übernommen werden