├── profiles ├── testing │ ├── testing.profile │ ├── 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.info │ └── testing.install ├── minimal │ ├── translations │ │ └── README.txt │ ├── minimal.info │ └── minimal.profile └── standard │ ├── translations │ └── README.txt │ ├── standard.profile │ └── standard.info ├── modules ├── simpletest │ ├── tests │ │ ├── update_test_1.module │ │ ├── update_test_2.module │ │ ├── update_test_3.module │ │ ├── system_dependencies_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 │ │ ├── requirements1_test.module │ │ ├── requirements2_test.module │ │ ├── system.base.css │ │ ├── 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.user-no-password-token.database.php │ │ │ ├── drupal-6.node_type_broken.database.php │ │ │ └── drupal-6.comments.database.php │ │ ├── actions_loop_test.install │ │ ├── module_test.file.inc │ │ ├── ajax_test.info │ │ ├── form_test.info │ │ ├── batch_test.info │ │ ├── filter_test.info │ │ ├── image_test.info │ │ ├── menu_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 │ │ ├── error_test.info │ │ ├── url_alter_test.info │ │ ├── url_alter_test.install │ │ ├── entity_crud_hook_test.info │ │ ├── update_script_test.info │ │ ├── system_test.info │ │ ├── file_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 │ │ ├── common_test_cron_helper.module │ │ ├── requirements2_test.info │ │ ├── system_incompatible_core_version_dependencies_test.info │ │ ├── update_script_test.module │ │ ├── system_incompatible_module_version_dependencies_test.info │ │ ├── update_test_3.install │ │ ├── requirements1_test.install │ │ ├── themes │ │ │ └── test_theme │ │ │ │ └── template.php │ │ ├── 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 │ │ ├── css_test_files │ │ ├── import2.css │ │ ├── import1.css │ │ ├── css_input_with_import.css.optimized.css │ │ ├── css_input_with_import.css.unoptimized.css │ │ ├── css_input_with_import.css │ │ ├── css_input_without_import.css.optimized.css │ │ └── comment_hacks.css.optimized.css │ │ ├── image-1.png │ │ ├── image-2.jpg │ │ ├── image-test.gif │ │ ├── image-test.jpg │ │ ├── image-test.png │ │ └── README.txt ├── comment │ ├── comment-rtl.css │ ├── comment.css │ └── comment.info ├── aggregator │ ├── aggregator-rtl.css │ ├── tests │ │ ├── aggregator_test.info │ │ └── aggregator_test_atom.xml │ ├── aggregator.info │ ├── aggregator-wrapper.tpl.php │ ├── aggregator-summary-items.tpl.php │ ├── aggregator-summary-item.tpl.php │ └── aggregator.css ├── image │ ├── sample.png │ ├── image-rtl.css │ ├── image.css │ ├── image.info │ └── tests │ │ ├── image_module_test.info │ │ └── image_module_test.module ├── 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-generic.png │ │ ├── text-x-script.png │ │ ├── application-pdf.png │ │ ├── audio-x-generic.png │ │ ├── image-x-generic.png │ │ ├── video-x-generic.png │ │ ├── package-x-generic.png │ │ ├── x-office-document.png │ │ ├── x-office-presentation.png │ │ ├── x-office-spreadsheet.png │ │ ├── application-octet-stream.png │ │ └── application-x-executable.png │ ├── file.info │ ├── tests │ │ └── file_module_test.info │ └── file.css ├── overlay │ ├── images │ │ ├── close.png │ │ ├── background.png │ │ └── close-rtl.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_basetheme │ │ │ └── update_test_basetheme.info │ │ │ └── update_test_subtheme │ │ │ └── update_test_subtheme.info │ ├── update.info │ └── update-rtl.css ├── tracker │ ├── tracker.css │ └── tracker.info ├── contextual │ ├── images │ │ └── gear-select.png │ ├── contextual.info │ └── contextual-rtl.css ├── dblog │ ├── dblog-rtl.css │ └── dblog.info ├── 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 ├── node │ ├── node.css │ ├── tests │ │ ├── node_test.info │ │ ├── node_access_test.info │ │ ├── node_test_exception.info │ │ └── node_test_exception.module │ └── node.info ├── book │ ├── book-rtl.css │ ├── book.info │ ├── book.js │ ├── book-all-books-block.tpl.php │ └── book-node-export-html.tpl.php ├── profile │ ├── profile.css │ ├── profile.info │ └── profile-wrapper.tpl.php ├── field_ui │ ├── field_ui-rtl.css │ └── field_ui.info ├── system │ ├── system.messages-rtl.css │ ├── system.info │ ├── system.cron.js │ └── system.menus-rtl.css ├── search │ ├── search-rtl.css │ ├── tests │ │ ├── search_extra_type.info │ │ └── search_embedded_form.info │ ├── search.info │ └── search.css ├── 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_test.module │ ├── block.info │ └── block.css ├── syslog │ ├── syslog.info │ └── syslog.install ├── php │ └── php.info ├── rdf │ ├── tests │ │ ├── rdf_test.info │ │ └── rdf_test.install │ └── rdf.info ├── locale │ ├── tests │ │ ├── locale_test.info │ │ └── translations │ │ │ └── test.xx.po │ ├── locale-rtl.css │ ├── locale.info │ └── locale.css ├── path │ ├── path.info │ └── path.js ├── 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 ├── forum │ ├── forum-rtl.css │ ├── forum.info │ ├── forums.tpl.php │ ├── forum-submitted.tpl.php │ ├── forum-icon.tpl.php │ └── forum.pages.inc ├── statistics │ └── statistics.info ├── contact │ └── contact.info ├── filter │ ├── filter.info │ └── filter.js ├── README.txt └── dashboard │ ├── dashboard.info │ └── dashboard-rtl.css ├── themes ├── bootstrap │ ├── bootstrap_subtheme │ │ ├── less │ │ │ ├── content.less │ │ │ ├── footer.less │ │ │ ├── header.less │ │ │ └── style.less │ │ ├── template.php │ │ ├── logo.png │ │ ├── favicon.ico │ │ ├── screenshot.png │ │ ├── README.txt │ │ ├── css │ │ │ ├── style.css │ │ │ └── README.txt │ │ └── templates │ │ │ └── README.txt │ ├── logo.png │ ├── favicon.ico │ ├── screenshot.png │ ├── theme │ │ ├── system │ │ │ ├── fieldset.func.php │ │ │ ├── button.vars.php │ │ │ ├── date.func.php │ │ │ ├── table.vars.php │ │ │ ├── html.vars.php │ │ │ ├── html-tag.vars.php │ │ │ ├── container.func.php │ │ │ ├── progress-bar.tpl.php │ │ │ ├── links.vars.php │ │ │ ├── breadcrumb.func.php │ │ │ └── breadcrumb.vars.php │ │ ├── views │ │ │ └── views-view-table.vars.php │ │ ├── icon │ │ │ └── icon.vars.php │ │ ├── block │ │ │ └── block.vars.php │ │ ├── menu │ │ │ ├── menu-tree.func.php │ │ │ └── menu-local-tasks.func.php │ │ └── bootstrap │ │ │ ├── bootstrap-search-form-wrapper.func.php │ │ │ └── bootstrap-modal.tpl.php │ ├── bootstrap.make.example │ ├── js │ │ └── modules │ │ │ └── views │ │ │ └── js │ │ │ └── ajax_view.js │ ├── README.txt │ └── theme-settings.php ├── 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 ├── seven │ ├── logo.png │ ├── images │ │ ├── add.png │ │ ├── fc.png │ │ ├── buttons.png │ │ ├── fc-rtl.png │ │ ├── arrow-asc.png │ │ ├── arrow-desc.png │ │ ├── arrow-next.png │ │ ├── arrow-prev.png │ │ ├── list-item.png │ │ ├── task-check.png │ │ ├── task-item.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 ├── garland │ ├── logo.png │ ├── color │ │ ├── base.png │ │ └── preview.png │ ├── screenshot.png │ ├── images │ │ ├── bg-bar.png │ │ ├── bg-tab.png │ │ ├── body.png │ │ ├── bg-content.png │ │ ├── menu-leaf.gif │ │ ├── task-list.png │ │ ├── bg-bar-white.png │ │ ├── bg-navigation.png │ │ ├── menu-expanded.gif │ │ ├── bg-content-left.png │ │ ├── bg-content-right.png │ │ ├── gradient-inner.png │ │ ├── menu-collapsed.gif │ │ ├── bg-navigation-item.png │ │ ├── menu-collapsed-rtl.gif │ │ └── bg-navigation-item-hover.png │ ├── garland.info │ ├── theme-settings.php │ └── comment.tpl.php ├── README.txt └── engines │ └── phptemplate │ └── phptemplate.engine ├── misc ├── feed.png ├── help.png ├── tree.png ├── favicon.ico ├── grippie.png ├── print-rtl.css ├── progress.gif ├── throbber.gif ├── arrow-asc.png ├── arrow-desc.png ├── configure.png ├── draggable.png ├── druplicon.png ├── menu-leaf.png ├── forum-icons.png ├── menu-expanded.png ├── message-16-ok.png ├── message-24-ok.png ├── permissions.png ├── tree-bottom.png ├── watchdog-ok.png ├── farbtastic │ ├── mask.png │ ├── marker.png │ ├── wheel.png │ └── farbtastic.css ├── menu-collapsed.png ├── message-16-help.png ├── message-16-info.png ├── message-24-help.png ├── message-24-info.png ├── watchdog-error.png ├── menu-collapsed-rtl.png ├── message-16-error.png ├── message-16-warning.png ├── message-24-error.png ├── message-24-warning.png ├── powered-blue-80x15.png ├── powered-blue-88x31.png ├── powered-gray-80x15.png ├── powered-gray-88x31.png ├── watchdog-warning.png ├── powered-black-135x42.png ├── powered-black-80x15.png ├── powered-black-88x31.png ├── powered-blue-135x42.png ├── powered-gray-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 ├── .gitignore ├── Boxfile.install ├── sites └── all │ ├── modules │ └── README.txt │ ├── themes │ └── README.txt │ └── README.txt ├── xmlrpc.php ├── Boxfile ├── includes └── database │ ├── sqlite │ └── select.inc │ └── mysql │ └── install.inc ├── index.php ├── install.php └── cron.php /profiles/testing/testing.profile: -------------------------------------------------------------------------------- 1 | SimpleTest HTML -------------------------------------------------------------------------------- /modules/simpletest/files/html-2.html: -------------------------------------------------------------------------------- 1 |

