├── 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 |
4 |

5 |
6 |
7 | 8 | -------------------------------------------------------------------------------- /drupal/themes/pushbutton/box.tpl.php: -------------------------------------------------------------------------------- 1 | 3 |
4 | 5 |

6 | 7 |
8 |
-------------------------------------------------------------------------------- /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 | 10 | -------------------------------------------------------------------------------- /ckan/ckan/templates/revision/layout.html: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /ckan/doc/api/interfaces2.rst.inc: -------------------------------------------------------------------------------- 1 | Interfaces 2 | ---------- 3 | 4 | The |site| |api| |version| is separated into three parts. 5 | 6 | * `Model API`_ 7 | * `Search API`_ 8 | * `Util API`_ 9 | 10 | The resources, methods, and data formats of each are described below. 11 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/ctools/css/context.css: -------------------------------------------------------------------------------- 1 | .ctools-context-holder .ctools-context-title { 2 | float: left; 3 | width: 49%; 4 | font-style: italic; 5 | } 6 | 7 | .ctools-context-holder .ctools-context-content { 8 | float: right; 9 | width: 49%; 10 | } 11 | -------------------------------------------------------------------------------- /ckan/MANIFEST.in: -------------------------------------------------------------------------------- 1 | include ckan/config/deployment.ini_tmpl 2 | recursive-include ckan/public * 3 | recursive-include ckan/config *.ini 4 | recursive-include ckan/templates * 5 | recursive-include ckan/requires * 6 | recursive-include ckan *.ini 7 | prune .hg 8 | include CHANGELOG.txt 9 | -------------------------------------------------------------------------------- /ckan/ckan/templates/tag/layout.html: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ckan/ckan/templates/user/layout.html: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ckan/doc/api/search_preamble.rst.inc: -------------------------------------------------------------------------------- 1 | Search resources are available at published locations. They are represented with 2 | a variety of data formats. Each resource location supports a number of methods. 3 | 4 | The data formats of the requests and the responses are defined below. 5 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/ckan/ckan.info: -------------------------------------------------------------------------------- 1 | name = CKAN project 2 | description = Integration with CKAN data hub. 3 | package = CKAN 4 | core = 6.x 5 | 6 | dependencies[] = services 7 | dependencies[] = rest_server 8 | dependencies[] = content 9 | dependencies[] = views 10 | 11 | -------------------------------------------------------------------------------- /ckan/ckan/pastertemplates/template/ckanext/+project+/__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/nodereference/help/nodereference.help.ini: -------------------------------------------------------------------------------- 1 | ; $Id: nodereference.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 | [nodereference] 7 | title = Nodereference field 8 | parent = content%fields 9 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/cck/modules/userreference/help/userreference.help.ini: -------------------------------------------------------------------------------- 1 | ; $Id: userreference.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 | [userreference] 7 | title = Userreference field 8 | parent = content%fields 9 | -------------------------------------------------------------------------------- /ckan/RELEASE.txt: -------------------------------------------------------------------------------- 1 | Upgrading ckan.net 2 | ================== 3 | 4 | 1. [Optional] Increase version number. 5 | 6 | See UPGRADE.txt 7 | 8 | Release 9 | ======= 10 | 11 | 1. Ensure version number is correct. 12 | 13 | 2. Upgrade ckan.net and check it works. 14 | 15 | 3. PyPI upload. -------------------------------------------------------------------------------- /ckan/ckan/migration/versions/038_delete_migration_tables.py: -------------------------------------------------------------------------------- 1 | from migrate import * 2 | 3 | def upgrade(migrate_engine): 4 | 5 | migrate_engine.execute(''' 6 | DROP TABLE harvested_document_revision, harvested_document, harvesting_job, harvest_source; 7 | ''') 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /ckan/doc/api/model_preamble.rst.inc: -------------------------------------------------------------------------------- 1 | Model resources are available at published locations. They are represented with 2 | a variety of data formats. Each resource location supports a number of methods. 3 | 4 | The data formats of the requests and the responses are defined below. 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ckan/doc/api/search_resources.rst.inc: -------------------------------------------------------------------------------- 1 | Search Resources 2 | ~~~~~~~~~~~~~~~~ 3 | 4 | Here are the published resources of the Search API. 5 | 6 | .. include:: search_resources_table.rst.inc 7 | 8 | See below for more information about package and revision search parameters. 9 | 10 | -------------------------------------------------------------------------------- /ckan/ckan/templates/layout.html: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ckan/ckan/tests/ckantestplugin/ckantestplugin.egg-info/PKG-INFO: -------------------------------------------------------------------------------- 1 | Metadata-Version: 1.0 2 | Name: ckantestplugin 3 | Version: 0.0dev 4 | Summary: UNKNOWN 5 | Home-page: UNKNOWN 6 | Author: UNKNOWN 7 | Author-email: UNKNOWN 8 | License: UNKNOWN 9 | Description: UNKNOWN 10 | Platform: UNKNOWN 11 | -------------------------------------------------------------------------------- /ckan/doc/authentication.rst: -------------------------------------------------------------------------------- 1 | CKAN Authentication and Identification 2 | ====================================== 3 | 4 | CKAN operates a delegated authentication model based on openid. Integration of 5 | authentication into CKAN is provided by repoze.who and the repoze.who.openid 6 | plugin. 7 | 8 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/ckan/README.TXT: -------------------------------------------------------------------------------- 1 | 2 | 3 | Drupal will not write to ckan_tables... All access through API calls, with nid. 4 | Tables will not revision. 5 | Notes field is held as markdown. Notes field will use drupal body field and hold data in both. 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/cck/help/manage-fields.html: -------------------------------------------------------------------------------- 1 | 2 |

