[Gnucash-changes] r12823 - htdocs/trunk - patching english files for GLOBALS, adding missing graphic

Neil Williams codehelp at cvs.gnucash.org
Tue Jan 17 10:28:52 EST 2006


Author: codehelp
Date: 2006-01-17 10:28:50 -0500 (Tue, 17 Jan 2006)
New Revision: 12823
Trac: http://svn.gnucash.org/trac/changeset/12823

Added:
   htdocs/trunk/emulate_globals_on.php
   htdocs/trunk/images/sizing-graph.png
Modified:
   htdocs/trunk/en/architecture.phtml
   htdocs/trunk/en/articles.phtml
   htdocs/trunk/en/bugs.phtml
   htdocs/trunk/en/contribute.phtml
   htdocs/trunk/en/docs.phtml
   htdocs/trunk/en/donations.phtml
   htdocs/trunk/en/features.phtml
   htdocs/trunk/en/features_1.phtml
   htdocs/trunk/en/features_2.phtml
   htdocs/trunk/en/features_3.phtml
   htdocs/trunk/en/features_4.phtml
   htdocs/trunk/en/features_5.phtml
   htdocs/trunk/en/gettext.phtml
   htdocs/trunk/en/hacking.phtml
   htdocs/trunk/en/history.phtml
   htdocs/trunk/en/index.phtml
   htdocs/trunk/en/irc.phtml
   htdocs/trunk/en/links.phtml
   htdocs/trunk/en/links/links-erp.phtml
   htdocs/trunk/en/lists.phtml
   htdocs/trunk/en/oldnews.phtml
   htdocs/trunk/en/promote.phtml
   htdocs/trunk/en/quiz-results-early.phtml
   htdocs/trunk/en/quiz-results.phtml
   htdocs/trunk/en/quiz.phtml
   htdocs/trunk/en/required.phtml
   htdocs/trunk/en/roadmap.phtml
   htdocs/trunk/en/rss-feed.phtml
   htdocs/trunk/en/screenshots.phtml
   htdocs/trunk/en/search.phtml
   htdocs/trunk/en/sizing.phtml
   htdocs/trunk/en/sql.phtml
   htdocs/trunk/en/state_of_the_gnucash_project.phtml
Log:
patching english files for GLOBALS, adding missing graphic

Added: htdocs/trunk/emulate_globals_on.php
===================================================================
--- htdocs/trunk/emulate_globals_on.php	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/emulate_globals_on.php	2006-01-17 15:28:50 UTC (rev 12823)
@@ -0,0 +1,13 @@
+<?php
+ // Emulate register_globals on
+ if (!ini_get('register_globals')) {
+    $superglobals = array($_SERVER, $_ENV,
+        $_FILES, $_COOKIE, $_POST, $_GET);
+    if (isset($_SESSION)) {
+        array_unshift($superglobals, $_SESSION);
+    }
+    foreach ($superglobals as $superglobal) {
+        extract($superglobal, EXTR_SKIP);
+    }
+ }
+?>

Modified: htdocs/trunk/en/architecture.phtml
===================================================================
--- htdocs/trunk/en/architecture.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/architecture.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Architecture"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-developer.phtml"); ?>
 

Modified: htdocs/trunk/en/articles.phtml
===================================================================
--- htdocs/trunk/en/articles.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/articles.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "GnuCash in the News"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-other.phtml"); ?>
 </td>

Modified: htdocs/trunk/en/bugs.phtml
===================================================================
--- htdocs/trunk/en/bugs.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/bugs.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "GnuCash Bug Reports"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-help.phtml"); ?>
 </td>

Modified: htdocs/trunk/en/contribute.phtml
===================================================================
--- htdocs/trunk/en/contribute.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/contribute.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Contribute"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-general.phtml"); ?>
 </td>

Modified: htdocs/trunk/en/docs.phtml
===================================================================
--- htdocs/trunk/en/docs.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/docs.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Documentation Project"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-documentation.phtml"); ?>
 

Modified: htdocs/trunk/en/donations.phtml
===================================================================
--- htdocs/trunk/en/donations.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/donations.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Donations"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main.phtml"); ?>
 

Modified: htdocs/trunk/en/features.phtml
===================================================================
--- htdocs/trunk/en/features.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/features.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Features"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-general.phtml"); ?>
 </td>

Modified: htdocs/trunk/en/features_1.phtml
===================================================================
--- htdocs/trunk/en/features_1.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/features_1.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Features"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-general.phtml"); ?>
 

Modified: htdocs/trunk/en/features_2.phtml
===================================================================
--- htdocs/trunk/en/features_2.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/features_2.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Features:Ease of Use"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-general.phtml"); ?>
 </td>

Modified: htdocs/trunk/en/features_3.phtml
===================================================================
--- htdocs/trunk/en/features_3.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/features_3.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Features: Ease of Use"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-general.phtml"); ?>
 </td>

Modified: htdocs/trunk/en/features_4.phtml
===================================================================
--- htdocs/trunk/en/features_4.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/features_4.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Features: Ease of Use"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-general.phtml"); ?>
 </td>

Modified: htdocs/trunk/en/features_5.phtml
===================================================================
--- htdocs/trunk/en/features_5.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/features_5.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Features: What's New"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-general.phtml"); ?>
 </td>

Modified: htdocs/trunk/en/gettext.phtml
===================================================================
--- htdocs/trunk/en/gettext.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/gettext.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -20,4 +20,8 @@
 echo gettext("This should all be translated. If you see this message in the 
 language you entered, it works");
 ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 

Modified: htdocs/trunk/en/hacking.phtml
===================================================================
--- htdocs/trunk/en/hacking.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/hacking.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Hacking"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-developer.phtml"); ?>
 </td>

