Index: install.php
===================================================================
RCS file: /cvs/drupal/drupal/install.php,v
retrieving revision 1.161
diff -u -p -r1.161 install.php
--- install.php 25 Mar 2009 16:40:51 -0000 1.161
+++ install.php 2 Apr 2009 23:31:12 -0000
@@ -725,7 +725,7 @@ function install_tasks($profile, $task)
drupal_add_js('misc/timezone.js');
// We add these strings as settings because JavaScript translation does not
// work on install time.
- drupal_add_js(array('copyFieldValue' => array('edit-site-mail' => array('edit-account-mail')), 'cleanURL' => array('success' => st('Your server has been successfully tested to support this feature.'), 'failure' => st('Your system configuration does not currently support this feature. The handbook page on Clean URLs has additional troubleshooting information.'), 'testing' => st('Testing clean URLs...'))), 'setting');
+ drupal_add_js(array('copyFieldValue' => array('edit-site-mail' => array('edit-account-mail'))), 'setting');
drupal_add_js('
// Global Killswitch
if (Drupal.jsEnabled) {
@@ -1040,15 +1040,9 @@ function install_configure_form(&$form_s
);
$form['server_settings']['clean_url'] = array(
- '#type' => 'radios',
- '#title' => st('Clean URLs'),
+ '#type' => 'hidden',
'#default_value' => 0,
- '#options' => array(0 => st('Disabled'), 1 => st('Enabled')),
- '#description' => st('This option makes Drupal emit "clean" URLs (i.e. without ?q= in the URL).'),
- '#disabled' => TRUE,
- '#prefix' => '
',
- '#suffix' => '
',
- '#weight' => 10,
+ '#attributes' => array('class' => 'install'),
);
$form['server_settings']['update_status_module'] = array(
Index: modules/system/system.js
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.js,v
retrieving revision 1.21
diff -u -p -r1.21 system.js
--- modules/system/system.js 17 Mar 2009 15:26:29 -0000 1.21
+++ modules/system/system.js 2 Apr 2009 23:31:39 -0000
@@ -13,7 +13,7 @@ Drupal.behaviors.cleanURLsSettingsCheck
// This behavior attaches by ID, so is only valid once on a page.
// Also skip if we are on an install page, as Drupal.cleanURLsInstallCheck will handle
// the processing.
- if ($("#clean-url.clean-url-processed, #clean-url.install").size()) {
+ if ($(".clean-url-processed, #edit-clean-url.install").size()) {
return;
}
var url = settings.basePath +"admin/settings/clean-urls/check";
@@ -47,8 +47,6 @@ Drupal.behaviors.cleanURLsSettingsCheck
*/
Drupal.cleanURLsInstallCheck = function() {
var url = location.protocol +"//"+ location.host + Drupal.settings.basePath +"admin/settings/clean-urls/check";
- $("#clean-url .description").append(''+ Drupal.settings.cleanURL.testing +"
");
- $("#clean-url.install").css("display", "block");
// Submit a synchronous request to avoid database errors associated with
// concurrent requests during install.
$.ajax({
@@ -57,18 +55,10 @@ Drupal.cleanURLsInstallCheck = function(
dataType: 'json',
success: function () {
// Check was successful.
- $("#clean-url input.form-radio").attr("disabled", false);
- $("#clean-url input.form-radio").attr("checked", 1);
- $("#clean-url .description span").append(''+ Drupal.settings.cleanURL.success +"
");
- $("#testing").hide();
+ $("#edit-clean-url").attr("value", 1);
},
- error: function() {
- // Check failed.
- $("#clean-url .description span").append(''+ Drupal.settings.cleanURL.failure +"
");
- $("#testing").hide();
- }
});
- $("#clean-url").addClass('clean-url-processed');
+ $("#edit-clean-url").addClass('clean-url-processed');
};
/**
@@ -134,4 +124,4 @@ Drupal.behaviors.poweredByPreview = {
}
};
-})(jQuery);
\ No newline at end of file
+})(jQuery);