This page lets you manage the CCK fields in your content type : add fields and 3 | groups, rearrange them, access their configuration pages, remove them from the 4 | content type.

-------------------------------------------------------------------------------- /drupal/themes/pushbutton/block.tpl.php: -------------------------------------------------------------------------------- 1 | 3 |
module" ?>" id="module-$block->delta"; ?>"> 4 |

subject ?>

5 |
content ?>
6 |
-------------------------------------------------------------------------------- /drupal/modules/path/path.info: -------------------------------------------------------------------------------- 1 | name = Path 2 | description = Allows users to rename URLs. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/help/help.info: -------------------------------------------------------------------------------- 1 | name = Help 2 | description = Manages the display of online help. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/themes/bluemarine/block.tpl.php: -------------------------------------------------------------------------------- 1 | 3 |
4 |

subject; ?>

5 |
content; ?>
6 |
7 | -------------------------------------------------------------------------------- /ckan/doc/api/clients.rst.inc: -------------------------------------------------------------------------------- 1 | Code Modules for Client Applications 2 | ------------------------------------- 3 | 4 | There are also some code modules (Python, PHP, Drupal, Perl etc.) that provide 5 | convenient wrappers around much of the CKAN API. For full details of these, 6 | please consult: http://trac.ckan.org/wiki/API 7 | 8 | -------------------------------------------------------------------------------- /drupal/modules/search/search.info: -------------------------------------------------------------------------------- 1 | name = Search 2 | description = Enables site-wide keyword searching. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/taxonomy/taxonomy.css: -------------------------------------------------------------------------------- 1 | 2 | tr.taxonomy-term-preview { 3 | background-color: #EEE; 4 | } 5 | tr.taxonomy-term-divider-top { 6 | border-bottom: none; 7 | } 8 | tr.taxonomy-term-divider-bottom { 9 | border-top: 1px dotted #CCC; 10 | } 11 | .taxonomy-term-description { 12 | margin: 5px 0 20px; 13 | } 14 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/cck/modules/optionwidgets/help/optionwidgets.help.ini: -------------------------------------------------------------------------------- 1 | ; $Id: optionwidgets.help.ini,v 1.1.2.2 2008/10/28 01:35:17 yched Exp $ 2 | 3 | [advanced help settings] 4 | hide = TRUE 5 | 6 | [overview] 7 | title = Overview 8 | 9 | [optionwidgets] 10 | title = Optionwidgets 11 | parent = content%fields 12 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/inputstream/inputstream.module: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Default 6 | python 2.7 7 | 8 | -------------------------------------------------------------------------------- /drupal/modules/ping/ping.info: -------------------------------------------------------------------------------- 1 | name = Ping 2 | description = Alerts other sites when your site has been updated. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/taxonomy/taxonomy.info: -------------------------------------------------------------------------------- 1 | name = Taxonomy 2 | description = Enables the categorization of content. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/openid/openid.info: -------------------------------------------------------------------------------- 1 | name = OpenID 2 | description = "Allows users to log into your site using OpenID." 3 | version = VERSION 4 | package = Core - optional 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/php/php.info: -------------------------------------------------------------------------------- 1 | name = PHP filter 2 | description = Allows embedded PHP code/snippets to be evaluated. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/statistics/statistics.info: -------------------------------------------------------------------------------- 1 | name = Statistics 2 | description = Logs access statistics for your site. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/upload/upload.info: -------------------------------------------------------------------------------- 1 | name = Upload 2 | description = Allows users to upload and attach files to content. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/autoload/autoload.info: -------------------------------------------------------------------------------- 1 | name = Autoload 2 | description = Helper module to autoload classes under PHP 5. 3 | php = 5.1.2 4 | core = 6.x 5 | 6 | ; Information added by drupal.org packaging script on 2011-04-22 7 | version = "6.x-2.1" 8 | core = "6.x" 9 | project = "autoload" 10 | datestamp = "1303486914" 11 | 12 | -------------------------------------------------------------------------------- /ckan/doc/api/3/index.rst: -------------------------------------------------------------------------------- 1 | CKAN API Version 3 2 | ================== 3 | 4 | .. toctree:: 5 | :hidden: 6 | :maxdepth: 1 7 | 8 | .. include:: overview.rst.inc 9 | 10 | .. include:: model/index.rst.inc 11 | 12 | .. include:: search/index.rst.inc 13 | 14 | .. include:: status.rst.inc 15 | 16 | .. include:: example.rst.inc 17 | 18 | 19 | -------------------------------------------------------------------------------- /drupal/modules/book/book.info: -------------------------------------------------------------------------------- 1 | name = Book 2 | description = Allows users to structure site pages in a hierarchy or outline. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/dblog/dblog.info: -------------------------------------------------------------------------------- 1 | name = Database logging 2 | description = Logs and records system events to the database. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/menu/menu.info: -------------------------------------------------------------------------------- 1 | name = Menu 2 | description = Allows administrators to customize the site navigation menu. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/system/system.info: -------------------------------------------------------------------------------- 1 | name = System 2 | description = Handles general site configuration for administrators. 3 | package = Core - required 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/themes/chameleon/common-rtl.css: -------------------------------------------------------------------------------- 1 | 2 | body { 3 | direction: rtl; 4 | } 5 | .navlinks { 6 | padding: 0em 0em 1.5em 0.5em; 7 | } 8 | .primary a { 9 | padding: 0em 0em 0em 0.5em; 10 | } 11 | .secondary a { 12 | padding: 0em 0em 0em 0.5em; 13 | } 14 | 15 | #header img { 16 | float: right; 17 | padding: 0em 0em .5em 2em; 18 | } 19 | -------------------------------------------------------------------------------- /ckan/ckan/tests/ckantestplugin/ckantestplugin.egg-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [ckan.plugins] 2 | routes_plugin = ckantestplugin:RoutesPlugin 3 | authorizer_plugin = ckantestplugin:AuthorizerPlugin 4 | mapper_plugin2 = ckantestplugin:MapperPlugin2 5 | mapper_plugin = ckantestplugin:MapperPlugin 6 | test_observer_plugin = ckantestplugin:PluginObserverPlugin 7 | 8 | -------------------------------------------------------------------------------- /ckan/doc/api/search_methods.rst.inc: -------------------------------------------------------------------------------- 1 | Search Methods 2 | ~~~~~~~~~~~~~~ 3 | 4 | Here are the methods of the Search API. 5 | 6 | .. include:: search_methods_table.rst.inc 7 | 8 | It is also possible to supply the search parameters in the URL of a GET request, 9 | for example ``/api/search/package?q=geodata&allfields=1``. 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /drupal/modules/block/block.info: -------------------------------------------------------------------------------- 1 | name = Block 2 | description = Controls the boxes that are displayed around the main content. 3 | package = Core - required 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/color/color.info: -------------------------------------------------------------------------------- 1 | name = Color 2 | description = Allows the user to change the color scheme of certain themes. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/comment/comment.info: -------------------------------------------------------------------------------- 1 | name = Comment 2 | description = Allows users to comment on and discuss published content. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/filter/filter.info: -------------------------------------------------------------------------------- 1 | name = Filter 2 | description = Handles the filtering of content in preparation for display. 3 | package = Core - required 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/node/node.info: -------------------------------------------------------------------------------- 1 | name = Node 2 | description = Allows content to be submitted to the site and displayed on pages. 3 | package = Core - required 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/ctools/ctools.info: -------------------------------------------------------------------------------- 1 | name = Chaos tools 2 | description = A library of helpful tools by Merlin of Chaos. 3 | core = 6.x 4 | package = Chaos tool suite 5 | ; Information added by drupal.org packaging script on 2011-06-24 6 | version = "6.x-1.x-dev" 7 | core = "6.x" 8 | project = "ctools" 9 | datestamp = "1308873992" 10 | 11 | -------------------------------------------------------------------------------- /drupal/themes/pushbutton/pushbutton.info: -------------------------------------------------------------------------------- 1 | name = Pushbutton 2 | description = Tabled, multi-column theme in blue and orange tones. 3 | version = VERSION 4 | core = 6.x 5 | engine = phptemplate 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/blog/blog.info: -------------------------------------------------------------------------------- 1 | name = Blog 2 | description = Enables keeping easily and regularly updated user web pages or blogs. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/contact/contact.info: -------------------------------------------------------------------------------- 1 | name = Contact 2 | description = Enables the use of both personal and site-wide contact forms. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/cck/translations/help/de/manage-fields.html: -------------------------------------------------------------------------------- 1 | 2 |

