Rebrand as 1.0.5 (Ferrishyn)
authorDan
Fri, 09 May 2008 23:32:51 -0400
changeset 294 444c34a3886b
parent 293 fbe306070c40
child 295 53233b86e054
Rebrand as 1.0.5 (Ferrishyn)
ajax.php
cron.php
includes/captcha.php
includes/clientside/ie-png.js
includes/clientside/jsres.php
includes/comment.php
includes/common.php
includes/constants.php
includes/dbal.php
includes/email.php
includes/functions.php
includes/js-compressor.php
includes/pageprocess.php
includes/pageutils.php
includes/paths.php
includes/plugins.php
includes/render.php
includes/search.php
includes/sessions.php
includes/stats.php
includes/tagcloud.php
includes/template.php
includes/wikiengine/Tables.php
index.php
install.php
plugins/SpecialAdmin.php
plugins/admin/PageGroups.php
plugins/admin/SecurityLog.php
plugins/admin/UserManager.php
--- a/ajax.php	Fri May 09 23:32:00 2008 -0400
+++ b/ajax.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  *
  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
--- a/cron.php	Fri May 09 23:32:00 2008 -0400
+++ b/cron.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  *
  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
--- a/includes/captcha.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/captcha.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  * captcha.php - visual confirmation system used during registration
  *
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/includes/clientside/ie-png.js	Fri May 09 23:32:51 2008 -0400
@@ -0,0 +1,67 @@
+// ScriptingMagic PNG hack for IE
+// Source: http://www.scriptingmagic.com/Topics/IE%20Specific/PNG%20Transparency/
+
+if ( typeof ScriptingMagic == "undefined" )
+{
+  var ScriptingMagic = {}
+}
+ScriptingMagic.fixPNG = function() {};
+var smFixPNGOnload = (
+  function()
+  {
+    if ( !document.all || window.opera )
+    {
+      return;
+    }
+    var a = parseFloat(navigator.appVersion.match(/MSIE (\d.*)/)[1]);
+    if ( ( a < 5.5 ) || ( a >= 7 ) )
+    {
+      return;
+    }
+    if ( document.styleSheets.length == 0 )
+    {
+      document.body.appendChild(document.createElement("style"));
+    }
+    var src_clause = 'src=\'"+this.nextSibling.src.replace(/\'/g,"%27")+"\')"';
+    document.styleSheets[document.styleSheets.length-1].addRule(".sm-iepng-backdrop", 'position: absolute; z-index: expression(this.nextSibling.currentStyle.zIndex); top: expression(this.nextSibling.offsetTop); left: expression(this.nextSibling.offsetLeft); height: expression(this.nextSibling.offsetHeight); width: expression(this.nextSibling.offsetWidth); filter: expression("progid:DXImageTransform.Microsoft.AlphaImageLoader(' + src_clause + ');');
+    window.ScriptingMagic.fixPNG = function(b)
+    {
+      b.style.filter="alpha(opacity=0)";
+      var c = document.createElement("div");
+      c.className = "sm-iepng-backdrop";
+      if ( b.currentStyle.position.match(/^static$/i) )
+      {
+        b.style.position = "relative";
+      }
+      b.parentNode.insertBefore(c,b);
+      c = null
+    };
+    var b = [], c, d, e, f;
+    var g = document.getElementsByTagName("img");
+    for ( c = 0, d = g.length; c < d; c++ )
+    {
+      b[b.length] = g[c];
+    }
+    var h = document.getElementsByTagName("input");
+    for ( c = 0, d = h.length; c < d; c++ )
+    {
+      e = h[c];
+      if ( e.type && e.type.match(/^image$/i) )
+      {
+        b[b.length] = e;
+      }
+    }
+    for ( c = 0, d = b.length; c < d; c++ )
+    {
+      e = b[c];
+      window.ScriptingMagic.fixPNG(e);
+    }
+    a = b = c = d = e = f = g = h = null;
+  }
+);
+
+addOnloadHook(smFixPNGOnload);
+
+ScriptingMagic.fixPNG.version = 1.4;
+ScriptingMagic.fixPNG.release = new Date("Jan 1, 2007");
+
--- a/includes/clientside/jsres.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/clientside/jsres.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  * jsres.php - the Enano client-side runtime, a.k.a. AJAX on steroids
  *
