<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -25,9 +25,11 @@ Integration instructions
 ------------------------------------------
 1. Add ZendeskDropboxLib to your project.
 
-2. Open Info.plist in your project. Add the key &quot;ZDURL&quot; and put the URL of your Zendesk account there. E.g. example.zendesk.com
+2. Open Info.plist in your project. Add the key &quot;ZDURL&quot; and put the URL of your Zendesk account there. E.g. &quot;example.zendesk.com&quot;
 
-3. Implement the ticket input form. You have to build your own UI for users to enter information and submit the ticket.
+3. Optionally specify the tag for tickets (the default is dropbox) In Info.plist add the key &quot;ZDTAG&quot; and put a tag . E.g. &quot;iphone&quot;
+
+4. Implement the ticket input form. You have to build your own UI for users to enter information and submit the ticket.
 
 The sample code uses a UITableView to implement a Mail-like interface for ticket input. Please refer to ZendeskDropboxSampleViewController.m for details.
 </diff>
      <filename>Integration.txt</filename>
    </modified>
    <modified>
      <diff>@@ -3,7 +3,7 @@
 //  CocoaZendesk
 //
 //  Created by Bill So on 06/05/2009.
-//  Copyright 2009 __MyCompanyName__. All rights reserved.
+//  Copyright 2009 Zendesk Inc. All rights reserved.
 //
 
 #import &lt;Foundation/Foundation.h&gt;
@@ -21,16 +21,17 @@ extern NSString *const ZendeskDropboxEmail;
 extern NSString *const ZendeskDropboxSubject;
 extern NSString *const ZendeskURLDoesNotExistException;
 
-/** \defgroup delegate_methods Delegate methods
+/** delegate_methods Delegate methods
  */
 
 /** ZendeskDropbox object is the only object you need to create to send ticket to Zendesk. ZendeskDropbox provides asynchronous sending of ticket to Zendesk server.
- &lt;p&gt;To use this class, you must add a key ZDURL to your application's plist. Put your Zendesk URL as value, e.g. mysite.zendesk.com.&lt;/p&gt;
+ To use this class, you must add a key ZDURL to your application's plist. Put your Zendesk URL as value, e.g. mysite.zendesk.com.
  */
 @interface ZendeskDropbox : NSObject {
 	id delegate;
 	NSMutableData * receivedData;
 	NSString *baseURL;
+	NSString *tag;
 }
 
 @property (retain, nonatomic) id delegate; /** set or get the delegate.  */
@@ -46,15 +47,12 @@ extern NSString *const ZendeskURLDoesNotExistException;
 @interface NSObject (ZendeskDropboxDelegate)
 
 /** Sent when connected to Zendesk server
- \ingroup delegate_methods
  */
 - (void)submissionConnectedToServer:(ZendeskDropbox *)connection;
 /** Sent when the ticket is submitted to Zendesk server successfully
- \ingroup delegate_methods
  */
 - (void)submissionDidFinishLoading:(ZendeskDropbox *)connection;
 /** Sent when ticket submission failed.
- \ingroup delegate_methods
  */
 - (void)submission:(ZendeskDropbox *)connection didFailWithError:(NSError *)error;
 </diff>
      <filename>ZendeskDropboxLib/ZendeskDropbox.h</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>ZendeskDropboxLib/libZendeskDropboxDevice.a</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>ZendeskDropboxLib/libZendeskDropboxSimulator.a</filename>
    </modified>
    <modified>
      <diff>@@ -27,6 +27,10 @@
 	&lt;key&gt;NSMainNibFile&lt;/key&gt;
 	&lt;string&gt;MainWindow&lt;/string&gt;
 	&lt;key&gt;ZDURL&lt;/key&gt;
-	&lt;string&gt;&amp;lt;zendesk account&amp;gt;.zendesk.com&lt;/string&gt;
+	&lt;string&gt;jtribe.zendesk-dev.com&lt;/string&gt;
+	&lt;key&gt;ZDURL - 2&lt;/key&gt;
+	&lt;string&gt;&amp;lt;your account&amp;gt;.zendesk.com&lt;/string&gt;
+	&lt;key&gt;ZDTAG&lt;/key&gt;
+	&lt;string&gt;dropbox&lt;/string&gt;
 &lt;/dict&gt;
 &lt;/plist&gt;</diff>
      <filename>ZendeskDropboxSample/Info.plist</filename>
    </modified>
    <modified>
      <diff>@@ -31,6 +31,7 @@ extern NSString *const ZendeskURLDoesNotExistException;
 	id delegate;
 	NSMutableData * receivedData;
 	NSString *baseURL;
+	NSString *tag;
 }
 
 @property (retain, nonatomic) id delegate; /** set or get the delegate.  */</diff>
      <filename>ZendeskDropboxSample/ZendeskDropbox.h</filename>
    </modified>
    <modified>
      <diff>@@ -192,6 +192,7 @@
 			isa = XCBuildConfiguration;
 			buildSettings = {
 				ALWAYS_SEARCH_USER_PATHS = NO;
+				&quot;CODE_SIGN_IDENTITY[sdk=iphoneos*]&quot; = &quot;iPhone Developer&quot;;
 				COPY_PHASE_STRIP = NO;
 				GCC_DYNAMIC_NO_PIC = NO;
 				GCC_OPTIMIZATION_LEVEL = 0;
@@ -203,6 +204,7 @@
 					&quot;\&quot;$(SRCROOT)\&quot;&quot;,
 				);
 				PRODUCT_NAME = ZendeskDropboxSample;
+				&quot;PROVISIONING_PROFILE[sdk=iphoneos*]&quot; = &quot;&quot;;
 			};
 			name = Debug;
 		};</diff>
      <filename>ZendeskDropboxSample/ZendeskDropboxSample.xcodeproj/project.pbxproj</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>ZendeskDropboxSample/libZendeskDropboxDevice.a</filename>
    </modified>
    <modified>
      <diff></diff>
      <filename>ZendeskDropboxSample/libZendeskDropboxSimulator.a</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>37cf2710abf5c3bf50080c22a70960e6418821f0</id>
    </parent>
  </parents>
  <author>
    <name>Armin Kroll</name>
    <email>armin@jtribe.com.au</email>
  </author>
  <url>http://github.com/zendesk/zendesk-iphone-dropbox/commit/61b0cef0d6354f79e545ee89ec0c4f09dfa5fed5</url>
  <id>61b0cef0d6354f79e545ee89ec0c4f09dfa5fed5</id>
  <committed-date>2009-08-18T02:18:50-07:00</committed-date>
  <authored-date>2009-08-17T23:42:16-07:00</authored-date>
  <message>Added zendesk tag with default set to dropbox

Signed-off-by: Zendesk Git &lt;git@zendesk.com&gt;</message>
  <tree>640cd477a4457f72bde7988a224be4147301c335</tree>
  <committer>
    <name>Zendesk Git</name>
    <email>git@zendesk.com</email>
  </committer>
</commit>
