{23} Trac comments (3729 matches)

Results (2501 - 2600 of 3729)

Ticket Posixtime Author Newvalue
#250 1340631430000000 icmurray Package entries already include an enclosure for the json representation of the package: {{{ <link length="1645" href="http://thedatahub.org/api/2/rest/package/microdados-enem-2010" type="application/json" rel="enclosure"/> }}} so it should be easy enough to include something like the rdf link that already exists on a dataset-view page: {{{ <link rel="alternate" type="application/rdf+xml" title="RDF/XML" href="http://semantic.ckan.net/record//4c23a2fd-4349-4525-8de4-3364ce87016e.rdf" /> }}}
#285 1340631923000000 icmurray Unassign to be triaged.
#301 1340632055000000 icmurray Unassign in order for it to be triaged.
#526 1340626152000000 icmurray Won't fix as it's 20 months old, and no feedback on whether it's still relevant or not.
#1069 1340632215000000 icmurray Assigned to @tobes as he's looking at publication workflows.
#1107 1340632612000000 icmurray autocomplete action has been deprecated in favour of /api/2/util/dataset/autocomplete : https://github.com/okfn/ckan/blob/master/ckan/controllers/package.py#L655
#1130 1340633514000000 icmurray Unassign for triage.
#1135 1340632267000000 icmurray Re-assigned to kindly
#1136 1340632980000000 icmurray Re-assigned to @kindly.
#1453 1320947955000000 icmurray Added the restriction of not allowing the double quote character, '"', as well as commas as this simplifies any use of quoting multiple words to mean a single tag name. For example, this simplifies the use of quotes in identifying tags in internal markdown links: {{{ tag:"multiple word tag name" }}} A possible solution is to allowing escaping, such as: {{{ tag:"something about \"Ian\"" }}} But I think the compromise is a better solution than allowing the escaping as it's simpler, and this may crop up elsewhere.
#1453 1321548452000000 icmurray The allowable characters in a tagname has changed to "unicode alphanmeric plus simple punctuation". This means: - alphanumeric (inc. foreign characters) - [ .-_] The completed feature is in the [https://github.com/okfn/ckan/tree/feature-1453-flexible-tag-names feature-1453-flexible-tag-names branch]. Awaiting a code review.
#1453 1321965613000000 icmurray Updated code now in feature-1453-flexible-tag-names branch. (Also, deleted the ian-review branch.)
#1458 1340632821000000 icmurray Re-assigned to amercader. Kept on ckan-future.
#1458 1340632932000000 icmurray Sorry, I shouldn't have touched this. I pulled it from the wrong milestone.
#1485 1323172388000000 icmurray Made a small start on this: https://github.com/okfn/ckan/tree/feature-1485-package-form-extension
#1523 1323172904000000 icmurray Erroneously created when a file upload failed.
#1586 1337079419000000 icmurray Duplicate of #2298
#1593 1333385052000000 icmurray Implemented in branch [https://github.com/okfn/ckan/commits/feature-1593-create-feeds-from-search-results feature-1593-create-feeds-from-search-results] Not quite close as I've only included links to the atom feed in the <head>. Will do that this week.
#1712 1328526163000000 icmurray Update 6/2/2012 : Awaiting the publisher hierarchy in order to populate the "browse by publisher" section.
#1718 1340632748000000 icmurray Re-assigned to aron for triage.
#1737 1334591246000000 icmurray See http://ckan.okfnpad.org/feature-1737-expose-solr-based-search-api = Immediate actions * analysis of whether the current action/get.py:package_search() function exposes all we currently need for the use cases described above. * how to return that data (expand the current format?) * analysis of whether the current (action) API v.3 can use query parameters rather than as well as POSTed data. (controlles/api.py:action() ) uses "self._get_request_data()" which in-turn pulls out data from POST body. = Tasks Extend the existing package_search action. * pass the facet fields into the logic layer from the request parameters. - /api/3/action/package_search * facet information not being returned via package_search action (is empty). - curl -X POST -d '{"q": "{!lucene q.op=AND df=text}tags:health +community -profile"}' 'http://thedatahub.org/api/3/action/package_search' - figure out why it's not working, and what the facet information should look like * whitelist any GETable api actions, and optionally construct the query from url params rather than body
#1737 1335460683000000 icmurray Facet results **are** already available through the package_search action api. The facet fields need to be specified in the query, otherwise no faceting will be done (ie - the default facets specified in the .ini file are not used). This leaves "whitelist any GETable api actions, and optionally construct the query from url params rather than body" todo, which I've pulled out into another ticket, as it wasn't originally in this ticket. (#2330)
#1737 1335460997000000 icmurray ... just to add to the above: {{{ >>> pprint(json.loads(requests.post('http://127.0.0.1:8088/api/3/action/package_search', json.dumps({'facet.field': ["tags", "groups"]})).content)) <snip> u'search_facets': {u'groups': {u'items': [{u'count': 1, u'display_name': u"Roger's books", u'name': u'roger'}, {u'count': 2, u'display_name': u"Dave's books", u'name': u'david'}], u'title': u'groups'}, u'tags': {u'items': [{u'count': 1, u'display_name': u'tolstoy', u'name': u'tolstoy'}, {u'count': 2, u'display_name': u'russian', u'name': u'russian'}, {u'count': 2, u'display_name': u'Flexible \u30a1', u'name': u'Flexible \u30a1'}], u'title': u'tags'}}}, u'success': True} }}}
#1737 1337594352000000 icmurray - package_search action is now documented, with reference to the solr search parameters available. http://docs.ckan.org/en/latest/apiv3.html (auto-docs not working on rtd at the moment). - actions defined in get.py are now GETable. http://docs.ckan.org/en/latest/apiv3.html#get-able-actions - we won't be providing direct access to solr api, as we think the cost outweighs the benefit.
#1737 1337943671000000 icmurray For completeness, package_search docs can be viewed at https://github.com/okfn/ckan/blob/master/ckan/logic/action/get.py#L983 @rgrp: are you happy with this ticket now, does it expose all you need? If so, I'll close it...
#1737 1340011001000000 icmurray The GET-able actions ( #2330 ) are in master, and will make it into 1.8
#1737 1340015695000000 icmurray Replying to [comment:22 rgrp]: > But not v1.7.1? (When is v1.8 due?). Not 1.7.1 as it's not a bug fix (https://docs.google.com/document/d/170fxET3kd9dJ4L6VAj3yZugtK0rrVe44J4HuLbTUsEU/) I don't know when 1.8 is due. > > Also for the record a couple of things I found when trying to use this: > > * No support for facet sort order or facet limit afaict ... Thanks, that's good to know. facet.limit should be working [1], so if it's not, then that's a bug. I can check that. for facet.sort, I've added ticket #2543 [1] https://github.com/okfn/ckan/blob/master/ckan/logic/action/get.py#L1022
#1737 1340112732000000 icmurray Replying to [comment:23 icmurray]: > > > > Also for the record a couple of things I found when trying to use this: > > > > * No support for facet sort order or facet limit afaict ... > > Thanks, that's good to know. > > facet.limit should be working [1], so if it's not, then that's a bug. I can check that. facet.limit is working as I'd expect. eg (on master): {{{ import requests import json from pprint import pprint as pp pp(json.loads(requests.get('http://ian-laptop:5000/api/3/action/package_search?q=data&facet.field=tags&facet.limit=1').content)) }}} Returns a result where only the tag with the highest count is returned in the search_facets result dict. One thing I did spot though was that we aren't able to specify per-field parameters. ie whilst `facet.limit` sets the facet limit for ''all'' facet fields, solr allows that to be overridden on a per-field basis, eg `facet.tags.limit`. This isn't something we support at the moment. I've created a ticket for this, #2573 . Let me know if this something that you'd find useful, otherwise I'll leave it on the backlog for a future iteration.
#1769 1329737597000000 icmurray Duplicate of #1762
#2296 1334567141000000 icmurray * ensure the read_ajax and history_ajax actions work in the routing. * ensure the moderatededits.js works with the new templating * ensure that the css works with the new templating * ensure that the stream filters work with the new templating. ~ 6 days work
#2330 1336149571000000 icmurray Implemented, providing two methods of passing an action's parameters. Either, each parameter is specified as a url parameter, eg {{{ curl http://127.0.0.1:5000/api/3/action/package_search?q=police }}} or, for cases where a more complex data_dict is required, the data_dict can be parsed as a json-encoded dict in a single url-parameter called ``data_dict``, ie: {{{ curl http://127.0.0.1:5000/api/3/action/package_search?data_dict={'q':'police'} }}} As part of this ticket: - I noticed that all module-public members of the action modules were being loaded as actions (including functions imported from other modules). So I've cleared up the action modules to prevent this. - I've cleaned up the action modules to use ``get_or_bust()`` when accessing a passed in data_dict outside before it's been validated by a schema. This provides better error messages for clients. - provided a decorator, ``@side_effect_free``, for users implementing their own actions through the IActions interface to be able to expose their custom/overridden actions as a GET request through the action API.
#2330 1336387328000000 icmurray Replying to [comment:3 icmurray]: > > or, for cases where a more complex data_dict is required, the data_dict can be parsed as a json-encoded dict in a single url-parameter called ``data_dict``, ie: > > {{{ > curl http://127.0.0.1:5000/api/3/action/package_search?data_dict={'q':'police'} > }}} > Another option is to have the data_dict json-encoded in the GET request's body. This is possible, but 1) Although permissable, it's not, as I understand it, conventional to have a GET request's body form the options of the request. 2) Caching proxies won't inspect the body of the request, only the URL.
#2347 1343126819000000 icmurray Small fix to create action, outlined in [1] to be done. Said I'd do it, so moved ticket over to myself. [1] https://github.com/okfn/ckan/pull/62
#2351 1340615641000000 icmurray Scripts and docs in https://github.com/okfn/ecportal-server-setup
#2383 1337872916000000 icmurray This helper function won't parse UTC offset if passed a UTC offset as "+01:00"; but incorrectly parses the UTC offset "+0100" as 100 microseconds. Resolution: - I've decided to keep the behaviour of not parsing UTC offsets because we currently don't store timezone information in the database; and I think that either dropping the tzinfo, or adjusting for it would appear to be "magic behaviour" from the user's perspective. Also, as this is a helper function, I think it makes sense to keep the behaviour as is, even if it's slightly non-standard. This fix [1] maintains all the old non-ISO behaviour: - not allowing UTC offset to be specified. - arbitrary delimiters between date and time values. - microsecond precision. But won't parse "+0100" as microsecond precision. I tried using a couple of python modules for parsing date strings; but none maintained the same behaviour. [1] https://github.com/okfn/ckan/commit/d6c9e48f8df5e926abd3fb1a1607f4f5a30075b4
#2405 1338213564000000 icmurray Questions for client team: 1. Did you have anything in mind for improving the "Powered by CKAN" text and icon? I'll sort out the vertical alignment of the text and icon; and see if Sam has a better icon. 2. The branded section itself is already customizable by a snippet (https://github.com/okfn/ckan/blob/master/ckan/templates/snippets/data-viewer-embed-branded-link.html). Is that enough? Or are you asking for something else? 3. Personally I think the URI should use the resource uuid, and not name. And from recent discussions on ckan-dev, I think the consensus is the same. How important is this for you? Perhaps it's something that could be overriden in the datahub extension.
#2405 1340097846000000 icmurray Bump: Questions for client team above...
#2438 1338212234000000 icmurray Proposed solution: Add a new q field which can be specified multiple times. Each q parameter is a string: `{field}:term`. `:` characters are escaped in the `{field}` by `\:`. Mark the `fields` parameters as deprecated.
#2438 1340736112000000 icmurray Ready to be merged [1] Brief synopsis of changes: - altered return type of the action: from Resource domain objects to dictized resources. This is required if this action is to be made accessible through the action api as the domain object is not json-serializable. The 'old' return type is still available by passing in a flag in the context. In fact, this is required as the search layer uses this action, and deals with the domain objects directly. - decided that escaping the ':' (as described in above comments) wasn't necessary as resource fields shouldn't have ':' characters in them anyway. - improved action's docstring - 'fields' parameter has been deprecated ( see #2603 ). Use of it by the search layer has been removed in favour of the new 'query' parameter. But it still works, and correctly maintains backward compatibility. [1] https://github.com/okfn/ckan/pull/37
#2439 1338214158000000 icmurray The `fields` argument doesn't provide any extra functionality that the `query` argument can't provide. 1. Figure out what the reason for this argument is, just to make sure. 2. Deprecate it, and change any internal uses of it to use `query` field instead.
#2550 1341767370000000 icmurray I've done some initial work on this. I think the best way is to define extra tables in the datahub extension. (Rather than: using groups; or modifying the user table; or defining extras for users (in core)). Initially, I've created a new domain object, PaidService, which captures the different levels of account a user may have. And then attached users to this through a secondary table. I think the advantages of this approach are: - the PaidService table can contain supplementary info about that account type: eg - amount of storage allowed; or cost to sign up etc... - allows us to use a modular payment system if biz decide that would be favourable. ie - users belong to multiple PaidServices which are independant of one another, rather than a linear hierarcy (eg - "sign up for storage, but not for privacy" vs. "sign up for enterprise level rather than basic level") The thing that's held me up today is being able to run tests: I'm having a sqlalchemy issue with defining extra mappings on the User table; which then gets dropped when initializing the test setup. I've gotten to the bottom of the problem, and will ask kindly's advice. In the meantime, I could do with some user stories please. I think I have a fairly good idea of what's likely to be needed by this ticket; but to what extent should this be exposed to a sysadmin (adding payment schemes; adding users to payment schemes; users seeing which payemtn services they're paying for (public to other users or not?); user's seeing history of payments? sysadmins seeing list of users for each service level?) - should this be: through a dashboard? through paster commands? through the api? all 3? Do we want modular payments or a linear hierarchy of payment schemes? How does is this suppossed to fit in with organizations? Do organizations purchase on behalf of users as well as individuals being able to make purchases? Do we need to be able to deativate a user's paid service if their payment hasn't come through?
#2550 1342699856000000 icmurray Awaiting merge: https://github.com/okfn/ckanext-datahub/pull/1
#920 1295355318000000 [email protected] my first email address was wrong...
#350 1277072822000000 [email protected] Also check out the SEO review done by Charles Coxhead - http://www.quicksitereviews.com/ckan-net/ Pagination – In the tag section of the site particularly I’d suggest replacing the traditional numbered pagination with alphabetical links, ie, display 26 links A-Z and then on each of those pages displaying the relevant tags. The point being that the tag pages represent an opportunity to index pages which intersect with very targeted search demand, so let’s give them all every opportunity to get crawled and indexed. Linking to all 26 alphabetically arranged pages from the main tag page (and maybe even the home page) will bring all the tag pages closer to the home page and give them all some more link popularity. Also suggest something similar to this for the listings in the Packages section, so arrange these on alphabetical pages. Tag page titles – Take a programmatic, but more focussed approach to these. Currently all tag pages have the title “CKAN – Comprehensive Knowledge Archive Network – Tags – [tag]” – I would make this something like “[tag] – Open Data – CKAN” or something like that which puts the emphasis on the tag keyword and adds some meaningful qualifiers to that. Tag page listings – On the tag pages there are related open data sets listed and next to each the associated tags. This leads to masses of tag links on the page and loads of duplicated links. If possible I recommend removing the tags from each data set listing, and instead displaying a cloud of “Related tags” on the right hand side. Group pages – The user curated group pages are possibly even better than the tag pages from a search perspective because they all intersect with very clear search demand, so would also benefit from having improved page titles. I suggest a similar approach to the above where the group name becomes the main keyword with some qualifiers added. It might even be a good idea to let group owners define their own page titles. Data set pages – These also could do with improved page titles, presumably the data set name, eg. “[data-set-name] – CKAN” Heading tags – not a big deal but I’m always in favor of using H tags strictly for headlines (rather than wrapping an H1 around the site logo for example).
#23 1181186079000000 furnchedis <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up1.html '>aluminum patio furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up2.html '>amish oak furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up3.html '>antique bedroom furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up4.html '>antique furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up5.html '>antique furniture hardware</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up6.html '>ashley bedroom furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up7.html '>ashley furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up8.html '>ashley furniture store</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up9.html '>ashley home furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up10.html '>baby furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up11.html '>bedroom furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up12.html '>bedroom furniture sets</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up13.html '>bedroom furniture stores</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up14.html '>bobs discount furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up15.html '>broyhill furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up16.html '>bush office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up17.html '>cast aluminum patio furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up18.html '>cedar outdoor furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up19.html '>cheap bedroom furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up20.html '>cheap contemporary furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up21.html '>cheap living room furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up22.html '>cheap office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up23.html '>cheap patio furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up24.html '>cherry bedroom furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up25.html '>cherry home office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up26.html '>child bedroom furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up27.html '>childrens bedroom furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up28.html '>contemporary bedroom furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up29.html '>contemporary furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up30.html '>contemporary home office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up31.html '>contemporary living room furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up32.html '>contemporary office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up33.html '>country living room furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up34.html '>custom furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up35.html '>custom home office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up36.html '>custom made furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up37.html '>custom office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up38.html '>custom wood furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up39.html '>danish modern furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up40.html '>dining room furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up41.html '>discount baby furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up42.html '>discount bedroom furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up43.html '>discount furniture stores</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up44.html '>discount home office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up45.html '>discount leather furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up46.html '>discount living room furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up47.html '>discount office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up48.html '>discount outdoor furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up49.html '>discount patio furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up50.html '>discount wicker furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up51.html '>donate furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up52.html '>ergonomic office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up53.html '>executive office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up54.html '>furniture stores online</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up55.html '>home office computer furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up56.html '>home office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up57.html '>kids bedroom furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up58.html '>kids furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up59.html '>lane furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up60.html '>leather living room furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up61.html '>living room furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up62.html '>modern bedroom furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up63.html '>modern contemporary furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up64.html '>modern furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up65.html '>modern home office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up66.html '>modern italian furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up67.html '>modern living room furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up68.html '>modern office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up69.html '>modular home office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up70.html '>modular office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up71.html '>new office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up72.html '>oak bedroom furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up73.html '>oak furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up74.html '>oak office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up75.html '>office computer furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up76.html '>office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up77.html '>outdoor bar furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up78.html '>outdoor furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up79.html '>outdoor patio furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up80.html '>outdoor wicker furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up81.html '>patio furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up82.html '>patio furniture covers</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up83.html '>patio furniture cushions</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up84.html '>patio furniture sets</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up85.html '>pine bedroom furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up86.html '>quality home office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up87.html '>reproduction antique furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up88.html '>resin patio furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up89.html '>teak outdoor furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up90.html '>teak patio furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up91.html '>thomasville furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up92.html '>unfinished furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up93.html '>unfinished oak furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up94.html '>unfinished wood furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up95.html '>value city furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up96.html '>white bedroom furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up97.html '>wholesale office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up98.html '>wholesale patio furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up99.html '>wicker patio furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up100.html '>wood home office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up101.html '>wood office furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up102.html '>wood patio furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up103.html '>wrought iron patio furniture</a> <a href='http://weblog.library.vanderbilt.edu/wp-content/uploads/2006/11/wp-up104.html '>youth bedroom furniture</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme1.html '>airline discount tickets</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme2.html '>cheap airfare</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme3.html '>cheap airline flights</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme4.html '>cheap airline tickets</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme5.html '>cheap airplane tickets</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme6.html '>cheap air tickets</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme7.html '>cheap cell phones</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme8.html '>cheap checks</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme9.html '>cheap cruises</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme10.html '>cheap discount airfare</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme11.html '>cheap flights dubai</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme12.html '>cheap flights manila</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme13.html '>cheap flights paris</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme14.html '>cheap flights prague</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme15.html '>cheap flights rome</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme16.html '>cheap flights sydney</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme17.html '>cheap flights to europe</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme18.html '>cheap flights uk</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme19.html '>cheap flight tickets</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme20.html '>cheap international flights</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme21.html '>cheap plane tickets</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme22.html '>cheap shoes</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme23.html '>cheap tires</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme24.html '>cheap train tickets</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme25.html '>coach outlet</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme26.html '>dirt cheap tickets</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme27.html '>discount airfare</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme28.html '>discount air fares</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme29.html '>discount airlines</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme30.html '>discount airline tickets</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme31.html '>discount air travel</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme32.html '>discount auto parts</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme33.html '>discount carpet</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme34.html '>discount clothing</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme35.html '>discount cologne</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme36.html '>discount cosmetics</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme37.html '>discount cruises</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme38.html '>discount fabric</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme39.html '>discount flights</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme40.html '>discount fragrance</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme41.html '>discount jewelry</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme42.html '>discount kitchen cabinets</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme43.html '>discount lighting</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme44.html '>discount lodging</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme45.html '>discount luggage</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme46.html '>discount motorcycle tires</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme47.html '>discount perfume</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme48.html '>discount plane tickets</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme49.html '>discount rugs</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme50.html '>discount shoes</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme51.html '>discount sunglasses</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme52.html '>discount tire</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme53.html '>discount tires online</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme54.html '>discount wheels</a> <a href='http://weblog.library.vanderbilt.edu/science/wp-content/themes/wordpress/theme55.html '>sears outlet</a>
#23 1183510187000000 financepaydayguaranteed <a href='http://finance.bolhost.com/carinsurancerate/ '>car insurance rate</a> <a href='http://finance.bolhost.com/autoloan/ '>auto loan</a> <a href='http://finance.bolhost.com/dentalplans/ '>dental plans</a> <a href='http://finance.bolhost.com/dietpills/ '>ephedra diet pills</a> <a href='http://finance.bolhost.com/paydaycashadvance/ '>cash advance cincinnati</a> <a href='http://finance.bolhost.com/refinance/ '>home refinance mortgage</a> <a href='http://finance.bolhost.com/flights/ '>cheap flights</a> <a href='http://finance.bolhost.com/flights1/ '>london cheap flights</a> <a href='http://finance.bolhost.com/flights2/ '>cheap flights cairo</a> <a href='http://finance.bolhost.com/airlinetickets/ '>airline tickets</a> <a href='http://finance.bolhost.com/cellphones/ '>cell phones</a> <a href='http://finance.bolhost.com/cellphones1/ '>cell phone reverse number</a> <a href='http://finance.bolhost.com/cellphones2/ '>cell phone radiation</a> <a href='http://finance.bolhost.com/cruises/ '>cruises</a> <a href='http://finance.bolhost.com/cruises1/ '>bahama cruises</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/ '>fast payday loans no credit check</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-1.html '>payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-2.html '>no fax payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-3.html '>payday loans online</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-4.html '>bad credit payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-5.html '>faxless payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-6.html '>payday bad credit loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-7.html '>online payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-8.html '>no credit check payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-9.html '>no teletrack payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-10.html '>cash advance payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-11.html '>cheap payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-12.html '>payday loans for bad credit</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-13.html '>payday loans without direct deposit</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-14.html '>cash advances online fast payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-15.html '>same day payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-16.html '>cash advance loans payday internet</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-17.html '>online payday loans no pay day fax cash advance</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-18.html '>fast payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-19.html '>payday loans no credit check</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-20.html '>fast cash online paycheck advance bad credit payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-21.html '>online payday loans pay day fax cash advance</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-22.html '>acircordm personal payday loans online fast payday cash</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-23.html '>need cash online payday loan personal loans person</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-24.html '>payday advance loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-25.html '>payday loan online fast cash loans by western union</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-26.html '>advance cash fast in loans online payday quick unt</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-27.html '>instant payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-28.html '>payday loan online fast cash loans western union</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-29.html '>payday loans with bad credit</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-30.html '>personal loans payday advance bad credit</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-31.html '>most approval advance payday hold personal check cash loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-32.html '>payday loans with low fees</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-33.html '>personal loans bad credit cash payday advances</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-34.html '>cash advance and payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-35.html '>payday loans guaranteed no fax</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-36.html '>quick payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-37.html '>get payday cash advance fast online loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-38.html '>no fax payday loans online cash advance loan sonic cash</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-39.html '>payday loans cheap payday loan cash advance chicago</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-40.html '>guaranteed payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-41.html '>payday loan online fast cash loans by western unio</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-42.html '>payday loans for people with bad credit</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-43.html '>national cash advance payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-44.html '>online payday loan cash advances personal loans pa</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-45.html '>fast cash payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-46.html '>fast payday online cash loans search</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-47.html '>illinois cash advance payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-48.html '>payday loans with no teletrack</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-49.html '>personal loans borrow cash payday loan online payd</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-50.html '>alaska cash advance payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-51.html '>banks issue payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-52.html '>canada student loans payday advance</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-53.html '>cash advance service payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-54.html '>minnesota cash advance payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-55.html '>payday loans no faxing</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-56.html '>cash advance payday loans software</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-57.html '>louisiana cash advance payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-58.html '>payday loan personal loans online cash advances pa</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-59.html '>washington cash advance payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-60.html '>emergency advance payday hold personal check cash loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-61.html '>no fax cash advance payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-62.html '>payday loans in canada</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-63.html '>personal loans payday loan online cash advance washington</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-64.html '>utah cash advance payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-65.html '>very bad credit payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-66.html '>cards payday loans for canadians with bad credit</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-67.html '>easy payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-68.html '>free payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-69.html '>no fax bad credit payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-70.html '>payday advance preferred cash loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-71.html '>payday loans bad credit</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-72.html '>payday loans canada</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-73.html '>payday loans cash advance</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-74.html '>personal loans preferred payday loan paydayloanpag</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-75.html '>same day payday loans bad credit</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-76.html '>advance payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-77.html '>no faxing payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-78.html '>online payday cash advance instant loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-79.html '>payday advance pay day online cash loans search</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-80.html '>payday loans with no credit check</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-81.html '>vermont cash advance payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-82.html '>advance cash fast get in loans online payday</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-83.html '>apple payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-84.html '>canadian payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-85.html '>cash advance money payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-86.html '>florida cash advance payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-87.html '>instant approval payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-88.html '>new payday cash advance loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-89.html '>njfastcash personal loans online payday loan payda</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-90.html '>payday cash advance loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-91.html '>payday loan online personal loans paydayloanpages</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-92.html '>payday loans cash advances online</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-93.html '>payday loans for people with bad creditno credit check</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-94.html '>payday loans for self employed</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-95.html '>personal loans for people with bad credit not payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-96.html '>personal loans online payday loan preferredpaydayl</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-97.html '>texas cash advance payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-98.html '>cash advance payday loans tv</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/payday-99.html '>connecticut cash advance payday loans software</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/ '>guaranteed payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-1.html '>guaranteed payday loan</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-2.html '>payday loans guaranteed no fax</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-3.html '>advance cash guaranteed loan payday</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-4.html '>loans bad credit guaranteed payday mortgage auto uk payday</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-5.html '>guaranteed approval payday loan</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-6.html '>guaranteed no fax payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-7.html '>guaranteed no fax payday loan</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-8.html '>borrow money online with quick guaranteed payday loan</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-9.html '>no faxing payday loan online fax guaranteed</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-10.html '>guaranteed payday loans for people with bad credit</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-11.html '>no credit check guaranteed payday loan approval</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-12.html '>guaranteed no fax payday loan money</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-13.html '>guaranteed payday loan instant approval</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-14.html '>100 guaranteed payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-15.html '>borrow money online with quick guaranteed payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-16.html '>guaranteed payday advance loan approval</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-17.html '>guaranteed unsecured payday personal loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-18.html '>approval faxless guaranteed loan payday</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-19.html '>guaranteed faxless payday loan</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-20.html '>guaranteed payday loan no faxing with savings account</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-21.html '>guaranteed payday loan to savings account</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-22.html '>guaranteed unsecured loans not payday</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-23.html '>100 guaranteed approval faxless payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-24.html '>fax guaranteed loan no payday</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-25.html '>guaranteed approval payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-26.html '>guaranteed no fax payday loan credit</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-27.html '>guaranteed unsecured payday personal loan</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-28.html '>payday loan guaranteed approval</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-29.html '>payday loan guaranteed no fax</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-30.html '>guaranteed approval no faxing no credit check payday loan</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-31.html '>payday guaranteed approval cash loans southeast kansas</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-32.html '>approval guaranteed loan payday</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-33.html '>guaranteed fax payday loan</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-34.html '>guaranteed instant payday loan</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-35.html '>guaranteed long term payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-36.html '>one hour payday loan guaranteed</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-37.html '>online no fax payday loan guaranteed</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-38.html '>account guaranteed loan payday savings</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-39.html '>guaranteed approval short employment payday loan</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-40.html '>guaranteed fax payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-41.html '>guaranteed loan payday online</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-42.html '>guaranteed personal loan andnot payday</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-43.html '>payday loan with guaranteed no faxing</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-44.html '>faxing guaranteed loan no payday</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-45.html '>guaranteed online approval payday loan no fax</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-46.html '>guaranteed payday loan without a job</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-47.html '>payday guaranteed approval cash loans in southeast kansas</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-48.html '>w guaranteed payday loan</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-49.html '>100 guaranteed approval on payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-50.html '>cash guaranteed loan payday</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-51.html '>emergency payday loan no fax guaranteed approval</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-52.html '>guaranteed 1000 payday loan no credit check</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-53.html '>guaranteed payday loan credit</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-54.html '>guaranteed personal loans payday cash</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-55.html '>no fax no hassle payday loans guaranteed</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-56.html '>online instant guaranteed payday loans long term payback</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-57.html '>payday payday guaranteed no fax payday loan</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-58.html '>faxless guaranteed approval payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-59.html '>guaranteed bad credit payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-60.html '>guaranteed payday loan up to 3000 roll over</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-61.html '>guaranteed payday loan without a bank account</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-62.html '>guaranteed personal loans payday cash loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-63.html '>instant guaranteed payday loan</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-64.html '>long term payday loans 100000 guaranteed</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-65.html '>payday guaranteed no fax payday loan</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-66.html '>payday loan no fax guaranteed</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-67.html '>advance approval guaranteed loan payday</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-68.html '>borrow guaranteed loan money online payday quick</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-69.html '>guaranteed faxless payday loans no teletrak</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-70.html '>guaranteed no teletrack 2c no faxing payday loans</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-71.html '>guaranteed payday loans for people with bad credit free</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-72.html '>guaranteed payday loans vian savings account</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-73.html '>guaranteed payday loans with savings account</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-74.html '>online instant guaranteed payday loans long term p</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-75.html '>payday guaranteed approval cash loans in southeast</a> <a href='http://biomed.creighton.edu/reservations/lib/db/mysql/1/guaranteed-76.html '>payday guaranteed payday loan</a>
#1175 1307372833000000 fccoelho Thats the thing, I don't get any error message, no even in the logs. But I can't even load a page.
#1177 1307361157000000 fccoelho to upgrade I used the method describeb on bitbucket, after upgrading pip-requirements: pip -E pyenv install -r pip-requirements.txt after that I did a paster --plugin ckan db upgrade --config ckan.emap.fgv.br.ini the revision id on my pyenv/src/ckan is: 5730c79db461+ tip yes, I have restarted apached after upgrading
#1177 1307366621000000 fccoelho I have not modded the code in any way... I'll look for those lines in the template.which template is it? read.html does not have a line such as this.
#1177 1307367354000000 fccoelho OK I did an fgrep on all package template and found the line on layout.html, I'll comment the block and test.
#1177 1307367923000000 fccoelho Ok it fixed it! thanks a lot!! Is there any side effects to the removal of this line, I should know of?
#1219 1310670324000000 erilem The issue is due to IE7 (and IE6) not supporting {{{inline-block}}}. [attachment:patch-1219-A0.diff] works around the issue. I'm reopening this ticket in case you want to consider my patch. But note that I won't be offended if you close it as wontfix again. I agree this is pretty minor, and that working around old browsers' limitations isn't always a good idea.
#560 1285430085000000 [email protected] I think I'm seeing a variation on this behavior: I'm retrieving the packages in the lodcloud group (http://ckan.net/api/rest/group/lodcloud) and finding bibbase, and then fetching the package details (http://ckan.net/api/rest/package/bibbase) and getting a 403 Access Denied. If access to the package isn't available I would think it wouldn't be listed in the lodcloud group response.
#183 1290604779000000 dread <[email protected]> You can see the top rated packages in the stats box. Actually not very useful at the moment - not much rating is going on.
#228 1290596875000000 dread <[email protected]> Duplicate of #262
#270 1290596640000000 dread <[email protected]> Nearly everything mentioned here has been achieved with the SpreadsheetData, DataRecords<-SpreadsheetDataRecords, PackageImporter<-SpreadsheetPackageImporter design. New imports can take advantage of this.
#681 1290507180000000 dread <[email protected]> This has been deployed now.
#824 1290595559000000 dread <[email protected]> Done on metastable for 1.2 release.
#21 1254740405000000 dread Done as part of ticket:126
#34 1253781550000000 dread dread@dread-laptop:~/hgroot/ckan$ wget http://ckan.net/fff --2009-09-24 09:38:02-- http://ckan.net/fff Resolving ckan.net... 88.198.21.211 Connecting to ckan.net|88.198.21.211|:80... connected. HTTP request sent, awaiting response... 404 Not Found 2009-09-24 09:38:02 ERROR 404: Not Found.
#61 1253612984000000 dread Done in cset:41151725cc12 Cost: 1h
#62 1250181376000000 dread Agreed with rgrp that tags should be allowed to be international letters, but not symbols other than these three: ._- but not uppercase characters. This is done in the checkins for ticket 76.
#66 1250785405000000 dread Done in changeset:f875f0f87cb1
#67 1250785122000000 dread Done in changeset:f875f0f87cb1
#70 1247827053000000 dread Done on checkins: 46d39c62396a and 44eb4f2c4822.
#71 1250181211000000 dread Done in 1.5 hrs Change set 2b434d63d5fd
#74 1250182938000000 dread Done in 0.5h Checked in to dd2f9713a6a2. Third detail done - enquiry can be done for all packages. Still need to change isitopen site to make use of the parameter ?ckan-package=<package_name>
#76 1250152708000000 dread Objectives 1 and 2 done. 3 left for another ticket if req'd. Several checkins from 4cd7935adaceup to af32f6c2c5f1
#76 1250175782000000 dread I spent 30 hours on this task.
#76 1251295339000000 dread Reopening to improve look of the form. Text input fields need to be wider to be like before (size=40). Try and get remaining field information text on there.
#76 1251301765000000 dread Part 3 done in cset:7ace6c5d6c68.
#77 1255173809000000 dread Basic work done in cset:80c83a5be797. Extra work done (rgrp) in cset:ac2fdd73e347
#77 1255176732000000 dread Migrate script done in cset:f232b05eb875
#79 1250789298000000 dread Search: geo landsat Gives: 3 tags found: geo (1), geo-somthing (12), landsat (4) 11 packages found: (usual results)
#79 1250789659000000 dread [x] only open packages [x] only downloadable packages open licenses start with 'OKD compliant' or 'OSI compliant' (same test as isopen). See model/core.py
#79 1251110610000000 dread All done in changeset:6155a424e775 Now gives tags results. All words in query are searched for independently unless you enclose them in "quote marks". Options for filtering by openness/downloadable.
#79 1251111212000000 dread Also changeset:856047aa2ea6 (forgot to add a couple of files)
#80 1251111180000000 dread Done in changeset:1f8132df0aa8
#82 1256565343000000 dread Done basic work in vdm in cset:2a51e39be179. Previous work in ckan in cset:2cfa1c47acd2 - maybe not needed.
#82 1256565441000000 dread Follow on work in ckan in ticket:173.
#87 1258470719000000 dread Same as ticket:189
#88 1264439112000000 dread Download metadata added - format, descripiton, hash. See ticket:87.
#89 1260458636000000 dread API provided for tag counts in cset:5a94d1ac60ef allowing an external tag cloud.
#89 1265892698000000 dread Done in cset:66144a206c6b
#90 1265315677000000 dread Machine-readable link added in cset:9a7726fec351 but not 303 redirect yet. Cost so far: 1.5h
#90 1265388992000000 dread 303 redirect done in cset:ee207cfe617d. Cost: 1h. rgrp said leave "Alternative formats" part to Nick.
#91 1250864156000000 dread Done in changeset:a6c3af2024da
#93 1253613274000000 dread Split up into smalled tickets including: ticket:114 ticket:115 ticket:116 ticket:117
#94 1250604808000000 dread Done in changeset:631431630ef2
#103 1301943140000000 dread Didn't take this up in #1012 after all. Closing as wont fix.
#103 1308828847000000 dread Now we have this working in #1141 we can add the links from the package history page suggested here.
#103 1311175601000000 dread This isn't finished - see second point in description and comment 4: Now we have this working in #1141 we can add the links from the package history page suggested here.
#103 1311180850000000 dread Ah, you should have mentioned the new ticket! ;-)
#105 1252488496000000 dread All done apart from group owners. This functionality will be left for another ticket. cset:bd4e48a544e2 cset:3263b6612fb7 cset:c6a6f88a50c2 cset:e9111a221222 Took 1d.
#106 1256140649000000 dread Ticket split into ticket:163 and ticket:164
#107 1258381854000000 dread Cost: 1h
#108 1252318938000000 dread This has been done in changeset:ec90f59040e0.
#110 1252488660000000 dread This was all done in work for ticket:105
#113 1252318818000000 dread Test database directly and via wui. Paste.Fixture to be used via proxy in paster.
#113 1252328204000000 dread Done in cset:57b263f51a6b
Note: See TracReports for help on using and creating reports.