SimpleTest HTML

-------------------------------------------------------------------------------- /modules/simpletest/tests/system_dependencies_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/bartik/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectCleverWeb/drupal-testing/master/themes/bartik/logo.png -------------------------------------------------------------------------------- /themes/bootstrap/bootstrap_subtheme/template.php: -------------------------------------------------------------------------------- 1 | 2 | Fail: Template not overridden. 3 | -------------------------------------------------------------------------------- /themes/bartik/color/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectCleverWeb/drupal-testing/master/themes/bartik/color/preview.png -------------------------------------------------------------------------------- /themes/bartik/images/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectCleverWeb/drupal-testing/master/themes/bartik/images/buttons.png -------------------------------------------------------------------------------- /themes/bootstrap/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectCleverWeb/drupal-testing/master/themes/bootstrap/screenshot.png -------------------------------------------------------------------------------- /themes/garland/color/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectCleverWeb/drupal-testing/master/themes/garland/color/preview.png -------------------------------------------------------------------------------- /themes/garland/images/bg-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectCleverWeb/drupal-testing/master/themes/garland/images/bg-bar.png -------------------------------------------------------------------------------- /themes/garland/images/bg-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectCleverWeb/drupal-testing/master/themes/garland/images/bg-tab.png -------------------------------------------------------------------------------- /themes/garland/images/body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectCleverWeb/drupal-testing/master/themes/garland/images/body.png -------------------------------------------------------------------------------- /themes/seven/images/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectCleverWeb/drupal-testing/master/themes/seven/images/buttons.png -------------------------------------------------------------------------------- /themes/seven/images/fc-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectCleverWeb/drupal-testing/master/themes/seven/images/fc-rtl.png -------------------------------------------------------------------------------- /modules/color/images/hook-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectCleverWeb/drupal-testing/master/modules/color/images/hook-rtl.png -------------------------------------------------------------------------------- /modules/file/icons/text-plain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectCleverWeb/drupal-testing/master/modules/file/icons/text-plain.png -------------------------------------------------------------------------------- /modules/update/tests/aaa_update_test.module: -------------------------------------------------------------------------------- 1 | 2 | No release history was found for the requested project (aaa_update_test). 3 | -------------------------------------------------------------------------------- /modules/simpletest/files/css_test_files/import1.css: -------------------------------------------------------------------------------- 1 | 2 | ul, select { 3 | font: 1em/160% Verdana, sans-serif; 4 | color: #494949; 5 | } 6 | .ui-icon{background-image: url(images/icon.png);} -------------------------------------------------------------------------------- /modules/simpletest/tests/requirements1_test.module: -------------------------------------------------------------------------------- 1 | fields(array('weight' => 1)) 9 | ->condition('name', 'actions_loop_test') 10 | ->execute(); 11 | } 12 | -------------------------------------------------------------------------------- /themes/bootstrap/theme/views/views-view-table.vars.php: -------------------------------------------------------------------------------- 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/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 2012-02-01 9 | version = "7.12" 10 | project = "drupal" 11 | datestamp = "1328134560" 12 | 13 | -------------------------------------------------------------------------------- /themes/bootstrap/bootstrap.make.example: -------------------------------------------------------------------------------- 1 | core = 7.x 2 | api = 2 3 | 4 | libraries[bootstrap][download][type] = "get" 5 | libraries[bootstrap][download][url] = "https://github.com/twbs/bootstrap/archive/v3.0.2.zip" 6 | libraries[bootstrap][directory_name] = "bootstrap" 7 | libraries[bootstrap][destination] = "themes/bootstrap" 8 | libraries[bootstrap][overwrite] = TRUE 9 | -------------------------------------------------------------------------------- /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 2012-02-01 10 | version = "7.12" 11 | project = "drupal" 12 | datestamp = "1328134560" 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 2012-02-01 10 | version = "7.12" 11 | project = "drupal" 12 | datestamp = "1328134560" 13 | 14 | -------------------------------------------------------------------------------- /modules/forum/forum-rtl.css: -------------------------------------------------------------------------------- 1 | 2 | #forum td.forum .icon { 3 | float: right; 4 | margin: 0 0 0 9px; 5 | } 6 | .forum-topic-navigation { 7 | padding: 1em 3em 0 0; 8 | } 9 | .forum-topic-navigation .topic-previous { 10 | text-align: left; 11 | float: right; 12 | } 13 | .forum-topic-navigation .topic-next { 14 | text-align: right; 15 | float: left; 16 | } 17 | -------------------------------------------------------------------------------- /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 2012-02-01 9 | version = "7.12" 10 | project = "drupal" 11 | datestamp = "1328134560" 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 2012-02-01 9 | version = "7.12" 10 | project = "drupal" 11 | datestamp = "1328134560" 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 2012-02-01 9 | version = "7.12" 10 | project = "drupal" 11 | datestamp = "1328134560" 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 2012-02-01 8 | version = "7.12" 9 | project = "drupal" 10 | datestamp = "1328134560" 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 2012-02-01 7 | version = "7.12" 8 | project = "drupal" 9 | datestamp = "1328134560" 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 2012-02-01 9 | version = "7.12" 10 | project = "drupal" 11 | datestamp = "1328134560" 12 | 13 | -------------------------------------------------------------------------------- /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 2012-02-01 10 | version = "7.12" 11 | project = "drupal" 12 | datestamp = "1328134560" 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 2012-02-01 10 | version = "7.12" 11 | project = "drupal" 12 | datestamp = "1328134560" 13 | 14 | -------------------------------------------------------------------------------- /profiles/minimal/minimal.info: -------------------------------------------------------------------------------- 1 | name = Minimal 2 | description = Start with only a few modules enabled. 3 | version = VERSION 4 | core = 7.x 5 | dependencies[] = block 6 | dependencies[] = dblog 7 | files[] = minimal.profile 8 | 9 | ; Information added by drupal.org packaging script on 2012-02-01 10 | version = "7.12" 11 | project = "drupal" 12 | datestamp = "1328134560" 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 2012-02-01 11 | version = "7.12" 12 | project = "drupal" 13 | datestamp = "1328134560" 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 2012-02-01 9 | version = "7.12" 10 | project = "drupal" 11 | datestamp = "1328134560" 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 2012-02-01 10 | version = "7.12" 11 | project = "drupal" 12 | datestamp = "1328134560" 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 2012-02-01 10 | version = "7.12" 11 | project = "drupal" 12 | datestamp = "1328134560" 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 2012-02-01 9 | version = "7.12" 10 | project = "drupal" 11 | datestamp = "1328134560" 12 | 13 | -------------------------------------------------------------------------------- /sites/all/README.txt: -------------------------------------------------------------------------------- 1 | 2 | This directory should be used to place downloaded and custom modules 3 | and themes which are common to all sites. Keeping contributed and 4 | custom modules and themes in the sites directory will aid in upgrading 5 | Drupal core files. Place contributed and custom modules and themes in 6 | the sites/all/modules and sites/all/themes directories respectively. 7 | 8 | -------------------------------------------------------------------------------- /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 2012-02-01 10 | version = "7.12" 11 | project = "drupal" 12 | datestamp = "1328134560" 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 2012-02-01 10 | version = "7.12" 11 | project = "drupal" 12 | datestamp = "1328134560" 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 2012-02-01 9 | version = "7.12" 10 | project = "drupal" 11 | datestamp = "1328134560" 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 2012-02-01 9 | version = "7.12" 10 | project = "drupal" 11 | datestamp = "1328134560" 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 2012-02-01 9 | version = "7.12" 10 | project = "drupal" 11 | datestamp = "1328134560" 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 2012-02-01 10 | version = "7.12" 11 | project = "drupal" 12 | datestamp = "1328134560" 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 2012-02-01 10 | version = "7.12" 11 | project = "drupal" 12 | datestamp = "1328134560" 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 2012-02-01 11 | version = "7.12" 12 | project = "drupal" 13 | datestamp = "1328134560" 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 2012-02-01 9 | version = "7.12" 10 | project = "drupal" 11 | datestamp = "1328134560" 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 2012-02-01 10 | version = "7.12" 11 | project = "drupal" 12 | datestamp = "1328134560" 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 2012-02-01 11 | version = "7.12" 12 | project = "drupal" 13 | datestamp = "1328134560" 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 2012-02-01 9 | version = "7.12" 10 | project = "drupal" 11 | datestamp = "1328134560" 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 2012-02-01 8 | version = "7.12" 9 | project = "drupal" 10 | datestamp = "1328134560" 11 | 12 | -------------------------------------------------------------------------------- /profiles/minimal/minimal.profile: -------------------------------------------------------------------------------- 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 2012-02-01 11 | version = "7.12" 12 | project = "drupal" 13 | datestamp = "1328134560" 14 | 15 | -------------------------------------------------------------------------------- /modules/node/tests/node_test_exception.module: -------------------------------------------------------------------------------- 1 | title == 'testing_transaction_exception') { 14 | throw new Exception('Test exception for rollback.'); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /modules/path/path.js: -------------------------------------------------------------------------------- 1 | 2 | (function ($) { 3 | 4 | Drupal.behaviors.pathFieldsetSummaries = { 5 | attach: function (context) { 6 | $('fieldset.path-form', context).drupalSetSummary(function (context) { 7 | var path = $('.form-item-path-alias input').val(); 8 | 9 | return path ? 10 | Drupal.t('Alias: @alias', { '@alias': path }) : 11 | Drupal.t('No alias'); 12 | }); 13 | } 14 | }; 15 | 16 | })(jQuery); 17 | -------------------------------------------------------------------------------- /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 2012-02-01 12 | version = "7.12" 13 | project = "drupal" 14 | datestamp = "1328134560" 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 2012-02-01 12 | version = "7.12" 13 | project = "drupal" 14 | datestamp = "1328134560" 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 2012-02-01 13 | version = "7.12" 14 | project = "drupal" 15 | datestamp = "1328134560" 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 2012-02-01 10 | version = "7.12" 11 | project = "drupal" 12 | datestamp = "1328134560" 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 2012-02-01 13 | version = "7.12" 14 | project = "drupal" 15 | datestamp = "1328134560" 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 2012-02-01 10 | version = "7.12" 11 | project = "drupal" 12 | datestamp = "1328134560" 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 2012-02-01 9 | version = "7.12" 10 | project = "drupal" 11 | datestamp = "1328134560" 12 | 13 | -------------------------------------------------------------------------------- /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 | 8 | ; Information added by drupal.org packaging script on 2012-02-01 9 | version = "7.12" 10 | project = "drupal" 11 | datestamp = "1328134560" 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 2012-02-01 11 | version = "7.12" 12 | project = "drupal" 13 | datestamp = "1328134560" 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 2012-02-01 10 | version = "7.12" 11 | project = "drupal" 12 | datestamp = "1328134560" 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 2012-02-01 9 | version = "7.12" 10 | project = "drupal" 11 | datestamp = "1328134560" 12 | 13 | -------------------------------------------------------------------------------- /modules/node/node.info: -------------------------------------------------------------------------------- 1 | name = Node 2 | description = Allows content to be submitted to the site and displayed on pages. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | files[] = node.module 7 | files[] = node.test 8 | required = TRUE 9 | configure = admin/structure/types 10 | stylesheets[all][] = node.css 11 | 12 | ; Information added by drupal.org packaging script on 2012-02-01 13 | version = "7.12" 14 | project = "drupal" 15 | datestamp = "1328134560" 16 | 17 | -------------------------------------------------------------------------------- /themes/bootstrap/js/modules/views/js/ajax_view.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | 3 | /** 4 | * Override Views prototype function so it can recognize Bootstrap AJAX pagers. 5 | * Attach the ajax behavior to each link. 6 | */ 7 | Drupal.views.ajaxView.prototype.attachPagerAjax = function() { 8 | this.$view.find('ul.pager > li > a, th.views-field a, .attachment .views-summary a, ul.pagination li a') 9 | .each(jQuery.proxy(this.attachPagerLinkAjax, this)); 10 | }; 11 | 12 | })(jQuery); 13 | -------------------------------------------------------------------------------- /modules/openid/openid-rtl.css: -------------------------------------------------------------------------------- 1 | 2 | #edit-openid-identifier { 3 | background-position: right 50%; 4 | padding-left: 0; 5 | padding-right: 20px; 6 | } 7 | #user-login .openid-links { 8 | padding-right: 0; 9 | } 10 | html.js #user-login-form li.openid-link, 11 | html.js #user-login li.openid-link { 12 | margin-right: 0; 13 | } 14 | #user-login-form li.openid-link a, 15 | #user-login li.openid-link a { 16 | background-position: right top; 17 | padding: 0 1.5em 0 0; 18 | } 19 | -------------------------------------------------------------------------------- /modules/simpletest/tests/common_test_cron_helper.module: -------------------------------------------------------------------------------- 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 2012-02-01 9 | version = "7.12" 10 | project = "drupal" 11 | datestamp = "1328134560" 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 2012-02-01 11 | version = "7.12" 12 | project = "drupal" 13 | datestamp = "1328134560" 14 | 15 | -------------------------------------------------------------------------------- /modules/field/field.info: -------------------------------------------------------------------------------- 1 | name = Field 2 | description = Field API to add fields to entities like nodes and users. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | files[] = field.module 7 | files[] = field.attach.inc 8 | files[] = tests/field.test 9 | dependencies[] = field_sql_storage 10 | required = TRUE 11 | stylesheets[all][] = theme/field.css 12 | 13 | ; Information added by drupal.org packaging script on 2012-02-01 14 | version = "7.12" 15 | project = "drupal" 16 | datestamp = "1328134560" 17 | 18 | -------------------------------------------------------------------------------- /Boxfile: -------------------------------------------------------------------------------- 1 | web1: #component type & number 2 | name: drupal #component settings 3 | shared_writable_dirs: 4 | - sites/default/files 5 | php_extensions: 6 | - mysqli 7 | - gd 8 | - hash 9 | - json 10 | - xml 11 | - pdo 12 | - pdo_mysql 13 | - mcrypt 14 | - mbstring 15 | after_build: 16 | # move pagoda config file 17 | - "mv pagoda/settings.php sites/default/settings.php" 18 | 19 | db1: #component type & number 20 | name: drupal #component settings -------------------------------------------------------------------------------- /modules/aggregator/aggregator-wrapper.tpl.php: -------------------------------------------------------------------------------- 1 | 17 |
18 | 19 | 20 |
21 | -------------------------------------------------------------------------------- /modules/blog/blog.install: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /modules/simpletest/files/css_test_files/css_input_with_import.css.optimized.css: -------------------------------------------------------------------------------- 1 | ul,select{font:1em/160% Verdana,sans-serif;color:#494949;}.ui-icon{background-image:url(images/icon.png);} 2 | p,select{font:1em/160% Verdana,sans-serif;color:#494949;} 3 | 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 4 | .is 5 | .a 6 | .test{font:1em/100% Verdana,sans-serif;color:#494949;}textarea,select{font:1em/160% Verdana,sans-serif;color:#494949;} 7 | -------------------------------------------------------------------------------- /modules/simpletest/tests/update_script_test.module: -------------------------------------------------------------------------------- 1 | 2.0) 9 | 10 | ; Information added by drupal.org packaging script on 2012-02-01 11 | version = "7.12" 12 | project = "drupal" 13 | datestamp = "1328134560" 14 | 15 | -------------------------------------------------------------------------------- /modules/overlay/overlay.install: -------------------------------------------------------------------------------- 1 | #overlay=admin/modules on hook_init(). 17 | $_SESSION['overlay_enable_redirect'] = 1; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /profiles/testing/testing.install: -------------------------------------------------------------------------------- 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/simpletest/files/css_test_files/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 | 31 | -------------------------------------------------------------------------------- /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/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/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 | -------------------------------------------------------------------------------- /modules/book/book.js: -------------------------------------------------------------------------------- 1 | 2 | (function ($) { 3 | 4 | Drupal.behaviors.bookFieldsetSummaries = { 5 | attach: function (context) { 6 | $('fieldset.book-form', context).drupalSetSummary(function (context) { 7 | var val = $('.form-item-book-bid select').val(); 8 | 9 | if (val === '0') { 10 | return Drupal.t('Not in book'); 11 | } 12 | else if (val === 'new') { 13 | return Drupal.t('New book'); 14 | } 15 | else { 16 | return Drupal.checkPlain($('.form-item-book-bid select :selected').text()); 17 | } 18 | }); 19 | } 20 | }; 21 | 22 | })(jQuery); 23 | -------------------------------------------------------------------------------- /modules/update/update-rtl.css: -------------------------------------------------------------------------------- 1 | 2 | .update .project { 3 | padding-right: .25em; 4 | } 5 | 6 | .update .version-status { 7 | float: left; 8 | padding-left: 10px; 9 | } 10 | 11 | .update .version-status .icon { 12 | padding-right: .5em; 13 | } 14 | 15 | .update table.version .version-title { 16 | padding-left: 1em; 17 | } 18 | 19 | .update table.version .version-details { 20 | padding-left: .5em; 21 | direction: ltr; 22 | } 23 | 24 | .update table.version .version-links { 25 | text-align: left; 26 | padding-left: 1em; 27 | } 28 | 29 | .update .check-manually { 30 | padding-right: 1em; 31 | } 32 | -------------------------------------------------------------------------------- /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 2012-02-01 17 | version = "7.12" 18 | project = "drupal" 19 | datestamp = "1328134560" 20 | 21 | -------------------------------------------------------------------------------- /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 2012-02-01 17 | version = "7.12" 18 | project = "drupal" 19 | datestamp = "1328134560" 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 | .parents('.filter-wrapper').find('select.filter-list') 11 | .bind('change', function () { 12 | $(this).parents('.filter-wrapper') 13 | .find('.filter-guidelines-item').hide() 14 | .siblings('.filter-guidelines-' + this.value).show(); 15 | }) 16 | .change(); 17 | } 18 | }; 19 | 20 | })(jQuery); 21 | -------------------------------------------------------------------------------- /profiles/testing/modules/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 | ; This deliberately has the wrong core version, to test that it does not take 6 | ; precedence over the version of the same module that is in the 7 | ; modules/simpletest/tests directory. 8 | core = 6.x 9 | hidden = TRUE 10 | 11 | ; Information added by drupal.org packaging script on 2012-02-01 12 | version = "7.12" 13 | project = "drupal" 14 | datestamp = "1328134560" 15 | 16 | -------------------------------------------------------------------------------- /themes/bootstrap/theme/system/date.func.php: -------------------------------------------------------------------------------- 1 | ' . drupal_render_children($element) . ''; 23 | } 24 | -------------------------------------------------------------------------------- /modules/profile/profile.info: -------------------------------------------------------------------------------- 1 | name = Profile 2 | description = Supports configurable user profiles. 3 | package = Core 4 | version = VERSION 5 | core = 7.x 6 | files[] = profile.test 7 | configure = admin/config/people/profile 8 | ; The Profile module is deprecated, and included in Drupal 7 for legacy 9 | ; purposes only. By default, the module will be hidden from the UI unless you 10 | ; are upgrading a site that uses the Profile module to extend user profiles. 11 | ; See user_system_info_alter(). 12 | hidden = TRUE 13 | 14 | ; Information added by drupal.org packaging script on 2012-02-01 15 | version = "7.12" 16 | project = "drupal" 17 | datestamp = "1328134560" 18 | 19 | -------------------------------------------------------------------------------- /themes/bootstrap/theme/system/table.vars.php: -------------------------------------------------------------------------------- 1 | 17 | 18 |
19 | 20 |
21 | 22 | -------------------------------------------------------------------------------- /modules/forum/forums.tpl.php: -------------------------------------------------------------------------------- 1 | 17 | 18 |
19 | 20 | 21 |
22 | 23 | -------------------------------------------------------------------------------- /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/overlay/overlay-child-rtl.css: -------------------------------------------------------------------------------- 1 | 2 | html { 3 | direction: rtl; 4 | } 5 | 6 | #overlay-title { 7 | float: right; 8 | left: auto; 9 | } 10 | #overlay { 11 | padding: 0.2em; 12 | padding-left: 26px; 13 | } 14 | #overlay-close-wrapper { 15 | left: 0; 16 | right: auto; 17 | } 18 | #overlay-close, 19 | #overlay-close:hover { 20 | background: transparent url(images/close-rtl.png) no-repeat; 21 | -moz-border-radius-topright: 0; 22 | -webkit-border-top-right-radius: 0; 23 | border-top-right-radius: 0; 24 | } 25 | 26 | /** 27 | * Tabs on the overlay. 28 | */ 29 | #overlay-tabs { 30 | left: 20px; 31 | right: auto; 32 | } 33 | #overlay-tabs li { 34 | margin: 0 -3px 0 0; 35 | } 36 | -------------------------------------------------------------------------------- /themes/bootstrap/theme/system/html-tag.vars.php: -------------------------------------------------------------------------------- 1 | 14 | $menu): ?> 15 |
16 | 17 |
18 | 19 | -------------------------------------------------------------------------------- /themes/engines/phptemplate/phptemplate.engine: -------------------------------------------------------------------------------- 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/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/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 | -------------------------------------------------------------------------------- /themes/bootstrap/README.txt: -------------------------------------------------------------------------------- 1 | Bootstrap - A base-theme for Drupal 2 | 3 | 1. Bootstrap requires a minimum jQuery version of 1.7 to function properly. You must download and enable the ![jQuery Update](http://drupal.org/project/jquery_update/) module, 7.x-2.3 version or higher. Navigate to the configuration page and ensure that the minimum version selected is 1.7. 4 | 2. By default, this base theme enables and uses a CDN for loading the Bootstrap library. If you disable this CDN, you will need to use an alternative solution for adding the necessary CSS and JS files from the Bootstrap library. This can be in the form creating a sub-theme or using a utility module. 5 | 6 | Authors: http://drupal.org/node/259843/committers 7 | Documentation: http://drupal.org/node/1976938 -------------------------------------------------------------------------------- /themes/bootstrap/theme/block/block.vars.php: -------------------------------------------------------------------------------- 1 | subject. 23 | $variables['title'] = $variables['block']->subject; 24 | } 25 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /themes/bootstrap/theme/menu/menu-tree.func.php: -------------------------------------------------------------------------------- 1 | ' . $variables['tree'] . ''; 12 | } 13 | 14 | /** 15 | * Bootstrap theme wrapper function for the primary menu links. 16 | */ 17 | function bootstrap_menu_tree__primary(&$variables) { 18 | return ''; 19 | } 20 | 21 | /** 22 | * Bootstrap theme wrapper function for the secondary menu links. 23 | */ 24 | function bootstrap_menu_tree__secondary(&$variables) { 25 | return ''; 26 | } 27 | -------------------------------------------------------------------------------- /modules/dashboard/dashboard-rtl.css: -------------------------------------------------------------------------------- 1 | #dashboard div.dashboard-region { 2 | float: right; 3 | } 4 | #dashboard #disabled-blocks .block, #dashboard .block-placeholder { 5 | float: right; 6 | margin: 3px 0 3px 3px; 7 | padding: 6px 8px 6px 4px; 8 | } 9 | #dashboard .canvas-content a.button { 10 | margin: 0 10px 0 0; 11 | } 12 | #dashboard .ui-sortable .block h2 { 13 | background-position: right -39px; 14 | padding: 0 19px; 15 | } 16 | #dashboard.customize-inactive #disabled-blocks .block:hover h2 { 17 | background-position: right -39px; 18 | } 19 | #dashboard.customize-inactive .dashboard-region .ui-sortable .block:hover h2 { 20 | background-position: right -36px; 21 | } 22 | #dashboard div#dashboard_main { 23 | margin-left: 1%; 24 | margin-right: 0; 25 | } 26 | -------------------------------------------------------------------------------- /themes/bootstrap/theme/system/container.func.php: -------------------------------------------------------------------------------- 1 | ' . $element['#children'] . ''; 25 | } 26 | -------------------------------------------------------------------------------- /themes/bootstrap/theme/system/progress-bar.tpl.php: -------------------------------------------------------------------------------- 1 | 11 |
12 |
13 |
14 |
%
15 |
16 |
17 |
%
18 |
19 |
20 | -------------------------------------------------------------------------------- /includes/database/mysql/install.inc: -------------------------------------------------------------------------------- 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/aggregator/aggregator-summary-items.tpl.php: -------------------------------------------------------------------------------- 1 | 21 |

22 | 23 | 26 | -------------------------------------------------------------------------------- /modules/book/book-node-export-html.tpl.php: -------------------------------------------------------------------------------- 1 | 20 |
21 |

22 | 23 | 24 |
25 | -------------------------------------------------------------------------------- /themes/bootstrap/theme/system/links.vars.php: -------------------------------------------------------------------------------- 1 | 19 | 20 | 21 | $time, 23 | '!author' => $author, 24 | )); ?> 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /modules/forum/forum-icon.tpl.php: -------------------------------------------------------------------------------- 1 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | -------------------------------------------------------------------------------- /cron.php: -------------------------------------------------------------------------------- 1 | array( 21 | 'class' => array('breadcrumb'), 22 | ), 23 | 'items' => $breadcrumb, 24 | 'type' => 'ol', 25 | )); 26 | } 27 | return $output; 28 | } 29 | -------------------------------------------------------------------------------- /modules/simpletest/tests/themes/test_theme/template.php: -------------------------------------------------------------------------------- 1 | 19 | 20 |
21 |
22 |
23 |
24 |
25 | % 26 |
27 | -------------------------------------------------------------------------------- /themes/bootstrap/theme/bootstrap/bootstrap-search-form-wrapper.func.php: -------------------------------------------------------------------------------- 1 | '; 12 | $output .= $variables['element']['#children']; 13 | $output .= ''; 14 | $output .= ''; 23 | $output .= ''; 24 | $output .= ''; 25 | return $output; 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 | -------------------------------------------------------------------------------- /themes/bootstrap/theme-settings.php: -------------------------------------------------------------------------------- 1 | !empty($item['tab_parent']) ? check_plain($item['title']) : drupal_get_title(), 24 | 'class' => array('active'), 25 | ); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /themes/bootstrap/theme/bootstrap/bootstrap-modal.tpl.php: -------------------------------------------------------------------------------- 1 | 15 | > 16 | 26 | 27 | -------------------------------------------------------------------------------- /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/forum/forum.pages.inc: -------------------------------------------------------------------------------- 1 | container)) { 21 | $topics = forum_get_topics($forum_term->tid, $sortby, $forum_per_page); 22 | } 23 | else { 24 | $topics = ''; 25 | } 26 | 27 | return theme('forums', array('forums' => $forum_term->forums, 'topics' => $topics, 'parents' => $forum_term->parents, 'tid' => $forum_term->tid, 'sortby' => $sortby, 'forums_per_page' => $forum_per_page)); 28 | } 29 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /modules/poll/poll-bar.tpl.php: -------------------------------------------------------------------------------- 1 | 19 | 20 |
21 |
22 |
23 |
24 |
25 | % () 26 |
27 | -------------------------------------------------------------------------------- /modules/poll/poll-results.tpl.php: -------------------------------------------------------------------------------- 1 | 20 |
21 | 22 |
23 | $votes)); ?> 24 |
25 | 26 | 27 | 28 |
29 | -------------------------------------------------------------------------------- /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/poll/poll-vote.tpl.php: -------------------------------------------------------------------------------- 1 | 17 |
18 |
19 |
20 | 21 |
22 | 23 | 24 |
25 | 26 |
27 | 28 | 29 |
30 | -------------------------------------------------------------------------------- /modules/aggregator/aggregator.css: -------------------------------------------------------------------------------- 1 | 2 | #aggregator .feed-source .feed-title { 3 | margin-top: 0; 4 | } 5 | #aggregator .feed-source .feed-image img { 6 | margin-bottom: 0.75em; 7 | } 8 | #aggregator .feed-source .feed-icon { 9 | float: right; /* LTR */ 10 | display: block; 11 | } 12 | #aggregator .feed-item { 13 | margin-bottom: 1.5em; 14 | } 15 | #aggregator .feed-item-title { 16 | margin-bottom: 0; 17 | font-size: 1.3em; 18 | } 19 | #aggregator .feed-item-meta, 20 | #aggregator .feed-item-body { 21 | margin-bottom: 0.5em; 22 | } 23 | #aggregator .feed-item-categories { 24 | font-size: 0.9em; 25 | } 26 | #aggregator td { 27 | vertical-align: bottom; 28 | } 29 | #aggregator td.categorize-item { 30 | white-space: nowrap; 31 | } 32 | #aggregator .categorize-item .news-item .body { 33 | margin-top: 0; 34 | } 35 | #aggregator .categorize-item h3 { 36 | margin-bottom: 1em; 37 | margin-top: 0; 38 | } 39 | -------------------------------------------------------------------------------- /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 | files[] = standard.profile 27 | 28 | ; Information added by drupal.org packaging script on 2012-02-01 29 | version = "7.12" 30 | project = "drupal" 31 | datestamp = "1328134560" 32 | 33 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /modules/block/tests/block_test.module: -------------------------------------------------------------------------------- 1 | t('Test block caching'), 22 | 'cache' => variable_get('block_test_caching', DRUPAL_CACHE_PER_ROLE), 23 | ); 24 | 25 | $blocks['test_html_id'] = array( 26 | 'info' => t('Test block html id'), 27 | ); 28 | return $blocks; 29 | } 30 | 31 | /** 32 | * Implements hook_block_view(). 33 | */ 34 | function block_test_block_view($delta = 0) { 35 | return array('content' => variable_get('block_test_content', '')); 36 | } 37 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | 'image_module_test'); 11 | } 12 | return -1; 13 | } 14 | 15 | /** 16 | * Implements hook_image_effect_info(). 17 | */ 18 | function image_module_test_image_effect_info() { 19 | $effects = array( 20 | 'image_module_test_null' => array( 21 | 'effect callback' => 'image_module_test_null_effect', 22 | ), 23 | ); 24 | 25 | return $effects; 26 | } 27 | 28 | /** 29 | * Image effect callback; Null. 30 | * 31 | * @param $image 32 | * An image object returned by image_load(). 33 | * @param $data 34 | * An array with no attributes. 35 | * 36 | * @return 37 | * TRUE 38 | */ 39 | function image_module_test_null_effect(array &$image, array $data) { 40 | return TRUE; 41 | } 42 | -------------------------------------------------------------------------------- /modules/locale/locale.css: -------------------------------------------------------------------------------- 1 | 2 | .locale-untranslated { 3 | font-style: normal; 4 | text-decoration: line-through; 5 | } 6 | 7 | #locale-translation-filter-form .form-item-language, 8 | #locale-translation-filter-form .form-item-translation, 9 | #locale-translation-filter-form .form-item-group { 10 | float: left; /* LTR */ 11 | padding-right: .8em; /* LTR */ 12 | margin: 0.1em; 13 | /** 14 | * In Opera 9, DOM elements with the property of "overflow: auto" 15 | * will partially hide its contents with unnecessary scrollbars when 16 | * its immediate child is floated without an explicit width set. 17 | */ 18 | width: 15em; 19 | } 20 | #locale-translation-filter-form .form-type-select select { 21 | width: 100%; 22 | } 23 | #locale-translation-filter-form .form-actions { 24 | float: left; /* LTR */ 25 | padding: 3ex 0 0 1em; /* LTR */ 26 | } 27 | .language-switcher-locale-session a.active { 28 | color: #0062A0; 29 | } 30 | .language-switcher-locale-session a.session-active { 31 | color: #000000; 32 | } 33 | -------------------------------------------------------------------------------- /misc/ui/jquery.effects.pulsate.min.js: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * jQuery UI Effects Pulsate 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/Pulsate 10 | * 11 | * Depends: 12 | * jquery.effects.core.js 13 | */ 14 | (function(d){d.effects.pulsate=function(a){return this.queue(function(){var b=d(this),c=d.effects.setMode(b,a.options.mode||"show");times=(a.options.times||5)*2-1;duration=a.duration?a.duration/2:d.fx.speeds._default/2;isVisible=b.is(":visible");animateTo=0;if(!isVisible){b.css("opacity",0).show();animateTo=1}if(c=="hide"&&isVisible||c=="show"&&!isVisible)times--;for(c=0;c'; 15 | $variables['primary']['#prefix'] .= ''; 17 | $output .= drupal_render($variables['primary']); 18 | } 19 | 20 | if (!empty($variables['secondary'])) { 21 | $variables['secondary']['#prefix'] = '

' . t('Secondary tabs') . '

'; 22 | $variables['secondary']['#prefix'] .= '
    '; 23 | $variables['secondary']['#suffix'] = '
'; 24 | $output .= drupal_render($variables['secondary']); 25 | } 26 | 27 | return $output; 28 | } 29 | --------------------------------------------------------------------------------