2009-07-13 12:32:01 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
import os.path
|
|
|
|
from django.db import models
|
|
|
|
from django.db.models import Q
|
|
|
|
from django.contrib.auth.models import User
|
|
|
|
|
|
|
|
from oxdata.utils.shortcuts import render_to_json_response
|
|
|
|
|
|
|
|
def ids(request):
|
|
|
|
json = {}
|
|
|
|
return render_to_json_response(json)
|
|
|
|
|
|
|
|
def urls(request):
|
|
|
|
json = {}
|
|
|
|
return render_to_json_response(json)
|
|
|
|
|