aboutsummaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorJochen Topf <jochen@topf.org>2013-01-24 11:33:02 +0100
committerJochen Topf <jochen@topf.org>2013-01-24 11:33:02 +0100
commit62e3e5509f05385eb1414172c53f5be9255bc520 (patch)
tree26139e32f8e5034b4525f35efcc7d3fc1008aaec /sources
parentc455ddbcaeed9e8a12947622dcf2c75e584960f2 (diff)
downloadtaginfo-62e3e5509f05385eb1414172c53f5be9255bc520.tar
taginfo-62e3e5509f05385eb1414172c53f5be9255bc520.tar.gz
Remove now superfluous perl script
Diffstat (limited to 'sources')
-rwxr-xr-xsources/db/update_characters.pl66
1 files changed, 0 insertions, 66 deletions
diff --git a/sources/db/update_characters.pl b/sources/db/update_characters.pl
deleted file mode 100755
index d80f71a..0000000
--- a/sources/db/update_characters.pl
+++ /dev/null
@@ -1,66 +0,0 @@
-#!/usr/bin/perl
-#------------------------------------------------------------------------------
-#
-# Taginfo source: DB
-#
-# update_characters.pl
-#
-#------------------------------------------------------------------------------
-#
-# Copyright (C) 2012 Jochen Topf <jochen@remote.org>
-#
-# 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.
-#
-#------------------------------------------------------------------------------
-
-use DBI;
-
-my $dir = $ARGV[0] || '.';
-
-my $dbh = DBI->connect("dbi:SQLite:dbname=$dir/taginfo-db.db", '', '');
-$dbh->{unicode} = 1;
-#$dbh->{sqlite_unicode} = 1;
-
-my @regexes = (
- ['plain', qr{^[a-z]([a-z_]*[a-z])?$}],
- ['colon', qr{^[a-z][a-z_:]*[a-z]$}],
- ['letters', qr{^[\p{L}\p{M}]([\p{L}\p{M}\p{N}_:]*[\p{L}\p{M}\p{N}])?$}],
- ['space', qr{[\s\p{Z}]}],
- ['problem', qr{[=+/&<>;\@'"?%#\\,\p{C}]}]
-);
-
-my %keys;
-my $results = $dbh->selectcol_arrayref('SELECT key FROM keys');
-
-ROW: foreach my $key (@$results) {
- $keys{$key} = 'rest';
- foreach my $r (@regexes) {
- if ($key =~ $r->[1]) {
- $keys{$key} = $r->[0];
- next ROW;
- }
- }
-}
-
-$dbh->do('BEGIN TRANSACTION');
-
-foreach my $key (keys %keys) {
- $dbh->do('UPDATE keys SET characters=? WHERE key=?', undef, $keys{$key}, $key);
-}
-
-$dbh->do('COMMIT');
-
-
-#-- THE END -------------------------------------------------------------------