Modified: htdocs/trunk/en/history.phtml
===================================================================
--- htdocs/trunk/en/history.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/history.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "History"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-other.phtml"); ?>
 </td>

Modified: htdocs/trunk/en/index.phtml
===================================================================
--- htdocs/trunk/en/index.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/index.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Open Source Accounting Software"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php"); 
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main.phtml"); ?>
 	</td>
@@ -33,7 +37,7 @@
 <h1>News</h1>
 
 <?php 
-  # for englsih, the antive and lat newspatch are identical
+  # for english, the native and alt news path are identical
   $native_newspath  =  "news/";
   $alt_newspath  =  "news/";
   include($GLOBALS['DOCUMENT_ROOT']."/php-scripts/news-script.php"); ?>

Modified: htdocs/trunk/en/irc.phtml
===================================================================
--- htdocs/trunk/en/irc.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/irc.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,5 +1,9 @@
 
 <?php $title = "GnuCash on IRC"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-help.phtml"); ?>
 </td>

Modified: htdocs/trunk/en/links/links-erp.phtml
===================================================================
--- htdocs/trunk/en/links/links-erp.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/links/links-erp.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,3 +1,7 @@
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/links-header.phtml"); ?>
    <tr> <td colspan=2>

Modified: htdocs/trunk/en/links.phtml
===================================================================
--- htdocs/trunk/en/links.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/links.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Related Financial Software"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-other.phtml"); ?>
 </td>

Modified: htdocs/trunk/en/lists.phtml
===================================================================
--- htdocs/trunk/en/lists.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/lists.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Mailing Lists"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-help.phtml"); ?>
 </td>

Modified: htdocs/trunk/en/oldnews.phtml
===================================================================
--- htdocs/trunk/en/oldnews.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/oldnews.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,5 +1,9 @@
 
 <?php $title = "Accounting Software for Linux"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main.phtml"); ?>
 
@@ -17,7 +21,7 @@
 
 <?php
     # indicate where to get translated news from ... 
-    $native_newspath  =  "news/old/";
+    $native_newspath  =  "../news/old/";
     $alt_newspath  =  "../news/old/";
     include($GLOBALS['DOCUMENT_ROOT']."/php-scripts/news-script.php");
     ?>  

Modified: htdocs/trunk/en/promote.phtml
===================================================================
--- htdocs/trunk/en/promote.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/promote.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Promote GnuCash"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-other.phtml"); ?>
 </td>

Modified: htdocs/trunk/en/quiz-results-early.phtml
===================================================================
--- htdocs/trunk/en/quiz-results-early.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/quiz-results-early.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Survey"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-other.phtml"); ?>
 </td>

Modified: htdocs/trunk/en/quiz-results.phtml
===================================================================
--- htdocs/trunk/en/quiz-results.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/quiz-results.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Survey"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-other.phtml"); ?>
 </td>

Modified: htdocs/trunk/en/quiz.phtml
===================================================================
--- htdocs/trunk/en/quiz.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/quiz.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Survey"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-general.phtml"); ?>
 </td>

Modified: htdocs/trunk/en/required.phtml
===================================================================
--- htdocs/trunk/en/required.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/required.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Software Requirements"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-general.phtml"); ?>
 </td>

Modified: htdocs/trunk/en/roadmap.phtml
===================================================================
--- htdocs/trunk/en/roadmap.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/roadmap.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Roadmap"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-developer.phtml"); ?>
 

Modified: htdocs/trunk/en/rss-feed.phtml
===================================================================
--- htdocs/trunk/en/rss-feed.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/rss-feed.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,3 +1,7 @@
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php
    // This file reads the news items in the /news directory and turns
    // them into Dave Winer RSS-2.0 specification news items.

Modified: htdocs/trunk/en/screenshots.phtml
===================================================================
--- htdocs/trunk/en/screenshots.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/screenshots.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Screenshots"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-general.phtml"); ?>
 </td>

Modified: htdocs/trunk/en/search.phtml
===================================================================
--- htdocs/trunk/en/search.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/search.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Accounting Software for Linux"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-search.phtml"); ?>
 

Modified: htdocs/trunk/en/sizing.phtml
===================================================================
--- htdocs/trunk/en/sizing.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/sizing.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Sizing"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-other.phtml"); ?>
 </td>
@@ -18,7 +22,7 @@
 twenty-three languages and credits over 139 authors and contributors.
 </P>
 <p>
-<img src="sizing-graph.png">
+<img src="../images/sizing-graph.png">
 </p>
 <p>
 If you've had trouble swimming through that mass of source code,

Modified: htdocs/trunk/en/sql.phtml
===================================================================
--- htdocs/trunk/en/sql.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/sql.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Documentation Project"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-documentation.phtml"); ?>
 

Modified: htdocs/trunk/en/state_of_the_gnucash_project.phtml
===================================================================
--- htdocs/trunk/en/state_of_the_gnucash_project.phtml	2006-01-17 15:07:42 UTC (rev 12822)
+++ htdocs/trunk/en/state_of_the_gnucash_project.phtml	2006-01-17 15:28:50 UTC (rev 12823)
@@ -1,4 +1,8 @@
 <?php $title = "Roadmap"; ?>
+<?php if (!ini_get('register_globals')) {
+ include("../emulate_globals_on.php");
+}
+?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/components/header.phtml"); ?>
 <?php include($GLOBALS['DOCUMENT_ROOT']."/en/menu/menu-main-developer.phtml"); ?>
 

Added: htdocs/trunk/images/sizing-graph.png
===================================================================
(Binary files differ)


Property changes on: htdocs/trunk/images/sizing-graph.png
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream



More information about the gnucash-changes mailing list