我尝试使用XML插件将我的大学期刊的旧版本导入OJS。我构建了xml问题文件:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE issue PUBLIC "-//PKP//OJS Articles and Issues XML//EN" "http://pkp.sfu.ca/ojs/dtds/native.dtd">
<issue published="false" current="false">
<title>August 2008, Volume 3, Number A08</title>
<volume>3</volume>
<number>A08</number>
<year>2008</year>
<section>
<title locale="en_US">Articles</title>
<abbrev locale="en_US">ART</abbrev>
<article>
<title>Approximating Counterparts</title>
<abstract>Abstract text...</abstract>
<pages>1-11</pages>
<date_published>2008-08-01</date_published>
<author primary_contact="true">
<firstname>FISTNAME</firstname>
<middlename><![CDATA[ ]]></middlename>
<lastname>LASTNAME</lastname>
<email>email@email</email>
</author>
<galley>
<label>PDF</label>
<file><href mime_type="application/pdf" src="http://...../issue/some.pdf"/></file>
</galley>
</article>
</section>
</issue>
并成功将它们导入OJS。但是,关键字,DOI和引用存在问题。我不知道将它们放在我的sample.xml
文件中的哪个位置。像<keywords>...</keywords>
或<references>...</references>
或<doi>...</doi>
这样的标签似乎不起作用,我的意思是当我将它们放在我的sample.xml
文件中时它们没有效果。
任何想法如何解决?
我已经检查了/var/www/html/ojs/plugins/importexport/native
中的示例,搜索了native.dtd
文件,但找不到解决方案......
答案 0 :(得分:1)
导入/导出的最佳文档是:http://pkp.sfu.ca/wiki/index.php/Importing_and_Exporting_Data
除此之外,要查看可以使用的元素,请查看plugins / importexport / native / native.dtd。或者,您也可以尝试导出包含您要查找的数据的文章,并查看它放置的位置。
对于关键字,请使用&lt; subject&gt;元素,例如:
<subject locale="en_US">mathematics, formal logic</subject>
对于DOI,请使用&lt; id&gt; element,确保指定类型,例如:
<id type="doi">10.1234/t.v1i1.1-imp-test</id>
使用本机导入/导出插件目前不支持引文导入。