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"]>
|
||||
</#function>
|
||||
|
||||
<#function isAuthorEditor author>
|
||||
<#return (author["./@editor"] == "true")>
|
||||
</#function>
|
||||
|
||||
<#--doc
|
||||
Gets the place of the publication.
|
||||
|
||||
|
|
@ -531,3 +535,19 @@
|
|||
<#function getProceedings item>
|
||||
<#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>
|
||||
Loading…
Reference in New Issue