{23} Trac comments (3729 matches)

Results (1101 - 1200 of 3729)

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Ticket Posixtime Author Newvalue
#1627 1326890614000000 dread Took 0.5h
#1629 1326823222000000 dread This permission is set every time you do a db_upgrade. ckan.model.__init__.py calls init_configuration_data() which calls init_authz_configuration_data() which restores specific roles to the defaults. I agree that it doesn't seem right in this circumstance, but the way I setup roles is for 'editor', 'anon_editor' and 'reader' to have a fixed set of actions. See comment in ckan/model/authz.py: {{{ # These define what is meant by 'editor' and 'reader' for all ckan # instances - locked down or otherwise. They get refreshed on every db_upgrade. # So if you want to lock down an ckan instance, change Visitor and LoggedIn # to have a new role which for which you can allow your customised actions. }}} Basically it seemed wrong when people changed 'editor' to something that couldn't edit. They should call that role something else. But people *are* able to edit these roles (even though they are reset on upgrade) and they should be prevented. I've put this in a new ticket: http://trac.ckan.org/ticket/1679
#1630 1330085600000000 dread Went into CKAN 1.6
#1646 1327407044000000 dread Seems ok now. Chrome auto updates - maybe it had a bug before.
#1647 1326707383000000 dread Isn't the problem that the 'Contact Us' link goes to http://okfn.org/contact/ rather than http://ckan.org/contact/ ?
#1657 1330083881000000 dread c.f. "Mounting CKAN at a non-root URL" at http://wiki.ckan.org/Deployment
#1659 1326741734000000 dread Fixed in https://github.com/okfn/ckan/commit/7eb7dddbc103a23291c05a938d9e05365c7e6189 aimed at 1.5.2
#1659 1326747205000000 dread Needed another fix: https://github.com/okfn/ckan/compare/ff08fd6...b772f52
#1662 1326730414000000 dread Not important to fix this at the moment since CKAN's OpenID compatibility is essentially deprecated.
#1682 1330038786000000 dread Now merged into #1605
#1683 1326975613000000 dread Workaround done in branch defect-1683-search-order - SOLR is asked for one extra result which it then discards. Merged to master, aimed for release 1.5.2. When we upgrade SOLR from 1.4 then we can remove this workaround
#1683 1326976925000000 dread Here's someone else with the exact sorting problem: http://lucene.472066.n3.nabble.com/last-item-in-results-page-is-always-the-same-td2513423.html
#1688 1327315514000000 dread Have not really started this - rolling into new sprint.
#1688 1328198481000000 dread Done: [feature-1688-authz-api 8d7b42c] Work excludes changing roles on the System object, so you can't make people sysadmins. This could be a future ticket. Docs added to apiv3.rst and examples here: http://wiki.ckan.org/Using_the_API Took: 3.5 days
#1688 1328289101000000 dread Requested by Philipp Laemmel. Is going into CKAN 1.6 release, planned for 2 weeks time.
#1691 1327082369000000 dread RTFM... ;-) user add <user-name> [apikey=<apikey>] [password=<password>]
#1692 1329242042000000 dread CMAP are really keen on having this for groups
#1692 1329242134000000 dread CMAP also interested in having some custom CSS for a group, but that is perhaps another ticket.
#1695 1327323309000000 dread I propose spending 2h on this.
#1695 1327426989000000 dread * links_to/linked_from was already available (since Sept - Friedrich put them in). * Count property not easy so not done. * POST to the Relationships Register (all three) works now (and the original way via the entity still works too) * Schema/validation was added along with tests for error conditions. * Creating a new relationship documented in Model Methods * 'Model Formats' section in API docs restored and updated. Committed to master aimed for release 1.6 https://github.com/okfn/ckan/commit/f16450c1c34cac09046a098273f66d2b75aa87dd Spent 6h on this in the end - generally useful tidying in this area.
#1695 1330085001000000 dread Went into CKAN release 1.6
#1697 1327402311000000 dread Just note that although there are similarities to the 'auto-save' feature on forms #1538, these use cases probably justify the different methods of saving the draft.
#1701 1330084925000000 dread I can't find these changesets - am not sure which release this is in.
#1708 1327493457000000 dread I've got a fix for this and am just looking to see where this problem started now.
#1708 1327494415000000 dread The problem has traced back to this commit by Ian: https://github.com/okfn/ckan/commit/51136465fb1bb94ea70df32be00eaef6ae43792b ckan/config/routing.py {{{ -from ckan.plugins import PluginImplementations, IRoutes 10 +from ckan.controllers.package import set_fallback_controller as set_fallback_package_controller,\ 11 + add_package_controller,\ 12 + set_default_as_fallback_controller_if_required as set_default_as_fallback_package_controller_if_required 13 +from ckan.plugins import PluginImplementations, IRoutes, IPluggablePackageController }}} By importing the package controller at this earlier point, it sets the ckan_url quasi-global variable before the config file has been loaded. {{{ /home/dread/gitroot/ckan/ckan/config/middleware.py(18)<module>() -> from ckan.config.environment import load_environment /home/dread/gitroot/ckan/ckan/config/environment.py(20)<module>() -> from ckan.config.routing import make_map /home/dread/gitroot/ckan/ckan/config/routing.py(10)<module>() -> from ckan.controllers.package import set_fallback_controller as set_fallback_package_controller,\ /home/dread/gitroot/ckan/ckan/controllers/package.py(20)<module>() -> from ckan.lib.search import SearchIndexError, SearchError /home/dread/gitroot/ckan/ckan/lib/search/__init__.py(9)<module>() -> from common import (SearchIndexError, SearchError, SearchQueryError, > /home/dread/gitroot/ckan/ckan/lib/search/common.py(11)<module>() -> solr_url = config.get('solr_url', DEFAULT_SOLR_URL) }}} In retrospect we should have not initialised the variables from the config during import.
#1708 1327505889000000 dread Fix on its way. This problem also stopped simple_search and affected reading the beaker settings. Patch will make SOLR settings initialised consciously in config/environment.ini, rather than at search import time. I've also moved the search import time to be later.
#1708 1327580995000000 dread Fixed in [master 0d3543c]
#1709 1327659562000000 dread I have checked in a similar fix and with a simple test.
#1709 1327659722000000 dread Note: imports issue was previously dealt with in #1708 and was originally caused by Ian's commit - Ross just merged it in to master.
#1710 1327580140000000 dread Rufus says that the paster command is enough for now.
#1710 1327583922000000 dread Code done in [master 804b549] headed for release Example usage (on the appropriate server): {{{ paster db user-dump-csv /tmp/users.csv }}}
#1719 1328532877000000 dread I've updated test.ckan.org with this fix and am afraid there are still broken images on http://test.ckan.net/revision
#1719 1328541630000000 dread My bad - the server wasn't updated correctly.
#1725 1328204489000000 dread Fixed in 6fecbd9fb08f5a22e9dd2dd2745c287a38f44a30 on master. Added test for the tag_string_validator too. Aimed for 1.6 release. Took 1h
#1737 1329916781000000 dread SOLR syntax is already accepted in: * api/3/search/package * Action API "package_search" Actually api/1/search/package and api/1/search/package accept SOLR syntax too, but they also translate old-CKAN search parameters syntax to SOLR as well. See: http://docs.ckan.org/en/latest/apiv3.html
#1738 1330086105000000 dread Cset is actually dd2c0c677117f06a52aa22b3b2717bb605263570 and went into CKAN 1.6
#1740 1328094884000000 dread I agree with getting rid of {{{from module import *}}} and the approach suggested. However, I really disagree with getting rid of {{{from x import y}}}. In particular we have a strong convention of using this for ckan.model. It is a valuable abbreviation as it is used so much in the logic layer and tests. If someone should accidentally reassign the value of model to something else then I believe it is simple to see what has gone wrong.
#1742 1328117135000000 dread Probably better in the ckan/logic/validators.py: name_validator
#1783 1328612744000000 dread Fixed in [master 8f059ed] aimed for release 1.6.
#1784 1328615106000000 dread I don't agree. I think we have a good compromise at the moment, where you have readable URLs, and people can change names if they want to. Names are changed only occasionally. The CKAN site adjusts all its links automatically of course. External blog posts may have incoming links, and these would break, but it's not difficult to search for a dataset. If we're really worried about this then we should provide a 'permalink' somewhere on the Package / Group / Resource page. In the meantime, I suggest changing the Activity Stream links to be with names.
#1786 1328640597000000 dread Fixed [master fe6829e]. Aimed for release CKAN 1.6.
#1791 1329138315000000 dread Fixed in [release-v1.6 beaeaed]
#1792 1332872069000000 dread What is the changeset for this? There is evidence of a branch "enhancement-1792-api-logic" but perhaps this name got fast-forwarded out through a bad merge? Is this merged into 1.6.1 release?
#1792 1333037710000000 dread I have tracked down the changesets to: * branched off master at dff9f7a8 * merged master in for the last time (and became the 'new master'?) at 1a9227d9ff73c
#1798 1329395560000000 dread Was fixed by Ian in https://github.com/okfn/ckan/commit/5a9054459e3833443bed3e118bbbb6c442e55b0b on branch feature-1453-flexible-tag-names. This has gone into CKAN 1.6.
#1799 1330000389000000 dread Fixed in [master ea2d824] for both logging in and registering whilst logged in. Cherry picked to release-v1.6
#1802 1329409718000000 dread Current progress - I have got most of the dependencies installed - many by pip, but some I had to revert to Windows msi installers. Pad with details here: http://ckan.okfnpad.org/windows. So far done: 1 day.
#1802 1329490081000000 dread I've achieved CKAN running with paster and without SOLR (using simple_search). Running locally on an old XP machine, performance seems fine - no noticeable issues. I installed most things into a pyenv using pip. pyutilib, psycopg2 and lxml were slightly problematic, but I have workarounds. I had problems pip and svn and the Cygwin window, so reverted to DOS prompt. I still had the Cygwin tools installed though, so next step is to try it without these at all - they are a big overhead.
#1802 1329734716000000 dread Spent so far 1.75d
#1802 1329830097000000 dread * Refined install without using Cygwin - this seems a little easier. * Added example Apache & modwsgi deployment. * Documented extensively at: http://wiki.ckan.org/CKAN_install_on_Windows * Have not tried SOLR on Windows - I'm not convinced this is high priority, and normal install should be fine as it is so separate from CKAN. Spent another 0.5d. Total spent 2.25d
#1804 1330000705000000 dread I'll fix this on release-v1.6 and then reassign to Toby to fix on feature-1653-i18n_url_rewriting too if the same issue crops up there.
#1804 1330037202000000 dread Fixed this on release-v1.6 in cset 557e72330db7. Spent 0.5h. Reassigning for Toby to look at branch feature-1653-i18n_url_rewriting
#1829 1330001828000000 dread This was due to https://github.com/okfn/ckan/commit/f07bfdb9#diff-1 - string "Language has been set to: English" shouldn't have been translated. I've put in a patch to make the code intentions clearer and added a test: [release-v1.6 07d3a02]. This only affected the 1.6 beta, and is fixed for the release.
#1830 1330089912000000 dread Now if you set openid_enabled to false, you are not given the option in user settings to associate your account with openid. Cset: [master b295bde] I looked at removing the openid middleware, but we use it for logging out users, whether they logged in or not - it looks like friendly form plugin is not as good as the openid one in this respect! We could hack the logout function into the friendly form to sort this out, but not sure the effort is worth it at the moment.
#2265 1332865837000000 dread I started work on this and need to park it somewhere - here will do for now. I was using the 'MLT Component' http://wiki.apache.org/solr/MoreLikeThis : https://gist.github.com/2217684 But I think it would make more sense to use the 'MLT Handler' http://wiki.apache.org/solr/MoreLikeThisHandler which needs enabling by adding this to the config {{{/usr/share/solr/core1/conf/solrconfig.xml}}}: {{{ <requestHandler name="/mlt" class="solr.MoreLikeThisHandler"> </requestHandler> }}}
#2266 1332932634000000 dread Fixed in [release-v1.6.1 ed2772b] with test.
#2281 1333967862000000 dread Done in [release-v1.6.1 9ecbfa5][release-v1.6.1 9ecbfa5]
#2315 1334919522000000 dread Done, with tests and bootstrapification of the form: [release-v1.6.1 b23b357]
#2325 1335366188000000 dread Done in [release-v1.6.1 6343a9c]
#2366 1336395238000000 dread For my site I need the Authorization Groups sections gone from the authz pages, for v1.7.1, so I've made these check for the presence of any Authorization Groups in commit: [master 8947302]. So it's another useful stepping stone to getting rid of them cleanly.
#2366 1336560445000000 dread Thanks Ross. It's the dataset authz and admin authz pages which still need Authorization Groups removing. e.g. http://thedatahub.org/dataset/authz/conservative-party-uk-donors-by-sector and http://thedatahub.org/en/ckan-admin/authz
#2373 1336142514000000 dread Fixed in https://github.com/okfn/ckan/commit/8b7141cd2ff619a0e35aaa31bbc1d17156647498 on master (and also on release-dgu1).
#2384 1337100810000000 dread Done in 0bc06c6495c749d6b481164d59cceeca873acefb
#2390 1337100788000000 dread Done in d1c2ed08c90c2d94e1b2ced86e8758208a61ee96
#2394 1337161917000000 dread Done in [master b486244]
#2401 1337273042000000 dread Done in master 112e405d0116bdcf196062520e3474e231337996
#2668 1342172855000000 dread Fix done, ready for pull into core: http://github.com/datagovuk/ckan/commit/7da4aba97639ac29642548f7fcdb1a50d6bce027
#2934 1348060201000000 dread The functional tests actually do cover a logged in person editing a dataset and then checking it displays correctly in the view page again. The webtest framework we use in CKAN has form filling and link click() function which allows navigation between pages like you describe these other ones having too. Having said that, there is no reason why a newer library shouldn't be introduced if webtest is not sufficient. And if there are stories without tests then it would be good to add them.
#2942 1348610791000000 dread Unfortunately with a few hours hacking I couldn't find a way to get this version of WebOb to cope with this header. The line I think it goes wrong is {{{ctype = env.get('CONTENT_TYPE', 'application/x-www-form-urlencoded')}}} in request.py, and the commented line above looks right, but wipes the request data for some reason. I tried intercepting the bad header and deleting it, but I couldn't do that before WebOb processed it, and couldn't persuade WebOb to reprocess it once the header was edited. I did write a failing test though if that is useful to someone in the future: {{{ diff --git a/ckan/tests/functional/api/test_api.py b/ckan/tests/functional/api/t index 539d184..b4cc4ce 100644 --- a/ckan/tests/functional/api/test_api.py +++ b/ckan/tests/functional/api/test_api.py @@ -49,6 +49,18 @@ class TestApi3(Api3TestCase, ApiTestCase): assert_in('Bad request - JSON Error: No request body data', res.body) + def test_content_type_headers_can_be_sent(self): + '''#2942 Webob can only cope with very specific Content-Type header + values, so this tests that a work-around is in place. + + This particular header value is the default for 'requests' 0.14. + ''' + offset = self.offset('/action/package_search') + params = '%s=1' % json.dumps({'q': 'russian'}) + headers = {'Content-Type': '; charset=utf-8'} + res = self.app.post(offset, params=params, headers=headers, + status=[200]) + }}} There is a clear error to the user: {{{ >>> requests.post('http://datahub.io/api/action/package_list', data='{}').content '"Bad request - JSON Error: Could not extract request body data: Bad content type: \'; charset=utf-8\'"' }}} The advice to users of requests would be to ensure they specify the content-type as follows: {{{ >>> requests.post('http://datahub.io/api/action/package_list', data='{}', headers={'content-type': 'application/x-www-form-urlencoded'}).content }}}
#2942 1348611144000000 dread > {{{ > >>> requests.post('http://datahub.io/api/action/package_list', data='{}', headers={'content-type': 'application/x-www-form-urlencoded'}).content > }}} Or even better: {{{ >>> requests.post('http://datahub.io/api/action/package_list', data='{}', headers={'content-type': 'application/json'}).content }}}
#3029 1355243824000000 dread Fix done here: https://github.com/datagovuk/ckan/commit/b6ad63d58dd6c0cc51677fa66c575179f908d050 which you're welcome to pull.
#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.
#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.
#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.
#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?
#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>
#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>
#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).
#920 1295355318000000 [email protected] my first email address was wrong...
#84 1340626385000000 icmurray Moved to ckan-future, and assigned to kindly. @kindly : move to a different milestone, or close/won't-fix as you see fit.
#235 1340627057000000 icmurray Moved to ckan-future and unassign so that this ticket will be picked up in triage.
#235 1340627624000000 icmurray Replying to [comment:3 icmurray]: > Moved to ckan-future and unassign so that this ticket will be picked up in triage. Sorry, this comment bears no resemblemnce to what I actually did! Assigned to tobes for 1.9.
#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.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Note: See TracReports for help on using and creating reports.