added some names to the list to backup
[feisty_meow.git] / scripts / archival / snarf_notes.pl
index 7517f1d0ca7cd806c896e6a2c3b91eda1587989e..b14d05d7dd876055926c3006aca564fda32ece4e 100644 (file)
@@ -8,7 +8,7 @@
 #                                                                             #
 #  Purpose:                                                                   #
 #                                                                             #
-#    Stuffs up an archive with quartz lists and current new notes.            #
+#    Produces an archive with any current notes from the user's home dir.     #
 #                                                                             #
 ###############################################################################
 #  This program is free software; you can redistribute it and/or modify it    #
 #  version of the License.  Please send any updates to "fred@gruntose.com".   #
 ###############################################################################
 
-require "importenv.pl";
 require "shared_snarfer.pl";
 
+use Env qw(HOME);
+
 &initialize_snarfer;
 
 # get the number we use and increment it for the next use.
@@ -28,29 +29,28 @@ local($number) = &retrieve_number("aa_backup");
 
 # variables for directory location to backup and the file to dump it in.
 local($root) = "$HOME";
-local($base) = &snarf_prefix("notes");
-local($snarf_file) = &snarf_name($base, $number);
+local($snarf_file_base) = &snarf_prefix("notes");
+local($snarf_file) = &snarf_name($snarf_file_base, $number);
 
 # store the archive number in the file for retrieval on the other side.
-&backup_number("aa_backup", $base, $number);
+&backup_number("aa_backup", $snarf_file_base, $number);
 
 ############################################################################
 
 # get top level text files and other potentially important items...
-&backup_files($base, $number, $root, ".", ("*.html", "*.txt"));
-# backup all the hierarchies in our quartz directory.
-&backup_hierarchy($base, $number, "$root", "quartz");
-# grab all the state out of basketnotes's home directory.
-&backup_hierarchy($base, $number, "$root", ".kde/share/apps/basket");
+&backup_files($snarf_file_base, $number, $root, ".", ("*.html", "*.txt", "makefile*"));
 
 # gather any directories in our home that match these often recurring patterns.
-&snarf_by_pattern("$root", "notes");
-&snarf_by_pattern("$root", "project");
-&snarf_by_pattern("$root", "issue");
-&snarf_by_pattern("$root", "idea");
-&snarf_by_pattern("$root", "crucial");
-&snarf_by_pattern("$root", "list");
-&snarf_by_pattern("$root", "task");
+&snarf_by_pattern($snarf_file_base, "$root", "crucial");
+&snarf_by_pattern($snarf_file_base, "$root", "Documents");
+&snarf_by_pattern($snarf_file_base, "$root", "idea");
+&snarf_by_pattern($snarf_file_base, "$root", "issue");
+&snarf_by_pattern($snarf_file_base, "$root", "list");
+&snarf_by_pattern($snarf_file_base, "$root", "note");
+&snarf_by_pattern($snarf_file_base, "$root", "nuage");
+&snarf_by_pattern($snarf_file_base, "$root", "project");
+&snarf_by_pattern($snarf_file_base, "$root", "task");
+&snarf_by_pattern($snarf_file_base, "$root", "invention");
 
 ############################################################################