]> mj.ucw.cz Git - pciids.git/blobdiff - scripts/importlog.pl
cf/head.ids: Clarify copyright
[pciids.git] / scripts / importlog.pl
index df75d92b3b5a34000a4b7f4c59b63be4b301f61a..09fbec2286cb13f26a11121e3e2d53a745924615 100755 (executable)
@@ -1,4 +1,23 @@
 #!/usr/bin/perl
+
+#      PciIds web database
+#      Copyright (C) 2008 Michal Vaner (vorner@ucw.cz)
+#
+#      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
+#      he 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 St, Fifth Floor, Boston, MA  02110-1301  USA
+
 use strict;
 BEGIN {
        unshift @INC, ".";
@@ -17,13 +36,13 @@ sub translateLoc( $ ) {
 my $dbh = connectDb();
 my $clearHist = $dbh->prepare( 'DELETE FROM history WHERE location = ?' );
 my %coms;
-my $com = $dbh->prepare( 'INSERT INTO history (owner, location, time, nodename, nodedescription) VALUES (?, ?, FROM_UNIXTIME(?), ?, ?)' );
+my $com = $dbh->prepare( 'INSERT INTO history (owner, location, time, nodename, nodenote) VALUES (?, ?, FROM_UNIXTIME(?), ?, ?)' );
 my $user = $dbh->prepare( 'SELECT id FROM users WHERE email = ?' );
 my $delHis = $dbh->prepare( 'DELETE FROM history WHERE id = ?' );
 my $markMain = $dbh->prepare( 'UPDATE locations SET
-                               maincomment = ?,
+                               mainhistory = ?,
                                name = ( SELECT nodename FROM history WHERE id = ? ),
-                               description = ( SELECT nodedescription FROM history WHERE id = ? )
+                               note = ( SELECT nodenote FROM history WHERE id = ? )
                        WHERE
                                id = ?' );
 my $markSeen = $dbh->prepare( "UPDATE history SET seen = '1' WHERE id = ?" );