2009-08-01 14:14:54 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
import os.path
|
2009-08-16 12:23:29 +00:00
|
|
|
import re
|
|
|
|
from datetime import datetime
|
|
|
|
from urllib2 import unquote
|
2009-12-31 15:04:32 +00:00
|
|
|
import json
|
2009-08-16 12:23:29 +00:00
|
|
|
|
2009-08-01 14:14:54 +00:00
|
|
|
from django.db.models import Q, Avg, Count
|
|
|
|
from django.contrib.auth.models import User
|
|
|
|
from django.shortcuts import render_to_response, get_object_or_404, get_list_or_404
|
|
|
|
from django.template import RequestContext
|
|
|
|
from django.core.paginator import Paginator
|
2009-12-31 15:04:32 +00:00
|
|
|
from django.http import HttpResponse
|
2009-08-16 12:23:29 +00:00
|
|
|
from django.contrib.auth.decorators import login_required
|
2009-12-31 15:04:32 +00:00
|
|
|
try:
|
|
|
|
import simplejson as json
|
|
|
|
except ImportError:
|
|
|
|
from django.utils import simplejson as json
|
|
|
|
from oxdjango.shortcuts import render_to_json_response
|
|
|
|
from oxdjango.decorators import login_required_json
|
|
|
|
|
2009-08-01 14:14:54 +00:00
|
|
|
|
|
|
|
import models
|
2009-10-04 22:00:08 +00:00
|
|
|
import utils
|
2010-01-16 20:42:11 +00:00
|
|
|
from daemon import send_bg_message
|
2009-08-16 12:23:29 +00:00
|
|
|
|
2009-08-01 14:14:54 +00:00
|
|
|
'''
|
2009-08-16 12:23:29 +00:00
|
|
|
field.length -> movie.sort.all()[0].field
|
|
|
|
o=0&n=100
|
|
|
|
|
|
|
|
|
|
|
|
a & b | c & d
|
|
|
|
|
|
|
|
query
|
|
|
|
|
|
|
|
l=user:name or l=name
|
|
|
|
q=year:1980,hello,country:usa
|
|
|
|
q=year:1980,hello,country:!usa
|
|
|
|
q=title:^the$
|
|
|
|
q=title:^100%24$
|
|
|
|
q=year:<1970,year:>1960
|
|
|
|
q=year:<1960,year:>1950,title:sex
|
|
|
|
|
|
|
|
!1960-1970
|
|
|
|
2009.08.02.22.26.35-2009.08.02.22.26.35
|
|
|
|
|
|
|
|
!^the
|
|
|
|
|
|
|
|
(dddd.dd.dd)-(dddd.dd.dd)
|
|
|
|
|
|
|
|
5-8
|
|
|
|
10000-20000
|
|
|
|
|
|
|
|
<2009-08-02-22-26-35
|
|
|
|
|
|
|
|
>2009-08-02-22-26-35
|
|
|
|
2009-08-02-22-26-35<
|
|
|
|
|
|
|
|
^the the*
|
|
|
|
*foo foo$
|
|
|
|
*foo* foo
|
|
|
|
|
|
|
|
s=director:asc,year:desc default: director:asc,year:desc
|
|
|
|
r=0:100 or r=100 or r=100: default: 0:100
|
2009-10-04 22:00:08 +00:00
|
|
|
p=id,title,director,date,cast.length default: title,director,year,country
|
|
|
|
q
|
2009-08-16 12:23:29 +00:00
|
|
|
|
2009-10-04 22:00:08 +00:00
|
|
|
List data backend spec:
|
|
|
|
url = //url for request
|
|
|
|
params = [] //additional params passed to url, i.e. query, or group
|
2009-08-16 12:23:29 +00:00
|
|
|
|
2009-10-04 22:00:08 +00:00
|
|
|
the url must understand the following requests:
|
|
|
|
number of items:
|
|
|
|
url?params&n=1
|
|
|
|
> {items: N}
|
|
|
|
items sorted by key range X to Y:
|
|
|
|
url?params&s=key:asc|desc&r=X:Y
|
|
|
|
> {items: [{k0:v0, k1:v1...}, {k0:v0, k1:v1...}]}
|
2009-08-16 12:23:29 +00:00
|
|
|
|
2009-10-04 22:00:08 +00:00
|
|
|
Examples:
|
|
|
|
/json/find?l=all&s=title&f=all&q=&a=desc&p=id,title,director,date,cast.length
|
2009-08-01 14:14:54 +00:00
|
|
|
|
2009-10-04 22:00:08 +00:00
|
|
|
/json/find?r=0:100&l=all&s=title&f=all&q=&a=desc&p=id,title,director,date,cast.length
|
2009-08-01 14:14:54 +00:00
|
|
|
{
|
|
|
|
movies=[
|
|
|
|
{
|
|
|
|
"id":
|
|
|
|
"title": "fsdf",
|
|
|
|
"director":
|
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
#get sort order for all ids
|
2009-10-04 22:00:08 +00:00
|
|
|
/json/find?r=0:1000&l=all&s=title&f=all&q=&a=desc&p=id
|
2009-08-01 14:14:54 +00:00
|
|
|
{
|
|
|
|
movies=[
|
|
|
|
{
|
|
|
|
"id": id
|
|
|
|
},
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2009-10-04 22:00:08 +00:00
|
|
|
/json/find?l=all&s=title&f=all&q=&a=desc
|
2009-08-01 14:14:54 +00:00
|
|
|
{
|
|
|
|
movies: 1234,
|
|
|
|
files: 2345,
|
|
|
|
pixels: 1242345345,
|
|
|
|
size: 1235,
|
|
|
|
duration: 1235,
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-10-04 22:00:08 +00:00
|
|
|
/json/find?r=0:100&l=all&s=[name, items]&f=all&q=&a=desc&g=country
|
2009-08-01 14:14:54 +00:00
|
|
|
{
|
|
|
|
groups = [ {name:"USA", movies: 123}, {name:"UK", movies: 1234} ]
|
|
|
|
}
|
|
|
|
|
|
|
|
#find as you type: in table, by sort string
|
|
|
|
|
|
|
|
#auto compleat in find box
|
|
|
|
|
|
|
|
'''
|
2009-08-16 12:23:29 +00:00
|
|
|
def order_query(qs, s, prefix='sort__'):
|
|
|
|
order_by = []
|
|
|
|
for e in s.split(','):
|
|
|
|
o = e.split(':')
|
|
|
|
if len(o) == 1: o.append('asc')
|
2009-10-04 22:00:08 +00:00
|
|
|
order = {'id': 'movieId'}.get(o[0], o[0])
|
|
|
|
order = '%s%s' % (prefix, order)
|
2009-08-16 12:23:29 +00:00
|
|
|
if o[1] == 'desc':
|
|
|
|
order = '-%s' % order
|
|
|
|
order_by.append(order)
|
|
|
|
if order_by:
|
|
|
|
qs = qs.order_by(*order_by)
|
|
|
|
return qs
|
|
|
|
|
|
|
|
def parse_query(request):
|
|
|
|
get = request.GET
|
2009-08-01 14:14:54 +00:00
|
|
|
query = {}
|
2009-08-16 12:23:29 +00:00
|
|
|
query['i'] = 0
|
|
|
|
query['o'] = 100
|
|
|
|
query['s'] = 'title:asc'
|
2009-08-01 14:14:54 +00:00
|
|
|
def parse_dict(s):
|
|
|
|
d = s.split(",")
|
|
|
|
return [i.strip() for i in d]
|
2009-10-04 22:00:08 +00:00
|
|
|
_dicts = ['p', ]
|
|
|
|
_ints = ['n', ]
|
|
|
|
for key in ('s', 'p', 'g', 'l', 'n'):
|
2009-08-01 14:14:54 +00:00
|
|
|
if key in get:
|
|
|
|
if key in _ints:
|
|
|
|
query[key] = int(get[key])
|
|
|
|
elif key in _dicts:
|
|
|
|
query[key] = parse_dict(get[key])
|
|
|
|
else:
|
|
|
|
query[key] = get[key]
|
2009-08-16 12:23:29 +00:00
|
|
|
query['q'] = models.Movie.objects.find(request)
|
|
|
|
if 'r' in get:
|
|
|
|
r = get['r'].split(':')
|
|
|
|
if len(r) == 1: r.append(0)
|
|
|
|
if r[0] == '': r[0] = 0
|
|
|
|
if r[1] == '': r[0] = -1
|
|
|
|
query['i'] = int(r[0])
|
|
|
|
query['o'] = int(r[1])
|
2009-10-04 22:00:08 +00:00
|
|
|
#group by only allows sorting by name or number of itmes
|
2009-08-01 14:14:54 +00:00
|
|
|
return query
|
|
|
|
|
|
|
|
def find(request):
|
2009-08-16 12:23:29 +00:00
|
|
|
query = parse_query(request)
|
2009-08-01 14:14:54 +00:00
|
|
|
response = {}
|
2009-10-04 22:00:08 +00:00
|
|
|
if 'p' in query:
|
|
|
|
response['items'] = []
|
2009-08-16 12:23:29 +00:00
|
|
|
qs = order_query(query['q'], query['s'])
|
2009-10-04 22:00:08 +00:00
|
|
|
if 'n' in query:
|
|
|
|
response = {'items': qs.count()}
|
|
|
|
else:
|
2009-12-31 15:04:32 +00:00
|
|
|
_p = query['p']
|
|
|
|
def only_p(m):
|
|
|
|
r = {}
|
|
|
|
if m:
|
|
|
|
m = json.loads(m)
|
|
|
|
for p in _p:
|
|
|
|
r[p] = m[p]
|
|
|
|
return r
|
2009-10-04 22:00:08 +00:00
|
|
|
qs = qs[query['i']:query['o']]
|
2009-12-31 15:04:32 +00:00
|
|
|
|
|
|
|
response['items'] = [only_p(m['json']) for m in qs.values('json')]
|
|
|
|
|
2009-08-16 12:23:29 +00:00
|
|
|
elif 'g' in query:
|
2009-10-04 22:00:08 +00:00
|
|
|
if query['s'].split(':')[0] not in ('name', 'items'):
|
|
|
|
query['s'] = 'name'
|
2009-08-16 12:23:29 +00:00
|
|
|
#FIXME: also filter lists here
|
2009-10-04 22:00:08 +00:00
|
|
|
response['items'] = []
|
2009-08-16 12:23:29 +00:00
|
|
|
name = 'name'
|
2009-10-04 22:00:08 +00:00
|
|
|
items = 'movies'
|
2009-08-16 12:23:29 +00:00
|
|
|
movie_qs = query['q']
|
|
|
|
_objects = {
|
|
|
|
'country': models.Country.objects,
|
|
|
|
'genre': models.Genre.objects,
|
|
|
|
'language': models.Language.objects,
|
|
|
|
'director': models.Person.objects.filter(cast__role='directors'),
|
|
|
|
}
|
|
|
|
if query['g'] in _objects:
|
|
|
|
qs = _objects[query['g']].filter(movies__id__in=movie_qs).values('name').annotate(movies=Count('movies'))
|
|
|
|
elif query['g'] == "year":
|
2009-10-04 22:00:08 +00:00
|
|
|
qs = movie_qs.values('imdb__year').annotate(movies=Count('id'))
|
|
|
|
name='imdb__year'
|
|
|
|
if 'n' in query:
|
|
|
|
response['items'] = qs.count()
|
|
|
|
else:
|
|
|
|
#replace normalized items/name sort with actual db value
|
|
|
|
order_by = query['s'].split(":")
|
|
|
|
if len(order_by) == 1:
|
|
|
|
order_by.append('desc')
|
|
|
|
if order_by[0] == 'name':
|
|
|
|
order_by = "%s:%s" % (name, order_by[1])
|
|
|
|
else:
|
|
|
|
order_by = "%s:%s" % (items, order_by[1])
|
|
|
|
qs = order_query(qs, order_by, '')
|
|
|
|
qs = qs[query['i']:query['o']]
|
2009-12-31 15:04:32 +00:00
|
|
|
|
|
|
|
response['items'] = [{'title': i[name], 'items': i[items]} for i in qs]
|
|
|
|
|
2009-08-01 14:14:54 +00:00
|
|
|
else:
|
2009-08-16 12:23:29 +00:00
|
|
|
#FIXME: also filter lists here
|
2009-10-04 22:00:08 +00:00
|
|
|
movies = models.Movie.objects.filter(available=True)
|
|
|
|
files = models.File.objects.all()
|
|
|
|
response['items'] = movies.count()
|
2009-08-16 12:23:29 +00:00
|
|
|
response['files'] = files.count()
|
|
|
|
r = files.aggregate(Count('size'), Count('pixels'), Count('duration'))
|
2009-08-01 14:14:54 +00:00
|
|
|
response['pixels'] = r['pixels__count']
|
|
|
|
response['size'] = r['size__count']
|
|
|
|
response['duration'] = r['duration__count']
|
|
|
|
return render_to_json_response(response)
|
2009-06-08 16:08:59 +00:00
|
|
|
|
|
|
|
'''
|
|
|
|
GET info?oshash=a41cde31c581e11d
|
|
|
|
> {
|
2009-12-31 15:04:32 +00:00
|
|
|
"movie_id": 0123456, ??
|
2009-06-08 16:08:59 +00:00
|
|
|
"oshash": "a41cde31c581e11d",
|
|
|
|
"sha1":..,
|
|
|
|
"md5":..
|
2009-12-31 15:04:32 +00:00
|
|
|
"duration": 5.266667,
|
|
|
|
"video": [],
|
|
|
|
"audio": [],
|
|
|
|
"path": "E/Example, The/An Example.avi",
|
|
|
|
"size": 1646274
|
2009-06-08 16:08:59 +00:00
|
|
|
}
|
|
|
|
'''
|
|
|
|
def file_info(request):
|
|
|
|
oshash = request.GET['oshash']
|
2009-08-16 12:23:29 +00:00
|
|
|
f = models.MovieFile.objects.get(oshash=oshash)
|
|
|
|
response = f.json()
|
|
|
|
return render_to_json_response(response)
|
2009-06-08 16:08:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
'''
|
|
|
|
GET subtitles?oshash=a41cde31c581e11d
|
|
|
|
> {
|
|
|
|
"languages": ['en', 'fr', 'de']
|
|
|
|
}
|
|
|
|
GET subtitles?oshash=a41cde31c581e11d&language=en
|
|
|
|
> srt file
|
|
|
|
POST subtitle?oshash=a41cde31c581e11d&language=en
|
|
|
|
srt =
|
|
|
|
'''
|
|
|
|
def subtitles(request):
|
|
|
|
oshash = request.GET['oshash']
|
|
|
|
language = request.GET.get('language', None)
|
2009-12-31 15:04:32 +00:00
|
|
|
if request.method == 'POST':
|
2009-08-16 12:23:29 +00:00
|
|
|
user = request.user
|
|
|
|
sub = models.Subtitles.get_or_create(user, oshash, language)
|
|
|
|
sub.srt = request.POST['srt']
|
|
|
|
sub.save()
|
|
|
|
else:
|
|
|
|
if language:
|
|
|
|
q = models.Subtitles.objects.filter(movie_file__oshash=oshash, language=language)
|
|
|
|
if q.count() > 0:
|
|
|
|
return HttpResponse(q[0].srt, content_type='text/x-srt')
|
|
|
|
response = {}
|
|
|
|
l = models.Subtitles.objects.filter(movie_file__oshash=oshash).values('language')
|
|
|
|
response['languages'] = [f['language'] for f in l]
|
|
|
|
return render_to_json_response(response)
|
2009-06-08 16:08:59 +00:00
|
|
|
|
|
|
|
'''
|
|
|
|
GET list
|
|
|
|
> {
|
|
|
|
"files": {
|
|
|
|
"a41cde31c581e11d": {"path": "E/Example, The/An Example.avi", "size":1646274},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
'''
|
2009-10-04 22:00:08 +00:00
|
|
|
@login_required_json
|
2009-06-08 16:08:59 +00:00
|
|
|
def list_files(request):
|
2009-12-31 15:04:32 +00:00
|
|
|
response = {}
|
2009-08-16 12:23:29 +00:00
|
|
|
response['files'] = {}
|
|
|
|
qs = models.UserFile.filter(user=request.user)
|
|
|
|
p = Paginator(qs, 1000)
|
|
|
|
for i in p.page_range:
|
|
|
|
page = p.page(i)
|
|
|
|
for f in page.object_list:
|
|
|
|
response['files'][f.movie_file.oshash] = {'path': f.path, 'size': f.movie_file.size}
|
|
|
|
return render_to_json_response(response)
|
|
|
|
|
|
|
|
def find_files(request):
|
2009-12-31 15:04:32 +00:00
|
|
|
response = {}
|
2009-08-16 12:23:29 +00:00
|
|
|
query = parse_query(request)
|
|
|
|
response['files'] = {}
|
2009-12-31 15:04:32 +00:00
|
|
|
qs = models.UserFile.filter(user=request.user).filter(movie_file__movie__id__in=query['q'])
|
2009-08-16 12:23:29 +00:00
|
|
|
p = Paginator(qs, 1000)
|
|
|
|
for i in p.page_range:
|
|
|
|
page = p.page(i)
|
|
|
|
for f in page.object_list:
|
|
|
|
response['files'][f.movie_file.oshash] = {'path': f.path, 'size': f.movie_file.size}
|
|
|
|
return render_to_json_response(response)
|
2009-06-08 16:08:59 +00:00
|
|
|
|
|
|
|
'''
|
2009-12-31 15:04:32 +00:00
|
|
|
POST metadata
|
2009-10-04 22:00:08 +00:00
|
|
|
> file: {
|
2009-06-08 16:08:59 +00:00
|
|
|
"duration": 5.266667,
|
|
|
|
"video_codec": "mpeg1",
|
|
|
|
"pixel_format": "yuv420p",
|
|
|
|
"width": 352,
|
|
|
|
"height": 240,
|
|
|
|
"pixel_aspect_ratio": "1:1",
|
|
|
|
"display_aspect_ratio": "22:15",
|
|
|
|
"framerate": "30:1",
|
|
|
|
"audio_codec": "mp2",
|
|
|
|
"samplerate": 44100,
|
|
|
|
"channels": 1,
|
|
|
|
"path": "E/Example, The/An Example.avi",
|
|
|
|
"size": 1646274
|
|
|
|
"oshash": "a41cde31c581e11d",
|
|
|
|
"sha1":..,
|
|
|
|
"md5":..
|
|
|
|
}
|
|
|
|
'''
|
2009-10-04 22:00:08 +00:00
|
|
|
#@login_required_json
|
2009-12-31 15:04:32 +00:00
|
|
|
def add_metadata(request, archive):
|
2009-10-04 22:00:08 +00:00
|
|
|
info = json.loads(request.POST['file'])
|
|
|
|
oshash = info['oshash']
|
2009-08-16 12:23:29 +00:00
|
|
|
archive = models.Archive.objects.get(name=archive)
|
|
|
|
if archive.users.filter(user=request.user).count() == 1:
|
2009-10-04 22:00:08 +00:00
|
|
|
user_file = models.ArchiveFile.get_or_create(archive, oshash)
|
2009-08-16 12:23:29 +00:00
|
|
|
user_file.update(request.POST)
|
|
|
|
response = {'status': 200}
|
|
|
|
else:
|
|
|
|
response = {'status': 404}
|
|
|
|
return render_to_json_response(response)
|
2009-06-08 16:08:59 +00:00
|
|
|
|
2009-12-31 15:04:32 +00:00
|
|
|
class StillForm(forms.Form):
|
|
|
|
still = forms.FileField()
|
|
|
|
position = forms.FloatField()
|
|
|
|
|
|
|
|
#@login_required_json
|
|
|
|
def add_still(request, oshash):
|
|
|
|
response = {'status': 500}
|
|
|
|
f = get_object_or_404(models.File, oshash=oshash)
|
|
|
|
|
|
|
|
form = TimelineForm(request.POST, request.FILES)
|
|
|
|
if form.is_valid():
|
|
|
|
ff = form.cleaned_data['still']
|
|
|
|
position = form.cleaned_data['position']
|
|
|
|
|
|
|
|
still = models.Still(file=f, position=position)
|
|
|
|
still.save()
|
|
|
|
still.still.save(ff, ff.name)
|
|
|
|
response = {'status': 200}
|
|
|
|
response['url'] = still.url()
|
|
|
|
return render_to_json_response(response)
|
|
|
|
|
|
|
|
class TimelineForm(forms.Form):
|
|
|
|
timeline = forms.FileField()
|
|
|
|
|
|
|
|
#FIXME: should everybody be able to overwrite timelines?
|
|
|
|
#@login_required_json
|
|
|
|
def add_timeline(request, oshash):
|
|
|
|
response = {'status': 500}
|
|
|
|
f = get_object_or_404(models.File, oshash=oshash)
|
|
|
|
|
|
|
|
form = TimelineForm(request.POST, request.FILES)
|
|
|
|
if form.is_valid():
|
|
|
|
ff = form.cleaned_data['timeline']
|
|
|
|
f.timeline.save(ff.name, ff)
|
|
|
|
response = {'status': 200}
|
|
|
|
response['url'] = f.timeline.url()
|
|
|
|
return render_to_json_response(response)
|
|
|
|
|
|
|
|
|
|
|
|
class VideoForm(forms.Form):
|
|
|
|
video = forms.FileField()
|
|
|
|
|
|
|
|
#@login_required_json
|
|
|
|
def add_video(request, oshash):
|
|
|
|
response = {'status': 500}
|
|
|
|
f = get_object_or_404(models.File, oshash=oshash)
|
|
|
|
|
|
|
|
form = VideoForm(request.POST, request.FILES)
|
|
|
|
if form.is_valid():
|
|
|
|
ff = form.cleaned_data['video']
|
|
|
|
f.stream128.save(ff.name, ff)
|
|
|
|
response = {'status': 200}
|
|
|
|
response['url'] = f.stream128.url()
|
|
|
|
return render_to_json_response(response)
|
|
|
|
|
2009-06-08 16:08:59 +00:00
|
|
|
'''
|
2009-12-31 15:04:32 +00:00
|
|
|
POST update
|
|
|
|
> files: {
|
|
|
|
oshash: { 'path': .., ..},
|
|
|
|
oshash: { 'path': .., ..},
|
|
|
|
}
|
2009-06-08 16:08:59 +00:00
|
|
|
'''
|
2009-12-31 15:04:32 +00:00
|
|
|
#@login_required_json
|
|
|
|
def update_archive(request, archive):
|
|
|
|
print "update request"
|
2009-08-16 12:23:29 +00:00
|
|
|
archive = models.Archive.objects.get(name=archive)
|
2009-12-31 15:04:32 +00:00
|
|
|
files = json.loads(request.POST['files'])
|
|
|
|
print "update request for", archive.name
|
|
|
|
needs_data = []
|
|
|
|
rename = {}
|
|
|
|
for oshash in files:
|
|
|
|
print 'checking', oshash
|
|
|
|
data = files[oshash]
|
|
|
|
q = models.ArchiveFile.objects.filter(archive=archive, file__oshash=oshash)
|
|
|
|
if q.count() == 0:
|
|
|
|
print "adding file", oshash, data['path']
|
|
|
|
f = models.ArchiveFile.get_or_create(archive, oshash)
|
|
|
|
f.update(data)
|
2010-01-16 20:42:11 +00:00
|
|
|
if not f.movie:
|
|
|
|
send_bg_message({'findMovie': f.id})
|
2009-12-31 15:04:32 +00:00
|
|
|
#FIXME: only add if it was not in File
|
|
|
|
else:
|
|
|
|
f = q[0]
|
|
|
|
if data['path'] != f.path:
|
|
|
|
f.path = data['path']
|
|
|
|
f.save()
|
|
|
|
if f.file.needs_data:
|
|
|
|
needs_data.append(oshash)
|
|
|
|
if f.path != f.file.path:
|
|
|
|
rename[oshash] = f.file.path
|
|
|
|
print "processed files for", archive.name
|
|
|
|
#remove all files not in files.keys() from ArchiveFile
|
|
|
|
response = {}
|
|
|
|
response['info'] = needs_data
|
|
|
|
response['rename'] = rename
|
2009-08-16 12:23:29 +00:00
|
|
|
return render_to_json_response(response)
|
|
|
|
|
2009-10-04 22:00:08 +00:00
|
|
|
def file_parse(request):
|
|
|
|
response = utils.parsePath(request.POST['path'])
|
|
|
|
return render_to_json_response(response)
|
|
|
|
|
2009-06-08 16:08:59 +00:00
|
|
|
|