Custom Query (2152 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (721 - 723 of 2152)

Ticket Resolution Summary Owner Reporter
#1268 fixed Speed up listing users by revisions by adding db index kindly rgrp

Reported by rgrp, 3 years ago.

Description

At the moment this appears to be slow (kindly suggests because missing index in db). Page is /user on a ckan instance.

Would this also speed up user page where we recent changes?

#1269 wontfix User view page shows the packages followed by viewing user not user being viewed johnglover rgrp

Reported by rgrp, 3 years ago.

Description

This overlaps with Sean's follow support (for activity streams) and so will be dealt with there.

#1271 fixed CORS support rgrp rgrp

Reported by rgrp, 3 years ago.

Description

CORS - http://www.w3.org/TR/cors/ - support.

This is what you do in Apache. Should do this in lib/base.py or similar.

    Header always set Access-Control-Allow-Origin "*"
    Header always set Access-Control-Allow-Methods "POST, PUT, GET, OPTIONS"
    Header always set Access-Control-Allow-Headers "X-CKAN-API-KEY, Content-Type"

    # Respond to all OPTIONS requests with 200 OK
    # This could be done in the webapp
    # This is need for pre-flighted requests (POSTs/PUTs)
    RewriteEngine On
    RewriteCond %{REQUEST_METHOD} OPTIONS
    RewriteRule ^(.*)$ $1 [R=200,L]
Note: See TracQuery for help on using queries.