Diese Seite ermöglicht die Verwaltung der CCK-Felder in dem Inhaltstyp: 3 | Felder und Gruppen hinzufügen, Neuanordnung der Felder, Zugriff auf ihre 4 | Konfigurationsseiten und das Entfernen aus dem Inhaltstyp.

-------------------------------------------------------------------------------- /drupal/sites/all/modules/devel/devel_generate.info: -------------------------------------------------------------------------------- 1 | name = Devel generate 2 | description = Generate dummy users, nodes, and taxonomy terms. 3 | package = Development 4 | core = 6.x 5 | 6 | ; Information added by drupal.org packaging script on 2011-05-13 7 | version = "6.x-1.24" 8 | core = "6.x" 9 | project = "devel" 10 | datestamp = "1305319615" 11 | 12 | -------------------------------------------------------------------------------- /ckan/ckan/tests/ckantestplugin/ckantestplugin.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- 1 | setup.cfg 2 | setup.py 3 | ckantestplugin/__init__.py 4 | ckantestplugin.egg-info/PKG-INFO 5 | ckantestplugin.egg-info/SOURCES.txt 6 | ckantestplugin.egg-info/dependency_links.txt 7 | ckantestplugin.egg-info/entry_points.txt 8 | ckantestplugin.egg-info/not-zip-safe 9 | ckantestplugin.egg-info/top_level.txt -------------------------------------------------------------------------------- /drupal/modules/aggregator/aggregator.info: -------------------------------------------------------------------------------- 1 | name = Aggregator 2 | description = "Aggregates syndicated content (RSS, RDF, and Atom feeds)." 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/throttle/throttle.info: -------------------------------------------------------------------------------- 1 | name = Throttle 2 | description = Handles the auto-throttling mechanism, to control site congestion. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/sites/all/README.txt: -------------------------------------------------------------------------------- 1 | 2 | This directory should be used to place downloaded and custom modules 3 | and themes which are common to all sites. This will allow you to 4 | more easily update Drupal core files. These modules and themes should 5 | be placed in subdirectories called modules and themes as follows: 6 | 7 | sites/all/modules 8 | sites/all/themes 9 | -------------------------------------------------------------------------------- /drupal/themes/bluemarine/bluemarine.info: -------------------------------------------------------------------------------- 1 | name = Bluemarine 2 | description = Table-based multi-column theme with a marine and ash color scheme. 3 | version = VERSION 4 | core = 6.x 5 | engine = phptemplate 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/block/block.css: -------------------------------------------------------------------------------- 1 | 2 | #blocks td.region { 3 | font-weight: bold; 4 | } 5 | #blocks tr.region-message { 6 | font-weight: normal; 7 | color: #999; 8 | } 9 | #blocks tr.region-populated { 10 | display: none; 11 | } 12 | .block-region { 13 | background-color: #ff6; 14 | margin-top: 4px; 15 | margin-bottom: 4px; 16 | padding: 3px; 17 | } 18 | -------------------------------------------------------------------------------- /drupal/modules/syslog/syslog.install: -------------------------------------------------------------------------------- 1 | 4 | 5 | Error ${c.code} 6 | 7 |
8 | 9 | ${c.content} 10 | 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /drupal/modules/blogapi/blogapi.info: -------------------------------------------------------------------------------- 1 | name = Blog API 2 | description = Allows users to post content using applications that support XML-RPC blog APIs. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/system/system-menus-rtl.css: -------------------------------------------------------------------------------- 1 | 2 | ul.menu { 3 | text-align:right; 4 | } 5 | ul.menu li { 6 | margin: 0 0.5em 0 0; 7 | } 8 | li.expanded { 9 | padding: 0.2em 0 0 0.5em; 10 | } 11 | li.collapsed { 12 | list-style-image: url(../../misc/menu-collapsed-rtl.png); 13 | padding: 0.2em 0 0 0.5em; 14 | } 15 | li.leaf { 16 | padding: 0.2em 0 0 0.5em; 17 | } 18 | -------------------------------------------------------------------------------- /drupal/modules/poll/poll.info: -------------------------------------------------------------------------------- 1 | name = Poll 2 | description = Allows your site to capture votes on different topics in the form of multiple choice questions. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/devel/devel_node_access.info: -------------------------------------------------------------------------------- 1 | name = Devel node access 2 | description = Developer block and page illustrating relevant node_access records. 3 | package = Development 4 | core = 6.x 5 | 6 | ; Information added by drupal.org packaging script on 2011-05-13 7 | version = "6.x-1.24" 8 | core = "6.x" 9 | project = "devel" 10 | datestamp = "1305319615" 11 | 12 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/module_builder/theme/module_builder.css: -------------------------------------------------------------------------------- 1 | fieldset { 2 | } 3 | 4 | ul.hook-group { 5 | float: left; 6 | width: 100%; 7 | list-style: none; 8 | margin: 0; 9 | padding-left: 5px; 10 | } 11 | 12 | ul.hook-group li { 13 | float: left; 14 | width: 15em; 15 | width: 50%; 16 | margin: 0; 17 | padding: 0; 18 | background: none; 19 | } 20 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/services/services.info: -------------------------------------------------------------------------------- 1 | name = Services 2 | description = Provide an API for creating web services. 3 | package = Services 4 | core = 6.x 5 | php = 5.x 6 | dependencies[] = ctools 7 | ; Information added by drupal.org packaging script on 2011-05-05 8 | version = "6.x-3.0-rc1" 9 | core = "6.x" 10 | project = "services" 11 | datestamp = "1304634716" 12 | 13 | -------------------------------------------------------------------------------- /drupal/themes/garland/block.tpl.php: -------------------------------------------------------------------------------- 1 | 3 |
4 | 5 | subject)): ?> 6 |

