Changeset 176
- Timestamp:
- Jan 19, 2018, 6:34:35 PM (7 years ago)
- Location:
- trunk/project-meta
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/project-meta/project-meta
r175 r176 249 249 } 250 250 251 my $tt = Template->new(INCLUDE_PATH => '/usr/share/project-meta/template.d'); 251 my $tt = Template->new( 252 INCLUDE_PATH => '/usr/share/project-meta/template.d', 253 POST_CHOMP => 1, # Remove space and carriage return after %] 254 ); 252 255 my $msg_format = ''; 253 256 $tt->process('COPYRIGHT.tt', -
trunk/project-meta/template.d/COPYRIGHT.tt
r173 r176 3 3 Short project name: [% acronym %] 4 4 5 5 6 List of authors: 6 7 [% FOREACH author IN authorlist %] 7 8 - [% author %] 9 8 10 [% END %] 9 11 10 12 Description 11 13 ----------- 12 14 13 15 [% description %] 14 16 15 17 OpenData Licence: [% licence %] 16 18 17 [% IF doi %][% IF doi.size > 1 %]If you use this open data in your work (research or other), please cite in your bibliography the relevant reference amongst the following list of doi:[% FOREACH item IN doi %] 18 - doi:[% item %][% END %] 19 [% ELSE %]If you use this open data in your work (research or other), please cite in your bibliography the following reference doi:[% doi %][% END %][% END %] 19 20 [% IF doi %][% IF doi.size > 1 %] 21 If you use this open data in your work (research or other), please cite in your bibliography the relevant reference amongst the following list of doi: 22 [% FOREACH item IN doi %] 23 - doi:[% item %] 24 25 [% END %] 26 [% ELSE %] 27 If you use this open data in your work (research or other), please cite in your bibliography the following reference doi:[% doi %] 28 [% END %] 29 [% END %] 30 20 31 21 32 ----
Note: See TracChangeset
for help on using the changeset viewer.