Author: snoopckuu
Date: 2010-05-06 16:09:15 +0200 (Thu, 06 May 2010)
New Revision: 29378

Added:
   plugins/sfJiraPlugin/README
Log:
Import

Added: plugins/sfJiraPlugin/README
===================================================================
--- plugins/sfJiraPlugin/README                         (rev 0)
+++ plugins/sfJiraPlugin/README 2010-05-06 14:09:15 UTC (rev 29378)
@@ -0,0 +1,26 @@
+sfJiraPlugin Usage
+========
+Login:
+
+       $jira = new sfJiraPlugin('username','password');
+
+Get all available soap methods:
+
+       $jira->getAvailableMethods();  
+
+list ALL issues for ALL projects you assigned
+
+       foreach( $projects as $project ){
+               
+               var_dump( $jira->getIssuesForProject( $project->key ) );
+               
+       }
+
+Get issue by KEY
+
+       $jira->getIssue('KEY-1');
+
+Work Log
+
+
+       $jira->worklog('KEY-1', '1h 20m');

-- 
You received this message because you are subscribed to the Google Groups 
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/symfony-svn?hl=en.

Reply via email to