Custom Query (2152 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (34 - 36 of 2152)

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Ticket Resolution Summary Owner Reporter
#183 worksforme Browse packages by rating rgrp rgrp

Reported by rgrp, 4 years ago.

Description

At moment order packages by title.

#243 worksforme Repetition of number of packages in a group rgrp dread

Reported by dread, 4 years ago.

Description

http://ckan.net/group/publicdomain has:

"There is 16 package in this group. There are 16 packages in this group."

#291 worksforme Investigate search options encoding rgrp dread

Reported by dread, 4 years ago.

Description

On ckan.net there is this unchecked-in 'temporary hack'. It seems to be to do with foreign characters in search options. See what its doing and if necessary, put check it in.

diff -r 813ad8b5de0b ckan/lib/search.py
--- a/ckan/lib/search.py	Mon Mar 01 22:23:36 2010 +0100
+++ b/ckan/lib/search.py	Thu Apr 15 19:11:42 2010 +0200
@@ -63,6 +63,9 @@
     def query(self, options):
         '''For the given search options, returns a query object.'''
         self._options = options
+        # temporary hack!
+        if self._options.q:
+            self._options.q = self._options.q.encode('utf8')
         general_terms, field_specific_terms = self._parse_query_string()
 
         if not general_terms and \

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Note: See TracQuery for help on using queries.