aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/SimStatsReporter.cs28
-rwxr-xr-xadd-copyright.sh73
2 files changed, 101 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SimStatsReporter.cs b/OpenSim/Region/Environment/Scenes/SimStatsReporter.cs
index 15df619..d82c09b 100644
--- a/OpenSim/Region/Environment/Scenes/SimStatsReporter.cs
+++ b/OpenSim/Region/Environment/Scenes/SimStatsReporter.cs
@@ -1,3 +1,31 @@
1/*
2* Copyright (c) Contributors, http://opensimulator.org/
3* See CONTRIBUTORS.TXT for a full list of copyright holders.
4*
5* Redistribution and use in source and binary forms, with or without
6* modification, are permitted provided that the following conditions are met:
7* * Redistributions of source code must retain the above copyright
8* notice, this list of conditions and the following disclaimer.
9* * Redistributions in binary form must reproduce the above copyright
10* notice, this list of conditions and the following disclaimer in the
11* documentation and/or other materials provided with the distribution.
12* * Neither the name of the OpenSim Project nor the
13* names of its contributors may be used to endorse or promote products
14* derived from this software without specific prior written permission.
15*
16* THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
17* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19* DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
20* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26*
27*/
28
1using System; 29using System;
2using System.Collections.Generic; 30using System.Collections.Generic;
3using System.Text; 31using System.Text;
diff --git a/add-copyright.sh b/add-copyright.sh
new file mode 100755
index 0000000..ce5072a
--- /dev/null
+++ b/add-copyright.sh
@@ -0,0 +1,73 @@
1#!/bin/sh
2
3TEMPNAME="copyright_script_temp_file"
4COPYNAME="copyright_script_copyright_notice"
5
6URL="http://opensimulator.org/"
7PROJNAME="OpenSim"
8
9cat > ${COPYNAME} <<EOF
10/*
11* Copyright (c) Contributors, ${URL}
12* See CONTRIBUTORS.TXT for a full list of copyright holders.
13*
14* Redistribution and use in source and binary forms, with or without
15* modification, are permitted provided that the following conditions are met:
16* * Redistributions of source code must retain the above copyright
17* notice, this list of conditions and the following disclaimer.
18* * Redistributions in binary form must reproduce the above copyright
19* notice, this list of conditions and the following disclaimer in the
20* documentation and/or other materials provided with the distribution.
21* * Neither the name of the ${PROJNAME} Project nor the
22* names of its contributors may be used to endorse or promote products
23* derived from this software without specific prior written permission.
24*
25* THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS \`\`AS IS'' AND ANY
26* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
27* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
28* DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
29* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
30* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
31* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
32* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
34* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35*
36*/
37
38EOF
39
40has_bom() {
41 CHARS=`hexdump -c $1 | head -n1 | cut -d\ -f1-4`
42 BOMMARK="0000000 357 273 277"
43 if [ "${CHARS}" == "${BOMMARK}" ]; then
44 echo 1
45 else
46 echo 0
47 fi
48}
49
50for f in `find . -iname "*.cs"`; do
51 head -n2 $f | tail -n1 > ${TEMPNAME}
52 grep -q Copyright ${TEMPNAME}
53 if [ $? == 1 ]; then
54 BOMSTATUS=`has_bom $f`
55 rm ${TEMPNAME}
56
57 if [ ${BOMSTATUS} == 1 ]; then
58 echo -ne \\0357\\0273\\0277 > ${TEMPNAME}
59 fi
60
61 cat ${COPYNAME} >> ${TEMPNAME}
62
63 if [ ${BOMSTATUS} == 1 ]; then
64 cat $f | perl -p -e "s/^\\xEF\\xBB\\xBF//" >> ${TEMPNAME}
65 else
66 cat $f >> ${TEMPNAME}
67 fi
68
69 mv ${TEMPNAME} $f
70 fi
71done
72
73rm -f ${COPYNAME} ${TEMPNAME}