X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Farchival%2Fsnarf_quartz.pl;h=2e25e09ad6cb53065bb37009f4ad46c81d2004f5;hb=d24d2a57be3e90ef033a729c99ab7560c87b9663;hp=ba81fe083def063d5398b7f4087f56ed3d19cdaf;hpb=fb310c5386967c2f62e1ea5e0f4b39dd4d704937;p=feisty_meow.git diff --git a/scripts/archival/snarf_quartz.pl b/scripts/archival/snarf_quartz.pl index ba81fe08..2e25e09a 100644 --- a/scripts/archival/snarf_quartz.pl +++ b/scripts/archival/snarf_quartz.pl @@ -2,13 +2,13 @@ ############################################################################### # # -# Name : snarf_notes # +# Name : snarf_quartz # # Author : Chris Koeritz # # Rights : Copyright (C) 2000-$now by Author # # # # Purpose: # # # -# Stuffs up an archive with quartz lists and current new notes. # +# Packs up an archive with the quartz repository. # # # ############################################################################### # This program is free software; you can redistribute it and/or modify it # @@ -28,7 +28,7 @@ local($number) = &retrieve_number("aa_backup"); # variables for directory location to backup and the file to dump it in. local($root) = "$HOME"; -local($snarf_file_base) = &snarf_prefix("notes"); +local($snarf_file_base) = &snarf_prefix("quartz"); local($snarf_file) = &snarf_name($snarf_file_base, $number); # store the archive number in the file for retrieval on the other side. @@ -36,23 +36,10 @@ local($snarf_file) = &snarf_name($snarf_file_base, $number); ############################################################################ -# get top level text files and other potentially important items... -&backup_files($snarf_file_base, $number, $root, ".", ("*.html", "*.txt")); -# backup all the hierarchies in our quartz directory. +# backup all the hierarchies in our quartz directory, as well as any other well known +# repositories of goodness. &backup_hierarchy($snarf_file_base, $number, "$root", "quartz"); -# gather any directories in our home that match these often recurring patterns. -&snarf_by_pattern($snarf_file_base, "$root", "notes"); -&snarf_by_pattern($snarf_file_base, "$root", "project"); -&snarf_by_pattern($snarf_file_base, "$root", "issue"); -&snarf_by_pattern($snarf_file_base, "$root", "idea"); -&snarf_by_pattern($snarf_file_base, "$root", "crucial"); -&snarf_by_pattern($snarf_file_base, "$root", "list"); -&snarf_by_pattern($snarf_file_base, "$root", "task"); - -# backup additional folders we care about. -#unneeded it seems: &snarf_by_pattern($snarf_file_base, "$root", "notes", "cloud"); - ############################################################################ # now rename the file so only the unpacker can access it.