]> git.llucax.com Git - software/bife/bife-all.git/commitdiff
Updated examples to new Link widget.
authorLeandro Lucarella <llucax@gmail.com>
Mon, 7 Jul 2003 01:49:59 +0000 (01:49 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Mon, 7 Jul 2003 01:49:59 +0000 (01:49 +0000)
album/ROADMAP
album/examples/bife.php [moved from album/examples/index.php with 94% similarity]

index f09aefe465b0f3eb7f38c64dc41053082eda7b88..0e8f810295c5e80922cd35826d7041267e1e1793 100644 (file)
@@ -1,15 +1,26 @@
 $Id$
 
-Version 0.12
+
+Version 0.13
 ============
 
-    - Start using config file for default widgets attributes.
+    - Implements BIFE_Album_Pager.
 
 
-Version 0.13
-============
+Version 0.14
+=============
+
+    - Separate Album funtionality function from BIFE_Album, using hooks.
 
-    - Separate Album funtionality function from renderer (BIFE_Album).
-    - Use hooks libs for this.
 
+Version 1.0.0
+=============
+
+    - Write documentation.
+
+
+Version 1.2.0
+=============
+
+    - Start using config file for default widgets attributes.
 
similarity index 94%
rename from album/examples/index.php
rename to album/examples/bife.php
index e40a96561bd72321bf9a2b8e97b0c1dbbdf146be..17eff4ff43b27d42ac3cfa3768b554234506fb9a 100644 (file)
@@ -36,8 +36,9 @@ require_once 'BIFE/Translate.php';
 // }}}
 
 // Selects the file to view {{{
-$file = isset($_REQUEST['BIFE']) ? $_REQUEST['BIFE'] : 'index.xbf';
-#$file = isset($_SERVER['PATH_INFO']) ? ".{$_SERVER['PATH_INFO']}" : 'index.xbf';
+$file = (@$_SERVER['PATH_INFO'] and ($_SERVER['PATH_INFO'] != '/'))
+    ? ".{$_SERVER['PATH_INFO']}"
+    : 'index.xbf';
 // }}}
 
 // Looks if we want to show the source {{{