# HG changeset patch # User Dan # Date 1227799318 18000 # Node ID 78cb09a23e69c390fb873fdd9e1bdb30065bff39 # Parent cf26ccfd99d8c27976612677b972d5acf8d184d3 Made UX for Windows patch more pleasant including external documentation. Breaking change to dynamic download script. diff -r cf26ccfd99d8 -r 78cb09a23e69 includes/constants.php --- a/includes/constants.php Tue Nov 25 22:08:00 2008 -0500 +++ b/includes/constants.php Thu Nov 27 10:21:58 2008 -0500 @@ -70,6 +70,8 @@ define('MAX_PMS_PER_BATCH', 7); // The maximum number of users that users can send PMs to in one go; restriction does not apply to users with mod_misc rights define('SEARCH_RESULTS_PER_PAGE', 10); define('MYSQL_MAX_PACKET_SIZE', 1048576); // 1MB; this is the default in MySQL 4.x I think +// don't change this next line in upstream (it has to be auto-patched by the dynamic download script) +// define('WINDOWS_MOD_REWRITE_WORKAROUNDS', ''); // Sidebar diff -r cf26ccfd99d8 -r 78cb09a23e69 includes/paths.php --- a/includes/paths.php Tue Nov 25 22:08:00 2008 -0500 +++ b/includes/paths.php Thu Nov 27 10:21:58 2008 -0500 @@ -28,18 +28,19 @@ // DEFINE NAMESPACES HERE // The key names should NOT EVER be changed, or Enano will be very broken + $namespace_delimiter = ( defined('WINDOWS_MOD_REWRITE_WORKAROUNDS') ) ? '.' : ':'; $this->nslist = Array( - 'Article' =>'', - 'User' =>'User:', - 'File' =>'File:', - 'Help' =>'Help:', - 'Admin' =>'Admin:', - 'Special' =>'Special:', - 'System' =>'Enano:', - 'Template'=>'Template:', - 'Category'=>'Category:', - 'Anonymous'=>'PhysicalRedirect:', - 'Project' =>sanitize_page_id(getConfig('site_name')).':', + 'Article' => '', + 'User' => 'User' . $namespace_delimiter, + 'File' => 'File' . $namespace_delimiter, + 'Help' => 'Help' . $namespace_delimiter, + 'Admin' => 'Admin' . $namespace_delimiter, + 'Special' => 'Special' . $namespace_delimiter, + 'System' => 'Enano' . $namespace_delimiter, + 'Template' => 'Template' . $namespace_delimiter, + 'Category' => 'Category' . $namespace_delimiter, + 'Anonymous'=> 'PhysicalRedirect' . $namespace_delimiter, + 'Project' => sanitize_page_id(getConfig('site_name')) . $namespace_delimiter, ); // ACL types diff -r cf26ccfd99d8 -r 78cb09a23e69 install.php --- a/install.php Tue Nov 25 22:08:00 2008 -0500 +++ b/install.php Thu Nov 27 10:21:58 2008 -0500 @@ -31,6 +31,7 @@ define('IN_ENANO_INSTALL', 'true'); define('ENANO_VERSION', '1.0.5'); +define('ENANO_RELEASE_NAME', 'Ferrishyn'); // In beta versions, define ENANO_BETA_VERSION here if(!defined('scriptPath')) { @@ -1150,8 +1151,8 @@
The next step is to enter some information about your website. You can always change this information later, using the administration panel.
+ + +Website name The display name of your website. Allowed characters are uppercase and lowercase letters, numerals, and spaces. This must not be blank or "Enano". | ||
Website description This text will be shown below the name of your website. |