@@ -40,7 +40,7 @@
 {
   echo "/*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * [Aggressively compressed] Javascript client code
  * Copyright (C) 2006-2007 Dan Fuhry
  * Enano is Free Software, licensed under the GNU General Public License; see http://enanocms.org/ for details.
--- a/includes/comment.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/comment.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  *
  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
--- a/includes/common.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/common.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  *
  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
@@ -37,7 +37,7 @@
 // be the expected output of enano_version(), which will always be in the
 // format of 1.0.2, 1.0.2a1, 1.0.2b1, 1.0.2RC1
 // You'll want to change this for custom distributions.
-$version = '1.0.4';
+$version = '1.0.5';
 
 /**
  * Returns a floating-point number with the current UNIX timestamp in microseconds. Defined very early because we gotta call it
--- a/includes/constants.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/constants.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  * constants.php - important defines used Enano-wide
  *
--- a/includes/dbal.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/dbal.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  *
  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
--- a/includes/email.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/email.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  *
  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
--- a/includes/functions.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/functions.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  *
  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
@@ -1138,7 +1138,8 @@
       '1.0.2b1'=> 'Coblynau unstable',
       '1.0.2'  => 'Coblynau',
       '1.0.3'  => 'Dyrad',
-      '1.0.4'  => 'Ellyyllon'
+      '1.0.4'  => 'Ellyyllon',
+      '1.0.5'  => 'Ferrishyn'
     );
   $version = enano_version();
   if ( isset($names[$version]) )
--- a/includes/js-compressor.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/js-compressor.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  * Javascript compression library - used to compact the client-side Javascript code (all 72KB of it!) to save some bandwidth
  *
--- a/includes/pageprocess.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/pageprocess.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * pageprocess.php - intelligent retrieval of pages
  * Copyright (C) 2006-2007 Dan Fuhry
  *
--- a/includes/pageutils.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/pageutils.php	Fri May 09 23:32:51 2008 -0400
@@ -1,7 +1,7 @@
 <?php
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  * pageutils.php - a class that handles raw page manipulations, used mostly by AJAX requests or their old-fashioned form-based counterparts
  *
--- a/includes/paths.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/paths.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /**
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  * paths.php - The part of Enano that actually manages content. Everything related to page handling and namespaces is in here.
  *
--- a/includes/plugins.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/plugins.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  *
  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
--- a/includes/render.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/render.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  * render.php - handles fetching pages and parsing them into HTML
  *
--- a/includes/search.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/search.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  * search.php - algorithm used to search pages
  *
--- a/includes/sessions.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/sessions.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  * sessions.php - everything related to security and user management
  *
--- a/includes/stats.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/stats.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  * stats.php - handles statistics for pages (disablable in the admin CP)
  *
--- a/includes/tagcloud.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/tagcloud.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  *
  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
--- a/includes/template.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/template.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  *
  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
--- a/includes/wikiengine/Tables.php	Fri May 09 23:32:00 2008 -0400
+++ b/includes/wikiengine/Tables.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  *
  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
--- a/index.php	Fri May 09 23:32:00 2008 -0400
+++ b/index.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  *
  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
--- a/install.php	Fri May 09 23:32:00 2008 -0400
+++ b/install.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  * install.php - handles everything related to installation and initial configuration
  *
@@ -30,7 +30,7 @@
 
 define('IN_ENANO_INSTALL', 'true');
 
-define('ENANO_VERSION', '1.0.4');
+define('ENANO_VERSION', '1.0.5');
 // In beta versions, define ENANO_BETA_VERSION here
 
 if(!defined('scriptPath')) {
--- a/plugins/SpecialAdmin.php	Fri May 09 23:32:00 2008 -0400
+++ b/plugins/SpecialAdmin.php	Fri May 09 23:32:51 2008 -0400
@@ -10,7 +10,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  *
  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
--- a/plugins/admin/PageGroups.php	Fri May 09 23:32:00 2008 -0400
+++ b/plugins/admin/PageGroups.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  *
  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
--- a/plugins/admin/SecurityLog.php	Fri May 09 23:32:00 2008 -0400
+++ b/plugins/admin/SecurityLog.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  *
  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
--- a/plugins/admin/UserManager.php	Fri May 09 23:32:00 2008 -0400
+++ b/plugins/admin/UserManager.php	Fri May 09 23:32:51 2008 -0400
@@ -2,7 +2,7 @@
 
 /*
  * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
- * Version 1.0.4 (Ellyyllon)
+ * Version 1.0.5 (Ferrishyn)
  * Copyright (C) 2006-2007 Dan Fuhry
  *
  * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License