├── modules ├── simpletest │ ├── tests │ │ ├── update_test_1.module │ │ ├── update_test_2.module │ │ ├── update_test_3.module │ │ ├── psr_0_test │ │ │ ├── psr_0_test.module │ │ │ ├── psr_0_test.info │ │ │ └── lib │ │ │ │ └── Drupal │ │ │ │ └── psr_0_test │ │ │ │ └── Tests │ │ │ │ ├── ExampleTest.php │ │ │ │ └── Nested │ │ │ │ └── NestedExampleTest.php │ │ ├── psr_4_test │ │ │ ├── psr_4_test.module │ │ │ ├── psr_4_test.info │ │ │ └── src │ │ │ │ └── Tests │ │ │ │ ├── ExampleTest.php │ │ │ │ └── Nested │ │ │ │ └── NestedExampleTest.php │ │ ├── system_dependencies_test.module │ │ ├── system_project_namespace_test.module │ │ ├── system_incompatible_core_version_test.module │ │ ├── system_incompatible_module_version_test.module │ │ ├── system_incompatible_core_version_dependencies_test.module │ │ ├── system_incompatible_module_version_dependencies_test.module │ │ ├── drupal_system_listing_compatible_test │ │ │ ├── drupal_system_listing_compatible_test.module │ │ │ └── drupal_system_listing_compatible_test.info │ │ ├── drupal_system_listing_incompatible_test │ │ │ ├── drupal_system_listing_incompatible_test.module │ │ │ └── drupal_system_listing_incompatible_test.info │ │ ├── common_test.css │ │ ├── common_test.print.css │ │ ├── theme_test.template_test.tpl.php │ │ ├── themes │ │ │ ├── test_theme │ │ │ │ ├── templates │ │ │ │ │ └── node--1.tpl.php │ │ │ │ └── template.php │ │ │ ├── test_subtheme │ │ │ │ └── test_subtheme.info │ │ │ └── test_basetheme │ │ │ │ └── test_basetheme.info │ │ ├── requirements1_test.module │ │ ├── upgrade │ │ │ ├── drupal-7.bare.minimal.database.php.gz │ │ │ ├── drupal-7.filled.minimal.database.php.gz │ │ │ ├── drupal-7.bare.standard_all.database.php.gz │ │ │ ├── drupal-7.filled.standard_all.database.php.gz │ │ │ ├── drupal-6.duplicate-permission.database.php │ │ │ ├── drupal-6.user-no-password-token.database.php │ │ │ ├── drupal-7.field.database.php │ │ │ ├── drupal-7.trigger.database.php │ │ │ ├── drupal-6.node_type_broken.database.php │ │ │ └── drupal-6.comments.database.php │ │ ├── requirements2_test.module │ │ ├── system.base.css │ │ ├── module_test.implementations.inc │ │ ├── boot_test_2.module │ │ ├── actions_loop_test.install │ │ ├── module_test.file.inc │ │ ├── drupal_autoload_test │ │ │ ├── drupal_autoload_test_interface.inc │ │ │ ├── drupal_autoload_test_class.inc │ │ │ ├── drupal_autoload_test.info │ │ │ ├── drupal_autoload_test_trait.sh │ │ │ └── drupal_autoload_test.module │ │ ├── ajax_test.info │ │ ├── form_test.info │ │ ├── batch_test.info │ │ ├── filter_test.info │ │ ├── image_test.info │ │ ├── menu_test.info │ │ ├── path_test.info │ │ ├── theme_test.info │ │ ├── update_test_1.info │ │ ├── update_test_2.info │ │ ├── update_test_3.info │ │ ├── ajax_forms_test.info │ │ ├── database_test.info │ │ ├── module_test.info │ │ ├── session_test.info │ │ ├── actions_loop_test.info │ │ ├── boot_test_1.info │ │ ├── error_test.info │ │ ├── url_alter_test.info │ │ ├── url_alter_test.install │ │ ├── boot_test_2.info │ │ ├── entity_crud_hook_test.info │ │ ├── update_script_test.info │ │ ├── system_test.info │ │ ├── file_test.info │ │ ├── entity_query_access_test.info │ │ ├── xmlrpc_test.info │ │ ├── common_test_cron_helper.info │ │ ├── entity_cache_test_dependency.info │ │ ├── taxonomy_test.info │ │ ├── requirements1_test.info │ │ ├── common_test_info.txt │ │ ├── system_incompatible_core_version_test.info │ │ ├── system_incompatible_module_version_test.info │ │ ├── entity_cache_test.info │ │ ├── system_dependencies_test.info │ │ ├── common_test.info │ │ ├── entity_cache_test_dependency.module │ │ ├── system_project_namespace_test.info │ │ ├── theme_test.inc │ │ ├── common_test_cron_helper.module │ │ ├── requirements2_test.info │ │ ├── system_incompatible_core_version_dependencies_test.info │ │ ├── update_script_test.module │ │ ├── path_test.module │ │ ├── system_incompatible_module_version_dependencies_test.info │ │ ├── update_test_3.install │ │ ├── requirements1_test.install │ │ ├── system_test.install │ │ ├── boot_test_1.module │ │ ├── taxonomy_test.install │ │ ├── https.php │ │ └── entity_cache_test.module │ ├── files │ │ ├── html-1.txt │ │ ├── html-2.html │ │ ├── sql-1.txt │ │ ├── sql-2.sql │ │ ├── php-2.php │ │ ├── php-1.txt │ │ ├── javascript-1.txt │ │ ├── javascript-2.script │ │ ├── image-1.png │ │ ├── image-2.jpg │ │ ├── css_test_files │ │ │ ├── import2.css │ │ │ ├── css_subfolder │ │ │ │ └── css_input_with_import.css │ │ │ ├── css_input_with_import.css │ │ │ ├── css_input_without_import.css.optimized.css │ │ │ └── comment_hacks.css.optimized.css │ │ ├── image-test.gif │ │ ├── image-test.jpg │ │ ├── image-test.png │ │ ├── image-test-no-transparency.gif │ │ ├── image-test-transparent-out-of-range.gif │ │ └── README.txt │ ├── src │ │ └── Tests │ │ │ └── PSR4WebTest.php │ └── lib │ │ └── Drupal │ │ └── simpletest │ │ └── Tests │ │ └── PSR0WebTest.php ├── comment │ ├── comment-rtl.css │ ├── comment.css │ └── comment.info ├── image │ ├── sample.png │ ├── image-rtl.css │ ├── image.css │ ├── image.info │ └── tests │ │ └── image_module_test.info ├── openid │ ├── login-bg.png │ ├── openid.info │ ├── tests │ │ ├── openid_test.info │ │ └── openid_test.install │ └── openid-rtl.css ├── toolbar │ ├── toolbar.png │ ├── toolbar.info │ └── toolbar-rtl.css ├── color │ ├── images │ │ ├── hook.png │ │ ├── lock.png │ │ └── hook-rtl.png │ ├── color.info │ ├── preview.html │ └── color-rtl.css ├── shortcut │ ├── shortcut.png │ ├── shortcut.admin.css │ └── shortcut.info ├── file │ ├── icons │ │ ├── text-html.png │ │ ├── text-plain.png │ │ ├── text-x-script.png │ │ ├── application-pdf.png │ │ ├── audio-x-generic.png │ │ ├── image-x-generic.png │ │ ├── text-x-generic.png │ │ ├── video-x-generic.png │ │ ├── package-x-generic.png │ │ ├── x-office-document.png │ │ ├── x-office-spreadsheet.png │ │ ├── x-office-presentation.png │ │ ├── application-octet-stream.png │ │ └── application-x-executable.png │ ├── file.info │ ├── tests │ │ └── file_module_test.info │ └── file.css ├── overlay │ ├── images │ │ ├── close.png │ │ ├── close-rtl.png │ │ └── background.png │ ├── overlay.info │ ├── overlay.install │ └── overlay-child-rtl.css ├── update │ ├── tests │ │ ├── aaa_update_test.module │ │ ├── bbb_update_test.module │ │ ├── ccc_update_test.module │ │ ├── aaa_update_test.tar.gz │ │ ├── aaa_update_test.no-releases.xml │ │ ├── aaa_update_test.info │ │ ├── bbb_update_test.info │ │ ├── ccc_update_test.info │ │ ├── update_test.info │ │ └── themes │ │ │ ├── update_test_admintheme │ │ │ └── update_test_admintheme.info │ │ │ ├── update_test_basetheme │ │ │ └── update_test_basetheme.info │ │ │ └── update_test_subtheme │ │ │ └── update_test_subtheme.info │ ├── update.info │ └── update-rtl.css ├── contextual │ ├── images │ │ └── gear-select.png │ ├── contextual.info │ └── contextual-rtl.css ├── tracker │ ├── tracker.css │ └── tracker.info ├── aggregator │ ├── aggregator-rtl.css │ ├── tests │ │ ├── aggregator_test.info │ │ ├── aggregator_test_title_entities.xml │ │ └── aggregator_test_atom.xml │ ├── aggregator.info │ ├── aggregator-wrapper.tpl.php │ ├── aggregator-summary-items.tpl.php │ ├── aggregator-summary-item.tpl.php │ └── aggregator.css ├── menu │ ├── menu.css │ └── menu.info ├── help │ ├── help.css │ ├── help-rtl.css │ └── help.info ├── poll │ ├── poll-rtl.css │ ├── poll.info │ ├── poll-bar--block.tpl.php │ ├── poll-bar.tpl.php │ ├── poll-results.tpl.php │ ├── poll-vote.tpl.php │ ├── poll-results--block.tpl.php │ └── poll.css ├── node │ ├── node.css │ ├── tests │ │ ├── node_test.info │ │ ├── node_access_test.info │ │ ├── node_test_exception.info │ │ └── node_test_exception.module │ └── node.info ├── profile │ ├── profile.css │ ├── profile.info │ └── profile-wrapper.tpl.php ├── dblog │ ├── dblog-rtl.css │ └── dblog.info ├── field_ui │ ├── field_ui-rtl.css │ └── field_ui.info ├── system │ ├── system.messages-rtl.css │ ├── tests │ │ ├── cron_queue_test.info │ │ ├── system_cron_test.info │ │ ├── system_cron_test.module │ │ └── cron_queue_test.module │ ├── system.info │ ├── system.cron.js │ └── system.menus-rtl.css ├── statistics │ ├── statistics.js │ └── statistics.info ├── search │ ├── search-rtl.css │ ├── tests │ │ ├── search_extra_type.info │ │ ├── search_node_tags.info │ │ ├── search_embedded_form.info │ │ └── search_node_tags.module │ ├── search.info │ └── search.css ├── book │ ├── book-rtl.css │ ├── book.info │ ├── book.js │ ├── book-all-books-block.tpl.php │ └── book-node-export-html.tpl.php ├── translation │ ├── tests │ │ ├── translation_test.module │ │ └── translation_test.info │ └── translation.info ├── blog │ ├── blog.info │ └── blog.install ├── taxonomy │ ├── taxonomy.css │ └── taxonomy.info ├── trigger │ ├── tests │ │ └── trigger_test.info │ └── trigger.info ├── block │ ├── tests │ │ ├── block_test.info │ │ └── themes │ │ │ └── block_test_theme │ │ │ └── block_test_theme.info │ ├── block.info │ └── block.css ├── php │ └── php.info ├── locale │ ├── tests │ │ ├── locale_test.info │ │ └── translations │ │ │ └── test.xx.po │ ├── locale-rtl.css │ ├── locale.info │ └── locale.css ├── path │ ├── path.info │ └── path.js ├── syslog │ ├── syslog.install │ └── syslog.info ├── field │ ├── modules │ │ ├── list │ │ │ ├── tests │ │ │ │ ├── list_test.info │ │ │ │ └── list_test.module │ │ │ └── list.info │ │ ├── number │ │ │ └── number.info │ │ ├── text │ │ │ └── text.info │ │ ├── options │ │ │ └── options.info │ │ └── field_sql_storage │ │ │ └── field_sql_storage.info │ ├── tests │ │ └── field_test.info │ ├── theme │ │ ├── field-rtl.css │ │ └── field.css │ └── field.info ├── user │ ├── tests │ │ └── user_form_test.info │ ├── user.info │ ├── user-rtl.css │ └── user-picture.tpl.php ├── rdf │ ├── tests │ │ ├── rdf_test.info │ │ └── rdf_test.install │ └── rdf.info ├── contact │ └── contact.info ├── filter │ ├── filter.info │ └── filter.js ├── forum │ ├── forum.info │ ├── forum-rtl.css │ ├── forums.tpl.php │ ├── forum-icon.tpl.php │ └── forum-submitted.tpl.php ├── README.txt └── dashboard │ ├── dashboard.info │ └── dashboard-rtl.css ├── misc ├── feed.png ├── help.png ├── tree.png ├── favicon.ico ├── grippie.png ├── arrow-asc.png ├── configure.png ├── draggable.png ├── druplicon.png ├── menu-leaf.png ├── progress.gif ├── throbber.gif ├── arrow-desc.png ├── forum-icons.png ├── permissions.png ├── print-rtl.css ├── tree-bottom.png ├── watchdog-ok.png ├── menu-collapsed.png ├── menu-expanded.png ├── message-16-ok.png ├── message-24-ok.png ├── watchdog-error.png ├── farbtastic │ ├── marker.png │ ├── mask.png │ ├── wheel.png │ └── farbtastic.css ├── message-16-error.png ├── message-16-help.png ├── message-16-info.png ├── message-24-error.png ├── message-24-help.png ├── message-24-info.png ├── throbber-active.gif ├── throbber-inactive.png ├── watchdog-warning.png ├── menu-collapsed-rtl.png ├── message-16-warning.png ├── message-24-warning.png ├── powered-black-80x15.png ├── powered-black-88x31.png ├── powered-blue-135x42.png ├── powered-blue-80x15.png ├── powered-blue-88x31.png ├── powered-gray-135x42.png ├── powered-gray-80x15.png ├── powered-gray-88x31.png ├── powered-black-135x42.png ├── ui │ ├── images │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ ├── ui-icons_cd0a0a_256x240.png │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ ├── jquery.ui.selectable.css │ ├── jquery.ui.progressbar.css │ ├── jquery.effects.fade.min.js │ ├── jquery.effects.transfer.min.js │ ├── jquery.effects.blind.min.js │ ├── jquery.effects.highlight.min.js │ └── jquery.effects.pulsate.min.js ├── vertical-tabs-rtl.css ├── print.css └── jquery.cookie.js ├── scripts ├── cron-curl.sh ├── cron-lynx.sh ├── test.script └── code-clean.sh ├── themes ├── seven │ ├── logo.png │ ├── images │ │ ├── fc.png │ │ ├── add.png │ │ ├── buttons.png │ │ ├── fc-rtl.png │ │ ├── arrow-asc.png │ │ ├── list-item.png │ │ ├── task-item.png │ │ ├── arrow-desc.png │ │ ├── arrow-next.png │ │ ├── arrow-prev.png │ │ ├── task-check.png │ │ ├── list-item-rtl.png │ │ ├── task-item-rtl.png │ │ ├── ui-icons-222222-256x240.png │ │ ├── ui-icons-454545-256x240.png │ │ ├── ui-icons-800000-256x240.png │ │ ├── ui-icons-888888-256x240.png │ │ └── ui-icons-ffffff-256x240.png │ ├── screenshot.png │ ├── ie6.css │ ├── ie.css │ ├── ie7.css │ ├── vertical-tabs-rtl.css │ └── seven.info ├── stark │ ├── logo.png │ ├── screenshot.png │ └── stark.info ├── bartik │ ├── logo.png │ ├── color │ │ ├── base.png │ │ └── preview.png │ ├── images │ │ ├── add.png │ │ ├── buttons.png │ │ ├── tabs-border.png │ │ ├── comment-arrow.gif │ │ ├── search-button.png │ │ └── comment-arrow-rtl.gif │ ├── screenshot.png │ └── css │ │ ├── ie6.css │ │ ├── layout-rtl.css │ │ └── print.css ├── garland │ ├── logo.png │ ├── color │ │ ├── base.png │ │ └── preview.png │ ├── images │ │ ├── body.png │ │ ├── bg-bar.png │ │ ├── bg-tab.png │ │ ├── bg-content.png │ │ ├── menu-leaf.gif │ │ ├── task-list.png │ │ ├── bg-bar-white.png │ │ ├── bg-content-left.png │ │ ├── bg-navigation.png │ │ ├── gradient-inner.png │ │ ├── menu-collapsed.gif │ │ ├── menu-expanded.gif │ │ ├── bg-content-right.png │ │ ├── bg-navigation-item.png │ │ ├── menu-collapsed-rtl.gif │ │ └── bg-navigation-item-hover.png │ ├── screenshot.png │ ├── garland.info │ ├── theme-settings.php │ └── comment.tpl.php ├── README.txt └── engines │ └── phptemplate │ └── phptemplate.engine ├── profiles ├── testing │ ├── modules │ │ ├── drupal_system_listing_compatible_test │ │ │ ├── drupal_system_listing_compatible_test.module │ │ │ └── drupal_system_listing_compatible_test.info │ │ └── drupal_system_listing_incompatible_test │ │ │ ├── drupal_system_listing_incompatible_test.module │ │ │ └── drupal_system_listing_incompatible_test.info │ ├── testing.profile │ ├── testing.info │ └── testing.install ├── minimal │ ├── translations │ │ └── README.txt │ ├── minimal.info │ └── minimal.profile └── standard │ ├── translations │ └── README.txt │ ├── standard.profile │ └── standard.info ├── sites ├── all │ └── libraries │ │ └── README.txt └── README.txt ├── .gitignore ├── .editorconfig ├── xmlrpc.php ├── includes └── database │ ├── sqlite │ └── select.inc │ └── mysql │ └── install.inc ├── index.php ├── install.php └── cron.php /modules/simpletest/tests/update_test_1.module: -------------------------------------------------------------------------------- 1 | SimpleTest HTML -------------------------------------------------------------------------------- /modules/simpletest/files/html-2.html: -------------------------------------------------------------------------------- 1 |