subject ?>

7 | 8 | 9 |
content ?>
10 |
11 | -------------------------------------------------------------------------------- /drupal/modules/trigger/trigger.info: -------------------------------------------------------------------------------- 1 | name = Trigger 2 | description = Enables actions to be fired on certain system events, such as when new content is created. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/modules/update/update.info: -------------------------------------------------------------------------------- 1 | name = Update status 2 | description = Checks the status of available updates for Drupal and your installed modules and themes. 3 | version = VERSION 4 | package = Core - optional 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/ctools/bulk_export/bulk_export.css: -------------------------------------------------------------------------------- 1 | 2 | div.export-container { 3 | width: 48%; 4 | float: left; 5 | padding: .5em; 6 | } 7 | 8 | div.export-container table { 9 | width: 100%; 10 | } 11 | 12 | div.export-container table input, 13 | div.export-container table th, 14 | div.export-container table td { 15 | padding: 0 0 0 .5em; 16 | margin: 0; 17 | } -------------------------------------------------------------------------------- /drupal/sites/all/modules/services/README.txt: -------------------------------------------------------------------------------- 1 | 2 | Goals 3 | ============== 4 | - Create a unified Drupal API for web services to be exposed in a variety of 5 | different server formats. 6 | - Provide a service browser to be able to test methods. 7 | - Allow distribution of API keys for developer access. 8 | 9 | Documentation 10 | ============== 11 | http://drupal.org/node/109782 -------------------------------------------------------------------------------- /drupal/sites/all/modules/cck/content.info: -------------------------------------------------------------------------------- 1 | ; $Id: content.info,v 1.6 2007/07/04 23:46:29 yched Exp $ 2 | name = Content 3 | description = Allows administrators to define new content types. 4 | package = CCK 5 | core = 6.x 6 | ; Information added by drupal.org packaging script on 2011-01-07 7 | version = "6.x-2.9" 8 | core = "6.x" 9 | project = "cck" 10 | datestamp = "1294407979" 11 | 12 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/services/servers/xmlrpc_server/xmlrpc_server.info: -------------------------------------------------------------------------------- 1 | name = XMLRPC Server 2 | description = Provides an XMLRPC server. 3 | package = Services - servers 4 | dependencies[] = services 5 | core = 6.x 6 | ; Information added by drupal.org packaging script on 2011-05-05 7 | version = "6.x-3.0-rc1" 8 | core = "6.x" 9 | project = "services" 10 | datestamp = "1304634716" 11 | 12 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/views/plugins/views_plugin_access_none.inc: -------------------------------------------------------------------------------- 1 | 4 | 5 | Logout - User 6 | 7 |
8 |

