1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-04 10:19:33 +02:00

copyright notices have been changed

This commit is contained in:
Nikolay Pultsin 2011-01-02 14:15:35 +00:00
parent 296e73a418
commit 3dadda61e3
387 changed files with 459 additions and 385 deletions

56
scripts/changeCopyright.pl Executable file
View file

@ -0,0 +1,56 @@
#!/usr/bin/perl
use Fcntl;
if ($#ARGV != 0) {
print "usage:\n $0 <source_file>\n";
exit(0);
}
my $source_file = @ARGV[0];
my $min_year = 2013;
my $index = 0;
my $copyright_notice_end_line = 0;
open(SOURCE_FILE, "$source_file") || die "Cannot open file $source_file\n";
while (<SOURCE_FILE>) {
if ($index == 0) {
/^\/\*/ || die "File $source_file doesn't contain copyright notice\n";
} elsif (/\*\// && $copyright_notice_end_line == 0) {
$min_year < 2013 || die "File $source_file doesn't contain copyright year information\n";
$copyright_notice_end_line = $index + 1;
}
if (/Copyright \(C\)/) {
my $year = $_;
$year =~ s/.+Copyright \(C\) ([^ -]+).+\n/\1/;
if ($year < $min_year) {
$min_year = $year;
}
}
++$index;
}
$copyright_notice_end_line > 0 || die "File $source_file doesn't contain copyright notice\n";
$years = ($min_year == 2011) ? 2011 : "$min_year-2011";
open(TMP_FILE, ">TMP");
open(COPYRIGHT_FILE, "./scripts/copyright");
while (<COPYRIGHT_FILE>) {
s/YEARS/$years/;
print TMP_FILE $_;
}
close(COPYRIGHT_FILE);
$index = 0;
seek(SOURCE_FILE, 0, SEEK_SET);
while (<SOURCE_FILE>) {
if (++$index > $copyright_notice_end_line) {
print TMP_FILE $_;
}
}
close(SOURCE_FILE);
close(TMP_FILE);
rename("TMP", "$source_file");

18
scripts/copyright Normal file
View file

@ -0,0 +1,18 @@
/*
* Copyright (C) YEARS Geometer Plus <contact@geometerplus.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2010-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2009-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2009-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2007-2010 Geometer Plus <contact@geometerplus.com> * Copyright (C) 2007-2011 Geometer Plus <contact@geometerplus.com>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

Some files were not shown because too many files have changed in this diff Show more