SimpleTest HTML

-------------------------------------------------------------------------------- /modules/simpletest/tests/psr_0_test/psr_0_test.module: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /modules/simpletest/tests/system_incompatible_core_version_dependencies_test.module: -------------------------------------------------------------------------------- 1 | 2 | alert('SimpleTest PHP was executed!'); 3 | 4 | -------------------------------------------------------------------------------- /modules/simpletest/files/javascript-2.script: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/cron-lynx.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /usr/bin/lynx -source http://example.com/cron.php > /dev/null 2>&1 4 | -------------------------------------------------------------------------------- /themes/seven/images/fc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/seven/images/fc.png -------------------------------------------------------------------------------- /misc/menu-collapsed-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/menu-collapsed-rtl.png -------------------------------------------------------------------------------- /misc/message-16-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/message-16-warning.png -------------------------------------------------------------------------------- /misc/message-24-warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/message-24-warning.png -------------------------------------------------------------------------------- /misc/powered-black-80x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/powered-black-80x15.png -------------------------------------------------------------------------------- /misc/powered-black-88x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/powered-black-88x31.png -------------------------------------------------------------------------------- /misc/powered-blue-135x42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/powered-blue-135x42.png -------------------------------------------------------------------------------- /misc/powered-blue-80x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/powered-blue-80x15.png -------------------------------------------------------------------------------- /misc/powered-blue-88x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/powered-blue-88x31.png -------------------------------------------------------------------------------- /misc/powered-gray-135x42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/powered-gray-135x42.png -------------------------------------------------------------------------------- /misc/powered-gray-80x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/powered-gray-80x15.png -------------------------------------------------------------------------------- /misc/powered-gray-88x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/powered-gray-88x31.png -------------------------------------------------------------------------------- /modules/openid/login-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/modules/openid/login-bg.png -------------------------------------------------------------------------------- /modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.module: -------------------------------------------------------------------------------- 1 | 2 | Fail: Template not overridden. 3 | -------------------------------------------------------------------------------- /themes/bartik/images/tabs-border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/bartik/images/tabs-border.png -------------------------------------------------------------------------------- /themes/garland/images/bg-content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/garland/images/bg-content.png -------------------------------------------------------------------------------- /themes/garland/images/menu-leaf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/garland/images/menu-leaf.gif -------------------------------------------------------------------------------- /themes/garland/images/task-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/garland/images/task-list.png -------------------------------------------------------------------------------- /themes/seven/images/arrow-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/seven/images/arrow-desc.png -------------------------------------------------------------------------------- /themes/seven/images/arrow-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/seven/images/arrow-next.png -------------------------------------------------------------------------------- /themes/seven/images/arrow-prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/seven/images/arrow-prev.png -------------------------------------------------------------------------------- /themes/seven/images/task-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/seven/images/task-check.png -------------------------------------------------------------------------------- /modules/file/icons/application-pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/modules/file/icons/application-pdf.png -------------------------------------------------------------------------------- /modules/file/icons/audio-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/modules/file/icons/audio-x-generic.png -------------------------------------------------------------------------------- /modules/file/icons/image-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/modules/file/icons/image-x-generic.png -------------------------------------------------------------------------------- /modules/file/icons/text-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/modules/file/icons/text-x-generic.png -------------------------------------------------------------------------------- /modules/file/icons/video-x-generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/modules/file/icons/video-x-generic.png -------------------------------------------------------------------------------- /modules/overlay/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/modules/overlay/images/background.png -------------------------------------------------------------------------------- /modules/update/tests/aaa_update_test.module: -------------------------------------------------------------------------------- 1 | 2 | Node Content Dummy 3 | -------------------------------------------------------------------------------- /themes/garland/images/bg-content-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/garland/images/bg-content-left.png -------------------------------------------------------------------------------- /themes/garland/images/bg-navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/garland/images/bg-navigation.png -------------------------------------------------------------------------------- /themes/garland/images/gradient-inner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/garland/images/gradient-inner.png -------------------------------------------------------------------------------- /themes/garland/images/menu-collapsed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/garland/images/menu-collapsed.gif -------------------------------------------------------------------------------- /themes/garland/images/menu-expanded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/garland/images/menu-expanded.gif -------------------------------------------------------------------------------- /misc/ui/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/ui/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /misc/ui/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/ui/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /misc/ui/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/ui/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /misc/ui/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/ui/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /misc/ui/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/ui/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /modules/file/icons/x-office-spreadsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/modules/file/icons/x-office-spreadsheet.png -------------------------------------------------------------------------------- /modules/tracker/tracker.css: -------------------------------------------------------------------------------- 1 | 2 | .page-tracker td.replies { 3 | text-align: center; 4 | } 5 | .page-tracker table { 6 | width: 100%; 7 | } 8 | -------------------------------------------------------------------------------- /modules/update/tests/aaa_update_test.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/modules/update/tests/aaa_update_test.tar.gz -------------------------------------------------------------------------------- /profiles/minimal/translations/README.txt: -------------------------------------------------------------------------------- 1 | 2 | This directory should be used to place downloaded translations 3 | for installing Drupal core. 4 | -------------------------------------------------------------------------------- /profiles/standard/translations/README.txt: -------------------------------------------------------------------------------- 1 | 2 | This directory should be used to place downloaded translations 3 | for installing Drupal core. 4 | -------------------------------------------------------------------------------- /themes/bartik/images/comment-arrow-rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/bartik/images/comment-arrow-rtl.gif -------------------------------------------------------------------------------- /themes/garland/images/bg-content-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/garland/images/bg-content-right.png -------------------------------------------------------------------------------- /misc/ui/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/ui/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /misc/ui/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/ui/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /misc/ui/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/ui/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /misc/ui/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/ui/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /misc/ui/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/ui/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /misc/ui/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/ui/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /misc/ui/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/ui/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /modules/file/icons/x-office-presentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/modules/file/icons/x-office-presentation.png -------------------------------------------------------------------------------- /themes/garland/images/bg-navigation-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/garland/images/bg-navigation-item.png -------------------------------------------------------------------------------- /themes/garland/images/menu-collapsed-rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/garland/images/menu-collapsed-rtl.gif -------------------------------------------------------------------------------- /modules/file/icons/application-octet-stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/modules/file/icons/application-octet-stream.png -------------------------------------------------------------------------------- /modules/file/icons/application-x-executable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/modules/file/icons/application-x-executable.png -------------------------------------------------------------------------------- /themes/seven/images/ui-icons-222222-256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/seven/images/ui-icons-222222-256x240.png -------------------------------------------------------------------------------- /themes/seven/images/ui-icons-454545-256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/seven/images/ui-icons-454545-256x240.png -------------------------------------------------------------------------------- /themes/seven/images/ui-icons-800000-256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/seven/images/ui-icons-800000-256x240.png -------------------------------------------------------------------------------- /themes/seven/images/ui-icons-888888-256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/seven/images/ui-icons-888888-256x240.png -------------------------------------------------------------------------------- /themes/seven/images/ui-icons-ffffff-256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/seven/images/ui-icons-ffffff-256x240.png -------------------------------------------------------------------------------- /themes/garland/images/bg-navigation-item-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/themes/garland/images/bg-navigation-item-hover.png -------------------------------------------------------------------------------- /misc/ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/misc/ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /modules/shortcut/shortcut.admin.css: -------------------------------------------------------------------------------- 1 | 2 | .shortcut-slot-hidden { 3 | display: none; 4 | } 5 | 6 | div.form-item-set div.form-item-new { 7 | display: inline; 8 | } 9 | -------------------------------------------------------------------------------- /modules/simpletest/files/image-test-no-transparency.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/modules/simpletest/files/image-test-no-transparency.gif -------------------------------------------------------------------------------- /modules/update/tests/aaa_update_test.no-releases.xml: -------------------------------------------------------------------------------- 1 | 2 | No release history was found for the requested project (aaa_update_test). 3 | -------------------------------------------------------------------------------- /modules/aggregator/aggregator-rtl.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Right-to-Left styles for theme in the Aggregator module. 3 | */ 4 | 5 | #aggregator .feed-source .feed-icon { 6 | float: left; 7 | } 8 | -------------------------------------------------------------------------------- /modules/simpletest/files/image-test-transparent-out-of-range.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adaptive/drupal-control/master/modules/simpletest/files/image-test-transparent-out-of-range.gif -------------------------------------------------------------------------------- /modules/simpletest/tests/requirements1_test.module: -------------------------------------------------------------------------------- 1 | fields(array( 5 | 'perm' => 'access content, access content', 6 | )) 7 | ->condition('pid', 1) 8 | ->execute(); 9 | -------------------------------------------------------------------------------- /modules/system/system.messages-rtl.css: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * @file 4 | * RTL Styles for system messages. 5 | */ 6 | 7 | div.messages { 8 | background-position: 99% 8px; 9 | padding: 10px 50px 10px 10px; 10 | } 11 | div.messages ul { 12 | margin: 0 1em 0 0; 13 | } 14 | -------------------------------------------------------------------------------- /modules/simpletest/files/README.txt: -------------------------------------------------------------------------------- 1 | These files are useful in tests that upload files or otherwise need to 2 | manipulate files, in which case they are copied to the files directory as 3 | specified in the site settings. Dummy files can also be generated by tests in 4 | order to save space. 5 | -------------------------------------------------------------------------------- /modules/simpletest/tests/boot_test_2.module: -------------------------------------------------------------------------------- 1 | fields(array('weight' => 1)) 9 | ->condition('name', 'actions_loop_test') 10 | ->execute(); 11 | } 12 | -------------------------------------------------------------------------------- /modules/book/book-rtl.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @file 3 | * Right-to-Left styling for the Book module. 4 | */ 5 | 6 | .book-navigation .menu { 7 | padding: 1em 3em 0 0; 8 | } 9 | 10 | .book-navigation .page-previous { 11 | float: right; 12 | } 13 | .book-navigation .page-up { 14 | float: right; 15 | } 16 | -------------------------------------------------------------------------------- /modules/simpletest/tests/module_test.file.inc: -------------------------------------------------------------------------------- 1 | 'success!'); 13 | } 14 | -------------------------------------------------------------------------------- /modules/image/image.css: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Image upload widget. 4 | */ 5 | div.image-preview { 6 | float: left; /* LTR */ 7 | padding: 0 10px 10px 0; /* LTR */ 8 | } 9 | div.image-widget-data { 10 | float: left; /* LTR */ 11 | } 12 | div.image-widget-data input.text-field { 13 | width: auto; 14 | } 15 | -------------------------------------------------------------------------------- /modules/translation/tests/translation_test.module: -------------------------------------------------------------------------------- 1 | fields(array('weight' => 2)) 10 | ->condition('name', 'url_alter_test') 11 | ->execute(); 12 | } 13 | -------------------------------------------------------------------------------- /modules/system/tests/system_cron_test.info: -------------------------------------------------------------------------------- 1 | name = System Cron Test 2 | description = 'Support module for testing the system_cron().' 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /modules/user/tests/user_form_test.info: -------------------------------------------------------------------------------- 1 | name = "User module form tests" 2 | description = "Support module for user form testing." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /themes/seven/ie6.css: -------------------------------------------------------------------------------- 1 | 2 | ul.menu li, 3 | ul.menu li a, 4 | ul.links li, 5 | ul.links li a, 6 | .action-links, 7 | #page { 8 | height: 1%; 9 | } 10 | #block-system-main ul.admin-list li a { 11 | height: 1px; 12 | position: relative; 13 | display: block; 14 | } 15 | #block-system-main ul.admin-list li div.description a { 16 | display: inline; 17 | } 18 | -------------------------------------------------------------------------------- /modules/field/modules/number/number.info: -------------------------------------------------------------------------------- 1 | name = Number 2 | description = Defines numeric field types. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | dependencies[] = field 7 | files[] = number.test 8 | 9 | ; Information added by Drupal.org packaging script on 2016-12-07 10 | version = "7.53" 11 | project = "drupal" 12 | datestamp = "1481152423" 13 | 14 | -------------------------------------------------------------------------------- /modules/field_ui/field_ui.info: -------------------------------------------------------------------------------- 1 | name = Field UI 2 | description = User interface for the Field API. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | dependencies[] = field 7 | files[] = field_ui.test 8 | 9 | ; Information added by Drupal.org packaging script on 2016-12-07 10 | version = "7.53" 11 | project = "drupal" 12 | datestamp = "1481152423" 13 | 14 | -------------------------------------------------------------------------------- /modules/simpletest/tests/boot_test_2.info: -------------------------------------------------------------------------------- 1 | name = Early bootstrap tests 2 | description = A support module for hook_boot hook testing. 3 | core = 7.x 4 | package = Testing 5 | version = VERSION 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /modules/node/tests/node_access_test.info: -------------------------------------------------------------------------------- 1 | name = "Node module access tests" 2 | description = "Support module for node permission testing." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /modules/search/tests/search_node_tags.info: -------------------------------------------------------------------------------- 1 | name = "Test search node tags" 2 | description = "Support module for Node search tags testing." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /modules/simpletest/tests/entity_crud_hook_test.info: -------------------------------------------------------------------------------- 1 | name = "Entity CRUD Hooks Test" 2 | description = "Support module for CRUD hook tests." 3 | core = 7.x 4 | package = Testing 5 | version = VERSION 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /modules/simpletest/tests/update_script_test.info: -------------------------------------------------------------------------------- 1 | name = "Update script test" 2 | description = "Support module for update script testing." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /modules/toolbar/toolbar.info: -------------------------------------------------------------------------------- 1 | name = Toolbar 2 | description = Provides a toolbar that shows the top-level administration menu items and links from other modules. 3 | core = 7.x 4 | package = Core 5 | version = VERSION 6 | 7 | ; Information added by Drupal.org packaging script on 2016-12-07 8 | version = "7.53" 9 | project = "drupal" 10 | datestamp = "1481152423" 11 | 12 | -------------------------------------------------------------------------------- /modules/update/tests/themes/update_test_basetheme/update_test_basetheme.info: -------------------------------------------------------------------------------- 1 | name = Update test base theme 2 | description = Test theme which acts as a base theme for other test subthemes. 3 | core = 7.x 4 | hidden = TRUE 5 | 6 | ; Information added by Drupal.org packaging script on 2016-12-07 7 | version = "7.53" 8 | project = "drupal" 9 | datestamp = "1481152423" 10 | 11 | -------------------------------------------------------------------------------- /modules/aggregator/tests/aggregator_test.info: -------------------------------------------------------------------------------- 1 | name = "Aggregator module tests" 2 | description = "Support module for aggregator related testing." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /modules/rdf/tests/rdf_test.info: -------------------------------------------------------------------------------- 1 | name = "RDF module tests" 2 | description = "Support module for RDF module testing." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | dependencies[] = blog 8 | 9 | ; Information added by Drupal.org packaging script on 2016-12-07 10 | version = "7.53" 11 | project = "drupal" 12 | datestamp = "1481152423" 13 | 14 | -------------------------------------------------------------------------------- /modules/simpletest/tests/system_test.info: -------------------------------------------------------------------------------- 1 | name = System test 2 | description = Support module for system testing. 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | files[] = system_test.module 7 | hidden = TRUE 8 | 9 | ; Information added by Drupal.org packaging script on 2016-12-07 10 | version = "7.53" 11 | project = "drupal" 12 | datestamp = "1481152423" 13 | 14 | -------------------------------------------------------------------------------- /modules/tracker/tracker.info: -------------------------------------------------------------------------------- 1 | name = Tracker 2 | description = Enables tracking of recent content for users. 3 | dependencies[] = comment 4 | package = Core 5 | version = VERSION 6 | core = 7.x 7 | files[] = tracker.test 8 | 9 | ; Information added by Drupal.org packaging script on 2016-12-07 10 | version = "7.53" 11 | project = "drupal" 12 | datestamp = "1481152423" 13 | 14 | -------------------------------------------------------------------------------- /modules/field/modules/text/text.info: -------------------------------------------------------------------------------- 1 | name = Text 2 | description = Defines simple text field types. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | dependencies[] = field 7 | files[] = text.test 8 | required = TRUE 9 | 10 | ; Information added by Drupal.org packaging script on 2016-12-07 11 | version = "7.53" 12 | project = "drupal" 13 | datestamp = "1481152423" 14 | 15 | -------------------------------------------------------------------------------- /modules/node/tests/node_test_exception.info: -------------------------------------------------------------------------------- 1 | name = "Node module exception tests" 2 | description = "Support module for node related exception testing." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /modules/openid/tests/openid_test.info: -------------------------------------------------------------------------------- 1 | name = OpenID dummy provider 2 | description = "OpenID provider used for testing." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | dependencies[] = openid 7 | hidden = TRUE 8 | 9 | ; Information added by Drupal.org packaging script on 2016-12-07 10 | version = "7.53" 11 | project = "drupal" 12 | datestamp = "1481152423" 13 | 14 | -------------------------------------------------------------------------------- /modules/simpletest/tests/file_test.info: -------------------------------------------------------------------------------- 1 | name = "File test" 2 | description = "Support module for file handling tests." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | files[] = file_test.module 7 | hidden = TRUE 8 | 9 | ; Information added by Drupal.org packaging script on 2016-12-07 10 | version = "7.53" 11 | project = "drupal" 12 | datestamp = "1481152423" 13 | 14 | -------------------------------------------------------------------------------- /modules/simpletest/tests/upgrade/drupal-6.user-no-password-token.database.php: -------------------------------------------------------------------------------- 1 | fields(array( 3 | 'name', 4 | 'value', 5 | )) 6 | ->values(array( 7 | 'name' => 'user_mail_register_no_approval_required_body', 8 | 'value' => 's:86:"!username, !site, !uri, !uri_brief, !mailto, !date, !login_uri, !edit_uri, !login_url.";', 9 | )) 10 | ->execute(); 11 | -------------------------------------------------------------------------------- /modules/translation/tests/translation_test.info: -------------------------------------------------------------------------------- 1 | name = "Content Translation Test" 2 | description = "Support module for the content translation tests." 3 | core = 7.x 4 | package = Testing 5 | version = VERSION 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # Drupal editor configuration normalization 2 | # @see http://editorconfig.org/ 3 | 4 | # This is the top-most .editorconfig file; do not search in parent directories. 5 | root = true 6 | 7 | # All files. 8 | [*] 9 | end_of_line = LF 10 | indent_style = space 11 | indent_size = 2 12 | charset = utf-8 13 | trim_trailing_whitespace = true 14 | insert_final_newline = true 15 | -------------------------------------------------------------------------------- /modules/field/tests/field_test.info: -------------------------------------------------------------------------------- 1 | name = "Field API Test" 2 | description = "Support module for the Field API tests." 3 | core = 7.x 4 | package = Testing 5 | files[] = field_test.entity.inc 6 | version = VERSION 7 | hidden = TRUE 8 | 9 | ; Information added by Drupal.org packaging script on 2016-12-07 10 | version = "7.53" 11 | project = "drupal" 12 | datestamp = "1481152423" 13 | 14 | -------------------------------------------------------------------------------- /modules/locale/locale-rtl.css: -------------------------------------------------------------------------------- 1 | 2 | #locale-translation-filter-form .form-item-language, 3 | #locale-translation-filter-form .form-item-translation, 4 | #locale-translation-filter-form .form-item-group { 5 | float: right; 6 | padding-left: .8em; 7 | padding-right: 0; 8 | } 9 | #locale-translation-filter-form .form-actions { 10 | float: right; 11 | padding: 3ex 1em 0 0; 12 | } 13 | -------------------------------------------------------------------------------- /modules/menu/menu.info: -------------------------------------------------------------------------------- 1 | name = Menu 2 | description = Allows administrators to customize the site navigation menu. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | files[] = menu.test 7 | configure = admin/structure/menu 8 | 9 | ; Information added by Drupal.org packaging script on 2016-12-07 10 | version = "7.53" 11 | project = "drupal" 12 | datestamp = "1481152423" 13 | 14 | -------------------------------------------------------------------------------- /modules/search/tests/search_embedded_form.info: -------------------------------------------------------------------------------- 1 | name = "Search embedded form" 2 | description = "Support module for search module testing of embedded forms." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /modules/syslog/syslog.info: -------------------------------------------------------------------------------- 1 | name = Syslog 2 | description = Logs and records system events to syslog. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | files[] = syslog.test 7 | configure = admin/config/development/logging 8 | 9 | ; Information added by Drupal.org packaging script on 2016-12-07 10 | version = "7.53" 11 | project = "drupal" 12 | datestamp = "1481152423" 13 | 14 | -------------------------------------------------------------------------------- /modules/contextual/contextual.info: -------------------------------------------------------------------------------- 1 | name = Contextual links 2 | description = Provides contextual links to perform actions related to elements on a page. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | files[] = contextual.test 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /modules/simpletest/tests/entity_query_access_test.info: -------------------------------------------------------------------------------- 1 | name = "Entity query access test" 2 | description = "Support module for checking entity query results." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /modules/simpletest/tests/xmlrpc_test.info: -------------------------------------------------------------------------------- 1 | name = "XML-RPC Test" 2 | description = "Support module for XML-RPC tests according to the validator1 specification." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /misc/ui/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * jQuery UI Selectable 1.8.7 4 | * 5 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 6 | * Dual licensed under the MIT or GPL Version 2 licenses. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Selectable#theming 10 | */ 11 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 12 | -------------------------------------------------------------------------------- /modules/simpletest/tests/common_test_cron_helper.info: -------------------------------------------------------------------------------- 1 | name = "Common Test Cron Helper" 2 | description = "Helper module for CronRunTestCase::testCronExceptions()." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /modules/statistics/statistics.info: -------------------------------------------------------------------------------- 1 | name = Statistics 2 | description = Logs access statistics for your site. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | files[] = statistics.test 7 | configure = admin/config/system/statistics 8 | 9 | ; Information added by Drupal.org packaging script on 2016-12-07 10 | version = "7.53" 11 | project = "drupal" 12 | datestamp = "1481152423" 13 | 14 | -------------------------------------------------------------------------------- /themes/bartik/css/ie6.css: -------------------------------------------------------------------------------- 1 | 2 | #content { 3 | overflow: hidden; 4 | } 5 | .form-item-search-block-form { 6 | width: 50%; 7 | } 8 | .tabs ul.primary, 9 | .region-header .block-menu li a, 10 | .comment-form .form-item { 11 | zoom: 1; 12 | } 13 | #block-search-form .form-item-search-block-form input { 14 | width: 67%; 15 | } 16 | .node-teaser { 17 | border-bottom: 1px solid #d3d7d9; 18 | } 19 | -------------------------------------------------------------------------------- /modules/contact/contact.info: -------------------------------------------------------------------------------- 1 | name = Contact 2 | description = Enables the use of both personal and site-wide contact forms. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | files[] = contact.test 7 | configure = admin/structure/contact 8 | 9 | ; Information added by Drupal.org packaging script on 2016-12-07 10 | version = "7.53" 11 | project = "drupal" 12 | datestamp = "1481152423" 13 | 14 | -------------------------------------------------------------------------------- /modules/image/image.info: -------------------------------------------------------------------------------- 1 | name = Image 2 | description = Provides image manipulation tools. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | dependencies[] = file 7 | files[] = image.test 8 | configure = admin/config/media/image-styles 9 | 10 | ; Information added by Drupal.org packaging script on 2016-12-07 11 | version = "7.53" 12 | project = "drupal" 13 | datestamp = "1481152423" 14 | 15 | -------------------------------------------------------------------------------- /modules/simpletest/tests/entity_cache_test_dependency.info: -------------------------------------------------------------------------------- 1 | name = "Entity cache test dependency" 2 | description = "Support dependency module for testing entity cache." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /modules/simpletest/tests/taxonomy_test.info: -------------------------------------------------------------------------------- 1 | name = "Taxonomy test module" 2 | description = "Tests functions and hooks not used in core". 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | dependencies[] = taxonomy 8 | 9 | ; Information added by Drupal.org packaging script on 2016-12-07 10 | version = "7.53" 11 | project = "drupal" 12 | datestamp = "1481152423" 13 | 14 | -------------------------------------------------------------------------------- /themes/seven/ie.css: -------------------------------------------------------------------------------- 1 | 2 | /* IE7 renders legends in nested fieldsets without a width. */ 3 | fieldset legend { 4 | height: 1%; 5 | } 6 | 7 | /* IE renders absolute positioned legend where fieldset content starts. */ 8 | fieldset .fieldset-legend { 9 | left: 0; 10 | top: 0; 11 | } 12 | 13 | /* IE renders monospace font too big. */ 14 | code, 15 | pre, 16 | kbd { 17 | font-size: 1em; 18 | } 19 | -------------------------------------------------------------------------------- /modules/filter/filter.info: -------------------------------------------------------------------------------- 1 | name = Filter 2 | description = Filters content in preparation for display. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | files[] = filter.test 7 | required = TRUE 8 | configure = admin/config/content/formats 9 | 10 | ; Information added by Drupal.org packaging script on 2016-12-07 11 | version = "7.53" 12 | project = "drupal" 13 | datestamp = "1481152423" 14 | 15 | -------------------------------------------------------------------------------- /modules/simpletest/tests/requirements1_test.info: -------------------------------------------------------------------------------- 1 | name = Requirements 1 Test 2 | description = "Tests that a module is not installed when it fails hook_requirements('install')." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /modules/update/tests/themes/update_test_subtheme/update_test_subtheme.info: -------------------------------------------------------------------------------- 1 | name = Update test subtheme 2 | description = Test theme which uses update_test_basetheme as the base theme. 3 | core = 7.x 4 | base theme = update_test_basetheme 5 | hidden = TRUE 6 | 7 | ; Information added by Drupal.org packaging script on 2016-12-07 8 | version = "7.53" 9 | project = "drupal" 10 | datestamp = "1481152423" 11 | 12 | -------------------------------------------------------------------------------- /modules/field/theme/field-rtl.css: -------------------------------------------------------------------------------- 1 | 2 | form .field-multiple-table th.field-label { 3 | padding-right: 0; 4 | } 5 | form .field-multiple-table td.field-multiple-drag { 6 | padding-left: 0; 7 | } 8 | form .field-multiple-table td.field-multiple-drag a.tabledrag-handle{ 9 | padding-left: .5em; 10 | } 11 | .field-label-inline .field-label, 12 | .field-label-inline .field-items { 13 | float: right; 14 | } 15 | -------------------------------------------------------------------------------- /modules/node/tests/node_test_exception.module: -------------------------------------------------------------------------------- 1 | title == 'testing_transaction_exception') { 13 | throw new Exception('Test exception for rollback.'); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /modules/simpletest/tests/common_test_info.txt: -------------------------------------------------------------------------------- 1 | ; Test parsing with a simple string. 2 | simple_string = A simple string 3 | 4 | ; Test that constants can be used as values. 5 | simple_constant = WATCHDOG_INFO 6 | 7 | ; After parsing the .info file, 'double_colon' should hold the literal value. 8 | ; Parsing should not throw a fatal error or try to access a class constant. 9 | double_colon = dummyClassName:: 10 | -------------------------------------------------------------------------------- /modules/simpletest/tests/system_incompatible_core_version_test.info: -------------------------------------------------------------------------------- 1 | name = "System incompatible core version test" 2 | description = "Support module for testing system dependencies." 3 | package = Testing 4 | version = VERSION 5 | core = 5.x 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /modules/simpletest/tests/system_incompatible_module_version_test.info: -------------------------------------------------------------------------------- 1 | name = "System incompatible module version test" 2 | description = "Support module for testing system dependencies." 3 | package = Testing 4 | version = 1.0 5 | core = 7.x 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /modules/system/tests/system_cron_test.module: -------------------------------------------------------------------------------- 1 | array( 14 | 'label' => variable_get('entity_cache_test_label', 'Entity Cache Test'), 15 | ), 16 | ); 17 | } 18 | -------------------------------------------------------------------------------- /modules/field/modules/field_sql_storage/field_sql_storage.info: -------------------------------------------------------------------------------- 1 | name = Field SQL storage 2 | description = Stores field data in an SQL database. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | dependencies[] = field 7 | files[] = field_sql_storage.test 8 | required = TRUE 9 | 10 | ; Information added by Drupal.org packaging script on 2016-12-07 11 | version = "7.53" 12 | project = "drupal" 13 | datestamp = "1481152423" 14 | 15 | -------------------------------------------------------------------------------- /modules/simpletest/tests/themes/test_subtheme/test_subtheme.info: -------------------------------------------------------------------------------- 1 | name = Theme test subtheme 2 | description = Test theme which uses test_basetheme as the base theme. 3 | core = 7.x 4 | base theme = test_basetheme 5 | hidden = TRUE 6 | 7 | settings[subtheme_override] = subtheme value 8 | 9 | ; Information added by Drupal.org packaging script on 2016-12-07 10 | version = "7.53" 11 | project = "drupal" 12 | datestamp = "1481152423" 13 | 14 | -------------------------------------------------------------------------------- /modules/simpletest/tests/system_project_namespace_test.info: -------------------------------------------------------------------------------- 1 | name = "System project namespace test" 2 | description = "Support module for testing project namespace dependencies." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | dependencies[] = drupal:filter 8 | 9 | ; Information added by Drupal.org packaging script on 2016-12-07 10 | version = "7.53" 11 | project = "drupal" 12 | datestamp = "1481152423" 13 | 14 | -------------------------------------------------------------------------------- /modules/taxonomy/taxonomy.info: -------------------------------------------------------------------------------- 1 | name = Taxonomy 2 | description = Enables the categorization of content. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | dependencies[] = options 7 | files[] = taxonomy.module 8 | files[] = taxonomy.test 9 | configure = admin/structure/taxonomy 10 | 11 | ; Information added by Drupal.org packaging script on 2016-12-07 12 | version = "7.53" 13 | project = "drupal" 14 | datestamp = "1481152423" 15 | 16 | -------------------------------------------------------------------------------- /modules/search/search.info: -------------------------------------------------------------------------------- 1 | name = Search 2 | description = Enables site-wide keyword searching. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | files[] = search.extender.inc 7 | files[] = search.test 8 | configure = admin/config/search/settings 9 | stylesheets[all][] = search.css 10 | 11 | ; Information added by Drupal.org packaging script on 2016-12-07 12 | version = "7.53" 13 | project = "drupal" 14 | datestamp = "1481152423" 15 | 16 | -------------------------------------------------------------------------------- /modules/forum/forum.info: -------------------------------------------------------------------------------- 1 | name = Forum 2 | description = Provides discussion forums. 3 | dependencies[] = taxonomy 4 | dependencies[] = comment 5 | package = Core 6 | version = VERSION 7 | core = 7.x 8 | files[] = forum.test 9 | configure = admin/structure/forum 10 | stylesheets[all][] = forum.css 11 | 12 | ; Information added by Drupal.org packaging script on 2016-12-07 13 | version = "7.53" 14 | project = "drupal" 15 | datestamp = "1481152423" 16 | 17 | -------------------------------------------------------------------------------- /modules/update/update.info: -------------------------------------------------------------------------------- 1 | name = Update manager 2 | description = Checks for available updates, and can securely install or update modules and themes via a web interface. 3 | version = VERSION 4 | package = Core 5 | core = 7.x 6 | files[] = update.test 7 | configure = admin/reports/updates/settings 8 | 9 | ; Information added by Drupal.org packaging script on 2016-12-07 10 | version = "7.53" 11 | project = "drupal" 12 | datestamp = "1481152423" 13 | 14 | -------------------------------------------------------------------------------- /modules/user/user.info: -------------------------------------------------------------------------------- 1 | name = User 2 | description = Manages the user registration and login system. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | files[] = user.module 7 | files[] = user.test 8 | required = TRUE 9 | configure = admin/config/people 10 | stylesheets[all][] = user.css 11 | 12 | ; Information added by Drupal.org packaging script on 2016-12-07 13 | version = "7.53" 14 | project = "drupal" 15 | datestamp = "1481152423" 16 | 17 | -------------------------------------------------------------------------------- /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 4 | version = VERSION 5 | core = 7.x 6 | files[] = locale.test 7 | configure = admin/config/regional/language 8 | 9 | ; Information added by Drupal.org packaging script on 2016-12-07 10 | version = "7.53" 11 | project = "drupal" 12 | datestamp = "1481152423" 13 | 14 | -------------------------------------------------------------------------------- /modules/simpletest/tests/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info: -------------------------------------------------------------------------------- 1 | name = "Drupal system listing compatible test" 2 | description = "Support module for testing the drupal_system_listing function." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /modules/aggregator/aggregator.info: -------------------------------------------------------------------------------- 1 | name = Aggregator 2 | description = "Aggregates syndicated content (RSS, RDF, and Atom feeds)." 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | files[] = aggregator.test 7 | configure = admin/config/services/aggregator/settings 8 | stylesheets[all][] = aggregator.css 9 | 10 | ; Information added by Drupal.org packaging script on 2016-12-07 11 | version = "7.53" 12 | project = "drupal" 13 | datestamp = "1481152423" 14 | 15 | -------------------------------------------------------------------------------- /modules/block/block.info: -------------------------------------------------------------------------------- 1 | name = Block 2 | description = Controls the visual building blocks a page is constructed with. Blocks are boxes of content rendered into an area, or region, of a web page. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | files[] = block.test 7 | configure = admin/structure/block 8 | 9 | ; Information added by Drupal.org packaging script on 2016-12-07 10 | version = "7.53" 11 | project = "drupal" 12 | datestamp = "1481152423" 13 | 14 | -------------------------------------------------------------------------------- /modules/simpletest/tests/drupal_system_listing_incompatible_test/drupal_system_listing_incompatible_test.info: -------------------------------------------------------------------------------- 1 | name = "Drupal system listing incompatible test" 2 | description = "Support module for testing the drupal_system_listing function." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /modules/simpletest/tests/theme_test.inc: -------------------------------------------------------------------------------- 1 | Theming Guide. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | stylesheets[all][] = layout.css 7 | 8 | ; Information added by Drupal.org packaging script on 2016-12-07 9 | version = "7.53" 10 | project = "drupal" 11 | datestamp = "1481152423" 12 | 13 | -------------------------------------------------------------------------------- /modules/dashboard/dashboard.info: -------------------------------------------------------------------------------- 1 | name = Dashboard 2 | description = Provides a dashboard page in the administrative interface for organizing administrative tasks and tracking information within your site. 3 | core = 7.x 4 | package = Core 5 | version = VERSION 6 | files[] = dashboard.test 7 | dependencies[] = block 8 | configure = admin/dashboard/customize 9 | 10 | ; Information added by Drupal.org packaging script on 2016-12-07 11 | version = "7.53" 12 | project = "drupal" 13 | datestamp = "1481152423" 14 | 15 | -------------------------------------------------------------------------------- /modules/simpletest/src/Tests/PSR4WebTest.php: -------------------------------------------------------------------------------- 1 | 'PSR4 web test', 10 | 'description' => 'We want to assert that this PSR-4 test case is being discovered.', 11 | 'group' => 'SimpleTest', 12 | ); 13 | } 14 | 15 | function testArithmetics() { 16 | $this->assert(1 + 1 == 2, '1 + 1 == 2'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /modules/aggregator/aggregator-wrapper.tpl.php: -------------------------------------------------------------------------------- 1 | 17 |
18 | 19 | 20 |
21 | -------------------------------------------------------------------------------- /profiles/testing/modules/drupal_system_listing_compatible_test/drupal_system_listing_compatible_test.info: -------------------------------------------------------------------------------- 1 | name = "Drupal system listing compatible test" 2 | description = "Support module for testing the drupal_system_listing function." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | files[] = drupal_system_listing_compatible_test.test 8 | 9 | ; Information added by Drupal.org packaging script on 2016-12-07 10 | version = "7.53" 11 | project = "drupal" 12 | datestamp = "1481152423" 13 | 14 | -------------------------------------------------------------------------------- /modules/blog/blog.install: -------------------------------------------------------------------------------- 1 | 'PSR0 web test', 10 | 'description' => 'We want to assert that this PSR-0 test case is being discovered.', 11 | 'group' => 'SimpleTest', 12 | ); 13 | } 14 | 15 | function testArithmetics() { 16 | $this->assert(1 + 1 == 2, '1 + 1 == 2'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test_trait.sh: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Example with Entities 5 | http://example.com 6 | Example RSS Feed With HTML Entities in Title 7 | en-us 8 | 9 | Quote" Amp& 10 | http://example.com/example-turns-one 11 | Some text. 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /modules/openid/tests/openid_test.install: -------------------------------------------------------------------------------- 1 | 'PSR4 example test: PSR-4 in disabled modules.', 10 | 'description' => 'We want to assert that this test case is being discovered.', 11 | 'group' => 'SimpleTest', 12 | ); 13 | } 14 | 15 | function testArithmetics() { 16 | $this->assert(1 + 1 == 2, '1 + 1 == 2'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /includes/database/sqlite/select.inc: -------------------------------------------------------------------------------- 1 | 'PSR0 example test: PSR-0 in disabled modules.', 10 | 'description' => 'We want to assert that this test case is being discovered.', 11 | 'group' => 'SimpleTest', 12 | ); 13 | } 14 | 15 | function testArithmetics() { 16 | $this->assert(1 + 1 == 2, '1 + 1 == 2'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /modules/simpletest/tests/system_incompatible_module_version_dependencies_test.info: -------------------------------------------------------------------------------- 1 | name = "System incompatible module version dependencies test" 2 | description = "Support module for testing system dependencies." 3 | package = Testing 4 | version = VERSION 5 | core = 7.x 6 | hidden = TRUE 7 | ; system_incompatible_module_version_test declares version 1.0 8 | dependencies[] = system_incompatible_module_version_test (>2.0) 9 | 10 | ; Information added by Drupal.org packaging script on 2016-12-07 11 | version = "7.53" 12 | project = "drupal" 13 | datestamp = "1481152423" 14 | 15 | -------------------------------------------------------------------------------- /modules/simpletest/tests/update_test_3.install: -------------------------------------------------------------------------------- 1 | 7000, 16 | ); 17 | return $dependencies; 18 | } 19 | 20 | /** 21 | * Dummy update_test_3 update 7000. 22 | */ 23 | function update_test_3_update_7000() { 24 | } 25 | -------------------------------------------------------------------------------- /modules/overlay/overlay.install: -------------------------------------------------------------------------------- 1 | #overlay=admin/modules on hook_init(). 17 | $_SESSION['overlay_enable_redirect'] = 1; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /modules/simpletest/tests/psr_4_test/src/Tests/Nested/NestedExampleTest.php: -------------------------------------------------------------------------------- 1 | 'PSR4 example test: PSR-4 in nested subfolders.', 10 | 'description' => 'We want to assert that this PSR-4 test case is being discovered.', 11 | 'group' => 'SimpleTest', 12 | ); 13 | } 14 | 15 | function testArithmetics() { 16 | $this->assert(1 + 1 == 2, '1 + 1 == 2'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /modules/color/preview.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |

Lorem ipsum dolor

4 |

Sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

5 |
6 |
7 |
-------------------------------------------------------------------------------- /modules/system/system.cron.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | 3 | /** 4 | * Checks to see if the cron should be automatically run. 5 | */ 6 | Drupal.behaviors.cronCheck = { 7 | attach: function(context, settings) { 8 | if (settings.cronCheck || false) { 9 | $('body').once('cron-check', function() { 10 | // Only execute the cron check if its the right time. 11 | if (Math.round(new Date().getTime() / 1000.0) > settings.cronCheck) { 12 | $.get(settings.basePath + 'system/run-cron-check'); 13 | } 14 | }); 15 | } 16 | } 17 | }; 18 | 19 | })(jQuery); 20 | -------------------------------------------------------------------------------- /modules/simpletest/tests/upgrade/drupal-7.field.database.php: -------------------------------------------------------------------------------- 1 | fields(array( 9 | 'name', 10 | 'value', 11 | )) 12 | ->values(array( 13 | 'name' => 'field_bundle_settings', 14 | 'value' => 'a:1:{s:4:"node";a:1:{s:4:"poll";a:1:{s:12:"extra_fields";a:1:{s:7:"display";a:2:{s:16:"poll_view_voting";a:1:{s:7:"default";a:2:{s:6:"weight";s:1:"0";s:7:"visible";b:1;}}s:17:"poll_view_results";a:1:{s:7:"default";a:2:{s:6:"weight";s:1:"0";s:7:"visible";b:0;}}}}}}}', 15 | )) 16 | ->execute(); 17 | -------------------------------------------------------------------------------- /modules/locale/tests/translations/test.xx.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: Drupal 7\\n" 4 | "MIME-Version: 1.0\\n" 5 | "Content-Type: text/plain; charset=UTF-8\\n" 6 | "Content-Transfer-Encoding: 8bit\\n" 7 | "Plural-Forms: nplurals=2; plural=(n > 1);\\n" 8 | 9 | msgid "Monday" 10 | msgstr "lundi" 11 | 12 | msgid "Tuesday" 13 | msgstr "mardi" 14 | 15 | msgid "Wednesday" 16 | msgstr "mercredi" 17 | 18 | msgid "Thursday" 19 | msgstr "jeudi" 20 | 21 | msgid "Friday" 22 | msgstr "vendredi" 23 | 24 | msgid "Saturday" 25 | msgstr "samedi" 26 | 27 | msgid "Sunday" 28 | msgstr "dimanche" 29 | -------------------------------------------------------------------------------- /modules/simpletest/files/css_test_files/css_subfolder/css_input_with_import.css: -------------------------------------------------------------------------------- 1 | 2 | 3 | @import "../import1.css"; 4 | @import "../import2.css"; 5 | 6 | body { 7 | margin: 0; 8 | padding: 0; 9 | background: #edf5fa; 10 | font: 76%/170% Verdana, sans-serif; 11 | color: #494949; 12 | } 13 | 14 | .this .is .a .test { 15 | font: 1em/100% Verdana, sans-serif; 16 | color: #494949; 17 | } 18 | .this 19 | .is 20 | .a 21 | .test { 22 | font: 1em/100% Verdana, sans-serif; 23 | color: #494949; 24 | } 25 | 26 | textarea, select { 27 | font: 1em/160% Verdana, sans-serif; 28 | color: #494949; 29 | } 30 | -------------------------------------------------------------------------------- /modules/simpletest/tests/psr_0_test/lib/Drupal/psr_0_test/Tests/Nested/NestedExampleTest.php: -------------------------------------------------------------------------------- 1 | 'PSR0 example test: PSR-0 in nested subfolders.', 10 | 'description' => 'We want to assert that this PSR-0 test case is being discovered.', 11 | 'group' => 'SimpleTest', 12 | ); 13 | } 14 | 15 | function testArithmetics() { 16 | $this->assert(1 + 1 == 2, '1 + 1 == 2'); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /modules/rdf/tests/rdf_test.install: -------------------------------------------------------------------------------- 1 | 'node', 15 | 'bundle' => 'test_bundle_hook_install', 16 | 'mapping' => array( 17 | 'rdftype' => array('foo:mapping_install1', 'bar:mapping_install2'), 18 | ), 19 | ), 20 | ); 21 | 22 | foreach ($rdf_mappings as $rdf_mapping) { 23 | rdf_mapping_save($rdf_mapping); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /scripts/code-clean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | find . -name "*~" -type f | xargs rm -f 4 | find . -name ".#*" -type f | xargs rm -f 5 | find . -name "*.rej" -type f | xargs rm -f 6 | find . -name "*.orig" -type f | xargs rm -f 7 | find . -name "DEADJOE" -type f | xargs rm -f 8 | find . -type f | grep -v ".psp" | grep -v ".gif" | grep -v ".jpg" | grep -v ".png" | grep -v ".tgz" | grep -v ".ico" | grep -v "druplicon" | xargs perl -wi -pe 's/\s+$/\n/' 9 | find . -type f | grep -v ".psp" | grep -v ".gif" | grep -v ".jpg" | grep -v ".png" | grep -v ".tgz" | grep -v ".ico" | grep -v "druplicon" | xargs perl -wi -pe 's/\t/ /g' 10 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | $t('Requirements 1 Test'), 15 | 'severity' => REQUIREMENT_ERROR, 16 | 'description' => $t('Requirements 1 Test failed requirements.'), 17 | ); 18 | } 19 | 20 | return $requirements; 21 | } 22 | -------------------------------------------------------------------------------- /modules/block/tests/themes/block_test_theme/block_test_theme.info: -------------------------------------------------------------------------------- 1 | name = Block test theme 2 | description = Theme for testing the block system 3 | core = 7.x 4 | hidden = TRUE 5 | 6 | regions[sidebar_first] = Left sidebar 7 | regions_hidden[] = sidebar_first 8 | regions[sidebar_second] = Right sidebar 9 | regions_hidden[] = sidebar_second 10 | regions[content] = Content 11 | regions[header] = Header 12 | regions[footer] = Footer 13 | regions[highlighted] = Highlighted 14 | regions[help] = Help 15 | 16 | ; Information added by Drupal.org packaging script on 2016-12-07 17 | version = "7.53" 18 | project = "drupal" 19 | datestamp = "1481152423" 20 | 21 | -------------------------------------------------------------------------------- /modules/search/tests/search_node_tags.module: -------------------------------------------------------------------------------- 1 | hasTag('search_node')) { 14 | variable_set('search_node_tags_test_query_tag', TRUE); 15 | } 16 | } 17 | 18 | /** 19 | * Implements hook_query_TAG_alter(). 20 | */ 21 | function search_node_tags_query_search_node_alter(QueryAlterableInterface $query) { 22 | variable_set('search_node_tags_test_query_tag_hook', TRUE); 23 | } 24 | -------------------------------------------------------------------------------- /themes/seven/seven.info: -------------------------------------------------------------------------------- 1 | name = Seven 2 | description = A simple one-column, tableless, fluid width administration theme. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | stylesheets[screen][] = reset.css 7 | stylesheets[screen][] = style.css 8 | settings[shortcut_module_link] = 1 9 | regions[content] = Content 10 | regions[help] = Help 11 | regions[page_top] = Page top 12 | regions[page_bottom] = Page bottom 13 | regions[sidebar_first] = First sidebar 14 | regions_hidden[] = sidebar_first 15 | 16 | ; Information added by Drupal.org packaging script on 2016-12-07 17 | version = "7.53" 18 | project = "drupal" 19 | datestamp = "1481152423" 20 | 21 | -------------------------------------------------------------------------------- /misc/ui/jquery.effects.fade.min.js: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * jQuery UI Effects Fade 1.8.7 4 | * 5 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 6 | * Dual licensed under the MIT or GPL Version 2 licenses. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Effects/Fade 10 | * 11 | * Depends: 12 | * jquery.effects.core.js 13 | */ 14 | (function(b){b.effects.fade=function(a){return this.queue(function(){var c=b(this),d=b.effects.setMode(c,a.options.mode||"hide");c.animate({opacity:d},{queue:false,duration:a.duration,easing:a.options.easing,complete:function(){a.callback&&a.callback.apply(this,arguments);c.dequeue()}})})}})(jQuery); 15 | -------------------------------------------------------------------------------- /modules/filter/filter.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | 3 | /** 4 | * Automatically display the guidelines of the selected text format. 5 | */ 6 | Drupal.behaviors.filterGuidelines = { 7 | attach: function (context) { 8 | $('.filter-guidelines', context).once('filter-guidelines') 9 | .find(':header').hide() 10 | .closest('.filter-wrapper').find('select.filter-list') 11 | .bind('change', function () { 12 | $(this).closest('.filter-wrapper') 13 | .find('.filter-guidelines-item').hide() 14 | .siblings('.filter-guidelines-' + this.value).show(); 15 | }) 16 | .change(); 17 | } 18 | }; 19 | 20 | })(jQuery); 21 | -------------------------------------------------------------------------------- /modules/simpletest/tests/system_test.install: -------------------------------------------------------------------------------- 1 | 19 | 20 |
21 | 22 | 23 |
24 | 25 | -------------------------------------------------------------------------------- /modules/simpletest/tests/boot_test_1.module: -------------------------------------------------------------------------------- 1 | fields(array( 9 | 'hook', 10 | 'aid', 11 | 'weight', 12 | )) 13 | ->values(array( 14 | 'hook' => 'node_presave', 15 | 'aid' => 'node_publish_action', 16 | 'weight' => '1', 17 | )) 18 | ->values(array( 19 | 'hook' => 'comment_presave', 20 | 'aid' => 'comment_publish_action', 21 | 'weight' => '1', 22 | )) 23 | ->values(array( 24 | 'hook' => 'comment_delete', 25 | 'aid' => 'node_save_action', 26 | 'weight' => '1', 27 | )) 28 | ->execute(); 29 | -------------------------------------------------------------------------------- /modules/aggregator/tests/aggregator_test_atom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Example Feed 5 | 6 | 2003-12-13T18:30:02Z 7 | 8 | John Doe 9 | 10 | urn:uuid:60a76c80-d399-11d9-b93C-0003939e0af6 11 | 12 | 13 | Atom-Powered Robots Run Amok 14 | 15 | urn:uuid:1225c695-cfb8-4ebb-aaaa-80da344efa6a 16 | 2003-12-13T18:30:02Z 17 | Some text. 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /modules/field/theme/field.css: -------------------------------------------------------------------------------- 1 | 2 | /* Field display */ 3 | .field .field-label { 4 | font-weight: bold; 5 | } 6 | .field-label-inline .field-label, 7 | .field-label-inline .field-items { 8 | float:left; /*LTR*/ 9 | } 10 | 11 | /* Form display */ 12 | form .field-multiple-table { 13 | margin: 0; 14 | } 15 | form .field-multiple-table th.field-label { 16 | padding-left: 0; /*LTR*/ 17 | } 18 | form .field-multiple-table td.field-multiple-drag { 19 | width: 30px; 20 | padding-right: 0; /*LTR*/ 21 | } 22 | form .field-multiple-table td.field-multiple-drag a.tabledrag-handle { 23 | padding-right: .5em; /*LTR*/ 24 | } 25 | 26 | form .field-add-more-submit { 27 | margin: .5em 0 0; 28 | } 29 | -------------------------------------------------------------------------------- /modules/update/update-rtl.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @file 3 | * RTL styles used by the Update Manager module. 4 | */ 5 | 6 | .update .project { 7 | padding-right: .25em; 8 | } 9 | 10 | .update .version-status { 11 | float: left; 12 | padding-left: 10px; 13 | } 14 | 15 | .update .version-status .icon { 16 | padding-right: .5em; 17 | } 18 | 19 | .update table.version .version-title { 20 | padding-left: 1em; 21 | } 22 | 23 | .update table.version .version-details { 24 | padding-left: .5em; 25 | direction: ltr; 26 | } 27 | 28 | .update table.version .version-links { 29 | text-align: left; 30 | padding-left: 1em; 31 | } 32 | 33 | .update .check-manually { 34 | padding-right: 1em; 35 | } 36 | -------------------------------------------------------------------------------- /modules/system/tests/cron_queue_test.module: -------------------------------------------------------------------------------- 1 | 'cron_queue_test_exception', 9 | ); 10 | $queues['cron_queue_test_callback'] = array( 11 | 'worker callback' => array('CronQueueTestCallbackClass', 'foo'), 12 | ); 13 | 14 | return $queues; 15 | } 16 | 17 | function cron_queue_test_exception($item) { 18 | throw new Exception('That is not supposed to happen.'); 19 | } 20 | 21 | class CronQueueTestCallbackClass { 22 | 23 | static public function foo() { 24 | // Do nothing. 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /modules/simpletest/tests/themes/test_theme/template.php: -------------------------------------------------------------------------------- 1 | filename) . '/template.php'; 13 | if (file_exists($file)) { 14 | include_once DRUPAL_ROOT . '/' . $file; 15 | } 16 | } 17 | 18 | /** 19 | * Implements hook_theme(). 20 | */ 21 | function phptemplate_theme($existing, $type, $theme, $path) { 22 | $templates = drupal_find_theme_functions($existing, array($theme)); 23 | $templates += drupal_find_theme_templates($existing, '.tpl.php', $path); 24 | return $templates; 25 | } 26 | -------------------------------------------------------------------------------- /modules/book/book.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @file 3 | * Javascript behaviors for the Book module. 4 | */ 5 | 6 | (function ($) { 7 | 8 | Drupal.behaviors.bookFieldsetSummaries = { 9 | attach: function (context) { 10 | $('fieldset.book-outline-form', context).drupalSetSummary(function (context) { 11 | var $select = $('.form-item-book-bid select'); 12 | var val = $select.val(); 13 | 14 | if (val === '0') { 15 | return Drupal.t('Not in book'); 16 | } 17 | else if (val === 'new') { 18 | return Drupal.t('New book'); 19 | } 20 | else { 21 | return Drupal.checkPlain($select.find(':selected').text()); 22 | } 23 | }); 24 | } 25 | }; 26 | 27 | })(jQuery); 28 | -------------------------------------------------------------------------------- /profiles/testing/testing.install: -------------------------------------------------------------------------------- 1 | 19 | 20 |
21 | 22 |
23 | 24 | -------------------------------------------------------------------------------- /modules/search/search.css: -------------------------------------------------------------------------------- 1 | 2 | .search-form { 3 | margin-bottom: 1em; 4 | } 5 | .search-form input { 6 | margin-top: 0; 7 | margin-bottom: 0; 8 | } 9 | .search-results { 10 | list-style: none; 11 | } 12 | .search-results p { 13 | margin-top: 0; 14 | } 15 | .search-results .title { 16 | font-size: 1.2em; 17 | } 18 | .search-results li { 19 | margin-bottom: 1em; 20 | } 21 | .search-results .search-snippet-info { 22 | padding-left: 1em; /* LTR */ 23 | } 24 | .search-results .search-info { 25 | font-size: 0.85em; 26 | } 27 | .search-advanced .criterion { 28 | float: left; /* LTR */ 29 | margin-right: 2em; /* LTR */ 30 | } 31 | .search-advanced .action { 32 | float: left; /* LTR */ 33 | clear: left; /* LTR */ 34 | } 35 | -------------------------------------------------------------------------------- /modules/simpletest/tests/drupal_autoload_test/drupal_autoload_test.module: -------------------------------------------------------------------------------- 1 | name == 'drupal_autoload_test' && version_compare(PHP_VERSION, '5.4') >= 0) { 16 | $files["$module->dir/drupal_autoload_test_trait.sh"] = array( 17 | 'module' => $module->name, 18 | 'weight' => $module->weight, 19 | ); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /modules/file/file.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @file 3 | * Admin stylesheet for file module. 4 | */ 5 | 6 | /** 7 | * Managed file element styles. 8 | */ 9 | .form-managed-file .form-file, 10 | .form-managed-file .form-submit { 11 | margin: 0; 12 | } 13 | 14 | .form-managed-file input.progress-disabled { 15 | float: none; 16 | display: inline; 17 | } 18 | 19 | .form-managed-file div.ajax-progress, 20 | .form-managed-file div.throbber { 21 | display: inline; 22 | float: none; 23 | padding: 1px 5px 2px 5px; 24 | } 25 | 26 | .form-managed-file div.ajax-progress-bar { 27 | display: none; 28 | margin-top: 4px; 29 | width: 28em; 30 | padding: 0; 31 | } 32 | 33 | .form-managed-file div.ajax-progress-bar div.bar { 34 | margin: 0; 35 | } 36 | -------------------------------------------------------------------------------- /modules/system/system.menus-rtl.css: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * @file 4 | * RTL styles for menus and navigation markup. 5 | */ 6 | 7 | ul.menu { 8 | text-align:right; 9 | } 10 | ul.menu li { 11 | margin: 0 0.5em 0 0; 12 | } 13 | ul li.collapsed { 14 | list-style-image: url(../../misc/menu-collapsed-rtl.png); 15 | } 16 | li.expanded, 17 | li.collapsed, 18 | li.leaf { 19 | padding: 0.2em 0 0 0.5em; 20 | } 21 | 22 | /** 23 | * Markup generated by theme_menu_local_tasks(). 24 | */ 25 | ul.primary { 26 | padding: 0 1em 0 0; 27 | } 28 | ul.primary li a { 29 | margin-right: 5px; 30 | margin-left: 0.5em; 31 | } 32 | ul.secondary li { 33 | border-left: 1px solid #ccc; 34 | border-right: none; 35 | display: inline; 36 | padding: 0 1em; 37 | } 38 | -------------------------------------------------------------------------------- /misc/farbtastic/farbtastic.css: -------------------------------------------------------------------------------- 1 | 2 | .farbtastic { 3 | position: relative; 4 | } 5 | .farbtastic * { 6 | position: absolute; 7 | cursor: crosshair; 8 | } 9 | .farbtastic, 10 | .farbtastic .wheel { 11 | width: 195px; 12 | height: 195px; 13 | } 14 | .farbtastic .color, 15 | .farbtastic .overlay { 16 | top: 47px; 17 | left: 47px; 18 | width: 101px; 19 | height: 101px; 20 | } 21 | .farbtastic .wheel { 22 | background: url(wheel.png) no-repeat; 23 | width: 195px; 24 | height: 195px; 25 | } 26 | .farbtastic .overlay { 27 | background: url(mask.png) no-repeat; 28 | } 29 | .farbtastic .marker { 30 | width: 17px; 31 | height: 17px; 32 | margin: -8px 0 0 -8px; 33 | overflow: hidden; 34 | background: url(marker.png) no-repeat; 35 | } 36 | 37 | -------------------------------------------------------------------------------- /modules/toolbar/toolbar-rtl.css: -------------------------------------------------------------------------------- 1 | 2 | #toolbar, 3 | #toolbar * { 4 | text-align: right; 5 | } 6 | #toolbar ul li { 7 | float: right; 8 | } 9 | #toolbar ul li a { 10 | display: inline-block; 11 | float: none; 12 | zoom: 1; 13 | } 14 | #toolbar div.toolbar-menu { 15 | padding: 5px 50px 5px 50px; 16 | } 17 | #toolbar-user { 18 | float: left; 19 | } 20 | #toolbar ul#toolbar-user li { 21 | float: none; 22 | display: inline; 23 | } 24 | #toolbar-menu { 25 | float: none; 26 | } 27 | #toolbar-home { 28 | float: right; 29 | } 30 | #toolbar ul li.home a { 31 | position: absolute; 32 | right: 10px; 33 | } 34 | #toolbar div.toolbar-menu a.toggle { 35 | left: 10px; 36 | right: auto; 37 | } 38 | * html #toolbar { 39 | left: 0; 40 | padding-left: 0; 41 | } 42 | -------------------------------------------------------------------------------- /modules/overlay/overlay-child-rtl.css: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * @file 4 | * RTL styling for Overlay child pages. 5 | */ 6 | 7 | html { 8 | direction: rtl; 9 | } 10 | 11 | #overlay-title { 12 | float: right; 13 | left: auto; 14 | } 15 | #overlay { 16 | padding: 0.2em; 17 | padding-left: 26px; 18 | } 19 | #overlay-close-wrapper { 20 | left: 0; 21 | right: auto; 22 | } 23 | #overlay-close, 24 | #overlay-close:hover { 25 | background: transparent url(images/close-rtl.png) no-repeat; 26 | -moz-border-radius-topright: 0; 27 | -webkit-border-top-right-radius: 0; 28 | border-top-right-radius: 0; 29 | } 30 | 31 | /** 32 | * Tabs on the overlay. 33 | */ 34 | #overlay-tabs { 35 | left: 20px; 36 | right: auto; 37 | } 38 | #overlay-tabs li { 39 | margin: 0 -3px 0 0; 40 | } 41 | -------------------------------------------------------------------------------- /includes/database/mysql/install.inc: -------------------------------------------------------------------------------- 1 | 21 |

22 | 23 | 26 | -------------------------------------------------------------------------------- /modules/book/book-all-books-block.tpl.php: -------------------------------------------------------------------------------- 1 | 19 | $menu): ?> 20 |
21 | 22 |
23 | 24 | -------------------------------------------------------------------------------- /install.php: -------------------------------------------------------------------------------- 1 | system requirements page for more information.'; 21 | exit; 22 | } 23 | 24 | // Start the installer. 25 | require_once DRUPAL_ROOT . '/includes/install.core.inc'; 26 | install_drupal(); 27 | -------------------------------------------------------------------------------- /modules/book/book-node-export-html.tpl.php: -------------------------------------------------------------------------------- 1 | 21 |
22 |

23 | 24 | 25 |
26 | -------------------------------------------------------------------------------- /modules/forum/forum-icon.tpl.php: -------------------------------------------------------------------------------- 1 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | -------------------------------------------------------------------------------- /cron.php: -------------------------------------------------------------------------------- 1 | 19 | 20 |
21 |
22 |
23 |
24 |
25 | % 26 |
27 | -------------------------------------------------------------------------------- /modules/aggregator/aggregator-summary-item.tpl.php: -------------------------------------------------------------------------------- 1 | 20 | 21 | 22 | 23 | , 24 | 25 | 26 | -------------------------------------------------------------------------------- /modules/simpletest/tests/upgrade/drupal-6.node_type_broken.database.php: -------------------------------------------------------------------------------- 1 | fields(array( 3 | 'cid', 4 | 'pid', 5 | 'nid', 6 | 'uid', 7 | 'subject', 8 | 'comment', 9 | 'hostname', 10 | 'timestamp', 11 | 'status', 12 | 'format', 13 | 'thread', 14 | 'name', 15 | 'mail', 16 | 'homepage', 17 | )) 18 | ->values(array( 19 | 'cid' => 1, 20 | 'pid' => 0, 21 | 'nid' => 37, 22 | 'uid' => 3, 23 | 'subject' => 'Comment title 1', 24 | 'comment' => 'Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1', 25 | 'hostname' => '127.0.0.1', 26 | 'timestamp' => 1008617630, 27 | 'status' => 0, 28 | 'format' => 1, 29 | 'thread' => '01/', 30 | 'name' => NULL, 31 | 'mail' => NULL, 32 | 'homepage' => '', 33 | )) 34 | ->execute(); 35 | -------------------------------------------------------------------------------- /modules/forum/forum-submitted.tpl.php: -------------------------------------------------------------------------------- 1 | 21 | 22 | 23 | $time, 25 | '!author' => $author, 26 | )); ?> 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /modules/dashboard/dashboard-rtl.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @file 3 | * Right-to-left specific stylesheet for the Dashboard module. 4 | */ 5 | 6 | #dashboard div.dashboard-region { 7 | float: right; 8 | } 9 | #dashboard #disabled-blocks .block, #dashboard .block-placeholder { 10 | float: right; 11 | margin: 3px 0 3px 3px; 12 | padding: 6px 8px 6px 4px; 13 | } 14 | #dashboard .canvas-content a.button { 15 | margin: 0 10px 0 0; 16 | } 17 | #dashboard .ui-sortable .block h2 { 18 | background-position: right -39px; 19 | padding: 0 19px; 20 | } 21 | #dashboard.customize-inactive #disabled-blocks .block:hover h2 { 22 | background-position: right -39px; 23 | } 24 | #dashboard.customize-inactive .dashboard-region .ui-sortable .block:hover h2 { 25 | background-position: right -36px; 26 | } 27 | #dashboard div#dashboard_main { 28 | margin-left: 1%; 29 | margin-right: 0; 30 | } 31 | -------------------------------------------------------------------------------- /modules/simpletest/files/css_test_files/css_input_without_import.css.optimized.css: -------------------------------------------------------------------------------- 1 | body{margin:0;padding:0;background:#edf5fa;font:76%/170% Verdana,sans-serif;color:#494949;}.this .is .a .test{font:1em/100% Verdana,sans-serif;color:#494949;}.this 2 | .is 3 | .a 4 | .test{font:1em/100% Verdana,sans-serif;color:#494949;}some :pseudo .thing{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;filter:progid:DXImageTransform.Microsoft.Shadow(color=#000000,direction='180',strength='10');-ms-filter:"progid:DXImageTransform.Microsoft.Shadow(color=#000000,direction='180',strength='10')";}::-moz-selection{background:#000;color:#fff;}::selection{background:#000;color:#fff;}@media print{*{background:#000 !important;color:#fff !important;}@page{margin:0.5cm;}}@media screen and (max-device-width:480px){background:#000;color:#fff;}textarea,select{font:1em/160% Verdana,sans-serif;color:#494949;} 5 | -------------------------------------------------------------------------------- /themes/bartik/css/print.css: -------------------------------------------------------------------------------- 1 | 2 | /* ---------- General Layout ---------- */ 3 | 4 | body, 5 | input, 6 | textarea, 7 | select { 8 | color: #000; 9 | background: none; 10 | } 11 | body.two-sidebars, 12 | body.sidebar-first, 13 | body.sidebar-second, 14 | body { 15 | width: 640px; 16 | } 17 | #sidebar-first, 18 | #sidebar-second, 19 | .navigation, 20 | #toolbar, 21 | #footer-wrapper, 22 | .tabs, 23 | .add-or-remove-shortcuts { 24 | display: none; 25 | } 26 | .one-sidebar #content, 27 | .two-sidebars #content { 28 | width: 100%; 29 | } 30 | #triptych-wrapper { 31 | width: 960px; 32 | margin: 0; 33 | padding: 0; 34 | border: none; 35 | } 36 | #triptych-first, #triptych-middle, #triptych-last { 37 | width: 250px; 38 | } 39 | 40 | /* ---------- Node Pages ---------- */ 41 | 42 | #comments .title, 43 | #comments form, 44 | .comment_forbidden { 45 | display: none; 46 | } 47 | -------------------------------------------------------------------------------- /modules/simpletest/files/css_test_files/comment_hacks.css.optimized.css: -------------------------------------------------------------------------------- 1 | .test1{display:block;}html .clear-block{height:1%;}.clear-block{display:block;font:italic bold 12px/30px Georgia,serif;}.test2{display:block;}.bkslshv1{background-color:#C00;}.test3{display:block;}.test4{display:block;}.comment-in-double-quotes:before{content:"/* ";}.this_rule_must_stay{color:#F00;background-color:#FFF;}.comment-in-double-quotes:after{content:" */";}.comment-in-single-quotes:before{content:'/*';}.this_rule_must_stay{color:#F00;background-color:#FFF;}.comment-in-single-quotes:after{content:'*/';}.comment-in-mixed-quotes:before{content:'"/*"';}.this_rule_must_stay{color:#F00;background-color:#FFF;}.comment-in-mixed-quotes:after{content:"'*/'";}.comment-in-quotes-with-escaped:before{content:'/* \" \' */';}.this_rule_must_stay{color:#F00;background-color:#FFF;}.comment-in-quotes-with-escaped:after{content:"*/ \" \ '";} 2 | -------------------------------------------------------------------------------- /modules/field/modules/list/tests/list_test.module: -------------------------------------------------------------------------------- 1 | array( 14 | 0 => 'Zero', 15 | ), 16 | 1 => 'One', 17 | 'Group 2' => array( 18 | 2 => 'Some & unescaped markup', 19 | ), 20 | ); 21 | 22 | return $values; 23 | } 24 | 25 | /** 26 | * An entity-bound allowed values callback. 27 | */ 28 | function list_test_dynamic_values_callback($field, $instance, $entity_type, $entity, &$cacheable) { 29 | $cacheable = FALSE; 30 | // We need the values of the entity as keys. 31 | return drupal_map_assoc(array_merge(array($entity->ftlabel), entity_extract_ids($entity_type, $entity))); 32 | } 33 | -------------------------------------------------------------------------------- /misc/ui/jquery.effects.transfer.min.js: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * jQuery UI Effects Transfer 1.8.7 4 | * 5 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 6 | * Dual licensed under the MIT or GPL Version 2 licenses. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Effects/Transfer 10 | * 11 | * Depends: 12 | * jquery.effects.core.js 13 | */ 14 | (function(e){e.effects.transfer=function(a){return this.queue(function(){var b=e(this),c=e(a.options.to),d=c.offset();c={top:d.top,left:d.left,height:c.innerHeight(),width:c.innerWidth()};d=b.offset();var f=e('
').appendTo(document.body).addClass(a.options.className).css({top:d.top,left:d.left,height:b.innerHeight(),width:b.innerWidth(),position:"absolute"}).animate(c,a.duration,a.options.easing,function(){f.remove();a.callback&&a.callback.apply(b[0],arguments); 15 | b.dequeue()})})}})(jQuery); 16 | -------------------------------------------------------------------------------- /profiles/standard/standard.info: -------------------------------------------------------------------------------- 1 | name = Standard 2 | description = Install with commonly used features pre-configured. 3 | version = VERSION 4 | core = 7.x 5 | dependencies[] = block 6 | dependencies[] = color 7 | dependencies[] = comment 8 | dependencies[] = contextual 9 | dependencies[] = dashboard 10 | dependencies[] = help 11 | dependencies[] = image 12 | dependencies[] = list 13 | dependencies[] = menu 14 | dependencies[] = number 15 | dependencies[] = options 16 | dependencies[] = path 17 | dependencies[] = taxonomy 18 | dependencies[] = dblog 19 | dependencies[] = search 20 | dependencies[] = shortcut 21 | dependencies[] = toolbar 22 | dependencies[] = overlay 23 | dependencies[] = field_ui 24 | dependencies[] = file 25 | dependencies[] = rdf 26 | 27 | ; Information added by Drupal.org packaging script on 2016-12-07 28 | version = "7.53" 29 | project = "drupal" 30 | datestamp = "1481152423" 31 | 32 | -------------------------------------------------------------------------------- /modules/poll/poll-bar.tpl.php: -------------------------------------------------------------------------------- 1 | 19 | 20 |
21 |
22 |
23 |
24 |
25 | % () 26 |
27 | -------------------------------------------------------------------------------- /themes/garland/theme-settings.php: -------------------------------------------------------------------------------- 1 | 'radios', 20 | '#title' => t('Content width'), 21 | '#options' => array( 22 | 'fluid' => t('Fluid width'), 23 | 'fixed' => t('Fixed width'), 24 | ), 25 | '#default_value' => theme_get_setting('garland_width'), 26 | '#description' => t('Specify whether the content will wrap to a fixed width or will fluidly expand to the width of the browser window.'), 27 | // Place this above the color scheme options. 28 | '#weight' => -2, 29 | ); 30 | } 31 | -------------------------------------------------------------------------------- /modules/block/block.css: -------------------------------------------------------------------------------- 1 | 2 | #blocks tr.region-title td { 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 | a.block-demo-backlink, 19 | a.block-demo-backlink:link, 20 | a.block-demo-backlink:visited { 21 | background-color: #B4D7F0; 22 | -moz-border-radius: 0 0 10px 10px; 23 | -webkit-border-radius: 0 0 10px 10px; 24 | border-radius: 0 0 10px 10px; 25 | color: #000; 26 | font-family: "Lucida Grande", Verdana, sans-serif; 27 | font-size: small; 28 | line-height: 20px; 29 | left: 20px; /*LTR*/ 30 | padding: 5px 10px; 31 | position: fixed; 32 | z-index: 499; 33 | } 34 | a.block-demo-backlink:hover { 35 | text-decoration: underline; 36 | } 37 | -------------------------------------------------------------------------------- /modules/simpletest/tests/taxonomy_test.install: -------------------------------------------------------------------------------- 1 | 'Stores term antonym.', 14 | 'fields' => array( 15 | 'tid' => array( 16 | 'type' => 'int', 17 | 'unsigned' => TRUE, 18 | 'not null' => TRUE, 19 | 'default' => 0, 20 | 'description' => 'The {taxonomy_term_data}.tid of the term.', 21 | ), 22 | 'name' => array( 23 | 'type' => 'varchar', 24 | 'length' => 255, 25 | 'not null' => TRUE, 26 | 'default' => '', 27 | 'description' => 'The name of the antonym.', 28 | ), 29 | ), 30 | 'primary key' => array('tid'), 31 | ); 32 | 33 | return $schema; 34 | } 35 | -------------------------------------------------------------------------------- /modules/poll/poll-results.tpl.php: -------------------------------------------------------------------------------- 1 | 22 |
23 | 24 |
25 | $votes)); ?> 26 |
27 | 28 | 29 | 30 |
31 | -------------------------------------------------------------------------------- /misc/ui/jquery.effects.blind.min.js: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * jQuery UI Effects Blind 1.8.7 4 | * 5 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 6 | * Dual licensed under the MIT or GPL Version 2 licenses. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Effects/Blind 10 | * 11 | * Depends: 12 | * jquery.effects.core.js 13 | */ 14 | (function(b){b.effects.blind=function(c){return this.queue(function(){var a=b(this),g=["position","top","left"],f=b.effects.setMode(a,c.options.mode||"hide"),d=c.options.direction||"vertical";b.effects.save(a,g);a.show();var e=b.effects.createWrapper(a).css({overflow:"hidden"}),h=d=="vertical"?"height":"width";d=d=="vertical"?e.height():e.width();f=="show"&&e.css(h,0);var i={};i[h]=f=="show"?d:0;e.animate(i,c.duration,c.options.easing,function(){f=="hide"&&a.hide();b.effects.restore(a,g);b.effects.removeWrapper(a); 15 | c.callback&&c.callback.apply(a[0],arguments);a.dequeue()})})}})(jQuery); 16 | -------------------------------------------------------------------------------- /modules/poll/poll-vote.tpl.php: -------------------------------------------------------------------------------- 1 | 19 |
20 |
21 |
22 | 23 |
24 | 25 | 26 |
27 | 28 |
29 | 30 | 31 |
32 | -------------------------------------------------------------------------------- /modules/profile/profile-wrapper.tpl.php: -------------------------------------------------------------------------------- 1 | 22 |
23 | 24 |
25 | -------------------------------------------------------------------------------- /modules/color/color-rtl.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @file 3 | * Right-to-left specific stylesheet for the Color module. 4 | */ 5 | 6 | #placeholder { 7 | left: 0; 8 | right: auto; 9 | } 10 | 11 | /* Palette */ 12 | .color-form .form-item { 13 | padding-left: 0; 14 | padding-right: 1em; 15 | } 16 | .color-form label { 17 | float: right; 18 | clear: right; 19 | } 20 | .color-form .form-text, 21 | .color-form .form-select { 22 | float: right; 23 | } 24 | .color-form .form-text { 25 | margin-right: 0; 26 | margin-left: 5px; 27 | } 28 | #palette .hook { 29 | float: right; 30 | } 31 | #palette .down, 32 | #palette .up, 33 | #palette .both { 34 | background: url(images/hook-rtl.png) no-repeat 0 0; 35 | } 36 | #palette .up { 37 | background-position: 0 -27px; 38 | } 39 | #palette .both { 40 | background-position: 0 -54px; 41 | } 42 | #palette .lock { 43 | float: right; 44 | right: -10px; 45 | } 46 | html.js #preview { 47 | float: right; 48 | } 49 | -------------------------------------------------------------------------------- /themes/garland/comment.tpl.php: -------------------------------------------------------------------------------- 1 | 3 |
> 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | > 17 | 18 | 19 |
> 20 | 21 | 22 |
23 |
24 | 25 |
26 | 27 |
28 |
29 | 30 | 31 |
32 | -------------------------------------------------------------------------------- /modules/poll/poll-results--block.tpl.php: -------------------------------------------------------------------------------- 1 | 20 | 21 |
22 |
23 | 24 |
25 | $votes)); ?> 26 |
27 |
28 | 29 | -------------------------------------------------------------------------------- /modules/simpletest/tests/upgrade/drupal-6.comments.database.php: -------------------------------------------------------------------------------- 1 | fields(array( 3 | 'comment' => 2 4 | )) 5 | ->condition('nid', 1) 6 | ->execute(); 7 | 8 | db_insert('comments')->fields(array( 9 | 'cid', 10 | 'pid', 11 | 'nid', 12 | 'uid', 13 | 'subject', 14 | 'comment', 15 | 'hostname', 16 | 'timestamp', 17 | 'status', 18 | 'format', 19 | 'thread', 20 | 'name', 21 | 'mail', 22 | 'homepage', 23 | )) 24 | ->values(array( 25 | 'cid' => 1, 26 | 'pid' => 0, 27 | 'nid' => 1, 28 | 'uid' => 3, 29 | 'subject' => 'Comment title 1', 30 | 'comment' => 'Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1 - Comment body 1', 31 | 'hostname' => '127.0.0.1', 32 | 'timestamp' => 1008617630, 33 | 'status' => 0, 34 | 'format' => 1, 35 | 'thread' => '01/', 36 | 'name' => NULL, 37 | 'mail' => NULL, 38 | 'homepage' => '', 39 | )) 40 | ->execute(); 41 | -------------------------------------------------------------------------------- /modules/aggregator/aggregator.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Styles for theme in the Aggregator module. 3 | */ 4 | 5 | #aggregator .feed-source .feed-title { 6 | margin-top: 0; 7 | } 8 | #aggregator .feed-source .feed-image img { 9 | margin-bottom: 0.75em; 10 | } 11 | #aggregator .feed-source .feed-icon { 12 | float: right; /* LTR */ 13 | display: block; 14 | } 15 | #aggregator .feed-item { 16 | margin-bottom: 1.5em; 17 | } 18 | #aggregator .feed-item-title { 19 | margin-bottom: 0; 20 | font-size: 1.3em; 21 | } 22 | #aggregator .feed-item-meta, 23 | #aggregator .feed-item-body { 24 | margin-bottom: 0.5em; 25 | } 26 | #aggregator .feed-item-categories { 27 | font-size: 0.9em; 28 | } 29 | #aggregator td { 30 | vertical-align: bottom; 31 | } 32 | #aggregator td.categorize-item { 33 | white-space: nowrap; 34 | } 35 | #aggregator .categorize-item .news-item .body { 36 | margin-top: 0; 37 | } 38 | #aggregator .categorize-item h3 { 39 | margin-bottom: 1em; 40 | margin-top: 0; 41 | } 42 | -------------------------------------------------------------------------------- /sites/README.txt: -------------------------------------------------------------------------------- 1 | This directory structure contains the settings and configuration files specific 2 | to your site or sites and is an integral part of multisite configuration. 3 | 4 | The sites/all/ subdirectory structure should be used to place your custom and 5 | downloaded extensions including modules, themes, and third party libraries. 6 | 7 | Downloaded installation profiles should be placed in the /profiles directory 8 | in the Drupal root. 9 | 10 | In multisite configuration, extensions found in the sites/all directory 11 | structure are available to all sites. Alternatively, the sites/your_site_name/ 12 | subdirectory pattern may be used to restrict extensions to a specific 13 | site instance. 14 | 15 | See the respective README.txt files in sites/all/themes and sites/all/modules 16 | for additional information about obtaining and organizing extensions. 17 | 18 | See INSTALL.txt in the Drupal root for information about single-site 19 | installation or multisite configuration. 20 | -------------------------------------------------------------------------------- /misc/ui/jquery.effects.highlight.min.js: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * jQuery UI Effects Highlight 1.8.7 4 | * 5 | * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about) 6 | * Dual licensed under the MIT or GPL Version 2 licenses. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Effects/Highlight 10 | * 11 | * Depends: 12 | * jquery.effects.core.js 13 | */ 14 | (function(b){b.effects.highlight=function(c){return this.queue(function(){var a=b(this),e=["backgroundImage","backgroundColor","opacity"],d=b.effects.setMode(a,c.options.mode||"show"),f={backgroundColor:a.css("backgroundColor")};if(d=="hide")f.opacity=0;b.effects.save(a,e);a.show().css({backgroundImage:"none",backgroundColor:c.options.color||"#ffff99"}).animate(f,{queue:false,duration:c.duration,easing:c.options.easing,complete:function(){d=="hide"&&a.hide();b.effects.restore(a,e);d=="show"&&!b.support.opacity&& 15 | this.style.removeAttribute("filter");c.callback&&c.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery); 16 | -------------------------------------------------------------------------------- /misc/jquery.cookie.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Cookie plugin 1.0 4 | * 5 | * Copyright (c) 2006 Klaus Hartl (stilbuero.de) 6 | * Dual licensed under the MIT and GPL licenses: 7 | * http://www.opensource.org/licenses/mit-license.php 8 | * http://www.gnu.org/licenses/gpl.html 9 | * 10 | */ 11 | jQuery.cookie=function(b,j,m){if(typeof j!="undefined"){m=m||{};if(j===null){j="";m.expires=-1}var e="";if(m.expires&&(typeof m.expires=="number"||m.expires.toUTCString)){var f;if(typeof m.expires=="number"){f=new Date();f.setTime(f.getTime()+(m.expires*24*60*60*1000))}else{f=m.expires}e="; expires="+f.toUTCString()}var l=m.path?"; path="+(m.path):"";var g=m.domain?"; domain="+(m.domain):"";var a=m.secure?"; secure":"";document.cookie=[b,"=",encodeURIComponent(j),e,l,g,a].join("")}else{var d=null;if(document.cookie&&document.cookie!=""){var k=document.cookie.split(";");for(var h=0;h $value) { 14 | $_SERVER[$key] = str_replace('modules/simpletest/tests/https.php', 'index.php', $value); 15 | $_SERVER[$key] = str_replace('http://', 'https://', $_SERVER[$key]); 16 | } 17 | 18 | // Change current directory to the Drupal root. 19 | chdir('../../..'); 20 | define('DRUPAL_ROOT', getcwd()); 21 | require_once DRUPAL_ROOT . '/includes/bootstrap.inc'; 22 | 23 | // Make sure this file can only be used by simpletest. 24 | drupal_bootstrap(DRUPAL_BOOTSTRAP_CONFIGURATION); 25 | if (!drupal_valid_test_ua()) { 26 | header($_SERVER['SERVER_PROTOCOL'] . ' 403 Forbidden'); 27 | exit; 28 | } 29 | 30 | drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); 31 | menu_execute_active_handler(); 32 | -------------------------------------------------------------------------------- /modules/simpletest/tests/entity_cache_test.module: -------------------------------------------------------------------------------- 1 |