Logout

9 |

You have logged out successfully.

10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /drupal/modules/forum/forum.info: -------------------------------------------------------------------------------- 1 | name = Forum 2 | description = Enables threaded discussions about general topics. 3 | dependencies[] = taxonomy 4 | dependencies[] = comment 5 | package = Core - optional 6 | version = VERSION 7 | core = 6.x 8 | 9 | ; Information added by drupal.org packaging script on 2011-05-25 10 | version = "6.22" 11 | project = "drupal" 12 | datestamp = "1306357015" 13 | 14 | -------------------------------------------------------------------------------- /drupal/modules/translation/translation.info: -------------------------------------------------------------------------------- 1 | name = Content translation 2 | description = Allows content to be translated into different languages. 3 | dependencies[] = locale 4 | package = Core - optional 5 | version = VERSION 6 | core = 6.x 7 | 8 | ; Information added by drupal.org packaging script on 2011-05-25 9 | version = "6.22" 10 | project = "drupal" 11 | datestamp = "1306357015" 12 | 13 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/ctools/stylizer/stylizer.info: -------------------------------------------------------------------------------- 1 | name = Stylizer 2 | description = Create custom styles for applications such as Panels. 3 | core = 6.x 4 | package = Chaos tool suite 5 | dependencies[] = ctools 6 | 7 | ; Information added by drupal.org packaging script on 2011-06-24 8 | version = "6.x-1.x-dev" 9 | core = "6.x" 10 | project = "ctools" 11 | datestamp = "1308873992" 12 | 13 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/cck/modules/number/number.info: -------------------------------------------------------------------------------- 1 | ; $Id: number.info,v 1.7 2008/04/23 18:02:16 dww Exp $ 2 | name = Number 3 | description = Defines numeric field types. 4 | dependencies[] = content 5 | package = CCK 6 | core = 6.x 7 | ; Information added by drupal.org packaging script on 2011-01-07 8 | version = "6.x-2.9" 9 | core = "6.x" 10 | project = "cck" 11 | datestamp = "1294407979" 12 | 13 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/cck/modules/text/text.info: -------------------------------------------------------------------------------- 1 | ; $Id: text.info,v 1.9 2008/04/23 18:02:31 dww Exp $ 2 | name = Text 3 | description = Defines simple text field types. 4 | dependencies[] = content 5 | package = CCK 6 | core = 6.x 7 | ; Information added by drupal.org packaging script on 2011-01-07 8 | version = "6.x-2.9" 9 | core = "6.x" 10 | project = "cck" 11 | datestamp = "1294407979" 12 | 13 | -------------------------------------------------------------------------------- /ckan/doc/api/3/overview.rst.inc: -------------------------------------------------------------------------------- 1 | API Overview 2 | ------------- 3 | 4 | The CKAN API is separated into three parts: 5 | 6 | * `Model API`_ 7 | * `Search API`_ 8 | 9 | The CKAN API follows the RESTful (Representational State Transfer) 10 | style. Published resources are separated both from the methods supported by 11 | the resources, and from the data formats and status codes used by the methods. 12 | 13 | -------------------------------------------------------------------------------- /drupal/modules/locale/locale.info: -------------------------------------------------------------------------------- 1 | name = Locale 2 | description = Adds language handling functionality and enables the translation of the user interface to languages other than English. 3 | package = Core - optional 4 | version = VERSION 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2011-05-25 8 | version = "6.22" 9 | project = "drupal" 10 | datestamp = "1306357015" 11 | 12 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/advanced_help/advanced_help.info: -------------------------------------------------------------------------------- 1 | ; $Id: advanced_help.info,v 1.2 2008/04/19 16:45:57 merlinofchaos Exp $ 2 | name = Advanced help 3 | description = Allow advanced help and documentation. 4 | core = 6.x 5 | 6 | ; Information added by drupal.org packaging script on 2009-04-05 7 | version = "6.x-1.2" 8 | core = "6.x" 9 | project = "advanced_help" 10 | datestamp = "1238954409" 11 | 12 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/ctools/page_manager/page_manager.info: -------------------------------------------------------------------------------- 1 | name = Page manager 2 | description = Provides a UI and API to manage pages within the site. 3 | core = 6.x 4 | dependencies[] = ctools 5 | package = Chaos tool suite 6 | 7 | ; Information added by drupal.org packaging script on 2011-06-24 8 | version = "6.x-1.x-dev" 9 | core = "6.x" 10 | project = "ctools" 11 | datestamp = "1308873992" 12 | 13 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/features/features.info: -------------------------------------------------------------------------------- 1 | ; $Id: features.info,v 1.1.2.1 2009/06/21 21:03:34 yhahn Exp $ 2 | name = "Features" 3 | description = "Provides feature management for Drupal." 4 | core = 6.x 5 | package = "Features" 6 | 7 | ; Information added by drupal.org packaging script on 2010-08-23 8 | version = "6.x-1.0" 9 | core = "6.x" 10 | project = "features" 11 | datestamp = "1282573607" 12 | 13 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/link/link.info: -------------------------------------------------------------------------------- 1 | ; $Id: link.info,v 1.2 2008/03/31 06:50:42 quicksketch Exp $ 2 | name = Link 3 | description = Defines simple link field types. 4 | dependencies[] = content 5 | package = CCK 6 | core = 6.x 7 | 8 | 9 | ; Information added by drupal.org packaging script on 2010-06-14 10 | version = "6.x-2.9" 11 | core = "6.x" 12 | project = "link" 13 | datestamp = "1276539609" 14 | 15 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/services/servers/rest_server/formats/xcal_format.info: -------------------------------------------------------------------------------- 1 | name = xCal and iCal formats 2 | description = Provides xCal and iCal formatters for the REST server. 3 | package = Services 4 | core = 6.x 5 | php = 5.x 6 | ; Information added by drupal.org packaging script on 2011-05-05 7 | version = "6.x-3.0-rc1" 8 | core = "6.x" 9 | project = "services" 10 | datestamp = "1304634716" 11 | 12 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/views/views_export/views_export.css: -------------------------------------------------------------------------------- 1 | /* $Id: views_export.css,v 1.1 2008/06/12 16:17:25 merlinofchaos Exp $ */ 2 | 3 | div.export-container table input, 4 | div.export-container table th, 5 | div.export-container table td { 6 | padding: 0 0 0 .5em; 7 | margin: 0; 8 | vertical-align: top; 9 | } 10 | 11 | div.export-container table td input { 12 | margin-top: .25em; 13 | } 14 | -------------------------------------------------------------------------------- /ckan/doc/api/location.rst.inc: -------------------------------------------------------------------------------- 1 | Locators 2 | -------- 3 | 4 | The locator for a given resource can be formed by appending 5 | the relative path for that resource to the API locator. 6 | 7 | ``Resource Locator = API Locator + Resource Path`` 8 | 9 | The API locator for the |site| |api| |version| is: 10 | 11 | |base_location| 12 | 13 | The relative paths for each resource are listed in the sections below. 14 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/ctools/bulk_export/bulk_export.info: -------------------------------------------------------------------------------- 1 | name = Bulk Export 2 | description = Performs bulk exporting of data objects known about by Chaos tools. 3 | core = 6.x 4 | dependencies[] = ctools 5 | package = Chaos tool suite 6 | ; Information added by drupal.org packaging script on 2011-06-24 7 | version = "6.x-1.x-dev" 8 | core = "6.x" 9 | project = "ctools" 10 | datestamp = "1308873992" 11 | 12 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/devel/performance/performance.info: -------------------------------------------------------------------------------- 1 | name = Performance Logging 2 | description = Logs detailed and/or summary page generation time and memory consumption for page requests. 3 | package = Development 4 | core = 6.x 5 | 6 | ; Information added by drupal.org packaging script on 2011-05-13 7 | version = "6.x-1.24" 8 | core = "6.x" 9 | project = "devel" 10 | datestamp = "1305319615" 11 | 12 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/email/email.info: -------------------------------------------------------------------------------- 1 | ; $Id: email.info,v 1.1.2.2.4.1 2008/04/15 19:23:59 mh86 Exp $ 2 | name = Email 3 | description = Defines an email field type for cck 4 | dependencies[] = content 5 | package = CCK 6 | core = 6.x 7 | 8 | ; Information added by drupal.org packaging script on 2009-06-13 9 | version = "6.x-1.2" 10 | core = "6.x" 11 | project = "email" 12 | datestamp = "1244921128" 13 | 14 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/views/views.info: -------------------------------------------------------------------------------- 1 | ; $Id: views.info,v 1.7 2007/08/12 06:52:14 merlinofchaos Exp $ 2 | name = Views 3 | description = Create customized lists and queries from your database. 4 | package = Views 5 | core = 6.x 6 | 7 | ; Information added by drupal.org packaging script on 2010-04-07 8 | version = "6.x-3.0-alpha3" 9 | core = "6.x" 10 | project = "views" 11 | datestamp = "1270684211" 12 | 13 | -------------------------------------------------------------------------------- /drupal/modules/forum/forum-rtl.css: -------------------------------------------------------------------------------- 1 | 2 | #forum tr td.forum { 3 | padding-left: 0.5em; 4 | padding-right: 25px; 5 | background-position: 98% 2px; 6 | } 7 | .forum-topic-navigation { 8 | padding: 1em 3em 0 0; 9 | } 10 | .forum-topic-navigation .topic-previous { 11 | text-align: left; 12 | float: right; 13 | } 14 | .forum-topic-navigation .topic-next { 15 | text-align: right; 16 | float: left; 17 | } 18 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/services/servers/rest_server/rest_server.info: -------------------------------------------------------------------------------- 1 | name = REST Server 2 | description = Provides an REST server. 3 | package = Services - servers 4 | dependencies[] = services 5 | dependencies[] = autoload 6 | core = 6.x 7 | ; Information added by drupal.org packaging script on 2011-05-05 8 | version = "6.x-3.0-rc1" 9 | core = "6.x" 10 | project = "services" 11 | datestamp = "1304634716" 12 | 13 | -------------------------------------------------------------------------------- /drupal/misc/form.js: -------------------------------------------------------------------------------- 1 | 2 | Drupal.behaviors.multiselectSelector = function() { 3 | // Automatically selects the right radio button in a multiselect control. 4 | $('.multiselect select:not(.multiselectSelector-processed)') 5 | .addClass('multiselectSelector-processed').change(function() { 6 | $('.multiselect input:radio[value="'+ this.id.substr(5) +'"]') 7 | .attr('checked', true); 8 | }); 9 | }; 10 | -------------------------------------------------------------------------------- /drupal/misc/print.css: -------------------------------------------------------------------------------- 1 | 2 | body { 3 | margin: 1em; 4 | background-color: #fff; 5 | } 6 | th { 7 | text-align: left; /* LTR */ 8 | color: #006; 9 | border-bottom: 1px solid #ccc; 10 | } 11 | tr.odd { 12 | background-color: #ddd; 13 | } 14 | tr.even { 15 | background-color: #fff; 16 | } 17 | td { 18 | padding: 5px; 19 | } 20 | #menu { 21 | visibility: hidden; 22 | } 23 | #main { 24 | margin: 1em; 25 | } 26 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/devel/devel_node_access.install: -------------------------------------------------------------------------------- 1 | {$this->field_alias}); 9 | } 10 | } 11 | 12 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/views/theme/views-more.tpl.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | 18 | -------------------------------------------------------------------------------- /drupal/modules/user/user-rtl.css: -------------------------------------------------------------------------------- 1 | 2 | #permissions td.permission { 3 | padding-left: 0; 4 | padding-right: 1.5em; 5 | } 6 | #access-rules .access-type, #access-rules .rule-type { 7 | margin-right: 0; 8 | margin-left: 1em; 9 | float: right; 10 | } 11 | #user-admin-buttons { 12 | float: right; 13 | margin-left: 0; 14 | margin-right: 0.5em; 15 | clear: left; 16 | } 17 | 18 | .profile .picture { 19 | float: left; 20 | margin: 0 0 1em 1em; 21 | } 22 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/filefield/filefield-rtl.css: -------------------------------------------------------------------------------- 1 | 2 | .filefield-icon { 3 | margin: 0 0 0 2px; 4 | } 5 | 6 | .filefield-element .widget-preview { 7 | float: right; 8 | padding: 0 0 0 10px; 9 | border-size: 0 0 0 1px; 10 | margin: 0 0 0 10px; 11 | } 12 | 13 | .filefield-element .widget-edit { 14 | float: right; 15 | } 16 | 17 | .filefield-element div.ahah-progress, 18 | .filefield-element div.throbber { 19 | padding: 1px 3px 2px 13px; 20 | } 21 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/inputstream/inputstream.info: -------------------------------------------------------------------------------- 1 | ; $Id: inputstream.info,v 1.1 2009/05/12 10:07:35 hugowetterberg Exp $ 2 | name = Input stream helper 3 | description = Provides a stream-wrapper for drupal://input that should be used instead of php://input 4 | core = 6.x 5 | php = 5.2 6 | ; Information added by drupal.org packaging script on 2009-05-12 7 | version = "6.x-1.0" 8 | core = "6.x" 9 | project = "inputstream" 10 | datestamp = "1242123338" 11 | 12 | -------------------------------------------------------------------------------- /drupal/sites/all/modules/views/views_export/views_export.info: -------------------------------------------------------------------------------- 1 | ; $Id: views_export.info,v 1.1 2008/06/12 16:17:25 merlinofchaos Exp $ 2 | 3 | name = Views exporter 4 | description = Allows exporting multiple views at once. 5 | package = "Views" 6 | dependencies[] = views 7 | core = 6.x 8 | 9 | ; Information added by drupal.org packaging script on 2010-04-07 10 | version = "6.x-3.0-alpha3" 11 | core = "6.x" 12 | project = "views" 13 | datestamp = "1270684211" 14 | 15 | --------------------------------------------------------------------------------