Some bugfixes
git-svn-id: https://svn.libreccm.org/ccm/trunk@6316 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
299023f003
commit
b2082b8bba
|
|
@ -289,6 +289,10 @@
|
||||||
<#return author["./@givenname"]>
|
<#return author["./@givenname"]>
|
||||||
</#function>
|
</#function>
|
||||||
|
|
||||||
|
<#function isAuthorEditor author>
|
||||||
|
<#return (author["./@editor"] == "true")>
|
||||||
|
</#function>
|
||||||
|
|
||||||
<#--doc
|
<#--doc
|
||||||
Gets the place of the publication.
|
Gets the place of the publication.
|
||||||
|
|
||||||
|
|
@ -530,4 +534,20 @@
|
||||||
-->
|
-->
|
||||||
<#function getProceedings item>
|
<#function getProceedings item>
|
||||||
<#return item["./proceedings"]>
|
<#return item["./proceedings"]>
|
||||||
|
</#function>
|
||||||
|
|
||||||
|
<#function hasYearFirstPublished item>
|
||||||
|
<#return (item["./yearFirstPublished"]?size > 0)>
|
||||||
|
</#function>
|
||||||
|
|
||||||
|
<#function getYearFristPublished item>
|
||||||
|
<#return item["./yearFirstPublished"]>
|
||||||
|
</#function>
|
||||||
|
|
||||||
|
<#function hasPublicationAbstract item>
|
||||||
|
<#return (item["./abstract"]?size > 0)>
|
||||||
|
</#function>
|
||||||
|
|
||||||
|
<#function getPublicationAbstract item>
|
||||||
|
<#return item["./abstract"]>
|
||||||
</#function>
|
</#function>
|
||||||
Loading…
Reference in New Issue