root/v6/v6-KindaPerl6/docs/generic-licencing.txt

Revision 19063, 3.1 kB (checked in by dlo, 12 months ago)

[kp6] Minor formating correction.

Line 
1# How to search for code w/o licences
2# linux grep
3grep -rL http://www.perl.com/perl/misc/Artistic.html ./ | grep -v .svn | grep -v blib
4
5# Perl Pod Note: The POD specification requires a "\n" after =end or =cut
6# so terminating a file =cut[EOT] w/o a \n will give mp6.pl's parser a lot
7# of grief
8######## Perl Pod example
9
10=head1 AUTHORS
11
12The Pugs Team E<lt>perl6-compiler@perl.orgE<gt>.
13
14=head1 SEE ALSO
15
16The Perl 6 homepage at L<http://dev.perl.org/perl6>.
17
18The Pugs homepage at L<http://pugscode.org/>.
19
20=head1 COPYRIGHT
21
22Copyright 2007 by Flavio Soibelmann Glock and others.
23
24This program is free software; you can redistribute it and/or modify it
25under the same terms as Perl itself.
26
27See L<http://www.perl.com/perl/misc/Artistic.html>
28
29=cut
30
31######## html example
32
33<div class="copyright">
34<li>AUTHORS</li>
35<p>The Pugs Team E<lt>perl6-compiler@perl.orgE<gt>.</p>
36
37<li>SEE ALSO</li>
38
39<p>The Perl 6 homepage at <a href="http://dev.perl.org/perl6">http://dev.perl.org/perl6</a>.</p>
40
41<p>The Pugs homepage at <a href="http://pugscode.org">http://pugscode.org</a>.</p>
42
43<li>COPYRIGHT</li>
44
45<p>Copyright 2007 by Flavio Soibelmann Glock and others.</p>
46
47<p>This program is free software; you can redistribute it and/or modify it
48under the same terms as Perl itself.</p>
49
50<p>See <a href="http://www.perl.com/perl/misc/Artistic.html">http://www.perl.com/perl/misc/Artistic.html</a></p>
51
52</div>
53
54
55######## text example
56
57AUTHORS
58
59The Pugs Team perl6-compiler@perl.org.
60
61SEE ALSO
62
63The Perl 6 homepage at http://dev.perl.org/perl6.
64
65The Pugs homepage at http://pugscode.org/.
66
67COPYRIGHT
68
69Copyright 2007 by Flavio Soibelmann Glock and others.
70
71This program is free software; you can redistribute it and/or modify it
72under the same terms as Perl itself.
73
74See http://www.perl.com/perl/misc/Artistic.html
75
76######## C Code
77
78/*
79
80AUTHORS
81
82The Pugs Team perl6-compiler@perl.org.
83
84SEE ALSO
85
86The Perl 6 homepage at http://dev.perl.org/perl6.
87
88The Pugs homepage at http://pugscode.org/.
89
90COPYRIGHT
91
92Copyright 2007 by Flavio Soibelmann Glock and others.
93
94This program is free software; you can redistribute it and/or modify it
95under the same terms as Perl itself.
96
97See http://www.perl.com/perl/misc/Artistic.html
98
99*/
100
101
102######## Shell commented
103
104# AUTHORS
105#
106# The Pugs Team perl6-compiler@perl.org.
107#
108# SEE ALSO
109#
110# The Perl 6 homepage at http://dev.perl.org/perl6.
111#
112# The Pugs homepage at http://pugscode.org/.
113#
114# COPYRIGHT
115#
116# Copyright 2007 by Flavio Soibelmann Glock and others.
117#
118# This program is free software; you can redistribute it and/or modify it
119# under the same terms as Perl itself.
120#
121# See http://www.perl.com/perl/misc/Artistic.html
122
123######## lisp commented
124
125;; AUTHORS
126;;
127;; The Pugs Team perl6-compiler@perl.org.
128;;
129;; SEE ALSO
130;;
131;; The Perl 6 homepage at http://dev.perl.org/perl6.
132;;
133;; The Pugs homepage at http://pugscode.org/.
134;;
135;; COPYRIGHT
136;;
137;; Copyright 2007 by Flavio Soibelmann Glock and others.
138;;
139;; This program is free software; you can redistribute it and/or modify it
140;; under the same terms as Perl itself.
141;;
142;; See http://www.perl.com/perl/misc/Artistic.html
Note: See TracBrowser for help on using the browser.