├── ckan
├── ckan
│ ├── config
│ │ └── __init__.py
│ ├── lib
│ │ ├── __init__.py
│ │ └── navl
│ │ │ └── __init__.py
│ ├── controllers
│ │ └── __init__.py
│ ├── migration
│ │ ├── __init__.py
│ │ ├── versions
│ │ │ ├── __init__.py
│ │ │ ├── 021_postgres_downgrade.sql
│ │ │ ├── 021_postgresql_downgrade.sql
│ │ │ ├── 038_delete_migration_tables.py
│ │ │ └── 040_reset_key_on_user.py
│ │ ├── manage.py
│ │ └── README
│ ├── tests
│ │ ├── forms
│ │ │ └── __init__.py
│ │ ├── lib
│ │ │ └── __init__.py
│ │ ├── misc
│ │ │ └── __init__.py
│ │ ├── functional
│ │ │ ├── __init__.py
│ │ │ ├── api
│ │ │ │ ├── __init__.py
│ │ │ │ └── model
│ │ │ │ │ └── __init__.py
│ │ │ └── base.py
│ │ ├── models
│ │ │ └── __init__.py
│ │ ├── ckantestplugin
│ │ │ ├── ckantestplugin.egg-info
│ │ │ │ ├── not-zip-safe
│ │ │ │ ├── dependency_links.txt
│ │ │ │ ├── top_level.txt
│ │ │ │ ├── PKG-INFO
│ │ │ │ ├── entry_points.txt
│ │ │ │ └── SOURCES.txt
│ │ │ └── setup.cfg
│ │ └── test_versions.py
│ ├── logic
│ │ └── action
│ │ │ └── __init__.py
│ ├── templates
│ │ ├── authorization_group
│ │ │ └── __init__.py
│ │ ├── package
│ │ │ ├── resources.html
│ │ │ └── __init__.py
│ │ ├── __init__.py
│ │ ├── home
│ │ │ ├── __init__.py
│ │ │ ├── language.js
│ │ │ └── layout.html
│ │ ├── group
│ │ │ └── __init__.py
│ │ ├── rest
│ │ │ └── __init__.py
│ │ ├── tag
│ │ │ ├── __init__.py
│ │ │ └── layout.html
│ │ ├── user
│ │ │ ├── __init__.py
│ │ │ ├── layout.html
│ │ │ └── logout.html
│ │ ├── importer
│ │ │ └── __init__.py
│ │ ├── revision
│ │ │ ├── __init__.py
│ │ │ └── layout.html
│ │ ├── layout.html
│ │ └── error_document_template.html
│ ├── public
│ │ ├── images
│ │ │ ├── ckan-features.png
│ │ │ ├── dlbg.png
│ │ │ ├── stars.png
│ │ │ ├── icons
│ │ │ │ ├── add.png
│ │ │ │ ├── key.png
│ │ │ │ ├── door.png
│ │ │ │ ├── error.png
│ │ │ │ ├── group.png
│ │ │ │ ├── lock.png
│ │ │ │ ├── note.png
│ │ │ │ ├── user.png
│ │ │ │ ├── arrow_up.png
│ │ │ │ ├── comments.png
│ │ │ │ ├── openid.png
│ │ │ │ ├── package.png
│ │ │ │ ├── remove.png
│ │ │ │ ├── tag_blue.png
│ │ │ │ ├── unfilter.png
│ │ │ │ ├── world_go.png
│ │ │ │ ├── arrow_down.png
│ │ │ │ ├── atom_feed.png
│ │ │ │ ├── door_grey.png
│ │ │ │ ├── door_open.png
│ │ │ │ ├── drive_web.png
│ │ │ │ ├── group_add.png
│ │ │ │ ├── group_edit.png
│ │ │ │ ├── magnifier.png
│ │ │ │ ├── user_grey.png
│ │ │ │ ├── package_edit.png
│ │ │ │ ├── arrow_down_grey.png
│ │ │ │ ├── page_white_json.png
│ │ │ │ ├── page_white_rdf.png
│ │ │ │ ├── page_white_stack.png
│ │ │ │ ├── authorization_group.png
│ │ │ │ ├── authorization_group_add.png
│ │ │ │ └── authorization_group_edit.png
│ │ │ ├── button-shadow.png
│ │ │ ├── bullet_separator.png
│ │ │ └── ckan_logo_fullname_long.png
│ │ ├── css
│ │ │ ├── ie.css
│ │ │ ├── reveal_instructions.css
│ │ │ ├── tagcomplete.css
│ │ │ └── style.css
│ │ ├── scripts
│ │ │ └── openid-selector
│ │ │ │ └── images
│ │ │ │ ├── aol.gif
│ │ │ │ ├── yahoo.gif
│ │ │ │ ├── blogger.ico
│ │ │ │ ├── claimid.ico
│ │ │ │ ├── flickr.ico
│ │ │ │ ├── google.gif
│ │ │ │ ├── openid.gif
│ │ │ │ ├── vidoop.ico
│ │ │ │ ├── facebook.gif
│ │ │ │ ├── myopenid.ico
│ │ │ │ ├── technorati.ico
│ │ │ │ ├── verisign.gif
│ │ │ │ ├── verisign.ico
│ │ │ │ ├── wordpress.ico
│ │ │ │ ├── livejournal.ico
│ │ │ │ └── openid-inputicon.gif
│ │ └── robots.txt
│ ├── plugins
│ │ └── __init__.py
│ ├── i18n
│ │ ├── ca
│ │ │ └── LC_MESSAGES
│ │ │ │ └── ckan.mo
│ │ ├── de
│ │ │ └── LC_MESSAGES
│ │ │ │ └── ckan.mo
│ │ ├── el
│ │ │ └── LC_MESSAGES
│ │ │ │ └── ckan.mo
│ │ ├── es
│ │ │ └── LC_MESSAGES
│ │ │ │ └── ckan.mo
│ │ ├── fi
│ │ │ └── LC_MESSAGES
│ │ │ │ └── ckan.mo
│ │ ├── fr
│ │ │ └── LC_MESSAGES
│ │ │ │ └── ckan.mo
│ │ ├── hu
│ │ │ └── LC_MESSAGES
│ │ │ │ └── ckan.mo
│ │ ├── it
│ │ │ └── LC_MESSAGES
│ │ │ │ └── ckan.mo
│ │ ├── lt
│ │ │ └── LC_MESSAGES
│ │ │ │ └── ckan.mo
│ │ ├── nl
│ │ │ └── LC_MESSAGES
│ │ │ │ └── ckan.mo
│ │ ├── no
│ │ │ └── LC_MESSAGES
│ │ │ │ └── ckan.mo
│ │ ├── pl
│ │ │ └── LC_MESSAGES
│ │ │ │ └── ckan.mo
│ │ ├── ro
│ │ │ └── LC_MESSAGES
│ │ │ │ └── ckan.mo
│ │ ├── ru
│ │ │ └── LC_MESSAGES
│ │ │ │ └── ckan.mo
│ │ ├── sl
│ │ │ └── LC_MESSAGES
│ │ │ │ └── ckan.mo
│ │ ├── sq
│ │ │ └── LC_MESSAGES
│ │ │ │ └── ckan.mo
│ │ └── pt_BR
│ │ │ └── LC_MESSAGES
│ │ │ └── ckan.mo
│ ├── exceptions.py
│ └── pastertemplates
│ │ └── template
│ │ └── ckanext
│ │ ├── __init__.py
│ │ └── +project+
│ │ └── __init__.py
├── doc
│ ├── .static
│ │ └── .place-holder
│ ├── .templates
│ │ └── .place-holder
│ ├── README.rst
│ ├── CHANGELOG.rst
│ ├── api
│ │ ├── 3
│ │ │ ├── search
│ │ │ │ └── index.rst.inc
│ │ │ ├── index.rst
│ │ │ ├── overview.rst.inc
│ │ │ ├── model
│ │ │ │ └── index.rst.inc
│ │ │ └── status.rst.inc
│ │ ├── title.rst.inc
│ │ ├── purpose.rst.inc
│ │ ├── bottom.rst.inc
│ │ ├── model_methods.rst.inc
│ │ ├── model_resources.rst.inc
│ │ ├── search
│ │ │ └── index.rst.inc
│ │ ├── interfaces1.rst.inc
│ │ ├── form_resources.rst.inc
│ │ ├── interfaces2.rst.inc
│ │ ├── search_preamble.rst.inc
│ │ ├── model_preamble.rst.inc
│ │ ├── search_resources.rst.inc
│ │ ├── clients.rst.inc
│ │ ├── search_methods.rst.inc
│ │ ├── location.rst.inc
│ │ └── status.rst.inc
│ ├── ckan-vision.png
│ ├── ckan-features.png
│ ├── ckan_form_guidance.doc
│ └── authentication.rst
├── who.ini
├── pip-requirements-test.txt
├── MANIFEST.in
└── RELEASE.txt
├── drupal
├── sites
│ ├── all
│ │ ├── modules
│ │ │ ├── ctools
│ │ │ │ ├── help
│ │ │ │ │ ├── ajax.html
│ │ │ │ │ └── context.html
│ │ │ │ ├── plugins
│ │ │ │ │ ├── access
│ │ │ │ │ │ └── node.inc
│ │ │ │ │ └── content_types
│ │ │ │ │ │ ├── form
│ │ │ │ │ │ └── icon_form.png
│ │ │ │ │ │ ├── node
│ │ │ │ │ │ └── icon_node.png
│ │ │ │ │ │ ├── search
│ │ │ │ │ │ └── icon_search.png
│ │ │ │ │ │ ├── block
│ │ │ │ │ │ ├── icon_core_block.png
│ │ │ │ │ │ ├── icon_core_page.png
│ │ │ │ │ │ ├── icon_contrib_block.png
│ │ │ │ │ │ ├── icon_contrib_menu.png
│ │ │ │ │ │ ├── icon_contrib_page.png
│ │ │ │ │ │ ├── icon_core_whosnew.png
│ │ │ │ │ │ ├── icon_core_block_menu.png
│ │ │ │ │ │ ├── icon_core_navigation.png
│ │ │ │ │ │ ├── icon_core_recentpoll.png
│ │ │ │ │ │ ├── icon_core_searchform.png
│ │ │ │ │ │ ├── icon_core_syndicate.png
│ │ │ │ │ │ ├── icon_core_userlogin.png
│ │ │ │ │ │ ├── icon_core_whosonline.png
│ │ │ │ │ │ ├── icon_core_block_empty.png
│ │ │ │ │ │ ├── icon_core_primarylinks.png
│ │ │ │ │ │ ├── icon_contrib_block_empty.png
│ │ │ │ │ │ ├── icon_core_booknavigation.png
│ │ │ │ │ │ ├── icon_core_newforumtopics.png
│ │ │ │ │ │ ├── icon_core_popularcontent.png
│ │ │ │ │ │ ├── icon_core_recentblogposts.png
│ │ │ │ │ │ ├── icon_core_recentcomments.png
│ │ │ │ │ │ ├── icon_core_activeforumtopics.png
│ │ │ │ │ │ ├── icon_core_authorinformation.png
│ │ │ │ │ │ └── icon_core_languageswitcher.png
│ │ │ │ │ │ ├── contact
│ │ │ │ │ │ └── icon_contact.png
│ │ │ │ │ │ ├── custom
│ │ │ │ │ │ └── icon_block_custom.png
│ │ │ │ │ │ ├── node_context
│ │ │ │ │ │ └── icon_node.png
│ │ │ │ │ │ ├── node_form
│ │ │ │ │ │ └── icon_node_form.png
│ │ │ │ │ │ ├── term_context
│ │ │ │ │ │ └── icon_term.png
│ │ │ │ │ │ ├── user_context
│ │ │ │ │ │ └── icon_user.png
│ │ │ │ │ │ └── vocabulary_context
│ │ │ │ │ │ └── icon_vocabulary.png
│ │ │ │ ├── stylizer
│ │ │ │ │ ├── help
│ │ │ │ │ │ ├── base-styles.html
│ │ │ │ │ │ ├── stylizer.help.ini
│ │ │ │ │ │ └── base-style-types.html
│ │ │ │ │ └── stylizer.info
│ │ │ │ ├── views_content
│ │ │ │ │ ├── views_content.admin.inc
│ │ │ │ │ └── plugins
│ │ │ │ │ │ └── content_types
│ │ │ │ │ │ ├── icon_views_page.png
│ │ │ │ │ │ ├── icon_views_page_legacy.png
│ │ │ │ │ │ └── icon_views_block_legacy.png
│ │ │ │ ├── page_manager
│ │ │ │ │ ├── help
│ │ │ │ │ │ ├── api-task-type.html
│ │ │ │ │ │ ├── page-task-type.html
│ │ │ │ │ │ ├── variants.html
│ │ │ │ │ │ ├── custom-pages.html
│ │ │ │ │ │ ├── custom-pages-access.html
│ │ │ │ │ │ ├── custom-pages-menu.html
│ │ │ │ │ │ ├── custom-pages-arguments.html
│ │ │ │ │ │ ├── getting-started-create.html
│ │ │ │ │ │ ├── getting-started-members.html
│ │ │ │ │ │ ├── getting-started-page-list.html
│ │ │ │ │ │ ├── getting-started-custom-nodes.html
│ │ │ │ │ │ └── getting-started-custom-vocabulary.html
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── locked.png
│ │ │ │ │ │ ├── arrow-active.png
│ │ │ │ │ │ └── locked-other.png
│ │ │ │ │ └── page_manager.info
│ │ │ │ ├── images
│ │ │ │ │ ├── no-icon.png
│ │ │ │ │ ├── throbber.gif
│ │ │ │ │ ├── icon-delete.png
│ │ │ │ │ ├── icon-configure.png
│ │ │ │ │ ├── status-active.gif
│ │ │ │ │ ├── icon-close-window.png
│ │ │ │ │ ├── collapsible-collapsed.png
│ │ │ │ │ └── collapsible-expanded.png
│ │ │ │ ├── css
│ │ │ │ │ ├── wizard.css
│ │ │ │ │ ├── ruleset.css
│ │ │ │ │ └── context.css
│ │ │ │ ├── ctools_ajax_sample
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── ajax-loader.gif
│ │ │ │ │ │ ├── loading-large.gif
│ │ │ │ │ │ └── popups-border.png
│ │ │ │ │ ├── ctools_ajax_sample.install
│ │ │ │ │ └── ctools_ajax_sample.info
│ │ │ │ ├── ctools_plugin_example
│ │ │ │ │ └── plugins
│ │ │ │ │ │ └── content_types
│ │ │ │ │ │ └── icon_example.png
│ │ │ │ ├── ctools.info
│ │ │ │ ├── bulk_export
│ │ │ │ │ ├── bulk_export.css
│ │ │ │ │ └── bulk_export.info
│ │ │ │ ├── ctools_access_ruleset
│ │ │ │ │ └── ctools_access_ruleset.info
│ │ │ │ └── ctools_custom_content
│ │ │ │ │ └── ctools_custom_content.info
│ │ │ ├── devel
│ │ │ │ ├── krumo
│ │ │ │ │ ├── VERSION
│ │ │ │ │ ├── skins
│ │ │ │ │ │ ├── blue
│ │ │ │ │ │ │ └── bg.gif
│ │ │ │ │ │ ├── default
│ │ │ │ │ │ │ └── bg.gif
│ │ │ │ │ │ ├── green
│ │ │ │ │ │ │ └── bg.gif
│ │ │ │ │ │ ├── orange
│ │ │ │ │ │ │ └── bg.gif
│ │ │ │ │ │ └── schablon.com
│ │ │ │ │ │ │ ├── dotted.gif
│ │ │ │ │ │ │ ├── empty.gif
│ │ │ │ │ │ │ ├── collapsed.gif
│ │ │ │ │ │ │ └── expanded.gif
│ │ │ │ │ └── docs
│ │ │ │ │ │ └── media
│ │ │ │ │ │ └── images
│ │ │ │ │ │ ├── I.png
│ │ │ │ │ │ ├── L.png
│ │ │ │ │ │ ├── T.png
│ │ │ │ │ │ ├── Class.png
│ │ │ │ │ │ ├── Index.png
│ │ │ │ │ │ ├── Lplus.png
│ │ │ │ │ │ ├── Page.png
│ │ │ │ │ │ ├── Tplus.png
│ │ │ │ │ │ ├── blank.png
│ │ │ │ │ │ ├── empty.png
│ │ │ │ │ │ ├── file.png
│ │ │ │ │ │ ├── minus.gif
│ │ │ │ │ │ ├── plus.gif
│ │ │ │ │ │ ├── Constant.png
│ │ │ │ │ │ ├── Function.png
│ │ │ │ │ │ ├── Global.png
│ │ │ │ │ │ ├── Lminus.png
│ │ │ │ │ │ ├── Method.png
│ │ │ │ │ │ ├── Tminus.png
│ │ │ │ │ │ ├── Variable.png
│ │ │ │ │ │ ├── folder.png
│ │ │ │ │ │ ├── package.png
│ │ │ │ │ │ ├── tutorial.png
│ │ │ │ │ │ ├── Class_logo.png
│ │ │ │ │ │ ├── Destructor.png
│ │ │ │ │ │ ├── Page_logo.png
│ │ │ │ │ │ ├── up_button.png
│ │ │ │ │ │ ├── AbstractClass.png
│ │ │ │ │ │ ├── Constructor.png
│ │ │ │ │ │ ├── PrivateClass.png
│ │ │ │ │ │ ├── PrivateMethod.png
│ │ │ │ │ │ ├── class_folder.png
│ │ │ │ │ │ ├── next_button.png
│ │ │ │ │ │ ├── AbstractMethod.png
│ │ │ │ │ │ ├── PrivateVariable.png
│ │ │ │ │ │ ├── function_folder.png
│ │ │ │ │ │ ├── package_folder.png
│ │ │ │ │ │ ├── previous_button.png
│ │ │ │ │ │ ├── tutorial_folder.png
│ │ │ │ │ │ ├── AbstractClass_logo.png
│ │ │ │ │ │ ├── PrivateClass_logo.png
│ │ │ │ │ │ ├── private_class_logo.png
│ │ │ │ │ │ ├── AbstractPrivateClass.png
│ │ │ │ │ │ ├── next_button_disabled.png
│ │ │ │ │ │ ├── AbstractPrivateMethod.png
│ │ │ │ │ │ ├── AbstractPrivateClass_logo.png
│ │ │ │ │ │ └── previous_button_disabled.png
│ │ │ │ ├── .gitignore
│ │ │ │ ├── devel-rtl.css
│ │ │ │ ├── devel_generate.info
│ │ │ │ ├── devel.info
│ │ │ │ ├── devel_node_access.info
│ │ │ │ ├── performance
│ │ │ │ │ └── performance.info
│ │ │ │ └── devel_node_access.install
│ │ │ ├── install_profile_api
│ │ │ │ ├── core
│ │ │ │ │ ├── book.inc
│ │ │ │ │ ├── search.inc
│ │ │ │ │ ├── aggregator.inc
│ │ │ │ │ └── statistics.inc
│ │ │ │ └── contrib
│ │ │ │ │ ├── diff.inc
│ │ │ │ │ ├── token.inc
│ │ │ │ │ ├── freelinking.inc
│ │ │ │ │ ├── pathauto.inc
│ │ │ │ │ └── wikitools.inc
│ │ │ ├── views
│ │ │ │ ├── css
│ │ │ │ │ ├── views-tabs.css
│ │ │ │ │ └── views-rtl.css
│ │ │ │ ├── images
│ │ │ │ │ ├── sprites.png
│ │ │ │ │ ├── overridden.gif
│ │ │ │ │ ├── arrow-active.png
│ │ │ │ │ ├── status-active.gif
│ │ │ │ │ └── expanded-options.png
│ │ │ │ ├── help
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── views1-admin.png
│ │ │ │ │ │ ├── views2-admin.png
│ │ │ │ │ │ ├── style-breakdown.png
│ │ │ │ │ │ ├── views2-addaview.png
│ │ │ │ │ │ ├── views2-newview.png
│ │ │ │ │ │ ├── overview-ui-large.png
│ │ │ │ │ │ ├── overview-ui-small.png
│ │ │ │ │ │ ├── views2-adddisplay.png
│ │ │ │ │ │ ├── views2-addfields.png
│ │ │ │ │ │ ├── views2-tablestyle.png
│ │ │ │ │ │ ├── views1-admin-large.png
│ │ │ │ │ │ ├── views2-addfieldsajax.png
│ │ │ │ │ │ ├── views2-admin-large.png
│ │ │ │ │ │ ├── views2-fieldspreview.png
│ │ │ │ │ │ ├── views2-newview-large.png
│ │ │ │ │ │ ├── style-breakdown-large.png
│ │ │ │ │ │ ├── views1-changeviewtype.png
│ │ │ │ │ │ ├── views2-addaview-large.png
│ │ │ │ │ │ ├── views2-addfields-large.png
│ │ │ │ │ │ ├── views2-rearrangefields.png
│ │ │ │ │ │ ├── node-term_node-term_data.png
│ │ │ │ │ │ ├── views2-adddisplay-large.png
│ │ │ │ │ │ ├── views2-changedisplaystyle.png
│ │ │ │ │ │ ├── views2-tablestyle-large.png
│ │ │ │ │ │ ├── views1-changeviewtype-large.png
│ │ │ │ │ │ ├── views2-addfieldsajax-large.png
│ │ │ │ │ │ ├── views2-fieldspreview-large.png
│ │ │ │ │ │ ├── node-term_node-term_data-large.png
│ │ │ │ │ │ ├── views2-rearrangefields-large.png
│ │ │ │ │ │ └── views2-changedisplaystyle-large.png
│ │ │ │ │ ├── updating.html
│ │ │ │ │ ├── display-feed.html
│ │ │ │ │ ├── style-comment-rss.html
│ │ │ │ │ ├── style-node-rss.html
│ │ │ │ │ └── style-unformatted.html
│ │ │ │ ├── documentation-standards.txt
│ │ │ │ ├── plugins
│ │ │ │ │ ├── views_plugin_access_none.inc
│ │ │ │ │ └── views_plugin_exposed_form_basic.inc
│ │ │ │ ├── views_export
│ │ │ │ │ ├── views_export.css
│ │ │ │ │ └── views_export.info
│ │ │ │ ├── views.info
│ │ │ │ ├── modules
│ │ │ │ │ └── system
│ │ │ │ │ │ └── views_handler_field_file_status.inc
│ │ │ │ └── theme
│ │ │ │ │ └── views-more.tpl.php
│ │ │ ├── cck
│ │ │ │ ├── help
│ │ │ │ │ ├── theme.png
│ │ │ │ │ ├── add-new.png
│ │ │ │ │ ├── drag-new.png
│ │ │ │ │ ├── draggable.png
│ │ │ │ │ ├── drag-groups.png
│ │ │ │ │ ├── add-new-field.png
│ │ │ │ │ ├── add-new-group.png
│ │ │ │ │ ├── add-existing-field.png
│ │ │ │ │ ├── group-node-display.png
│ │ │ │ │ ├── group-node-edit-form.png
│ │ │ │ │ ├── fields.html
│ │ │ │ │ └── manage-fields.html
│ │ │ │ ├── translations
│ │ │ │ │ └── help
│ │ │ │ │ │ └── de
│ │ │ │ │ │ ├── add-new.png
│ │ │ │ │ │ ├── drag-new.png
│ │ │ │ │ │ ├── add-new-field.png
│ │ │ │ │ │ ├── add-new-group.png
│ │ │ │ │ │ ├── drag-groups.png
│ │ │ │ │ │ ├── add-existing-field.png
│ │ │ │ │ │ ├── group-node-display.png
│ │ │ │ │ │ ├── group-node-edit-form.png
│ │ │ │ │ │ └── manage-fields.html
│ │ │ │ ├── includes
│ │ │ │ │ └── panels
│ │ │ │ │ │ └── content_types
│ │ │ │ │ │ └── icon_cck_field.png
│ │ │ │ ├── modules
│ │ │ │ │ ├── content_multigroup
│ │ │ │ │ │ └── README.txt
│ │ │ │ │ ├── fieldgroup
│ │ │ │ │ │ ├── fieldgroup-rtl.css
│ │ │ │ │ │ ├── panels
│ │ │ │ │ │ │ └── content_types
│ │ │ │ │ │ │ │ └── icon_cck_field_group.png
│ │ │ │ │ │ ├── fieldgroup.css
│ │ │ │ │ │ └── fieldgroup.info
│ │ │ │ │ ├── text
│ │ │ │ │ │ ├── help
│ │ │ │ │ │ │ └── text.help.ini
│ │ │ │ │ │ └── text.info
│ │ │ │ │ ├── number
│ │ │ │ │ │ ├── help
│ │ │ │ │ │ │ └── number.help.ini
│ │ │ │ │ │ └── number.info
│ │ │ │ │ ├── nodereference
│ │ │ │ │ │ └── help
│ │ │ │ │ │ │ └── nodereference.help.ini
│ │ │ │ │ ├── userreference
│ │ │ │ │ │ └── help
│ │ │ │ │ │ │ └── userreference.help.ini
│ │ │ │ │ ├── optionwidgets
│ │ │ │ │ │ └── help
│ │ │ │ │ │ │ └── optionwidgets.help.ini
│ │ │ │ │ └── content_copy
│ │ │ │ │ │ └── content_copy.info
│ │ │ │ ├── DEVELOPER.txt
│ │ │ │ └── content.info
│ │ │ ├── advanced_help
│ │ │ │ ├── help.png
│ │ │ │ ├── help_example
│ │ │ │ │ └── help
│ │ │ │ │ │ ├── 180px-Lerdorf.jpg
│ │ │ │ │ │ ├── 180px-Andi_Gutmans_1.jpg
│ │ │ │ │ │ └── 180px-PHP_Hello_World_screenshot.png
│ │ │ │ ├── advanced_help.info
│ │ │ │ └── help
│ │ │ │ │ └── advanced_help.help.ini
│ │ │ ├── ckan
│ │ │ │ ├── modules
│ │ │ │ │ └── feature_publishers
│ │ │ │ │ │ └── feature_publishers.module
│ │ │ │ ├── ckan.info
│ │ │ │ └── README.TXT
│ │ │ ├── services
│ │ │ │ ├── services.css
│ │ │ │ ├── auth
│ │ │ │ │ ├── services_oauth
│ │ │ │ │ │ └── services_oauth.css
│ │ │ │ │ └── services_sessauth
│ │ │ │ │ │ └── services_sessauth.info
│ │ │ │ ├── services.info
│ │ │ │ ├── README.txt
│ │ │ │ └── servers
│ │ │ │ │ ├── xmlrpc_server
│ │ │ │ │ └── xmlrpc_server.info
│ │ │ │ │ └── rest_server
│ │ │ │ │ ├── formats
│ │ │ │ │ └── xcal_format.info
│ │ │ │ │ └── rest_server.info
│ │ │ ├── admin_menu
│ │ │ │ ├── images
│ │ │ │ │ ├── arrow.png
│ │ │ │ │ ├── bkg.png
│ │ │ │ │ ├── bkg_tab.png
│ │ │ │ │ ├── arrow-rtl.png
│ │ │ │ │ └── icon_users.png
│ │ │ │ ├── admin_menu.drush.inc
│ │ │ │ └── admin_menu.info
│ │ │ ├── filefield
│ │ │ │ ├── icons
│ │ │ │ │ ├── text-html.png
│ │ │ │ │ ├── text-plain.png
│ │ │ │ │ ├── text-x-generic.png
│ │ │ │ │ ├── text-x-script.png
│ │ │ │ │ ├── application-pdf.png
│ │ │ │ │ ├── audio-x-generic.png
│ │ │ │ │ ├── image-x-generic.png
│ │ │ │ │ ├── package-x-generic.png
│ │ │ │ │ ├── video-x-generic.png
│ │ │ │ │ ├── x-office-document.png
│ │ │ │ │ ├── x-office-presentation.png
│ │ │ │ │ ├── x-office-spreadsheet.png
│ │ │ │ │ ├── application-octet-stream.png
│ │ │ │ │ └── application-x-executable.png
│ │ │ │ ├── filefield.info
│ │ │ │ ├── filefield_meta
│ │ │ │ │ └── filefield_meta.info
│ │ │ │ └── filefield-rtl.css
│ │ │ ├── link
│ │ │ │ ├── link.css
│ │ │ │ └── link.info
│ │ │ ├── features
│ │ │ │ ├── tests
│ │ │ │ │ └── features_test.module
│ │ │ │ └── features.info
│ │ │ ├── autoload
│ │ │ │ ├── autoloadtest
│ │ │ │ │ └── autoloadtest.classes.inc
│ │ │ │ └── autoload.info
│ │ │ ├── inputstream
│ │ │ │ ├── inputstream.module
│ │ │ │ └── inputstream.info
│ │ │ ├── diff
│ │ │ │ └── diff.info
│ │ │ ├── module_builder
│ │ │ │ ├── module_builder.info
│ │ │ │ ├── theme
│ │ │ │ │ └── module_builder.css
│ │ │ │ └── templates
│ │ │ │ │ └── hook_groups.template
│ │ │ └── email
│ │ │ │ └── email.info
│ │ └── README.txt
│ └── default
│ │ └── files
│ │ └── .htaccess
├── misc
│ ├── xml.png
│ ├── blog.png
│ ├── feed.png
│ ├── tree.png
│ ├── favicon.ico
│ ├── grippie.png
│ ├── progress.gif
│ ├── throbber.gif
│ ├── arrow-asc.png
│ ├── arrow-desc.png
│ ├── draggable.png
│ ├── druplicon.png
│ ├── forum-hot.png
│ ├── forum-new.png
│ ├── menu-leaf.png
│ ├── tree-bottom.png
│ ├── watchdog-ok.png
│ ├── forum-closed.png
│ ├── forum-default.png
│ ├── forum-hot-new.png
│ ├── forum-sticky.png
│ ├── menu-expanded.png
│ ├── print-rtl.css
│ ├── farbtastic
│ │ ├── mask.png
│ │ ├── wheel.png
│ │ └── marker.png
│ ├── menu-collapsed.png
│ ├── watchdog-error.png
│ ├── watchdog-warning.png
│ ├── menu-collapsed-rtl.png
│ ├── powered-blue-80x15.png
│ ├── powered-blue-88x31.png
│ ├── powered-gray-80x15.png
│ ├── powered-gray-88x31.png
│ ├── powered-black-135x42.png
│ ├── powered-black-80x15.png
│ ├── powered-black-88x31.png
│ ├── powered-blue-135x42.png
│ ├── powered-gray-135x42.png
│ ├── form.js
│ └── print.css
├── scripts
│ ├── cron-curl.sh
│ └── cron-lynx.sh
├── modules
│ ├── comment
│ │ ├── comment-rtl.css
│ │ ├── comment.css
│ │ └── comment.info
│ ├── aggregator
│ │ ├── aggregator-rtl.css
│ │ └── aggregator.info
│ ├── openid
│ │ ├── login-bg.png
│ │ └── openid.info
│ ├── color
│ │ ├── images
│ │ │ ├── hook.png
│ │ │ ├── lock.png
│ │ │ └── hook-rtl.png
│ │ └── color.info
│ ├── locale
│ │ ├── locale.css
│ │ └── locale.info
│ ├── system
│ │ ├── defaults-rtl.css
│ │ ├── system.info
│ │ └── system-menus-rtl.css
│ ├── tracker
│ │ ├── tracker.css
│ │ └── tracker.info
│ ├── node
│ │ ├── node-rtl.css
│ │ └── node.info
│ ├── book
│ │ ├── book-rtl.css
│ │ └── book.info
│ ├── dblog
│ │ ├── dblog-rtl.css
│ │ └── dblog.info
│ ├── help
│ │ ├── help.css
│ │ ├── help-rtl.css
│ │ └── help.info
│ ├── poll
│ │ ├── poll-rtl.css
│ │ └── poll.info
│ ├── search
│ │ ├── search-rtl.css
│ │ └── search.info
│ ├── profile
│ │ ├── profile.css
│ │ └── profile.info
│ ├── path
│ │ └── path.info
│ ├── taxonomy
│ │ ├── taxonomy.css
│ │ └── taxonomy.info
│ ├── syslog
│ │ ├── syslog.info
│ │ └── syslog.install
│ ├── user
│ │ ├── user.info
│ │ └── user-rtl.css
│ ├── ping
│ │ └── ping.info
│ ├── php
│ │ └── php.info
│ ├── statistics
│ │ └── statistics.info
│ ├── upload
│ │ └── upload.info
│ ├── menu
│ │ └── menu.info
│ ├── block
│ │ ├── block.info
│ │ └── block.css
│ ├── filter
│ │ └── filter.info
│ ├── blog
│ │ └── blog.info
│ ├── contact
│ │ └── contact.info
│ ├── throttle
│ │ └── throttle.info
│ ├── blogapi
│ │ └── blogapi.info
│ ├── trigger
│ │ └── trigger.info
│ ├── update
│ │ └── update.info
│ ├── forum
│ │ ├── forum.info
│ │ └── forum-rtl.css
│ └── translation
│ │ └── translation.info
├── themes
│ ├── chameleon
│ │ ├── logo.png
│ │ ├── background.png
│ │ ├── marvin
│ │ │ ├── logo.png
│ │ │ ├── bullet.png
│ │ │ ├── screenshot.png
│ │ │ ├── druplicon-watermark.png
│ │ │ ├── druplicon-watermark-rtl.png
│ │ │ └── marvin.info
│ │ ├── screenshot.png
│ │ └── common-rtl.css
│ ├── garland
│ │ ├── logo.png
│ │ ├── color
│ │ │ ├── base.png
│ │ │ └── preview.png
│ │ ├── images
│ │ │ ├── body.png
│ │ │ ├── bg-bar.png
│ │ │ ├── bg-tab.png
│ │ │ ├── menu-leaf.gif
│ │ │ ├── task-list.png
│ │ │ ├── bg-content.png
│ │ │ ├── bg-bar-white.png
│ │ │ ├── bg-navigation.png
│ │ │ ├── gradient-inner.png
│ │ │ ├── menu-collapsed.gif
│ │ │ ├── menu-expanded.gif
│ │ │ ├── bg-content-left.png
│ │ │ ├── bg-content-right.png
│ │ │ ├── bg-navigation-item.png
│ │ │ ├── menu-collapsed-rtl.gif
│ │ │ └── bg-navigation-item-hover.png
│ │ ├── screenshot.png
│ │ ├── minnelli
│ │ │ ├── logo.png
│ │ │ ├── color
│ │ │ │ ├── base.png
│ │ │ │ └── preview.png
│ │ │ ├── screenshot.png
│ │ │ ├── minnelli.info
│ │ │ └── minnelli.css
│ │ ├── block.tpl.php
│ │ └── garland.info
│ ├── bluemarine
│ │ ├── logo.png
│ │ ├── screenshot.png
│ │ ├── box.tpl.php
│ │ ├── block.tpl.php
│ │ └── bluemarine.info
│ └── pushbutton
│ │ ├── logo.png
│ │ ├── arrow-up.png
│ │ ├── header-a.jpg
│ │ ├── header-b.jpg
│ │ ├── header-c.png
│ │ ├── tabs-off.png
│ │ ├── tabs-on.png
│ │ ├── arrow-next.png
│ │ ├── arrow-prev.png
│ │ ├── background.png
│ │ ├── forum-link.png
│ │ ├── icon-block.png
│ │ ├── logo-hover.jpg
│ │ ├── screenshot.png
│ │ ├── header-b-rtl.jpg
│ │ ├── icon-comment.png
│ │ ├── logo-active.jpg
│ │ ├── tabs-off-rtl.png
│ │ ├── tabs-on-rtl.png
│ │ ├── arrow-next-rtl.png
│ │ ├── arrow-prev-rtl.png
│ │ ├── arrow-up-hover.png
│ │ ├── forum-container.jpg
│ │ ├── forum-link-rtl.png
│ │ ├── icon-block-rtl.png
│ │ ├── logo-active-rtl.jpg
│ │ ├── logo-background.jpg
│ │ ├── logo-hover-rtl.jpg
│ │ ├── tabs-option-off.png
│ │ ├── tabs-option-on.png
│ │ ├── arrow-next-hover.png
│ │ ├── arrow-next-visited.png
│ │ ├── arrow-prev-hover.png
│ │ ├── arrow-prev-visited.png
│ │ ├── arrow-up-visited.png
│ │ ├── icon-comment-rtl.png
│ │ ├── tabs-option-hover.png
│ │ ├── arrow-next-hover-rtl.png
│ │ ├── arrow-prev-hover-rtl.png
│ │ ├── forum-container-rtl.jpg
│ │ ├── logo-background-rtl.jpg
│ │ ├── tabs-option-off-rtl.png
│ │ ├── arrow-next-visited-rtl.png
│ │ ├── arrow-prev-visited-rtl.png
│ │ ├── tabs-option-hover-rtl.png
│ │ ├── box.tpl.php
│ │ ├── block.tpl.php
│ │ └── pushbutton.info
├── .buildpath
├── cron.php
└── xmlrpc.php
├── ckandrupal.sql
├── ckanext-drupal
└── ckanext
│ ├── __init__.py
│ └── drupal
│ └── __init__.py
├── install_ckandrupal.txt
└── .pydevproject
/ckan/ckan/config/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ckan/ckan/lib/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ckan/ckan/controllers/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ckan/ckan/migration/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ckan/ckan/tests/forms/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ckan/ckan/tests/lib/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ckan/ckan/tests/misc/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ckan/doc/.static/.place-holder:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ckan/doc/.templates/.place-holder:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ckan/doc/README.rst:
--------------------------------------------------------------------------------
1 | ../README.txt
--------------------------------------------------------------------------------
/ckan/who.ini:
--------------------------------------------------------------------------------
1 | ckan/config/who.ini
--------------------------------------------------------------------------------
/ckan/ckan/logic/action/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ckan/ckan/tests/functional/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ckan/ckan/tests/models/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ckan/doc/CHANGELOG.rst:
--------------------------------------------------------------------------------
1 | ../CHANGELOG.txt
--------------------------------------------------------------------------------
/ckan/ckan/migration/versions/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ckan/ckan/tests/functional/api/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ckan/ckan/tests/functional/api/model/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/help/ajax.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/VERSION:
--------------------------------------------------------------------------------
1 | 0.2a
--------------------------------------------------------------------------------
/ckan/ckan/templates/authorization_group/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/help/context.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/.gitignore:
--------------------------------------------------------------------------------
1 | FirePHPCore*
--------------------------------------------------------------------------------
/ckan/ckan/lib/navl/__init__.py:
--------------------------------------------------------------------------------
1 | __licence__ = 'MIT'
2 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/access/node.inc:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/install_profile_api/core/book.inc:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ckan/ckan/migration/versions/021_postgres_downgrade.sql:
--------------------------------------------------------------------------------
1 | # NOP
--------------------------------------------------------------------------------
/ckan/ckan/migration/versions/021_postgresql_downgrade.sql:
--------------------------------------------------------------------------------
1 | # NOP
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/stylizer/help/base-styles.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/stylizer/help/stylizer.help.ini:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/install_profile_api/contrib/diff.inc:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/install_profile_api/contrib/token.inc:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/install_profile_api/core/search.inc:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/stylizer/help/base-style-types.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/install_profile_api/contrib/freelinking.inc:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/install_profile_api/contrib/pathauto.inc:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/install_profile_api/contrib/wikitools.inc:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/install_profile_api/core/aggregator.inc:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/install_profile_api/core/statistics.inc:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ckan/ckan/public/images/ckan-features.png:
--------------------------------------------------------------------------------
1 | ../../../doc/ckan-features.png
--------------------------------------------------------------------------------
/ckan/ckan/tests/ckantestplugin/ckantestplugin.egg-info/not-zip-safe:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/views_content/views_content.admin.inc:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ckan/ckan/tests/ckantestplugin/ckantestplugin.egg-info/dependency_links.txt:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/ckan/ckan/tests/ckantestplugin/ckantestplugin.egg-info/top_level.txt:
--------------------------------------------------------------------------------
1 | ckantestplugin
2 |
--------------------------------------------------------------------------------
/ckan/doc/api/title.rst.inc:
--------------------------------------------------------------------------------
1 | |site| |api| |version|
2 | ======================
3 |
4 |
--------------------------------------------------------------------------------
/ckan/ckan/templates/package/resources.html:
--------------------------------------------------------------------------------
1 |
2 | Someresources
3 |
4 |
5 |
--------------------------------------------------------------------------------
/ckan/doc/api/purpose.rst.inc:
--------------------------------------------------------------------------------
1 | This document describes |version| of the |main_doc|.
2 |
3 |
--------------------------------------------------------------------------------
/drupal/misc/xml.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/xml.png
--------------------------------------------------------------------------------
/drupal/misc/blog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/blog.png
--------------------------------------------------------------------------------
/drupal/misc/feed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/feed.png
--------------------------------------------------------------------------------
/drupal/misc/tree.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/tree.png
--------------------------------------------------------------------------------
/ckan/ckan/templates/__init__.py:
--------------------------------------------------------------------------------
1 | # empty file needed for pylons to find templates in this directory
2 |
--------------------------------------------------------------------------------
/ckan/ckan/templates/home/__init__.py:
--------------------------------------------------------------------------------
1 | # empty file needed for pylons to find templates in this directory
--------------------------------------------------------------------------------
/ckan/ckan/tests/ckantestplugin/setup.cfg:
--------------------------------------------------------------------------------
1 | [egg_info]
2 | tag_build = dev
3 | tag_svn_revision = true
4 |
--------------------------------------------------------------------------------
/ckan/doc/ckan-vision.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/doc/ckan-vision.png
--------------------------------------------------------------------------------
/drupal/misc/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/favicon.ico
--------------------------------------------------------------------------------
/drupal/misc/grippie.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/grippie.png
--------------------------------------------------------------------------------
/drupal/misc/progress.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/progress.gif
--------------------------------------------------------------------------------
/drupal/misc/throbber.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/throbber.gif
--------------------------------------------------------------------------------
/ckan/ckan/plugins/__init__.py:
--------------------------------------------------------------------------------
1 | from ckan.plugins.core import *
2 | from ckan.plugins.interfaces import *
3 |
--------------------------------------------------------------------------------
/ckan/ckan/templates/group/__init__.py:
--------------------------------------------------------------------------------
1 | # empty file needed for pylons to find templates in this directory
2 |
--------------------------------------------------------------------------------
/ckan/ckan/templates/rest/__init__.py:
--------------------------------------------------------------------------------
1 | # empty file needed for pylons to find templates in this directory
2 |
--------------------------------------------------------------------------------
/ckan/ckan/templates/tag/__init__.py:
--------------------------------------------------------------------------------
1 | # empty file needed for pylons to find templates in this directory
2 |
--------------------------------------------------------------------------------
/ckan/ckan/templates/user/__init__.py:
--------------------------------------------------------------------------------
1 | # empty file needed for pylons to find templates in this directory
2 |
--------------------------------------------------------------------------------
/ckan/doc/ckan-features.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/doc/ckan-features.png
--------------------------------------------------------------------------------
/drupal/misc/arrow-asc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/arrow-asc.png
--------------------------------------------------------------------------------
/drupal/misc/arrow-desc.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/arrow-desc.png
--------------------------------------------------------------------------------
/drupal/misc/draggable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/draggable.png
--------------------------------------------------------------------------------
/drupal/misc/druplicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/druplicon.png
--------------------------------------------------------------------------------
/drupal/misc/forum-hot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/forum-hot.png
--------------------------------------------------------------------------------
/drupal/misc/forum-new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/forum-new.png
--------------------------------------------------------------------------------
/drupal/misc/menu-leaf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/menu-leaf.png
--------------------------------------------------------------------------------
/drupal/misc/tree-bottom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/tree-bottom.png
--------------------------------------------------------------------------------
/drupal/misc/watchdog-ok.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/watchdog-ok.png
--------------------------------------------------------------------------------
/drupal/scripts/cron-curl.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | curl --silent --compressed http://example.com/cron.php
4 |
--------------------------------------------------------------------------------
/ckan/ckan/templates/importer/__init__.py:
--------------------------------------------------------------------------------
1 | # empty file needed for pylons to find templates in this directory
2 |
--------------------------------------------------------------------------------
/ckan/ckan/templates/package/__init__.py:
--------------------------------------------------------------------------------
1 | # empty file needed for pylons to find templates in this directory
2 |
--------------------------------------------------------------------------------
/ckan/ckan/templates/revision/__init__.py:
--------------------------------------------------------------------------------
1 | # empty file needed for pylons to find templates in this directory
2 |
--------------------------------------------------------------------------------
/drupal/misc/forum-closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/forum-closed.png
--------------------------------------------------------------------------------
/drupal/misc/forum-default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/forum-default.png
--------------------------------------------------------------------------------
/drupal/misc/forum-hot-new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/forum-hot-new.png
--------------------------------------------------------------------------------
/drupal/misc/forum-sticky.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/forum-sticky.png
--------------------------------------------------------------------------------
/drupal/misc/menu-expanded.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/menu-expanded.png
--------------------------------------------------------------------------------
/drupal/misc/print-rtl.css:
--------------------------------------------------------------------------------
1 |
2 | body {
3 | direction: rtl;
4 | }
5 | th {
6 | text-align: right;
7 | }
8 |
--------------------------------------------------------------------------------
/drupal/modules/comment/comment-rtl.css:
--------------------------------------------------------------------------------
1 |
2 | .indented {
3 | margin-left: 0;
4 | margin-right: 25px;
5 | }
6 |
--------------------------------------------------------------------------------
/ckan/ckan/public/images/dlbg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/dlbg.png
--------------------------------------------------------------------------------
/ckan/doc/ckan_form_guidance.doc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/doc/ckan_form_guidance.doc
--------------------------------------------------------------------------------
/drupal/misc/farbtastic/mask.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/farbtastic/mask.png
--------------------------------------------------------------------------------
/drupal/misc/farbtastic/wheel.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/farbtastic/wheel.png
--------------------------------------------------------------------------------
/drupal/misc/menu-collapsed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/menu-collapsed.png
--------------------------------------------------------------------------------
/drupal/misc/watchdog-error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/watchdog-error.png
--------------------------------------------------------------------------------
/drupal/misc/watchdog-warning.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/watchdog-warning.png
--------------------------------------------------------------------------------
/drupal/modules/aggregator/aggregator-rtl.css:
--------------------------------------------------------------------------------
1 |
2 | #aggregator .feed-source .feed-icon {
3 | float: left;
4 | }
5 |
--------------------------------------------------------------------------------
/drupal/scripts/cron-lynx.sh:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 |
3 | /usr/bin/lynx -source http://example.com/cron.php > /dev/null 2>&1
4 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/css/views-tabs.css:
--------------------------------------------------------------------------------
1 | /* $Id */
2 |
3 | .ui-tabs-hide {
4 | display: none;
5 | }
6 |
--------------------------------------------------------------------------------
/drupal/themes/chameleon/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/chameleon/logo.png
--------------------------------------------------------------------------------
/drupal/themes/garland/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/garland/logo.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/stars.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/stars.png
--------------------------------------------------------------------------------
/ckan/doc/api/bottom.rst.inc:
--------------------------------------------------------------------------------
1 | .. include:: keys.rst.inc
2 | .. include:: status.rst.inc
3 | .. include:: jsonp.rst.inc
4 |
--------------------------------------------------------------------------------
/drupal/misc/farbtastic/marker.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/farbtastic/marker.png
--------------------------------------------------------------------------------
/drupal/misc/menu-collapsed-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/menu-collapsed-rtl.png
--------------------------------------------------------------------------------
/drupal/misc/powered-blue-80x15.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/powered-blue-80x15.png
--------------------------------------------------------------------------------
/drupal/misc/powered-blue-88x31.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/powered-blue-88x31.png
--------------------------------------------------------------------------------
/drupal/misc/powered-gray-80x15.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/powered-gray-80x15.png
--------------------------------------------------------------------------------
/drupal/misc/powered-gray-88x31.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/powered-gray-88x31.png
--------------------------------------------------------------------------------
/drupal/modules/openid/login-bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/modules/openid/login-bg.png
--------------------------------------------------------------------------------
/drupal/themes/bluemarine/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/bluemarine/logo.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/logo.png
--------------------------------------------------------------------------------
/ckan/ckan/i18n/ca/LC_MESSAGES/ckan.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/i18n/ca/LC_MESSAGES/ckan.mo
--------------------------------------------------------------------------------
/ckan/ckan/i18n/de/LC_MESSAGES/ckan.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/i18n/de/LC_MESSAGES/ckan.mo
--------------------------------------------------------------------------------
/ckan/ckan/i18n/el/LC_MESSAGES/ckan.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/i18n/el/LC_MESSAGES/ckan.mo
--------------------------------------------------------------------------------
/ckan/ckan/i18n/es/LC_MESSAGES/ckan.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/i18n/es/LC_MESSAGES/ckan.mo
--------------------------------------------------------------------------------
/ckan/ckan/i18n/fi/LC_MESSAGES/ckan.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/i18n/fi/LC_MESSAGES/ckan.mo
--------------------------------------------------------------------------------
/ckan/ckan/i18n/fr/LC_MESSAGES/ckan.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/i18n/fr/LC_MESSAGES/ckan.mo
--------------------------------------------------------------------------------
/ckan/ckan/i18n/hu/LC_MESSAGES/ckan.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/i18n/hu/LC_MESSAGES/ckan.mo
--------------------------------------------------------------------------------
/ckan/ckan/i18n/it/LC_MESSAGES/ckan.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/i18n/it/LC_MESSAGES/ckan.mo
--------------------------------------------------------------------------------
/ckan/ckan/i18n/lt/LC_MESSAGES/ckan.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/i18n/lt/LC_MESSAGES/ckan.mo
--------------------------------------------------------------------------------
/ckan/ckan/i18n/nl/LC_MESSAGES/ckan.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/i18n/nl/LC_MESSAGES/ckan.mo
--------------------------------------------------------------------------------
/ckan/ckan/i18n/no/LC_MESSAGES/ckan.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/i18n/no/LC_MESSAGES/ckan.mo
--------------------------------------------------------------------------------
/ckan/ckan/i18n/pl/LC_MESSAGES/ckan.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/i18n/pl/LC_MESSAGES/ckan.mo
--------------------------------------------------------------------------------
/ckan/ckan/i18n/ro/LC_MESSAGES/ckan.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/i18n/ro/LC_MESSAGES/ckan.mo
--------------------------------------------------------------------------------
/ckan/ckan/i18n/ru/LC_MESSAGES/ckan.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/i18n/ru/LC_MESSAGES/ckan.mo
--------------------------------------------------------------------------------
/ckan/ckan/i18n/sl/LC_MESSAGES/ckan.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/i18n/sl/LC_MESSAGES/ckan.mo
--------------------------------------------------------------------------------
/ckan/ckan/i18n/sq/LC_MESSAGES/ckan.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/i18n/sq/LC_MESSAGES/ckan.mo
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/add.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/key.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/key.png
--------------------------------------------------------------------------------
/drupal/misc/powered-black-135x42.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/powered-black-135x42.png
--------------------------------------------------------------------------------
/drupal/misc/powered-black-80x15.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/powered-black-80x15.png
--------------------------------------------------------------------------------
/drupal/misc/powered-black-88x31.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/powered-black-88x31.png
--------------------------------------------------------------------------------
/drupal/misc/powered-blue-135x42.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/powered-blue-135x42.png
--------------------------------------------------------------------------------
/drupal/misc/powered-gray-135x42.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/misc/powered-gray-135x42.png
--------------------------------------------------------------------------------
/drupal/modules/color/images/hook.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/modules/color/images/hook.png
--------------------------------------------------------------------------------
/drupal/modules/color/images/lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/modules/color/images/lock.png
--------------------------------------------------------------------------------
/drupal/themes/garland/color/base.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/garland/color/base.png
--------------------------------------------------------------------------------
/drupal/themes/garland/images/body.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/garland/images/body.png
--------------------------------------------------------------------------------
/drupal/themes/garland/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/garland/screenshot.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/arrow-up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/arrow-up.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/header-a.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/header-a.jpg
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/header-b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/header-b.jpg
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/header-c.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/header-c.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/tabs-off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/tabs-off.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/tabs-on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/tabs-on.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/door.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/door.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/error.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/error.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/group.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/group.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/lock.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/note.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/note.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/user.png
--------------------------------------------------------------------------------
/ckan/ckan/templates/home/language.js:
--------------------------------------------------------------------------------
1 | var MSG_MORE_HELP = '${_("More »")}';
2 | var MSG_ADD_ROW = '${_("Add row to table")}';
--------------------------------------------------------------------------------
/drupal/modules/locale/locale.css:
--------------------------------------------------------------------------------
1 |
2 | .locale-untranslated {
3 | font-style: normal;
4 | text-decoration: line-through;
5 | }
6 |
--------------------------------------------------------------------------------
/drupal/modules/system/defaults-rtl.css:
--------------------------------------------------------------------------------
1 |
2 | th {
3 | text-align: right;
4 | padding-right: 0;
5 | padding-left: 1em;
6 | }
7 |
--------------------------------------------------------------------------------
/drupal/themes/bluemarine/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/bluemarine/screenshot.png
--------------------------------------------------------------------------------
/drupal/themes/chameleon/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/chameleon/background.png
--------------------------------------------------------------------------------
/drupal/themes/chameleon/marvin/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/chameleon/marvin/logo.png
--------------------------------------------------------------------------------
/drupal/themes/chameleon/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/chameleon/screenshot.png
--------------------------------------------------------------------------------
/drupal/themes/garland/color/preview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/garland/color/preview.png
--------------------------------------------------------------------------------
/drupal/themes/garland/images/bg-bar.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/garland/images/bg-bar.png
--------------------------------------------------------------------------------
/drupal/themes/garland/images/bg-tab.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/garland/images/bg-tab.png
--------------------------------------------------------------------------------
/drupal/themes/garland/minnelli/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/garland/minnelli/logo.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/arrow-next.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/arrow-next.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/arrow-prev.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/arrow-prev.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/background.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/forum-link.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/forum-link.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/icon-block.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/icon-block.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/logo-hover.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/logo-hover.jpg
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/screenshot.png
--------------------------------------------------------------------------------
/ckan/ckan/i18n/pt_BR/LC_MESSAGES/ckan.mo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/i18n/pt_BR/LC_MESSAGES/ckan.mo
--------------------------------------------------------------------------------
/ckan/ckan/public/css/ie.css:
--------------------------------------------------------------------------------
1 | .clearfix {
2 | zoom: 1; /* triggers hasLayout */
3 | display: block; /* resets display for IE/Win */
4 | }
--------------------------------------------------------------------------------
/ckan/ckan/public/images/button-shadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/button-shadow.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/arrow_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/arrow_up.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/comments.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/comments.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/openid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/openid.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/package.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/package.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/remove.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/remove.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/tag_blue.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/tag_blue.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/unfilter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/unfilter.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/world_go.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/world_go.png
--------------------------------------------------------------------------------
/drupal/modules/color/images/hook-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/modules/color/images/hook-rtl.png
--------------------------------------------------------------------------------
/drupal/sites/default/files/.htaccess:
--------------------------------------------------------------------------------
1 | SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
2 | Options None
3 | Options +FollowSymLinks
--------------------------------------------------------------------------------
/drupal/themes/chameleon/marvin/bullet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/chameleon/marvin/bullet.png
--------------------------------------------------------------------------------
/drupal/themes/garland/images/menu-leaf.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/garland/images/menu-leaf.gif
--------------------------------------------------------------------------------
/drupal/themes/garland/images/task-list.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/garland/images/task-list.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/header-b-rtl.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/header-b-rtl.jpg
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/icon-comment.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/icon-comment.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/logo-active.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/logo-active.jpg
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/tabs-off-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/tabs-off-rtl.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/tabs-on-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/tabs-on-rtl.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/bullet_separator.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/bullet_separator.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/arrow_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/arrow_down.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/atom_feed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/atom_feed.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/door_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/door_grey.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/door_open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/door_open.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/drive_web.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/drive_web.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/group_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/group_add.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/group_edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/group_edit.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/magnifier.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/magnifier.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/user_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/user_grey.png
--------------------------------------------------------------------------------
/drupal/modules/tracker/tracker.css:
--------------------------------------------------------------------------------
1 |
2 | #tracker td.replies {
3 | text-align: center;
4 | }
5 | #tracker table {
6 | width: 100%;
7 | }
8 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/help/theme.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/cck/help/theme.png
--------------------------------------------------------------------------------
/drupal/themes/garland/images/bg-content.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/garland/images/bg-content.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/arrow-next-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/arrow-next-rtl.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/arrow-prev-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/arrow-prev-rtl.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/arrow-up-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/arrow-up-hover.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/forum-container.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/forum-container.jpg
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/forum-link-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/forum-link-rtl.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/icon-block-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/icon-block-rtl.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/logo-active-rtl.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/logo-active-rtl.jpg
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/logo-background.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/logo-background.jpg
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/logo-hover-rtl.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/logo-hover-rtl.jpg
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/tabs-option-off.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/tabs-option-off.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/tabs-option-on.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/tabs-option-on.png
--------------------------------------------------------------------------------
/ckan/ckan/exceptions.py:
--------------------------------------------------------------------------------
1 | class CkanException(Exception):
2 | pass
3 |
4 | class EmptyRevisionException(CkanException):
5 | pass
6 |
7 |
--------------------------------------------------------------------------------
/ckan/ckan/migration/manage.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env python
2 | from migrate.versioning.shell import main
3 |
4 | main(repository='ckan/migration')
5 |
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/package_edit.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/package_edit.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/advanced_help/help.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/advanced_help/help.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/help/add-new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/cck/help/add-new.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/help/drag-new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/cck/help/drag-new.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/help/draggable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/cck/help/draggable.png
--------------------------------------------------------------------------------
/drupal/themes/chameleon/marvin/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/chameleon/marvin/screenshot.png
--------------------------------------------------------------------------------
/drupal/themes/garland/images/bg-bar-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/garland/images/bg-bar-white.png
--------------------------------------------------------------------------------
/drupal/themes/garland/images/bg-navigation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/garland/images/bg-navigation.png
--------------------------------------------------------------------------------
/drupal/themes/garland/images/gradient-inner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/garland/images/gradient-inner.png
--------------------------------------------------------------------------------
/drupal/themes/garland/images/menu-collapsed.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/garland/images/menu-collapsed.gif
--------------------------------------------------------------------------------
/drupal/themes/garland/images/menu-expanded.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/garland/images/menu-expanded.gif
--------------------------------------------------------------------------------
/drupal/themes/garland/minnelli/color/base.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/garland/minnelli/color/base.png
--------------------------------------------------------------------------------
/drupal/themes/garland/minnelli/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/garland/minnelli/screenshot.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/arrow-next-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/arrow-next-hover.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/arrow-next-visited.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/arrow-next-visited.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/arrow-prev-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/arrow-prev-hover.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/arrow-prev-visited.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/arrow-prev-visited.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/arrow-up-visited.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/arrow-up-visited.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/icon-comment-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/icon-comment-rtl.png
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/tabs-option-hover.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/themes/pushbutton/tabs-option-hover.png
--------------------------------------------------------------------------------
/ckan/ckan/migration/README:
--------------------------------------------------------------------------------
1 | This is a database migration repository.
2 |
3 | More information at
4 | http://code.google.com/p/sqlalchemy-migrate/
5 |
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/arrow_down_grey.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/arrow_down_grey.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/page_white_json.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/page_white_json.png
--------------------------------------------------------------------------------
/ckan/ckan/public/images/icons/page_white_rdf.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/images/icons/page_white_rdf.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/help/drag-groups.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/cck/help/drag-groups.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ckan/modules/feature_publishers/feature_publishers.module:
--------------------------------------------------------------------------------
1 | .fieldset-wrapper > .form-item {
2 | float: left;
3 | margin-right: 20px;
4 | }
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/style-breakdown.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/style-breakdown.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views2-addaview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views2-addaview.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views2-newview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views2-newview.png
--------------------------------------------------------------------------------
/ckan/ckan/public/scripts/openid-selector/images/livejournal.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/scripts/openid-selector/images/livejournal.ico
--------------------------------------------------------------------------------
/ckan/doc/api/model_resources.rst.inc:
--------------------------------------------------------------------------------
1 | Model Resources
2 | ~~~~~~~~~~~~~~~
3 |
4 | Here are the resources of the Model API.
5 |
6 | .. include:: model_resources_table.rst.inc
7 |
8 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/images/collapsible-collapsed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/images/collapsible-collapsed.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/images/collapsible-expanded.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/images/collapsible-expanded.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/Class.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/Class.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/Index.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/Index.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/Lplus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/Lplus.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/Page.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/Page.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/Tplus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/Tplus.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/blank.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/blank.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/empty.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/empty.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/file.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/minus.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/minus.gif
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/plus.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/plus.gif
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/css/views-rtl.css:
--------------------------------------------------------------------------------
1 |
2 | .views-exposed-form .views-exposed-widget {
3 | float: right; /* RTL */
4 | padding: .5em 1em 0 0; /* RTL */
5 | }
6 |
7 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/overview-ui-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/overview-ui-large.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/overview-ui-small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/overview-ui-small.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views2-adddisplay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views2-adddisplay.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views2-addfields.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views2-addfields.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views2-tablestyle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views2-tablestyle.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/updating.html:
--------------------------------------------------------------------------------
1 |
2 | TODO: This document needs to be fleshed out.
3 |
4 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/help/fields.html:
--------------------------------------------------------------------------------
1 | The Content Construction Kit (CCK) is composed of numerous field and widget modules that can be used to add fields to any content type.
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/translations/help/de/add-new-field.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/cck/translations/help/de/add-new-field.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/translations/help/de/add-new-group.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/cck/translations/help/de/add-new-group.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/translations/help/de/drag-groups.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/cck/translations/help/de/drag-groups.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/Constant.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/Constant.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/Function.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/Function.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/Global.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/Global.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/Lminus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/Lminus.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/Method.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/Method.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/Tminus.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/Tminus.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/Variable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/Variable.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/folder.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/package.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/package.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/tutorial.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/tutorial.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/skins/schablon.com/dotted.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/skins/schablon.com/dotted.gif
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/skins/schablon.com/empty.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/skins/schablon.com/empty.gif
--------------------------------------------------------------------------------
/drupal/sites/all/modules/filefield/icons/x-office-presentation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/filefield/icons/x-office-presentation.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/filefield/icons/x-office-spreadsheet.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/filefield/icons/x-office-spreadsheet.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views1-admin-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views1-admin-large.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views2-addfieldsajax.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views2-addfieldsajax.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views2-admin-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views2-admin-large.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views2-fieldspreview.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views2-fieldspreview.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views2-newview-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views2-newview-large.png
--------------------------------------------------------------------------------
/ckan/ckan/public/scripts/openid-selector/images/openid-inputicon.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/ckan/ckan/public/scripts/openid-selector/images/openid-inputicon.gif
--------------------------------------------------------------------------------
/ckandrupal.sql:
--------------------------------------------------------------------------------
1 | CREATE DATABASE ckandrupal;
2 | BEGIN
3 | CREATE ROLE ckandrupal with PASSWORD 'ckandrupal' LOGIN;
4 | GRANT ALL PRIVILEGES ON DATABASE ckandrupal to ckandrupal;
5 | COMMIT
6 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/ctools_ajax_sample/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/ctools_ajax_sample/images/loading.gif
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/page_manager/images/arrow-active.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/page_manager/images/arrow-active.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/page_manager/images/locked-other.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/page_manager/images/locked-other.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/Class_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/Class_logo.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/Destructor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/Destructor.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/Page_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/Page_logo.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/up_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/up_button.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/skins/schablon.com/collapsed.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/skins/schablon.com/collapsed.gif
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/skins/schablon.com/expanded.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/skins/schablon.com/expanded.gif
--------------------------------------------------------------------------------
/drupal/sites/all/modules/filefield/icons/application-octet-stream.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/filefield/icons/application-octet-stream.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/filefield/icons/application-x-executable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/filefield/icons/application-x-executable.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/style-breakdown-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/style-breakdown-large.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views1-changeviewtype.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views1-changeviewtype.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views2-addaview-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views2-addaview-large.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views2-addfields-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views2-addfields-large.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views2-rearrangefields.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views2-rearrangefields.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/translations/help/de/add-existing-field.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/cck/translations/help/de/add-existing-field.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/translations/help/de/group-node-display.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/cck/translations/help/de/group-node-display.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/page_manager/help/variants.html:
--------------------------------------------------------------------------------
1 |
2 | Please visit http://drupal.org/node/528078 to help provide this documentation page.
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/form/icon_form.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/form/icon_form.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/node/icon_node.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/node/icon_node.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/AbstractClass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/AbstractClass.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/Constructor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/Constructor.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/PrivateClass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/PrivateClass.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/PrivateMethod.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/PrivateMethod.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/class_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/class_folder.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/next_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/next_button.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/features/tests/features_test.module:
--------------------------------------------------------------------------------
1 |
2 | A feed display allows you to attach an RSS feed to a view.
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/node-term_node-term_data.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/node-term_node-term_data.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views2-adddisplay-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views2-adddisplay-large.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views2-changedisplaystyle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views2-changedisplaystyle.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views2-tablestyle-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views2-tablestyle-large.png
--------------------------------------------------------------------------------
/ckan/doc/api/3/search/index.rst.inc:
--------------------------------------------------------------------------------
1 | Search API
2 | ---------------
3 |
4 | .. include:: resources.rst.inc
5 |
6 | .. include:: methods.rst.inc
7 |
8 | .. include:: formats.rst.inc
9 |
10 |
--------------------------------------------------------------------------------
/ckan/doc/api/search/index.rst.inc:
--------------------------------------------------------------------------------
1 | Search API
2 | ---------------
3 |
4 | .. include:: resources.rst.inc
5 |
6 | .. include:: methods.rst.inc
7 |
8 | .. include:: formats.rst.inc
9 |
10 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/advanced_help/help_example/help/180px-Lerdorf.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/advanced_help/help_example/help/180px-Lerdorf.jpg
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/translations/help/de/group-node-edit-form.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/cck/translations/help/de/group-node-edit-form.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/ctools_ajax_sample/images/ajax-loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/ctools_ajax_sample/images/ajax-loader.gif
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/page_manager/help/custom-pages.html:
--------------------------------------------------------------------------------
1 |
2 | Please visit http://drupal.org/node/528050 to help provide this documentation page.
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/AbstractMethod.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/AbstractMethod.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/PrivateVariable.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/PrivateVariable.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/function_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/function_folder.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/package_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/package_folder.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/previous_button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/previous_button.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/tutorial_folder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/tutorial_folder.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views1-changeviewtype-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views1-changeviewtype-large.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views2-addfieldsajax-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views2-addfieldsajax-large.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views2-fieldspreview-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views2-fieldspreview-large.png
--------------------------------------------------------------------------------
/drupal/.buildpath:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/includes/panels/content_types/icon_cck_field.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/cck/includes/panels/content_types/icon_cck_field.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/ctools_ajax_sample/images/loading-large.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/ctools_ajax_sample/images/loading-large.gif
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/ctools_ajax_sample/images/popups-border.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/ctools_ajax_sample/images/popups-border.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/page_manager/help/custom-pages-access.html:
--------------------------------------------------------------------------------
1 |
2 | Please visit http://drupal.org/node/528072 to help provide this documentation page.
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/page_manager/help/custom-pages-menu.html:
--------------------------------------------------------------------------------
1 |
2 | Please visit http://drupal.org/node/528078 to help provide this documentation page.
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/search/icon_search.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/search/icon_search.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/AbstractClass_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/AbstractClass_logo.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/PrivateClass_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/PrivateClass_logo.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/private_class_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/private_class_logo.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/node-term_node-term_data-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/node-term_node-term_data-large.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views2-rearrangefields-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views2-rearrangefields-large.png
--------------------------------------------------------------------------------
/ckan/ckan/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow: /package/rate/
3 | Disallow: /revision/
4 | Disallow: /package/*/history
5 | Disallow: /api/
6 |
7 | User-Agent: *
8 | Crawl-Delay: 10
9 |
10 |
--------------------------------------------------------------------------------
/drupal/modules/help/help.css:
--------------------------------------------------------------------------------
1 |
2 | .help-items {
3 | float: left; /* LTR */
4 | width: 22%;
5 | padding-right: 3%; /* LTR */
6 | }
7 | .help-items-last {
8 | padding-right: 0; /* LTR */
9 | }
10 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/autoload/autoloadtest/autoloadtest.classes.inc:
--------------------------------------------------------------------------------
1 | http://drupal.org/node/528058 to help provide this documentation page.
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/page_manager/help/getting-started-create.html:
--------------------------------------------------------------------------------
1 |
2 | Please visit http://drupal.org/node/528038 to help provide this documentation page.
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/page_manager/help/getting-started-members.html:
--------------------------------------------------------------------------------
1 |
2 | Please visit http://drupal.org/node/528040 to help provide this documentation page.
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/page_manager/help/getting-started-page-list.html:
--------------------------------------------------------------------------------
1 |
2 | Please visit http://drupal.org/node/528036 to help provide this documentation page.
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_block.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_block.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_page.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_page.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/contact/icon_contact.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/contact/icon_contact.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/AbstractPrivateClass.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/AbstractPrivateClass.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/next_button_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/next_button_disabled.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/images/views2-changedisplaystyle-large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/views/help/images/views2-changedisplaystyle-large.png
--------------------------------------------------------------------------------
/drupal/modules/help/help-rtl.css:
--------------------------------------------------------------------------------
1 |
2 | .help-items {
3 | float: right;
4 | padding-right: 0;
5 | padding-left: 3%;
6 | }
7 | .help-items-last {
8 | padding-right: 0;
9 | padding-left: 0;
10 | }
11 |
--------------------------------------------------------------------------------
/drupal/modules/poll/poll-rtl.css:
--------------------------------------------------------------------------------
1 |
2 | .poll .bar .foreground {
3 | float: right;
4 | }
5 | .poll .percent {
6 | text-align: left;
7 | }
8 | .poll .vote-form .choices {
9 | text-align: right;
10 | }
11 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/advanced_help/help_example/help/180px-Andi_Gutmans_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/advanced_help/help_example/help/180px-Andi_Gutmans_1.jpg
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/page_manager/help/getting-started-custom-nodes.html:
--------------------------------------------------------------------------------
1 |
2 | Please visit http://drupal.org/node/528044 to help provide this documentation page.
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_contrib_block.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_contrib_block.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_contrib_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_contrib_menu.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_contrib_page.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_contrib_page.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_whosnew.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_whosnew.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/custom/icon_block_custom.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/custom/icon_block_custom.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/node_context/icon_node.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/node_context/icon_node.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/node_form/icon_node_form.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/node_form/icon_node_form.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/term_context/icon_term.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/term_context/icon_term.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/user_context/icon_user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/user_context/icon_user.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/AbstractPrivateMethod.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/AbstractPrivateMethod.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/page_manager/help/getting-started-custom-vocabulary.html:
--------------------------------------------------------------------------------
1 |
2 | Please visit http://drupal.org/node/528046 to help provide this documentation page.
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_block_menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_block_menu.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_navigation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_navigation.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_recentpoll.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_recentpoll.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_searchform.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_searchform.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_syndicate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_syndicate.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_userlogin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_userlogin.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_whosonline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_whosonline.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/AbstractPrivateClass_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/AbstractPrivateClass_logo.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/krumo/docs/media/images/previous_button_disabled.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/devel/krumo/docs/media/images/previous_button_disabled.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/modules/content_multigroup/README.txt:
--------------------------------------------------------------------------------
1 | ; $Id: README.txt,v 1.1.2.4 2009/06/04 18:57:59 yched Exp $
2 |
3 | Ongoing work on the multigroup module has moved to the experimental
4 | CCK 3.0 branch.
5 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_block_empty.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_block_empty.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_primarylinks.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_primarylinks.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/views_content/plugins/content_types/icon_views_page.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/views_content/plugins/content_types/icon_views_page.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/modules/fieldgroup/fieldgroup-rtl.css:
--------------------------------------------------------------------------------
1 | /* $Id: fieldgroup-rtl.css,v 1.1.2.2 2009/03/14 18:55:20 yched Exp $ */
2 |
3 | div.fieldgroup .content {
4 | padding-left:0;
5 | padding-right:1em;
6 | }
7 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_contrib_block_empty.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_contrib_block_empty.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_booknavigation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_booknavigation.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_newforumtopics.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_newforumtopics.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_popularcontent.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_popularcontent.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_recentblogposts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_recentblogposts.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_recentcomments.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_recentcomments.png
--------------------------------------------------------------------------------
/drupal/modules/comment/comment.css:
--------------------------------------------------------------------------------
1 |
2 | .indented {
3 | margin-left: 25px; /* LTR */
4 | }
5 | .comment-unpublished {
6 | background-color: #fff4f4;
7 | }
8 | .preview .comment {
9 | background-color: #ffffea;
10 | }
11 |
--------------------------------------------------------------------------------
/drupal/modules/search/search-rtl.css:
--------------------------------------------------------------------------------
1 |
2 | .search-advanced .criterion {
3 | float: right;
4 | margin-right: 0;
5 | margin-left: 2em;
6 | }
7 | .search-advanced .action {
8 | float: right;
9 | clear: right;
10 | }
11 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/ctools_plugin_example/plugins/content_types/icon_example.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/ctools_plugin_example/plugins/content_types/icon_example.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_activeforumtopics.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_activeforumtopics.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_authorinformation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_authorinformation.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_languageswitcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/block/icon_core_languageswitcher.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/plugins/content_types/vocabulary_context/icon_vocabulary.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/plugins/content_types/vocabulary_context/icon_vocabulary.png
--------------------------------------------------------------------------------
/ckan/ckan/tests/functional/base.py:
--------------------------------------------------------------------------------
1 | from ckan.tests.html_check import HtmlCheckMethods
2 | from ckan.tests import TestController as ControllerTestCase
3 |
4 | class FunctionalTestCase(ControllerTestCase, HtmlCheckMethods):
5 | pass
6 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/advanced_help/help_example/help/180px-PHP_Hello_World_screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/advanced_help/help_example/help/180px-PHP_Hello_World_screenshot.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/modules/fieldgroup/panels/content_types/icon_cck_field_group.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/cck/modules/fieldgroup/panels/content_types/icon_cck_field_group.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/views_content/plugins/content_types/icon_views_page_legacy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/views_content/plugins/content_types/icon_views_page_legacy.png
--------------------------------------------------------------------------------
/drupal/themes/bluemarine/box.tpl.php:
--------------------------------------------------------------------------------
1 |
3 |
7 |
8 |
--------------------------------------------------------------------------------
/drupal/themes/pushbutton/box.tpl.php:
--------------------------------------------------------------------------------
1 |
3 |
--------------------------------------------------------------------------------
/ckan/ckan/tests/test_versions.py:
--------------------------------------------------------------------------------
1 | import inspect
2 |
3 | class TestVersions(object):
4 |
5 | no_db = True
6 |
7 | def test_pylons(self):
8 | import pylons
9 | assert pylons.__version__[0:5] == '0.9.7'
10 |
11 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/modules/text/help/text.help.ini:
--------------------------------------------------------------------------------
1 | ; $Id: text.help.ini,v 1.1.2.2 2008/10/28 01:35:18 yched Exp $
2 |
3 | [advanced help settings]
4 | hide = TRUE
5 |
6 | [text]
7 | title = Text field
8 | parent = content%fields
9 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/views_content/plugins/content_types/icon_views_block_legacy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/okfn/ckan-drupal/master/drupal/sites/all/modules/ctools/views_content/plugins/content_types/icon_views_block_legacy.png
--------------------------------------------------------------------------------
/drupal/sites/all/modules/devel/devel-rtl.css:
--------------------------------------------------------------------------------
1 | .dev-query, .dev-timer, .dev-memory-usage {
2 | align: left;
3 | direction: ltr;
4 | padding-top: inherit;
5 | }
6 | .dev-query, .dev-timer, .dev-memory-usage table {
7 | direction: ltr;
8 | }
--------------------------------------------------------------------------------
/drupal/modules/profile/profile.css:
--------------------------------------------------------------------------------
1 |
2 | #profile-fields td.category {
3 | font-weight: bold;
4 | }
5 | #profile-fields tr.category-message {
6 | color: #999;
7 | }
8 | #profile-fields tr.category-populated {
9 | display: none;
10 | }
11 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/style-comment-rss.html:
--------------------------------------------------------------------------------
1 |
2 | This row style is only available to RSS styles. It produces XML necessary for an RSS feed for the comment.
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/style-node-rss.html:
--------------------------------------------------------------------------------
1 |
2 | This row style is only available to RSS styles. It produces XML necessary for an RSS feed for the node record.
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/DEVELOPER.txt:
--------------------------------------------------------------------------------
1 | // $Id: DEVELOPER.txt,v 1.5.2.3 2008/10/28 01:42:48 yched Exp $
2 |
3 | DEVELOPER DOCUMENTATION
4 | UPDATING FROM 5.x TO 6.x
5 |
6 | See http://drupal.org/node/191796 for a guide to updating field modules.
7 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/modules/number/help/number.help.ini:
--------------------------------------------------------------------------------
1 | ; $Id: number.help.ini,v 1.1.2.2 2008/10/28 01:35:18 yched Exp $
2 |
3 | [advanced help settings]
4 | hide = TRUE
5 |
6 | [number]
7 | title = Number field
8 | parent = content%fields
9 |
--------------------------------------------------------------------------------
/ckan/doc/api/interfaces1.rst.inc:
--------------------------------------------------------------------------------
1 | Interfaces
2 | ----------
3 |
4 | The |site| |api| |version| is separated into three parts.
5 |
6 | * `Model API`_
7 | * `Search API`_
8 |
9 | The resources, methods, and data formats of each are described below.
10 |
--------------------------------------------------------------------------------
/ckanext-drupal/ckanext/__init__.py:
--------------------------------------------------------------------------------
1 | # this is a namespace package
2 | try:
3 | import pkg_resources
4 | pkg_resources.declare_namespace(__name__)
5 | except ImportError:
6 | import pkgutil
7 | __path__ = pkgutil.extend_path(__path__, __name__)
8 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/cck/modules/fieldgroup/fieldgroup.css:
--------------------------------------------------------------------------------
1 | /* $Id: fieldgroup.css,v 1.2.2.2 2009/03/14 18:55:20 yched Exp $ */
2 |
3 | div.fieldgroup {
4 | margin:.5em 0 1em 0;
5 | }
6 | div.fieldgroup .content {
7 | padding-left:1em;/*LTR*/
8 | }
9 |
--------------------------------------------------------------------------------
/install_ckandrupal.txt:
--------------------------------------------------------------------------------
1 |
2 | This file will install ckan-drupal on a clean ubuntu 10.04 server (lucid) install.
3 |
4 | Prerequisites
5 | =============
6 | sudo apt-get install git-core
7 | git clone git://github.com/okfn/ckan-drupal.git
8 |
9 |
10 |
--------------------------------------------------------------------------------
/ckan/ckan/public/css/style.css:
--------------------------------------------------------------------------------
1 | /* This file is just for importing other css files */
2 | @import url(http://assets.okfn.org/themes/twentyten/style.css);
3 | @import url(ckan.css);
4 | @import url(buttons.css);
5 | @import url(stars.css);
6 | @import url(tabs.css);
7 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/ctools/css/ruleset.css:
--------------------------------------------------------------------------------
1 | .ctools-right-container {
2 | float: right;
3 | padding: 0 0 0 .5em;
4 | margin: 0;
5 | width: 48.5%;
6 | }
7 |
8 | .ctools-left-container {
9 | padding-right: .5em;
10 | width: 48.5%;
11 | }
12 |
--------------------------------------------------------------------------------
/drupal/sites/all/modules/views/help/style-unformatted.html:
--------------------------------------------------------------------------------
1 |
2 | The unformatted output style simply places each row of the view, one after another, with no additional formatting.
3 |
--------------------------------------------------------------------------------
/ckanext-drupal/ckanext/drupal/__init__.py:
--------------------------------------------------------------------------------
1 | # this is a namespace package
2 | try:
3 | import pkg_resources
4 | pkg_resources.declare_namespace(__name__)
5 | except ImportError:
6 | import pkgutil
7 | __path__ = pkgutil.extend_path(__path__, __name__)
8 |
--------------------------------------------------------------------------------
/drupal/cron.php:
--------------------------------------------------------------------------------
1 |
7 |
8 |
9 |