From: <dor...@us...> - 2008-08-13 18:36:43
|
Revision: 526 http://andro.svn.sourceforge.net/andro/?rev=526&view=rev Author: dorgan1983 Date: 2008-08-13 18:36:50 +0000 (Wed, 13 Aug 2008) Log Message: ----------- adding @ will supress warning. Modified Paths: -------------- trunk/andro/application/x_welcome.php Modified: trunk/andro/application/x_welcome.php =================================================================== --- trunk/andro/application/x_welcome.php 2008-08-13 15:50:56 UTC (rev 525) +++ trunk/andro/application/x_welcome.php 2008-08-13 18:36:50 UTC (rev 526) @@ -14,7 +14,7 @@ $htmlVersions = ''; } else { - $htmlVersions = file_get_contents($andro['svn_url']); + $htmlVersions = @file_get_contents($andro['svn_url']); } $matches =array(); preg_match_all( This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ken...@us...> - 2008-10-26 23:23:11
|
Revision: 802 http://andro.svn.sourceforge.net/andro/?rev=802&view=rev Author: kendowns Date: 2008-10-26 23:23:07 +0000 (Sun, 26 Oct 2008) Log Message: ----------- Correct link to documentation. Modified Paths: -------------- trunk/andro/application/x_welcome.php Modified: trunk/andro/application/x_welcome.php =================================================================== --- trunk/andro/application/x_welcome.php 2008-10-26 23:22:51 UTC (rev 801) +++ trunk/andro/application/x_welcome.php 2008-10-26 23:23:07 UTC (rev 802) @@ -56,7 +56,7 @@ <br/> <br/> Our main documentation is <a target="_blank" href= - "http://www.andromeda-project.org/pages/cms/Documentation">here</a>. + "http://www.andromeda-project.org/">here</a>. <br/> <br/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ken...@us...> - 2009-01-27 22:42:31
|
Revision: 1164 http://andro.svn.sourceforge.net/andro/?rev=1164&view=rev Author: kendowns Date: 2009-01-27 21:39:36 +0000 (Tue, 27 Jan 2009) Log Message: ----------- Corrected a link on the x_welcome.php page that got stranded in the docs purge. Modified Paths: -------------- trunk/andro/application/x_welcome.php Modified: trunk/andro/application/x_welcome.php =================================================================== --- trunk/andro/application/x_welcome.php 2009-01-27 21:28:44 UTC (rev 1163) +++ trunk/andro/application/x_welcome.php 2009-01-27 21:39:36 UTC (rev 1164) @@ -1,7 +1,29 @@ <?php class x_welcome extends x_table2 { function main() { + /* FUTURE X6 VERSION OF NODE MANAGER ?> + <h1>Node Manager Upgrade Required</h1> + + <p>The new version of the Node Manager uses the "x6" + interface to provide a richer experience. Please click + the link below to upgrade your Node Manager. Once the + upgrade is complete, log out and back in. + </p> + + <p><a href="javascript:Popup('index.php?gp_page=a_builder&gp_out=none&x2=1&txt_application=andro','Build')" + >Upgrade Node Manager Now</a>.</p> + + <p><a href="?st2logout=1">Logout After Upgrade</a>.</p> + + <?php + return; + */ + # <------- EARLY RETURN. + # KFD 1/10/08, The old x_welcome screen is not used anymore, + # we have the new 'cpanel' now in x6. + # =============================================================== + ?> <h1>Welcome to the Andromeda Node Manager</h1> <?php @@ -62,7 +84,7 @@ If you want to start programming a new application right away, <a target="_blank" href= - "http://www.andromeda-project.org/pages/cms/Starting+A+New+Application" + "http://www.andromeda-project.org/pages/cms/creating+an+application.html" >The instructions are here</a>, or you can just <a href="?gp_page=applications&gp_mode=ins">define a new application here.</a> <br/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ken...@us...> - 2009-02-04 02:50:00
|
Revision: 1217 http://andro.svn.sourceforge.net/andro/?rev=1217&view=rev Author: kendowns Date: 2009-02-04 02:49:56 +0000 (Wed, 04 Feb 2009) Log Message: ----------- Fixed links on welcome page to go to new documentation urls Modified Paths: -------------- trunk/andro/application/x_welcome.php Modified: trunk/andro/application/x_welcome.php =================================================================== --- trunk/andro/application/x_welcome.php 2009-02-02 17:18:06 UTC (rev 1216) +++ trunk/andro/application/x_welcome.php 2009-02-04 02:49:56 UTC (rev 1217) @@ -84,7 +84,7 @@ If you want to start programming a new application right away, <a target="_blank" href= - "http://www.andromeda-project.org/pages/cms/creating+an+application.html" + "http://www.andromeda-project.org/creatinganapplication.html" >The instructions are here</a>, or you can just <a href="?gp_page=applications&gp_mode=ins">define a new application here.</a> <br/> @@ -109,23 +109,17 @@ All Andromeda applications start with a database specification. These specifications are more powerful than anything else out there, -and you will want learn the Andromeda way to +and you will want learn the Andromeda's <a target="_blank" href= -"http://www.andromeda-project.org/pages/cms/database+programming.html" ->Define a Database</a>, and if you don't want to read the primer, you -can start with the <a target="_blank" href= -"http://www.andromeda-project.org/pages/cms/a+starter+database+specification.html" ->Sample Specification</a>. +"http://www.andromeda-project.org/databaseprogramming.html" +>Database Programming</a> language. <br/> <br/> Once you are ready to try some custom pages, you are ready to look at <a target="_blank" href= -"http://www.andromeda-project.org/pages/cms/Web+Programming" ->Web Programming</a>, and if you want to dive into your first page, the -instructions for <a target="_blank" href= -"http://www.andromeda-project.org/pages/cms/Pages%2C+Classes+and+Tables" ->Where to put the file and what to put in it.</a> +"http://www.andromeda-project.org/webprogramming.html" +>Web Programming</a>. </div> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |