From: pho Date: Mon, 8 Dec 2008 08:31:24 +0000 (+0900) Subject: Auto commit by The Sugar System. X-Git-Url: http://git.cielonegro.org/gitweb.cgi?p=sugar.git;a=commitdiff_plain;h=45d6c08f587212574d05360222eea780b2a5c56a Auto commit by The Sugar System. --- diff --git a/IGNORE b/IGNORE new file mode 100644 index 0000000..74b6eb4 --- /dev/null +++ b/IGNORE @@ -0,0 +1,75 @@ +# +# Patterns of dot-files to be ignored. +# + +*~ +.*cache* +.*history* +.BitTornado +.CFUserTextEncoding +.DS_Store +.ICEauthority +.MacOSX +.Trash +.Xauthority +.angband/Hengband/playrec-*.txt +.cabal +.cpan +.dbus +.dvdcss +.easytag +.elisp +.esd_auth +.emacs.d +.eshell +.firefox +.fontconfig +.fonts +.forward +.gconf* +.gimp* +.glimpse* +.gnome2* +.gnucash +.gnupg +.gstreamer-0.10 +.htpasswd +.ido.last* +.inkscape/*.log +.jungledisk* +.kde +.localized +.mozilla +.mpd +.mplayer/DVDKeys +.mplayer/skins +.nautilus +.navi2ch/*.net +.navi2ch/*.com +.nh-todo +.pan +.projects.ede +.qt +.recently-used* +.rnd +.s9x +.scribus +.serverauth.* +.skk-* +.snes* +.ssh +.thumbnails +.tome +.trackballs +.uim.d +.unison +.viminfo +.w3m/bookmark.bak.html +.w3m/config +.w3m/*arrived +.w3m/*cookie +.w3m/*sessions +.wine +.xchat2* +.zcomp* +.zfunc diff --git a/dot-files/_inkscape/preferences_xml b/dot-files/_inkscape/preferences_xml new file mode 100644 index 0000000..06801c9 --- /dev/null +++ b/dot-files/_inkscape/preferences_xml @@ -0,0 +1,764 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tools/list-files.pl b/tools/list-files.pl index 2ed8ba8..7b5de8e 100644 --- a/tools/list-files.pl +++ b/tools/list-files.pl @@ -4,18 +4,22 @@ use Smart::Comments; use List::MoreUtils qw(any); use File::Spec; -my @RE_IGNORED = map { - s/\./\\./g; - s/\+/\\+/g; - - s/\?/.?/g; - s/\*/.*?/g; - - qr/^$_$/; - } - grep {length} - map {tr/\n//d; $_} - ; +my @RE_IGNORED = do { + open my $fh, '<', 'IGNORE' or die $!; + map { + s/\./\\./g; + s/\+/\\+/g; + + s/\?/.?/g; + s/\*/.*?/g; + + qr/^$_$/; + } + grep {length} + map {s/^\s*#//; $_} + map {tr/\n//d; $_} + <$fh>; +}; main(); @@ -55,71 +59,3 @@ sub find { } @d; } - -__DATA__ -*~ -.*cache* -.*history* -.CFUserTextEncoding -.DS_Store -.ICEauthority -.MacOSX -.Trash -.Xauthority -.cabal -.cpan -.dbus -.dvdcss -.easytag -.elisp -.esd_auth -.emacs.d -.eshell -.firefox -.fontconfig -.fonts -.gconf* -.gimp* -.glimpse* -.gnome2* -.gnucash -.gnupg -.gstreamer-0.10 -.htpasswd -.ido.last* -.jungledisk* -.kde -.localized -.mozilla -.mpd -.mplayer/DVDKeys -.mplayer/skins -.nautilus -.navi2ch/*.net -.navi2ch/*.com -.nh-todo -.pan -.projects.ede -.qt -.recently-used* -.rnd -.s9x -.scribus -.skk-* -.snes* -.ssh -.thumbnails -.tome -.trackballs -.uim.d -.unison -.viminfo -.w3m/bookmark.bak.html -.w3m/config -.w3m/*arrived -.w3m/*cookie -.w3m/*sessions -.wine -.xchat2* -.zcomp* -.zfunc