Usunięcie aplikacji api.
[redakcja.git] / apps / api / management / commands / doc_share.py
diff --git a/apps/api/management/commands/doc_share.py b/apps/api/management/commands/doc_share.py
deleted file mode 100644 (file)
index cf454c5..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/usr/bin/env python
-# -*- conding: utf-8 -*-
-__author__="lreqc"
-__date__ ="$2009-09-08 14:31:26$"
-
-from django.core.management.base import BaseCommand
-from django.utils import simplejson as json
-from django.test.client import Client
-from django.core.urlresolvers import reverse
-
-from optparse import make_option
-
-class Command(BaseCommand):
-    
-    option_list = BaseCommand.option_list + (
-        make_option('-u', '--user', action='store', dest='username'),
-        make_option('-p', '--password', action='store', dest='password'),     
-    )
-    
-    def handle(self, *args, **options):
-        client = Client()
-        if not options['username'] or not options['password']:
-            raise CommandError("You must provide login data")
-
-        client.login(username=options['username'], \
-            password=options['password'])
-
-        print options['username'], options['password']
-
-        docid = args[0]
-
-        url = reverse("document_view", args=[docid])
-        print "Quering %s" % url
-        resp = client.get(url)
-
-        result = json.loads(resp.content)
-        print result
-
-        print "Current revision for '%s': %s" % (docid, result['user_revision'])
-        url = reverse("docmerge_view", args=[docid])
-        print "Sending POST to %s" % url
-        resp = client.post(url, {
-            'type': 'share',
-            'target_revision': result['user_revision'],
-            'message': 'Sharing.. :)'          
-        })
-
-        print resp.status_code, resp.content