[Bps-public-commit] r10299 - in Net-Hiveminder: lib/Net

sartak at bestpractical.com sartak at bestpractical.com
Sat Jan 12 22:50:18 EST 2008


Author: sartak
Date: Sat Jan 12 22:50:18 2008
New Revision: 10299

Modified:
   Net-Hiveminder/   (props changed)
   Net-Hiveminder/Changes
   Net-Hiveminder/Makefile.PL
   Net-Hiveminder/README
   Net-Hiveminder/lib/Net/Hiveminder.pm

Log:
 r50238 at onn:  sartak | 2008-01-12 22:49:39 -0500
 Prepare for 0.02 release


Modified: Net-Hiveminder/Changes
==============================================================================
--- Net-Hiveminder/Changes	(original)
+++ Net-Hiveminder/Changes	Sat Jan 12 22:50:18 2008
@@ -1,5 +1,12 @@
 Revision history for Net-Hiveminder
 
-0.01    Wed Nov 21 16:45:38 2007
+0.02    Sat Jan 12 08 22:48:24
+        Remove canonicalize_priority, Hiveminder does it for us.
+        Add priority method
+        Add priority to display_tasks
+        Add done method
+        Add tasks2ids method
+
+0.01    Wed Nov 21 07 16:45:38 2007
         First version, released on an unsuspecting world.
 

Modified: Net-Hiveminder/Makefile.PL
==============================================================================
--- Net-Hiveminder/Makefile.PL	(original)
+++ Net-Hiveminder/Makefile.PL	Sat Jan 12 22:50:18 2008
@@ -3,7 +3,7 @@
 name            'Net-Hiveminder';
 all_from        'lib/Net/Hiveminder.pm';
 
-requires        'Net::Jifty' => '0.02';
+requires        'Net::Jifty' => '0.04';
 requires        'Number::RecordLocator';
 
 build_requires  'Test::More';

Modified: Net-Hiveminder/README
==============================================================================
--- Net-Hiveminder/README	(original)
+++ Net-Hiveminder/README	Sat Jan 12 22:50:18 2008
@@ -2,7 +2,7 @@
     Net::Hiveminder - Perl interface to hiveminder.com
 
 VERSION
-    Version 0.01 released 21 Nov 07
+    Version 0.02 released 12 Jan 08
 
 SYNOPSIS
         use Net::Hiveminder;
@@ -50,7 +50,7 @@
   read_task LOCATOR
     Load task "LOCATOR".
 
-  update_task lOCATOR, ARGS
+  update_task LOCATOR, ARGS
     Update task "LOCATOR" with "ARGS".
 
   delete_task LOCATOR
@@ -61,13 +61,37 @@
     all the braindumped tasks (this is part of what the filter feature of
     Hiveminder's IM bot does).
 
-  email_of ID
-    Retrieve user "ID"'s email address.
+  upload_text TEXT
+    Uploads "TEXT" to BTDT::Action::UploadTasks.
 
-  canonicalize_priority PRIORITY
-    Attempts to understand a variety of different priority formats and
-    change "PRIORITY" to the standard 1-5. This will "confess" if it doesn't
-    understand "PRIORITY".
+  upload_file FILENAME
+    Uploads "FILENAME" to BTDT::Action::UploadTasks.
+
+  download_text
+    Downloads your tasks. This also gets the metadata so that you can edit
+    the text and upload it, and it'll make the same changes to your task
+    list.
+
+    This does not currently accept query arguments, because Hiveminder
+    expects a "/not/owner/me/group/personal" type argument string, when all
+    we can produce is "owner_not => 'me', group => 'personal'"
+
+  download_file FILENAME
+    Downloads your tasks and puts them into "FILENAME".
+
+    This does not currently accept query arguments, because Hiveminder
+    expects a "/not/owner/me/group/personal" type argument string, when all
+    we can produce is "owner_not => 'me', group => 'personal'"
+
+  priority (NUMBER | TASK) -> Maybe String
+    Returns the "word" of a priority. One of: lowest, low, normal, high,
+    highest. If the priority is out of range, "undef" will be returned.
+
+  done LOCATORS
+    Marks the given tasks as complete.
+
+  tasks2ids LOCATORS -> IDS
+    Transforms the given record locators (or tasks) to regular IDs.
 
 SEE ALSO
     Jifty, Net::Jifty

Modified: Net-Hiveminder/lib/Net/Hiveminder.pm
==============================================================================
--- Net-Hiveminder/lib/Net/Hiveminder.pm	(original)
+++ Net-Hiveminder/lib/Net/Hiveminder.pm	Sat Jan 12 22:50:18 2008
@@ -12,11 +12,11 @@
 
 =head1 VERSION
 
-Version 0.01 released 21 Nov 07
+Version 0.02 released 12 Jan 08
 
 =cut
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 =head1 SYNOPSIS
 



More information about the Bps-public-commit mailing list