openfirst-cvscommit Mailing List for openFIRST (Page 27)
Brought to you by:
xtimg
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(41) |
Jun
(210) |
Jul
(39) |
Aug
(153) |
Sep
(147) |
Oct
(173) |
Nov
(81) |
Dec
(163) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(33) |
Feb
(18) |
Mar
|
Apr
(62) |
May
|
Jun
(100) |
Jul
(38) |
Aug
(58) |
Sep
(1) |
Oct
|
Nov
(25) |
Dec
(172) |
2005 |
Jan
(31) |
Feb
(12) |
Mar
(67) |
Apr
(92) |
May
(247) |
Jun
(34) |
Jul
(36) |
Aug
(192) |
Sep
(15) |
Oct
(42) |
Nov
(92) |
Dec
(4) |
2006 |
Jan
|
Feb
(21) |
Mar
|
Apr
|
May
|
Jun
(53) |
Jul
(7) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
(4) |
Apr
(4) |
May
|
Jun
(15) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Astronouth7303 <ast...@us...> - 2005-05-15 22:22:10
|
Update of /cvsroot/openfirst/base/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17698/config Modified Files: first.php install.php Log Message: bug fixes, typos Index: first.php =================================================================== RCS file: /cvsroot/openfirst/base/config/first.php,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** first.php 15 May 2005 22:17:31 -0000 1.55 --- first.php 15 May 2005 22:21:39 -0000 1.56 *************** *** 136,142 **** } } else { ! $basepath = '/openfirst'; ! $title = 'astro73'; ! // Do form if(is_readable("config/headers.php")) { --- 136,140 ---- } } else { ! // Do form if(is_readable("config/headers.php")) { Index: install.php =================================================================== RCS file: /cvsroot/openfirst/base/config/install.php,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** install.php 15 May 2005 22:19:59 -0000 1.22 --- install.php 15 May 2005 22:21:39 -0000 1.23 *************** *** 86,90 **** <td>('.htmlentities($info['ver']).')'.'</td> <td>'.htmlentities($code)."</td>"; ! if(isset($_POST[$code]) == true && $_POST[$code] == "on" && !$) { ofirst_dbexec_file($sqlf); --- 86,90 ---- <td>('.htmlentities($info['ver']).')'.'</td> <td>'.htmlentities($code)."</td>"; ! if(isset($_POST[$code]) == true && $_POST[$code] == "on" && !$IsInstalled) { ofirst_dbexec_file($sqlf); |
From: Astronouth7303 <ast...@us...> - 2005-05-15 22:20:08
|
Update of /cvsroot/openfirst/base/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17275/config Modified Files: install.php Log Message: small bug fix Index: install.php =================================================================== RCS file: /cvsroot/openfirst/base/config/install.php,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** install.php 15 May 2005 20:17:03 -0000 1.21 --- install.php 15 May 2005 22:19:59 -0000 1.22 *************** *** 86,90 **** <td>('.htmlentities($info['ver']).')'.'</td> <td>'.htmlentities($code)."</td>"; ! if(isset($_POST[$code]) == true && $_POST[$code] == "on" && !$IsInstalled) { ofirst_dbexec_file($sqlf); --- 86,90 ---- <td>('.htmlentities($info['ver']).')'.'</td> <td>'.htmlentities($code)."</td>"; ! if(isset($_POST[$code]) == true && $_POST[$code] == "on" && !$) { ofirst_dbexec_file($sqlf); |
From: Astronouth7303 <ast...@us...> - 2005-05-15 22:19:01
|
Update of /cvsroot/openfirst/base/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16943/config Modified Files: globals.php Log Message: removed any glob-free portions Index: globals.php =================================================================== RCS file: /cvsroot/openfirst/base/config/globals.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** globals.php 15 May 2005 05:25:57 -0000 1.10 --- globals.php 15 May 2005 22:18:21 -0000 1.11 *************** *** 62,65 **** --- 62,70 ---- } + // We use glob enough, that we should either write a substitute, or just refuse to work + if(!function_exists('glob')) { + die('You really should upgrade PHP, seeing as you don't even have <a href="http://us2.php.net/manual/en/function.glob.php"><code>glob()</code></a>.'); + } + require_once('sitesettings.php'); *************** *** 72,88 **** session_start(); include('auth.php'); ! if(function_exists('glob')) { ! // Include the functions using glob(); ! if(is_readable(getcwd() . "/../config/functions/")) { ! foreach (glob(getcwd() . "/../config/functions/*.php") as $filename) { ! include($filename); ! } ! } elseif (is_readable(getcwd() . "/../../config/functions/")) { ! foreach (glob(getcwd() . "/../../config/functions/*.php") as $filename) { ! include($filename); ! } ! } ! } else { ! // Include the functions without using glob(); } --- 77,83 ---- session_start(); include('auth.php'); ! // Include the functions using glob(); ! foreach (glob("$fbasepath/config/functions/*.php") as $filename) { ! include($filename); } *************** *** 111,116 **** while($module = ofirst_dbfetch_object($incl)) { AddModule($module->modulename, ! $module->modulename, ! '', #Version explode(',', $module->includes), $module->adminnavigation, --- 106,111 ---- while($module = ofirst_dbfetch_object($incl)) { AddModule($module->modulename, ! $module->label, ! $module->version, explode(',', $module->includes), $module->adminnavigation, |
From: Astronouth7303 <ast...@us...> - 2005-05-15 22:17:41
|
Update of /cvsroot/openfirst/base/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16781/config Modified Files: first.php headers.php style.css Log Message: New installer (appearence only) Index: first.php =================================================================== RCS file: /cvsroot/openfirst/base/config/first.php,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** first.php 14 May 2005 22:25:56 -0000 1.54 --- first.php 15 May 2005 22:17:31 -0000 1.55 *************** *** 34,38 **** if(isset($_POST["login"])) { // User is attempting to login for the first time. ! die("<br><br><br>You have successfully logged in. <a href='index.php'>Access Administrative Configuration Options</a> (you will be prompted for your password again)</center>"); } --- 34,38 ---- if(isset($_POST["login"])) { // User is attempting to login for the first time. ! die("<br /><br /><br />You have successfully logged in. <a href='index.php'>Access Administrative Configuration Options</a> (you will be prompted for your password again)</center>"); } *************** *** 60,64 **** // They have submitted the form, write a new globals.php file and test // options. ! if (is_writable("./sitesettings.php")) { $file = file_get_contents('./sitesettings.tpl'); $cookielogins = ((isset($_POST["cookielogins"]) && $_POST["cookielogins"]=="yes") ? true : false); --- 60,65 ---- // They have submitted the form, write a new globals.php file and test // options. ! $ConfigFile = 'sitesettings.php'; ! if ( (file_exists("./$ConfigFile") && is_writable("./$ConfigFile")) || is_writable('./') ) { $file = file_get_contents('./sitesettings.tpl'); $cookielogins = ((isset($_POST["cookielogins"]) && $_POST["cookielogins"]=="yes") ? true : false); *************** *** 104,108 **** $file = str_replace($find, $replace, $file); ! $hfile = fopen('./globals.php','w'); fwrite($hfile, $file); fclose($hfile); include("../config/globals.php"); --- 105,109 ---- $file = str_replace($find, $replace, $file); ! $hfile = fopen("./$ConfigFile",'w'); fwrite($hfile, $file); fclose($hfile); include("../config/globals.php"); *************** *** 111,122 **** <p>If this page does not display errors elsewhere, then your openFIRST has now been successfully configured. If there are errors, check your configuration options and try again. You may now ! wish to change the permissions on <b>globals.php</b> to prevent unwanted changes to the configuration ! options. You should be able to login below using the username <b>admin</b> and the password ! <b>openfirst</b>, if not, then either the password for that account has been changed, or the ! MySQL settings are incorrect.</p>"); showlogin(); die(include("$footer")); } else { ! echo "Globals.php is not writable\n"; if(is_readable("config/headers.php")) { include("config/headers.php"); --- 112,124 ---- <p>If this page does not display errors elsewhere, then your openFIRST has now been successfully configured. If there are errors, check your configuration options and try again. You may now ! wish to change the permissions on <span class=\"file\">globals.php</span> to prevent unwanted changes ! to the configuration options. You should be able to login below using the username ! <b class=\"user\">admin</b> and the password <b class=\"password\">openfirst</b>, if not, then either ! the password for that account has been changed, or the MySQL settings are incorrect.</p>"); showlogin(); die(include("$footer")); } else { ! echo '<p class="error"><span class="file">'.htmlentities($ConfigFile).'</span> is not writable</p> ! '; if(is_readable("config/headers.php")) { include("config/headers.php"); *************** *** 124,128 **** include("../config/headers.php"); } ! echo("<h1>System Configuration Error</h1> <p>Cannot write to configuration file. Please check permissions on <b>globals.php</b> and ensure that the web user has the ability to write to this file.</p> --- 126,130 ---- include("../config/headers.php"); } ! echo("<h1 class=\"error\">System Configuration Error</h1> <p>Cannot write to configuration file. Please check permissions on <b>globals.php</b> and ensure that the web user has the ability to write to this file.</p> *************** *** 130,139 **** <p>For unix, this would typically require the command: <br /> ! <code> ! cd config ! <br />chmod 666 globals.php ! </code></p>"); } } else { if(is_readable("config/headers.php")) { include("config/headers.php"); --- 132,143 ---- <p>For unix, this would typically require the command: <br /> ! <pre class=\"shell\">cd config ! <br />chmod 666 globals.php</pre></p>"); } } else { + $basepath = '/openfirst'; + $title = 'astro73'; + + // Do form if(is_readable("config/headers.php")) { include("config/headers.php"); *************** *** 145,157 **** $basepath = substr($_SERVER["SCRIPT_NAME"], 0, -17); $server = $_SERVER["SERVER_NAME"]; ! chdir('..'); ! $fbasepath = str_replace("\\", '/', getcwd()); - if (PHP_OS == "WIN32" || PHP_OS == "WINNT") { - $windows = true; - } else { - $windows = false; - } - $sqlhost = 'localhost'; if(ini_get('mysql.default_host') != '') { --- 149,154 ---- $basepath = substr($_SERVER["SCRIPT_NAME"], 0, -17); $server = $_SERVER["SERVER_NAME"]; ! $fbasepath = realpath(dirname(__FILE__).'/..'); $sqlhost = 'localhost'; if(ini_get('mysql.default_host') != '') { *************** *** 175,277 **** // of options to fill out. ?> ! <h1>Base Configuration</h1> ! <p><form action="<?php echo htmlentities("http://$server$basepath/config/first.php"); ?>" method="post"> ! Congratulations on your choice of openFIRST software. Please proceed through this setup wizard to get your new openFIRST portal software set up and working quickly and painlessly. Also please make sure that before installing this script that you have the appropriate permissions set on config/globals.php (if not ! then you may receive a collection of errors after submitting this form).<br> ! <br> ! <table width="608"> ! <tr> ! <th width="390">Option</th> ! <th width="206">Value</th> ! </tr> ! <tr> ! <td class="sub"><div align="center">Database Setup</div></td> ! <td class="sub"> </td> ! </tr> ! <tr> ! <td>Database Type ! </td> ! <td> ! <input type='hidden' name='peardb' value='false'> ! <select name="dbasetype"> ! <option value="mysql" selected="selected">MySQL</option> ! <option value="mssql">Microsoft SQL</option> ! <option value="odbc">ODBC</option> ! </select> ! <tr> ! <td>Title of Website</td> ! <td><input type="text" name="title" value="openFIRST" /></td> ! </tr> ! <tr> ! <td>Version of Website</td> ! <td><input type="text" name="version" value="1.0" /></td> ! </tr> ! <tr> ! <td>Database Server Address</td> ! <td><input type="text" name="sqlserver" value="<?php echo htmlentities($sqlhost); ?>" /></td> ! </tr> ! <tr> ! <td>Database User Name</td> ! <td><input type="text" name="sqluser" value="<?php echo htmlentities($sqluser); ?>" /></td> ! </tr> ! <tr> ! <td>Database User Password</td> ! <td><input type="password" name="sqlpassword" value="<?php echo htmlentities($sqlpass); ?>" /></td> ! </tr> ! <tr> ! <td>Database Name<br> <font size="1">(if this database does not already exist, the user entered above ! must have access to create it)</font></td> ! <td><input type="text" name="sqldatabase" value="openfirst" /></td> ! </tr> ! <tr> ! <td class="sub"><div align="center">Linking Options</div></td> ! <td class="sub"> </td> ! </tr> ! <tr> ! <td>Home Site<br> <font size="1">(the address scripts will use for linking ! to your main page) <em>Note:</em> Do not place a slash after the link ! ie. http://www.yoursite.com</font></td> ! <td> <input type="text" name="home" value="http://<?php echo htmlentities("$server$basepath"); ?>" ></td> ! </tr> ! <tr> ! <td>Header file<br> <font size="1">(this should be a full system path) ie. ! c:\inetpub\wwwroot\openfirst\config\header.php or /home/site/public_html/openfirst/config/headers.php</font></td> ! <td><input type="text" name="header" value="<?php echo htmlentities($fbasepath); ?>/config/headers.php" /></td> ! </tr> ! <tr> ! <td>Footer file<br> <font size="1">(this should be a full system path) ie. ! c:\inetpub\wwwroot\openfirst\config\footers.php or /home/site/public_html/openfirst/config/footers.php</font></td> ! <td><input type="text" name="footer" value="<?php echo htmlentities($fbasepath); ?>/config/footers.php" /></td> ! </tr> ! <tr> ! <td>The server name of the openFIRST software<br> <font size="1">ie. example: ! <strong>http://openfirst.sourceforge.net</strong>/openfirst) this should ! never have an ending slash, and must contain protocol name.</font></td> ! <td><input type="text" name="server" value="http://<?php echo htmlentities($server); ?>"></td> ! </tr> ! <tr> ! <td>The base path to the openFIRST software<br> <font size="1">ie. example: ! http://openfirst.sourceforge.net<strong>/openfirst</strong>) this should ! always have a beginning slash but no ending slash.</font></td> ! <td><input type="text" name="basepath" value="<?php echo htmlentities($basepath); ?>"></td> ! </tr> ! <tr> ! <td>The file system path to the basepath<br> <font size="1">(example: <strong>/home/openfirst/htdocs/openfirst</strong> ! or c:\inetpub\wwwroot\openfirst) this should not have a ending slash.</font></td> ! <td><input type="text" name="fbasepath" value="<?php echo htmlentities($fbasepath); ?>"></td> ! </tr> ! <tr> ! <td class="sub"><div align="center">Security Options</div></td> ! <td class="sub"> </td> ! </tr> ! <tr> ! <td>Type of encryption to use on database passwords?<br> ! <font size="1">If you are migrating from an existing system, this should be the same encryption ! style that system uses, otherwise all users will have to reset their password; otherwise, in ! most cases the default option is fine.</font></td> ! <td> <select name="encryption"> <option value='md5' selected='selected'>MD5 Message-Digest Algorithm</option> --- 172,283 ---- // of options to fill out. ?> ! <div class="center"> ! <h1>Base Configuration</h1> ! <p class="center" style="max-width: 50em;">Congratulations on your choice of openFIRST software! Please proceed through this setup wizard to get your new openFIRST portal software set up and working quickly and painlessly. Also please make sure that before installing this script that you have the appropriate permissions set on config/globals.php (if not ! then you may receive a collection of errors after submitting this form).</p> ! </div> ! <form action="<?php echo htmlentities("http://$server$basepath/config/first.php"); ?>" method="post"> ! <fieldset> ! <legend>Database Setup</legend> ! <dl class="setup"> ! <dd> ! <label for="dbasetype">Database Type</label> ! <input type='hidden' name='peardb' value='false'> ! <select name="dbasetype"> ! <option value="mysql" selected="selected">MySQL</option> ! <option value="mssql">Microsoft SQL</option> ! <option value="odbc">ODBC</option> ! </select> ! </dd> ! <dt></dt> ! <dd> ! <label for="title">Title of Website</label> ! <input type="text" name="title" value="openFIRST" /> ! </dd> ! <dt></dt> ! <dd> ! <label for="version">Version of Website</label> ! <input type="text" name="version" value="1.0" /> ! </dd> ! <dt></dt> ! <dd> ! <label for="sqlserver">Database Server Address</label> ! <input type="text" name="sqlserver" value="<?php echo htmlentities($sqlhost); ?>" /> ! </dd> ! <dt></dt> ! <dd> ! <label for="sqluser">Database User Name</label> ! <input type="text" name="sqluser" value="<?php echo htmlentities($sqluser); ?>" /> ! </dd> ! <dt></dt> ! <dd> ! <label for="sqlpassword">Database User Password</label> ! <input type="password" name="sqlpassword" value="<?php echo htmlentities($sqlpass); ?>" /> ! </dd> ! <dt></dt> ! <dd> ! <label for="sqldatabase">Database Name</label> ! <input type="text" name="sqldatabase" value="openfirst" /> ! </dd> ! <dt>(I this database does not already exist, the user entered above must have access to create it.</dt> ! </dl> ! </fieldset> ! ! <fieldset> ! <legend>Linking Options</legend> ! <dl class="setup"> ! <dd> ! <label for="home">Home Site</label> ! <input type="text" name="home" value="http://<?php echo htmlentities("$server$basepath"); ?>" /> ! </dd> ! <dt>This address will used for linking to your main page.</dt> ! <dd> ! <label for="header">Header file</label> ! <input type="text" name="header" value="<?php echo htmlentities($fbasepath); ?>/config/headers.php" /> ! </dd> ! <dt>This should be a full system path, eg, ! <code class="file">c:\inetpub\wwwroot\openfirst\config\header.php</code> or ! <code class="file">/home/site/public_html/openfirst/config/headers.php</code> ! </dt> ! <dd> ! <label for="footer">Footer file</label> ! <input type="text" name="footer" value="<?php echo htmlentities($fbasepath); ?>/config/footers.php" /> ! </dd> ! <dt>This should be a full system path, eg, ! <code class="file">c:\inetpub\wwwroot\openfirst\config\footers.php</code> or ! <code class="file">/home/site/public_html/openfirst/config/footers.php</code> ! </dt> ! <dd> ! <label for="">The server name</label> ! <input type="text" name="server" value="http://<?php echo htmlentities($server); ?>" /> ! <span class="warning">Must not have a trailing slash and must include a protocol.</span> ! </dd> ! <dt>eg, <code class="url"><strong>http://openfirst.sourceforge.net</strong>/openfirst</code></dt> ! <dd> ! <label for="basepath">file system base path</label> ! <input type="text" name="basepath" value="<?php echo htmlentities($basepath); ?>" /> ! <span class="warning">Must not have a trailing slash.</span> ! </dd> ! <dt>ie. example: <code class="url">http://openfirst.sourceforge.net<strong>/openfirst</strong></code>) this should ! always have a beginning slash but no ending slash. (If openFIRST is in the root directory, then leave blank.) ! </dt> ! <dd> ! <label for="fbasepath">The file system path</label> ! <input type="text" name="fbasepath" value="<?php echo htmlentities($fbasepath); ?>" /> ! <span class="warning">Must not have a trailing slash.</span> ! </dd> ! <dt>eg, <code class="file">/home/openfirst/htdocs/openfirst</code> ! or <code class="file">c:\inetpub\wwwroot\openfirst</code>) this should not have a ending slash.</dt> ! </dl> ! </fieldset> ! ! <fieldset> ! <legend>Security Options</legend> ! <dl class="setup"> ! <dd> ! <label for="">Hashing method</label> <select name="encryption"> <option value='md5' selected='selected'>MD5 Message-Digest Algorithm</option> *************** *** 280,315 **** <option value='sha1'>US Secure Hash Algorithm 1 (sha1)</option> </select> ! </td></tr> ! <td>Allow openFIRST users to save their passwords?<br> <font size="1">This feature uses cookies to ! automatically log in users into the openFIRST portal.</font></td> ! <td><input type="checkbox" name="cookielogins" id="cookielogins" value="yes" checked> ! <label for="cookielogins">Allowed</label></td> ! </tr> ! <tr> ! <td>Allow users to register on the portal?<br> <font size="1">Enabling this option will ! allow users to register on the website and log in to access the members area. Be careful when ! using this option.</font></td> ! <td><input type="checkbox" name="allowreg" id="allowreg" value="yes"> ! <label for="allowreg">Allowed</label></td> ! </tr> ! <tr> ! <td class="sub"><div align="center">Mailing Options</div></td> ! <td class="sub"> </td> ! </tr> ! <tr> ! <td>Mail Notification<br> <font size="1">(the e-mail address used to notify ! you when significant events occur)</font></td> ! <td><input type="text" name="mailnotify" value="<?php echo htmlentities($mailto); ?>"></td> ! </tr> ! <tr> ! <td>Mail From<br> <font size="1">(the e-mail address that mail from the ! openFIRST site should appear to be from)</font></td> ! <td><input type="text" name="mailfrom" value="<?php echo htmlentities($mailfrom); ?>"></td> ! </tr> ! <tr> ! <td></td> ! <td><input type="submit" value="Set up OpenFIRST"></td> ! </tr> ! </table> </form> <?php --- 286,323 ---- <option value='sha1'>US Secure Hash Algorithm 1 (sha1)</option> </select> ! </dd> ! <dt>If you are migrating from an existing system, this should be the same encryption ! style that system uses, otherwise all users will have to reset their password; otherwise, in ! most cases the default option is fine.</dt> ! <dd> ! <label for="cookielogins">Allow users to save their passwords?</label> ! <input type="checkbox" name="cookielogins" id="cookielogins" value="yes" checked />Allowed ! </dd> ! <dt>This feature uses cookies to automatically log in users into the openFIRST portal.</dt> ! <dd> ! <label for="allowreg">Allow users to register on the portal?</label> ! <input type="checkbox" name="allowreg" id="allowreg" value="yes" />Allowed ! </dd> ! <dt>Enabling this option will allow users to register on the website and log in to access the ! members area. Be careful when using this option.</dt> ! </dl> ! </fieldset> ! ! <fieldset> ! <legend>Mailing Options</legend> ! <dl class="setup"> ! <dd> ! <label for="mailnotify">Mail Notification</label> ! <input type="text" name="mailnotify" value="<?php echo htmlentities($mailto); ?>" /> ! </dd> ! <dt>The e-mail address used to notify you when significant events occur.</dt> ! <dd> ! <label for="mailfrom">Mail From</label> ! <input type="text" name="mailfrom" value="<?php echo htmlentities($mailfrom); ?>" /> ! </dd> ! <dt>The e-mail address that mail from the openFIRST site should appear to be from.</dt> ! </dl> ! </fieldset> ! <div class="center big"><button class="center big" type="submit">Set up openFIRST!</button></div> </form> <?php Index: style.css =================================================================== RCS file: /cvsroot/openfirst/base/config/style.css,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** style.css 15 May 2005 05:22:10 -0000 1.1 --- style.css 15 May 2005 22:17:31 -0000 1.2 *************** *** 1,25 **** ! #adminmenu { color: #ffffff; } ! #adminmenu a:link { color: #ffffff; } ! #adminmenu a:visited { color: #ffffff; } ! #adminmenu a:active { color: #ffffff; } ! #adminmenu a:hover { color: #ffffff; } ! a:link { color: #000000; font-size: 12px; font-family: sans-serif; text-decoration: underline; } ! a:visited { color: #000000; font-size: 12px; font-family: sans-serif; text-decoration: underline; } ! a:active { color: #0000000; font-size: 12px; font-family: sans-serif; text-decoration: underline; } ! a:hover { color: #000000; font-size: 12px; font-family: sans-serif; text-decoration: underline; } ! #topmenu { text-align: left; } ! #topmenu a:link { color: #cecece; font-size: 12px; font-family: sans-serif; text-decoration: none; } ! #topmenu a:visited { color: #bebebe; font-size: 12px; font-family: sans-serif; text-decoration: none; } ! #topmenu a:active { color: #cecece; font-size: 12px; font-family: sans-serif; text-decoration: none; } ! #topmenu a:hover { color: #bed8ff; font-size: 12px; font-family: sans-serif; text-decoration: none; } ! table { border-left:solid #999999 1px;border-right:solid #999999 1px;border-bottom:solid #999999 1px; margin-left:auto; margin-right:auto; } td { padding: 5px; } th { padding: 5px; } table.menu { border-left:0px;border-right:0px;border-bottom:0px; } td.menu {border-left:0px;border-right:0px;border-bottom:0px; } ! body {color: black; font-weight: bolder; font-size: 12px; font-family: sans-serif; text-decoration:none; text-align: center; margin: 0px; } td { color: black; font-size: 12px; font-family: sans-serif; text-decoration: none; } td.navigation { color: black; font-size: 12px; font-family: sans-serif; text-decoration: none; } --- 1,113 ---- ! #adminmenu { ! color: white; ! } ! #adminmenu a:link { ! color: white; ! } ! #adminmenu a:visited { ! color: white; ! } ! #adminmenu a:active { ! color: white; ! } ! #adminmenu a:hover { ! color: white; ! } ! a:link { ! color: black; ! font-size: 12px; ! font-family: sans-serif; ! text-decoration: underline; ! } ! a:visited { ! color: black; ! font-size: 12px; ! font-family: sans-serif; ! text-decoration: underline; ! } ! a:active { ! color: black; ! font-size: 12px; ! font-family: sans-serif; ! text-decoration: underline; ! } ! a:hover { ! color: black; ! font-size: 12px; ! font-family: sans-serif; ! text-decoration: underline; ! } ! #topmenu { ! text-align: left; ! } ! #topmenu a:link { ! color: #cecece; ! font-size: 12px; ! font-family: sans-serif; ! text-decoration: none; ! } ! #topmenu a:visited { ! color: #bebebe; ! font-size: 12px; ! font-family: sans-serif; ! text-decoration: none; ! } ! #topmenu a:active { ! color: #cecece; ! font-size: 12px; ! font-family: sans-serif; ! text-decoration: none; ! } ! #topmenu a:hover { ! color: #bed8ff; ! font-size: 12px; ! font-family: sans-serif; ! text-decoration: none; ! } ! .nav1 { ! width:100%; ! border: none 0px; ! margin-left: -2px; ! margin-right: -2px; ! margin-bottom: 0; ! } ! .nav1 td, .nav1 th { ! margin: 0; ! padding: 6px; ! border: none 0px; ! } ! .nav1 tr { ! margin: 0px; ! padding: 2px; ! } ! .nav2 table { ! border-left:solid #999999 1px; ! border-right:solid #999999 1px; ! border-bottom:solid #999999 1px; ! margin-left:auto; ! margin-right:auto; ! } ! ! .center { ! margin-left:auto; ! margin-right:auto; ! text-align: center; ! } td { padding: 5px; } th { padding: 5px; } table.menu { border-left:0px;border-right:0px;border-bottom:0px; } td.menu {border-left:0px;border-right:0px;border-bottom:0px; } ! body { ! color: black; ! font-weight: bolder; ! font-size: 12px; ! font-family: sans-serif; ! text-decoration:none; ! margin: 0px; ! padding: 2px; ! } td { color: black; font-size: 12px; font-family: sans-serif; text-decoration: none; } td.navigation { color: black; font-size: 12px; font-family: sans-serif; text-decoration: none; } *************** *** 27,28 **** --- 115,160 ---- td.sub { background-color: #999999; color: #333333;background-image: url('<?php echo("$basepath/images/"); ?>back-lighter.gif'); } .menu.selected { color: red; text-decoration: underline; } + + .small { font-size:small; } + fieldset { + margin: 1em 1.5em; + } + LEGEND { font-size: 1.5em; font-weight: bold;} + + dl.setup dd { + margin-left: 0; + } + dl.setup dd label { + clear: left; + font-weight: bold; + width: 12em; + float: left; + text-align: right; + padding-right: 1em; + } + dl.setup dt { + clear: left; + font-size: 0.8em; + margin-left: 10em; + /* margin-right: 200px; */ + margin-bottom: 2em; + } + .error, .warning { + color: red; + } + ul.plain { + list-style: none; + clear: both; + margin-left: 12em; + } + dl.setup input:not([type=checkbox]) { + width: 25em; + } + .bold { + font-weight: bold; + } + .big { + font-size: large; + } + + Index: headers.php =================================================================== RCS file: /cvsroot/openfirst/base/config/headers.php,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** headers.php 15 May 2005 05:22:10 -0000 1.23 --- headers.php 15 May 2005 22:17:31 -0000 1.24 *************** *** 4,9 **** $title = "openFIRST Team"; } ! ?> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> --- 4,9 ---- $title = "openFIRST Team"; } ! ?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" ! "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> *************** *** 18,22 **** <body> ! <table width="100%" border="0" cellspacing="0" cellpadding="6"> <tr> <td> <img src="<?php echo htmlentities($basepath); ?>/images/openfirst.png" alt="openFIRST Portal System" /> --- 18,22 ---- <body> ! <table class="nav1"> <tr> <td> <img src="<?php echo htmlentities($basepath); ?>/images/openfirst.png" alt="openFIRST Portal System" /> *************** *** 43,48 **** </tr> <tr> ! <td style="background-image: url('<?php echo htmlentities($basepath); ?>/images/back-light.gif'); "> ! <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> --- 43,48 ---- </tr> <tr> ! <td class="nav2" style="background-image: url('<?php echo htmlentities($basepath); ?>/images/back-light.gif'); "> ! <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> |
From: Astronouth7303 <ast...@us...> - 2005-05-15 20:27:44
|
Update of /cvsroot/openfirst/www/htdocs/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28559/htdocs/config Added Files: style.css Log Message: style sheet for installer --- NEW FILE: style.css --- #adminmenu { color: #ffffff; } #adminmenu a:link { color: #ffffff; } #adminmenu a:visited { color: #ffffff; } #adminmenu a:active { color: #ffffff; } #adminmenu a:hover { color: #ffffff; } a:link { color: #000000; font-size: 12px; font-family: sans-serif; text-decoration: underline; } a:visited { color: #000000; font-size: 12px; font-family: sans-serif; text-decoration: underline; } a:active { color: #0000000; font-size: 12px; font-family: sans-serif; text-decoration: underline; } a:hover { color: #000000; font-size: 12px; font-family: sans-serif; text-decoration: underline; } #topmenu { text-align: left; } #topmenu a:link { color: #cecece; font-size: 12px; font-family: sans-serif; text-decoration: none; } #topmenu a:visited { color: #bebebe; font-size: 12px; font-family: sans-serif; text-decoration: none; } #topmenu a:active { color: #cecece; font-size: 12px; font-family: sans-serif; text-decoration: none; } #topmenu a:hover { color: #bed8ff; font-size: 12px; font-family: sans-serif; text-decoration: none; } table { border-left:solid #999999 1px;border-right:solid #999999 1px;border-bottom:solid #999999 1px; margin-left:auto; margin-right:auto; } td { padding: 5px; } th { padding: 5px; } table.menu { border-left:0px;border-right:0px;border-bottom:0px; } td.menu {border-left:0px;border-right:0px;border-bottom:0px; } body {color: black; font-weight: bolder; font-size: 12px; font-family: sans-serif; text-decoration:none; text-align: center; margin: 0px; } td { color: black; font-size: 12px; font-family: sans-serif; text-decoration: none; } td.navigation { color: black; font-size: 12px; font-family: sans-serif; text-decoration: none; } th { background-color: #999999; color: #333333;background-image: url('<?php echo("$basepath/images/"); ?>back-light.gif'); } td.sub { background-color: #999999; color: #333333;background-image: url('<?php echo("$basepath/images/"); ?>back-lighter.gif'); } .menu.selected { color: red; text-decoration: underline; } |
From: Astronouth7303 <ast...@us...> - 2005-05-15 20:26:20
|
Update of /cvsroot/openfirst/www/htdocs/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28325/config Log Message: Directory /cvsroot/openfirst/www/htdocs/config added to the repository |
From: Astronouth7303 <ast...@us...> - 2005-05-15 20:17:44
|
Update of /cvsroot/openfirst/base/config In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26491/config Modified Files: install.php Log Message: New Module system Index: install.php =================================================================== RCS file: /cvsroot/openfirst/base/config/install.php,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** install.php 15 May 2005 05:25:57 -0000 1.20 --- install.php 15 May 2005 20:17:03 -0000 1.21 *************** *** 39,114 **** <h1>Module Installer</h1> <p>This utility will create the tables required for certain openFIRST components ! to run.<br> ! Select the modules you would like to install.<br> ! <br> ! <font color="#FF0000">Once installed, modules must be enabled from the <a href="modules.php"><strong>Module ! Administrator</strong></a>.</font></p> <form method="post" action="install.php"> <table> ! <tr><th>Module Name</th><th>Response</th></tr> <?php ! if(function_exists("glob")) { ! $files = glob("../*/openfirst.info.php"); ! if (count($files) < 1) { ! ?> ! <p>You have no modules to install or are misconfigured. You can go to <a href="http://www.openfirst.org/">openFIRST.org</a> to download them.</p> ! <?php ! die(include($footer)); ! } ! foreach ($files as $filename) { ! $sqlf = str_replace(".", "-", str_replace(".$dbasetype", "",substr(strrchr($filename, "/"), 1))); ! $dir = str_replace(".", "-", str_replace(".$dbasetype", "", substr(strchr($filename, "/"), 1))); ! echo("<tr><td><br /> <input type='checkbox' name='$dir'>$sqlf - $dir</input></td>"); ! if(isset($_POST[$dir]) == true && $_POST[$dir] == "on") { ! $sf = fopen($filename, "r"); ! $query = ""; ! while($line = fgets($sf)) { ! if(substr($line, 0, 2) != "--" && substr($line, 0, 1) != "#" && strlen($line) > 0) { ! $q = ofirst_dbquery(trim($line)); ! } ! } ! fclose($sf); ! echo("<td><b><font color='Green'>Module Installed</font></b></td></tr>"); ! }else{ ! echo "<td>--</td></tr>"; ! } ! } ! } else { ! chdir(".."); ! $handle=@opendir(getcwd()); ! while ($file = readdir($handle)){ ! if(is_dir("$file") && $file != "." && $file != "..") { ! $handl=@opendir(getcwd() . "/$file/setup/"); ! while ($fil = @readdir($handl)){ ! if($fil != ".." && $fil != "." && $fil != "" && strpos($fil, $dbasetype) > 0) { ! $filename = "../$file/setup/$fil"; ! $sqlf = str_replace(".", "-", str_replace(".$dbasetype", "",substr(strrchr($filename, "/"), 1))); ! $dir = str_replace(".", "-", str_replace(".$dbasetype", "", substr(strchr($filename, "/"), 1))); ! echo("<br /> <input type='checkbox' name='$dir'>$sqlf - $dir</input>"); ! if(isset($_POST[$dir]) == true && $_POST[$dir] == "on") { ! $q = ofirst_dbquery("CREATE table IF NOT EXISTS `ofirst_config` (`modulename` CHAR(25) NOT NULL, ! `showonmenu` BOOL, `active` BOOL, `adminnavigation` TEXT, ! `modulenavigation` TEXT, `includes` TEXT, PRIMARY KEY (`modulename`));"); ! $filename = "$file/setup/$fil"; ! $sf = fopen($filename, "r"); ! $query = ""; ! while($line = fgets($sf, 4096)) { ! if(substr($line, 0, 2) != "--" && substr($line, 0, 1) != "#" && strlen($line) > 0) { ! $q = ofirst_dbquery(trim($line)); ! } ! } ! echo(" - <b>Submitted, and added.</b>"); ! fclose($sf); ! $filename = "../$file/setup/$fil"; ! } ! } ! } ! } } } --- 39,97 ---- <h1>Module Installer</h1> <p>This utility will create the tables required for certain openFIRST components ! to run.<br /> ! Select the modules you would like to install.<br /> ! <br /> ! <span style="color:red;">Once installed, modules must be enabled from the <a href="modules.php"><strong>Module ! Administrator</strong></a>.</span></p> <form method="post" action="install.php"> <table> ! <colgroup> ! <col /> ! <col /> ! <col class="file" /> ! </colgroup> ! <colgroup> ! <col /> ! </colgroup> ! <thead> ! <tr><th colspan="3">Module Name</th><th>Status</th></tr> ! </thead> ! <tbody> <?php ! $files = glob("$fbasepath/*/openfirst.info.php"); ! if (count($files) < 1) { ! ?> ! <p class="error">You have no modules to install or are misconfigured. You can go to <a href="http://www.openfirst.org/">openFIRST.org</a> to download them.</p> ! <?php ! die(include($footer)); ! } ! $InstalledModules = $Modules; ! # Get the meta data ! foreach ($files as $filename) { ! include($filename); ! } ! foreach($Modules as $code => $info) { ! $dir = "$fbasepath/$code"; ! $sqlf = "$dir/setup.$dbasetype"; ! $IsInstalled = array_key_exists($code, $InstalledModules); ! echo '<tr><td><input type="checkbox" name="'.htmlentities($code).'" '; ! if ($IsInstalled) echo 'checked="checked" '; ! echo '/><label for="'.htmlentities($code).'">'.htmlentities($info['name']).'</label></td> ! <td>('.htmlentities($info['ver']).')'.'</td> ! <td>'.htmlentities($code)."</td>"; ! if(isset($_POST[$code]) == true && $_POST[$code] == "on" && !$IsInstalled) { ! ! ofirst_dbexec_file($sqlf); ! echo('<td style="background-color: lime; color:white; font-weight:bold;">Module Installed successfully!</td></tr>'); ! } else if ($IsInstalled) { ! echo('<td style="background-color: green; color:white;">Module Installed</td></tr>'); ! } else { ! echo('<td style="background-color: gray; color:white;">Module available</td></tr>'); } } |
From: Astronouth7303 <ast...@us...> - 2005-05-15 18:50:03
|
Update of /cvsroot/openfirst/manual In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9572/manual Modified Files: openfirst.info.php Log Message: syntax errors Index: openfirst.info.php =================================================================== RCS file: /cvsroot/openfirst/manual/openfirst.info.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openfirst.info.php 15 May 2005 05:42:51 -0000 1.2 --- openfirst.info.php 15 May 2005 18:49:22 -0000 1.3 *************** *** 7,15 **** $Modules['manual']['nav'] = '<a href="$basepath/manual/">View Manual</a>'; ! if (!isset($Modules['awards']['active']) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show']) { $Modules['awards']['show'] = false; } --- 7,15 ---- $Modules['manual']['nav'] = '<a href="$basepath/manual/">View Manual</a>'; ! if (!isset($Modules['awards']['active'])) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show'])) { $Modules['awards']['show'] = false; } |
From: Astronouth7303 <ast...@us...> - 2005-05-15 18:50:03
|
Update of /cvsroot/openfirst/forum In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9572/forum Modified Files: openfirst.info.php Log Message: syntax errors Index: openfirst.info.php =================================================================== RCS file: /cvsroot/openfirst/forum/openfirst.info.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openfirst.info.php 15 May 2005 05:42:50 -0000 1.2 --- openfirst.info.php 15 May 2005 18:49:22 -0000 1.3 *************** *** 4,17 **** $Modules['forum']['ver'] = 'CVS'; $Modules['forum']['inc'] = array ( ! 'forumvisit.php', ); $Modules['forum']['admin'] = '<a href="$basepath/forum/admin/">Forum Admin</a>'; $Modules['forum']['nav'] = '<a href="$basepath/forum/">Forum Home</a>'; ! if (!isset($Modules['awards']['active']) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show']) { $Modules['awards']['show'] = false; } --- 4,17 ---- $Modules['forum']['ver'] = 'CVS'; $Modules['forum']['inc'] = array ( ! 'forumvisit.php' ); $Modules['forum']['admin'] = '<a href="$basepath/forum/admin/">Forum Admin</a>'; $Modules['forum']['nav'] = '<a href="$basepath/forum/">Forum Home</a>'; ! if (!isset($Modules['awards']['active'])) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show'])) { $Modules['awards']['show'] = false; } |
From: Astronouth7303 <ast...@us...> - 2005-05-15 18:50:03
|
Update of /cvsroot/openfirst/logger In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9572/logger Modified Files: openfirst.info.php Log Message: syntax errors Index: openfirst.info.php =================================================================== RCS file: /cvsroot/openfirst/logger/openfirst.info.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openfirst.info.php 15 May 2005 05:42:51 -0000 1.2 --- openfirst.info.php 15 May 2005 18:49:22 -0000 1.3 *************** *** 9,17 **** $Modules['logger']['nav'] = NULL; ! if (!isset($Modules['awards']['active']) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show']) { $Modules['awards']['show'] = false; } --- 9,17 ---- $Modules['logger']['nav'] = NULL; ! if (!isset($Modules['awards']['active'])) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show'])) { $Modules['awards']['show'] = false; } |
From: Astronouth7303 <ast...@us...> - 2005-05-15 18:50:02
|
Update of /cvsroot/openfirst/guestbook In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9572/guestbook Modified Files: openfirst.info.php Log Message: syntax errors Index: openfirst.info.php =================================================================== RCS file: /cvsroot/openfirst/guestbook/openfirst.info.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openfirst.info.php 15 May 2005 05:42:50 -0000 1.2 --- openfirst.info.php 15 May 2005 18:49:22 -0000 1.3 *************** *** 7,15 **** $Modules['guestbook']['nav'] = '<a href="$basepath/guestbook/">View Guestbook</a> | <a href="$basepath/guestbook/sign.php">Sign Guestbook</a>'; ! if (!isset($Modules['awards']['active']) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show']) { $Modules['awards']['show'] = false; } --- 7,15 ---- $Modules['guestbook']['nav'] = '<a href="$basepath/guestbook/">View Guestbook</a> | <a href="$basepath/guestbook/sign.php">Sign Guestbook</a>'; ! if (!isset($Modules['awards']['active'])) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show'])) { $Modules['awards']['show'] = false; } |
From: Astronouth7303 <ast...@us...> - 2005-05-15 18:50:02
|
Update of /cvsroot/openfirst/feedback In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9572/feedback Modified Files: openfirst.info.php Log Message: syntax errors Index: openfirst.info.php =================================================================== RCS file: /cvsroot/openfirst/feedback/openfirst.info.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openfirst.info.php 15 May 2005 05:42:50 -0000 1.2 --- openfirst.info.php 15 May 2005 18:49:22 -0000 1.3 *************** *** 7,15 **** $Modules['feedback']['nav'] = '<a href="$basepath/feedback/">Give Feedback</a>'; ! if (!isset($Modules['awards']['active']) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show']) { $Modules['awards']['show'] = false; } --- 7,15 ---- $Modules['feedback']['nav'] = '<a href="$basepath/feedback/">Give Feedback</a>'; ! if (!isset($Modules['awards']['active'])) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show'])) { $Modules['awards']['show'] = false; } |
From: Astronouth7303 <ast...@us...> - 2005-05-15 18:50:02
|
Update of /cvsroot/openfirst/awards In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9572/awards Modified Files: openfirst.info.php Log Message: syntax errors Index: openfirst.info.php =================================================================== RCS file: /cvsroot/openfirst/awards/openfirst.info.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openfirst.info.php 15 May 2005 05:42:50 -0000 1.2 --- openfirst.info.php 15 May 2005 18:49:21 -0000 1.3 *************** *** 7,15 **** $Modules['awards']['nav'] = '<a href="$basepath/awards/">View Awards</a>'; ! if (!isset($Modules['awards']['active']) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show']) { $Modules['awards']['show'] = false; } --- 7,15 ---- $Modules['awards']['nav'] = '<a href="$basepath/awards/">View Awards</a>'; ! if (!isset($Modules['awards']['active'])) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show'])) { $Modules['awards']['show'] = false; } |
From: Astronouth7303 <ast...@us...> - 2005-05-15 18:50:00
|
Update of /cvsroot/openfirst/emoticon In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9572/emoticon Modified Files: openfirst.info.php Log Message: syntax errors Index: openfirst.info.php =================================================================== RCS file: /cvsroot/openfirst/emoticon/openfirst.info.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openfirst.info.php 15 May 2005 05:42:50 -0000 1.2 --- openfirst.info.php 15 May 2005 18:49:21 -0000 1.3 *************** *** 4,17 **** $Modules['emoticon']['ver'] = 'CVS'; $Modules['emoticon']['inc'] = array ( ! 'emoticonf.php', ); $Modules['emoticon']['admin'] = NULL; $Modules['emoticon']['nav'] = '<a href="$basepath/emoticon/">View Emoticons</a>'; ! if (!isset($Modules['awards']['active']) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show']) { $Modules['awards']['show'] = false; } --- 4,17 ---- $Modules['emoticon']['ver'] = 'CVS'; $Modules['emoticon']['inc'] = array ( ! 'emoticonf.php' ); $Modules['emoticon']['admin'] = NULL; $Modules['emoticon']['nav'] = '<a href="$basepath/emoticon/">View Emoticons</a>'; ! if (!isset($Modules['awards']['active'])) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show'])) { $Modules['awards']['show'] = false; } |
From: Astronouth7303 <ast...@us...> - 2005-05-15 18:49:59
|
Update of /cvsroot/openfirst/downloads In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9572/downloads Modified Files: openfirst.info.php Log Message: syntax errors Index: openfirst.info.php =================================================================== RCS file: /cvsroot/openfirst/downloads/openfirst.info.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openfirst.info.php 15 May 2005 05:42:50 -0000 1.2 --- openfirst.info.php 15 May 2005 18:49:21 -0000 1.3 *************** *** 7,15 **** $Modules['downloads']['nav'] = '<a href="$basepath/downloads/">Downloads Home</a>'; ! if (!isset($Modules['awards']['active']) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show']) { $Modules['awards']['show'] = false; } --- 7,15 ---- $Modules['downloads']['nav'] = '<a href="$basepath/downloads/">Downloads Home</a>'; ! if (!isset($Modules['awards']['active'])) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show'])) { $Modules['awards']['show'] = false; } |
From: Astronouth7303 <ast...@us...> - 2005-05-15 18:49:49
|
Update of /cvsroot/openfirst/poll In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9572/poll Modified Files: openfirst.info.php Log Message: syntax errors Index: openfirst.info.php =================================================================== RCS file: /cvsroot/openfirst/poll/openfirst.info.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openfirst.info.php 15 May 2005 05:42:52 -0000 1.2 --- openfirst.info.php 15 May 2005 18:49:24 -0000 1.3 *************** *** 4,17 **** $Modules['poll']['ver'] = 'CVS'; $Modules['poll']['inc'] = array ( ! 'poll.php', ); $Modules['poll']['admin'] = '<a href="$basepath/poll/admin/create.php">Create Poll</a> | <a href="$basepath/poll/admin/">Manage Polls</a>'; $Modules['poll']['nav'] = '<a href="$basepath/poll/">Select Poll</a>'; ! if (!isset($Modules['awards']['active']) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show']) { $Modules['awards']['show'] = false; } --- 4,17 ---- $Modules['poll']['ver'] = 'CVS'; $Modules['poll']['inc'] = array ( ! 'poll.php' ); $Modules['poll']['admin'] = '<a href="$basepath/poll/admin/create.php">Create Poll</a> | <a href="$basepath/poll/admin/">Manage Polls</a>'; $Modules['poll']['nav'] = '<a href="$basepath/poll/">Select Poll</a>'; ! if (!isset($Modules['awards']['active'])) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show'])) { $Modules['awards']['show'] = false; } |
From: Astronouth7303 <ast...@us...> - 2005-05-15 18:49:49
|
Update of /cvsroot/openfirst/news In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9572/news Modified Files: openfirst.info.php Log Message: syntax errors Index: openfirst.info.php =================================================================== RCS file: /cvsroot/openfirst/news/openfirst.info.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openfirst.info.php 15 May 2005 05:42:52 -0000 1.2 --- openfirst.info.php 15 May 2005 18:49:23 -0000 1.3 *************** *** 4,17 **** $Modules['news']['ver'] = 'CVS'; $Modules['news']['inc'] = array ( ! 'viewnews.php', ); $Modules['news']['admin'] = '<a href="$basepath/news/admin/">Add News</a>'; $Modules['news']['nav'] = '<a href="$basepath/news/">Current News</a> | <a href="$basepath/news/rssfeed.php">Stream our News</a>'; ! if (!isset($Modules['awards']['active']) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show']) { $Modules['awards']['show'] = false; } --- 4,17 ---- $Modules['news']['ver'] = 'CVS'; $Modules['news']['inc'] = array ( ! 'viewnews.php' ); $Modules['news']['admin'] = '<a href="$basepath/news/admin/">Add News</a>'; $Modules['news']['nav'] = '<a href="$basepath/news/">Current News</a> | <a href="$basepath/news/rssfeed.php">Stream our News</a>'; ! if (!isset($Modules['awards']['active'])) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show'])) { $Modules['awards']['show'] = false; } |
From: Astronouth7303 <ast...@us...> - 2005-05-15 18:49:49
|
Update of /cvsroot/openfirst/modules In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9572/modules Modified Files: openfirst.info.php Log Message: syntax errors Index: openfirst.info.php =================================================================== RCS file: /cvsroot/openfirst/modules/openfirst.info.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openfirst.info.php 15 May 2005 05:42:52 -0000 1.2 --- openfirst.info.php 15 May 2005 18:49:23 -0000 1.3 *************** *** 7,15 **** $Modules['modules']['nav'] = '<a href="$basepath/modules/export.php">Export module info</a> | <a href="$basepath/modules/info.php">Generate info file</a>'; ! if (!isset($Modules['awards']['active']) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show']) { $Modules['awards']['show'] = false; } --- 7,15 ---- $Modules['modules']['nav'] = '<a href="$basepath/modules/export.php">Export module info</a> | <a href="$basepath/modules/info.php">Generate info file</a>'; ! if (!isset($Modules['awards']['active'])) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show'])) { $Modules['awards']['show'] = false; } |
From: Astronouth7303 <ast...@us...> - 2005-05-15 18:49:48
|
Update of /cvsroot/openfirst/photogallery In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9572/photogallery Modified Files: openfirst.info.php Log Message: syntax errors Index: openfirst.info.php =================================================================== RCS file: /cvsroot/openfirst/photogallery/openfirst.info.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openfirst.info.php 15 May 2005 05:42:52 -0000 1.2 --- openfirst.info.php 15 May 2005 18:49:24 -0000 1.3 *************** *** 4,17 **** $Modules['photogallery']['ver'] = 'CVS'; $Modules['photogallery']['inc'] = array ( ! 'photogallery.php', ); $Modules['photogallery']['admin'] = '<a href="$basepath/photogallery/admin/">Gallery Manager</a> | <a href="$basepath/photogallery/admin/newgallery.php">New Gallery</a>'; $Modules['photogallery']['nav'] = '<a href="$basepath/photogallery/">View Gallery</a>'; ! if (!isset($Modules['awards']['active']) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show']) { $Modules['awards']['show'] = false; } --- 4,17 ---- $Modules['photogallery']['ver'] = 'CVS'; $Modules['photogallery']['inc'] = array ( ! 'photogallery.php' ); $Modules['photogallery']['admin'] = '<a href="$basepath/photogallery/admin/">Gallery Manager</a> | <a href="$basepath/photogallery/admin/newgallery.php">New Gallery</a>'; $Modules['photogallery']['nav'] = '<a href="$basepath/photogallery/">View Gallery</a>'; ! if (!isset($Modules['awards']['active'])) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show'])) { $Modules['awards']['show'] = false; } |
From: Astronouth7303 <ast...@us...> - 2005-05-15 18:49:37
|
Update of /cvsroot/openfirst/sidebars In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9572/sidebars Modified Files: openfirst.info.php Log Message: syntax errors Index: openfirst.info.php =================================================================== RCS file: /cvsroot/openfirst/sidebars/openfirst.info.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openfirst.info.php 15 May 2005 05:42:52 -0000 1.2 --- openfirst.info.php 15 May 2005 18:49:25 -0000 1.3 *************** *** 7,15 **** $Modules['sidebars']['nav'] = '<a href="$basepath/sidebars/">Browse Sidebars</a>'; ! if (!isset($Modules['awards']['active']) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show']) { $Modules['awards']['show'] = false; } --- 7,15 ---- $Modules['sidebars']['nav'] = '<a href="$basepath/sidebars/">Browse Sidebars</a>'; ! if (!isset($Modules['awards']['active'])) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show'])) { $Modules['awards']['show'] = false; } |
From: Astronouth7303 <ast...@us...> - 2005-05-15 18:49:35
|
Update of /cvsroot/openfirst/projects In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9572/projects Modified Files: openfirst.info.php Log Message: syntax errors Index: openfirst.info.php =================================================================== RCS file: /cvsroot/openfirst/projects/openfirst.info.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openfirst.info.php 15 May 2005 05:42:52 -0000 1.2 --- openfirst.info.php 15 May 2005 18:49:24 -0000 1.3 *************** *** 4,17 **** $Modules['projects']['ver'] = 'CVS'; $Modules['projects']['inc'] = array ( ! 'projectsmodule.php', ); $Modules['projects']['admin'] = '<a href="$basepath/projects/admin/updatesetup.php">Update Service Setup</a>'; $Modules['projects']['nav'] = '<a href="$basepath/projects/groups.php">Action Register</a> | <a href="$basepath/projects/mytask.php">My Tasks</a> | <a href="$basepath/projects/preferences.php">Preferences</a> | <a href="$basepath/projects/today.php">Todays Changes</a>'; ! if (!isset($Modules['awards']['active']) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show']) { $Modules['awards']['show'] = false; } --- 4,17 ---- $Modules['projects']['ver'] = 'CVS'; $Modules['projects']['inc'] = array ( ! 'projectsmodule.php' ); $Modules['projects']['admin'] = '<a href="$basepath/projects/admin/updatesetup.php">Update Service Setup</a>'; $Modules['projects']['nav'] = '<a href="$basepath/projects/groups.php">Action Register</a> | <a href="$basepath/projects/mytask.php">My Tasks</a> | <a href="$basepath/projects/preferences.php">Preferences</a> | <a href="$basepath/projects/today.php">Todays Changes</a>'; ! if (!isset($Modules['awards']['active'])) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show'])) { $Modules['awards']['show'] = false; } |
From: Astronouth7303 <ast...@us...> - 2005-05-15 18:49:35
|
Update of /cvsroot/openfirst/search In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9572/search Modified Files: openfirst.info.php Log Message: syntax errors Index: openfirst.info.php =================================================================== RCS file: /cvsroot/openfirst/search/openfirst.info.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openfirst.info.php 15 May 2005 05:42:52 -0000 1.2 --- openfirst.info.php 15 May 2005 18:49:24 -0000 1.3 *************** *** 7,15 **** $Modules['search']['nav'] = '<a href="$basepath/search/">Search</a>'; ! if (!isset($Modules['awards']['active']) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show']) { $Modules['awards']['show'] = false; } --- 7,15 ---- $Modules['search']['nav'] = '<a href="$basepath/search/">Search</a>'; ! if (!isset($Modules['awards']['active'])) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show'])) { $Modules['awards']['show'] = false; } |
From: Astronouth7303 <ast...@us...> - 2005-05-15 18:49:32
|
Update of /cvsroot/openfirst/members In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9572/members Modified Files: openfirst.info.php Log Message: syntax errors Index: openfirst.info.php =================================================================== RCS file: /cvsroot/openfirst/members/openfirst.info.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openfirst.info.php 15 May 2005 05:42:51 -0000 1.2 --- openfirst.info.php 15 May 2005 18:49:23 -0000 1.3 *************** *** 7,15 **** $Modules['members']['nav'] = '<a href="$basepath/members/workspace.php">My Workspace</a> | <a href="$basepath/members/phpicalendar/month.php">Team Calendar</a> | <a href="$basepath/members/divisions.php">Team Divisions</a> | <a href="$basepath/members/profile.php">Member List</a> | <a href="$basepath/members/links.php">Site Links</a> | <a href="$basepath/members/skills.php">My Skills</a> | <a href="$basepath/members/updateprofile.php">My Profile</a> | <a href="$basepath/members/logout.php">Logout</a>'; ! if (!isset($Modules['awards']['active']) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show']) { $Modules['awards']['show'] = false; } --- 7,15 ---- $Modules['members']['nav'] = '<a href="$basepath/members/workspace.php">My Workspace</a> | <a href="$basepath/members/phpicalendar/month.php">Team Calendar</a> | <a href="$basepath/members/divisions.php">Team Divisions</a> | <a href="$basepath/members/profile.php">Member List</a> | <a href="$basepath/members/links.php">Site Links</a> | <a href="$basepath/members/skills.php">My Skills</a> | <a href="$basepath/members/updateprofile.php">My Profile</a> | <a href="$basepath/members/logout.php">Logout</a>'; ! if (!isset($Modules['awards']['active'])) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show'])) { $Modules['awards']['show'] = false; } |
From: Astronouth7303 <ast...@us...> - 2005-05-15 18:49:32
|
Update of /cvsroot/openfirst/messenger In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9572/messenger Modified Files: openfirst.info.php Log Message: syntax errors Index: openfirst.info.php =================================================================== RCS file: /cvsroot/openfirst/messenger/openfirst.info.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openfirst.info.php 15 May 2005 05:42:51 -0000 1.2 --- openfirst.info.php 15 May 2005 18:49:23 -0000 1.3 *************** *** 4,17 **** $Modules['messenger']['ver'] = 'CVS'; $Modules['messenger']['inc'] = array ( ! 'messenger.php', ); $Modules['messenger']['admin'] = NULL; $Modules['messenger']['nav'] = '<a href="$basepath/messenger/">Users Online</a> | <a href="$basepath/messenger/inbox.php">Inbox</a> | <a href="$basepath/messenger/newmsg.php">Send Message</a>'; ! if (!isset($Modules['awards']['active']) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show']) { $Modules['awards']['show'] = false; } --- 4,17 ---- $Modules['messenger']['ver'] = 'CVS'; $Modules['messenger']['inc'] = array ( ! 'messenger.php' ); $Modules['messenger']['admin'] = NULL; $Modules['messenger']['nav'] = '<a href="$basepath/messenger/">Users Online</a> | <a href="$basepath/messenger/inbox.php">Inbox</a> | <a href="$basepath/messenger/newmsg.php">Send Message</a>'; ! if (!isset($Modules['awards']['active'])) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show'])) { $Modules['awards']['show'] = false; } |
From: Astronouth7303 <ast...@us...> - 2005-05-15 18:49:31
|
Update of /cvsroot/openfirst/meetings In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9572/meetings Modified Files: openfirst.info.php Log Message: syntax errors Index: openfirst.info.php =================================================================== RCS file: /cvsroot/openfirst/meetings/openfirst.info.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openfirst.info.php 15 May 2005 05:42:51 -0000 1.2 --- openfirst.info.php 15 May 2005 18:49:22 -0000 1.3 *************** *** 7,15 **** $Modules['meetings']['nav'] = '<a href="$basepath/meetings/">Meeting Viewer</a>'; ! if (!isset($Modules['awards']['active']) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show']) { $Modules['awards']['show'] = false; } --- 7,15 ---- $Modules['meetings']['nav'] = '<a href="$basepath/meetings/">Meeting Viewer</a>'; ! if (!isset($Modules['awards']['active'])) { $Modules['awards']['active'] = false; } ! if (!isset($Modules['awards']['show'])) { $Modules['awards']['show'] = false; } |