mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 22:17:54 +00:00
parallel: Modified citation clause.
This commit is contained in:
parent
87f65b76fe
commit
98ff943df2
17
src/parallel
17
src/parallel
|
@ -2847,12 +2847,13 @@ sub usage {
|
||||||
"",
|
"",
|
||||||
"See 'man $Global::progname' for details",
|
"See 'man $Global::progname' for details",
|
||||||
"",
|
"",
|
||||||
|
"Academic tradition requires you to cite works you base your article on.",
|
||||||
"When using programs that use GNU Parallel to process data for publication please cite:",
|
"When using programs that use GNU Parallel to process data for publication please cite:",
|
||||||
"",
|
"",
|
||||||
"O. Tange (2011): GNU Parallel - The Command-Line Power Tool,",
|
"O. Tange (2011): GNU Parallel - The Command-Line Power Tool,",
|
||||||
";login: The USENIX Magazine, February 2011:42-47.",
|
";login: The USENIX Magazine, February 2011:42-47.",
|
||||||
"",
|
"",
|
||||||
"Or you can get GNU Parallel without this requirement by paying 10000 EUR.",
|
"If you pay 10000 EUR you should feel free to use GNU Parallel without citing.\n",
|
||||||
"");
|
"");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2872,13 +2873,14 @@ sub citation_notice {
|
||||||
# skip
|
# skip
|
||||||
} else {
|
} else {
|
||||||
print $Global::original_stderr
|
print $Global::original_stderr
|
||||||
("When using programs that use GNU Parallel to process data for publication please cite:\n",
|
("Academic tradition requires you to cite works you base your article on.\n",
|
||||||
|
"When using programs that use GNU Parallel to process data for publication please cite:\n",
|
||||||
"\n",
|
"\n",
|
||||||
" O. Tange (2011): GNU Parallel - The Command-Line Power Tool,\n",
|
" O. Tange (2011): GNU Parallel - The Command-Line Power Tool,\n",
|
||||||
" ;login: The USENIX Magazine, February 2011:42-47.\n",
|
" ;login: The USENIX Magazine, February 2011:42-47.\n",
|
||||||
"\n",
|
"\n",
|
||||||
"This helps funding further development; and it won't cost you a cent.\n",
|
"This helps funding further development; and it won't cost you a cent.\n",
|
||||||
"Or you can get GNU Parallel without this requirement by paying 10000 EUR.\n",
|
"If you pay 10000 EUR you should feel free to use GNU Parallel without citing.\n",
|
||||||
"\n",
|
"\n",
|
||||||
"To silence this citation notice run 'parallel --bibtex' once or use '--no-notice'.\n\n",
|
"To silence this citation notice run 'parallel --bibtex' once or use '--no-notice'.\n\n",
|
||||||
);
|
);
|
||||||
|
@ -2930,10 +2932,8 @@ sub version {
|
||||||
"GNU $Global::progname comes with no warranty.",
|
"GNU $Global::progname comes with no warranty.",
|
||||||
"",
|
"",
|
||||||
"Web site: http://www.gnu.org/software/${Global::progname}\n",
|
"Web site: http://www.gnu.org/software/${Global::progname}\n",
|
||||||
"When using programs that use GNU Parallel to process data for publication please cite:\n",
|
"When using programs that use GNU Parallel to process data for publication",
|
||||||
"O. Tange (2011): GNU Parallel - The Command-Line Power Tool, ",
|
"please cite as described in 'parallel --bibtex'.\n",
|
||||||
";login: The USENIX Magazine, February 2011:42-47.\n",
|
|
||||||
"Or you can get GNU Parallel without this requirement by paying 10000 EUR.\n",
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2943,6 +2943,7 @@ sub bibtex {
|
||||||
print "WARNING: YOU ARE USING --tollef. IF THINGS ARE ACTING WEIRD USE --gnu.\n";
|
print "WARNING: YOU ARE USING --tollef. IF THINGS ARE ACTING WEIRD USE --gnu.\n";
|
||||||
}
|
}
|
||||||
print join("\n",
|
print join("\n",
|
||||||
|
"Academic tradition requires you to cite works you base your article on.",
|
||||||
"When using programs that use GNU Parallel to process data for publication please cite:",
|
"When using programs that use GNU Parallel to process data for publication please cite:",
|
||||||
"",
|
"",
|
||||||
"\@article{Tange2011a,",
|
"\@article{Tange2011a,",
|
||||||
|
@ -2962,7 +2963,7 @@ sub bibtex {
|
||||||
"",
|
"",
|
||||||
"This helps funding further development.",
|
"This helps funding further development.",
|
||||||
"",
|
"",
|
||||||
"Or you can get GNU Parallel without this requirement by paying 10000 EUR.",
|
"If you pay 10000 EUR you should feel free to use GNU Parallel without citing.\n",
|
||||||
""
|
""
|
||||||
);
|
);
|
||||||
while(not -e $ENV{'HOME'}."/.parallel/will-cite") {
|
while(not -e $ENV{'HOME'}."/.parallel/will-cite") {
|
||||||
|
|
Loading…
Reference in a new issue