Add a way to show trees in the result list for terms.
This mode is activated only if a thesaurus is selected, if the "node" sort field is selected and no other field than a thesaurus node is selected.
# -*- coding: utf-8 -*-
'''
Created on Jul 17, 2013
@author: ymh
'''
from core.views import SparqlEndpointProxy
from django.conf.urls import patterns, url
from django.contrib.auth.decorators import login_required
urlpatterns = patterns('',
url(r'^proxy-sparql/(?P<wp_lang>\w{2})/', login_required(SparqlEndpointProxy.as_view()), name='wp_sparql_proxy'),
)