Thread: [Openfirst-cvscommit] projects groups.php,1.8,1.9 meetings.php,1.5,1.6 mytask.php,1.4,1.5 notes.php,
Brought to you by:
xtimg
From: <dav...@us...> - 2003-09-01 17:29:15
|
Update of /cvsroot/openfirst/projects In directory sc8-pr-cvs1:/tmp/cvs-serv24636 Modified Files: groups.php meetings.php mytask.php notes.php projects.php tasks.php today.php Log Message: Design errors fixed. Sub headers have been added, cell highlighting on mouse over has been removed. A wrap feature has been added for member listings. Index: groups.php =================================================================== RCS file: /cvsroot/openfirst/projects/groups.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** groups.php 30 Aug 2003 14:42:57 -0000 1.8 --- groups.php 1 Sep 2003 17:29:10 -0000 1.9 *************** *** 113,133 **** </th> </table> ! <table width="100%" bordercolor="#999999"> ! <tr bgcolor="#999999"> ! <td width="5%"> </td> ! <td width="20%">Group Name</td> ! <td width="6%">Projects</td> ! <td width="35%">Description</td> ! <td width="9%">Moderators</td> ! <td width="25%">Members</td> </tr> <?php // Query the current group values and loop through them ! $query = ofirst_dbquery("SELECT * FROM ofirst_projects_groups"); while($groups = ofirst_dbfetch_object($query)){ ?> ! <tr <?php if(date("F j, Y",time()) == date("F j, Y",$groups->Dates)){ echo "bgColor='#CCCCCC'"; } ?> onMouseOver="this.style.backgroundColor='#cccccc'" onMouseOut="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff"> <td> <div align="center"><a href="projects.php?GroupID=<?php echo $groups->ID; ?>"><img src="../members/icons/apps/kuser.png" width="32" height="32" border="0"></a></div></td> --- 113,133 ---- </th> </table> ! <table width="100%"> ! <tr> ! <td class="sub" width="5%"> </td> ! <td class="sub" width="20%">Group Name</td> ! <td class="sub" width="6%">Projects</td> ! <td class="sub" width="35%">Description</td> ! <td class="sub" width="9%">Moderators</td> ! <td class="sub" width="25%">Members</td> </tr> <?php // Query the current group values and loop through them ! $query = ofirst_dbquery("SELECT * FROM ofirst_projects_groups GROUP BY GroupName"); while($groups = ofirst_dbfetch_object($query)){ ?> ! <tr <?php if(date("F j, Y",time()) == date("F j, Y",$groups->Dates)){ echo "bgColor='#CCCCCC'"; } ?>> <td> <div align="center"><a href="projects.php?GroupID=<?php echo $groups->ID; ?>"><img src="../members/icons/apps/kuser.png" width="32" height="32" border="0"></a></div></td> *************** *** 140,145 **** </td> <td><?php echo $groups->Description; ?></td> ! <td><?php echo $groups->Moderators; ?></td> ! <td><?php echo $groups->Members; ?> </td> </tr> <?php --- 140,145 ---- </td> <td><?php echo $groups->Description; ?></td> ! <td><?php echo str_replace(",", ", ",$groups->Moderators); ?></td> ! <td><?php echo str_replace(",", ", ",$groups->Members); ?> </td> </tr> <?php Index: meetings.php =================================================================== RCS file: /cvsroot/openfirst/projects/meetings.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** meetings.php 30 Aug 2003 14:42:57 -0000 1.5 --- meetings.php 1 Sep 2003 17:29:10 -0000 1.6 *************** *** 92,100 **** </table> <table width="100%"> ! <tr bgcolor="#999999"> ! <td width="6%"> </td> ! <td width="21%"><div align="center"><strong>Date</strong></div></td> ! <td width="52%"><div align="center"><strong>Description</strong></div></td> ! <td width="21%"><div align="center"><strong>Arranged For</strong></div></td> </tr> <?php --- 92,100 ---- </table> <table width="100%"> ! <tr> ! <td class="sub" width="6%"> </td> ! <td class="sub" width="21%"><div align="center"><strong>Date</strong></div></td> ! <td class="sub" width="52%"><div align="center"><strong>Description</strong></div></td> ! <td class="sub" width="21%"><div align="center"><strong>Arranged For</strong></div></td> </tr> <?php *************** *** 137,145 **** </table> <table width="100%"> ! <tr bgcolor="#999999"> ! <th width="6%"> </td> ! <th width="21%">Date</th> ! <th width="52%">Description</th> ! <th width="21%">Arranged For</th> </tr> <?php --- 137,145 ---- </table> <table width="100%"> ! <tr> ! <td class="sub" width="6%"> </td> ! <td class="sub" width="21%">Date</th> ! <td class="sub" width="52%">Description</th> ! <td class="sub" width="21%">Arranged For</th> </tr> <?php Index: mytask.php =================================================================== RCS file: /cvsroot/openfirst/projects/mytask.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** mytask.php 30 Aug 2003 14:42:57 -0000 1.4 --- mytask.php 1 Sep 2003 17:29:10 -0000 1.5 *************** *** 47,57 **** </tr> </table> ! <table width="100%" bordercolor="#999999"> ! <tr bgcolor="#999999"> ! <th width="4%"> </th> ! <th width="20%">Task Name</th> ! <th width="13%">Target Date</th> ! <th width="33%">Description</th> ! <th width="30%">Assigned</th> </tr> <?php --- 47,57 ---- </tr> </table> ! <table width="100%"> ! <tr> ! <td class="sub" width="4%"> </th> ! <td class="sub" width="20%">Task Name</th> ! <td class="sub" width="13%">Target Date</th> ! <td class="sub" width="33%">Description</th> ! <td class="sub" width="30%">Assigned</th> </tr> <?php *************** *** 88,92 **** } ?> ! <tr onMouseOver="this.style.backgroundColor='#cccccc'" onMouseOut="this.style.backgroundColor='#ffffff'" <?php if(date("F j, Y",time()) == date("F j, Y",$tasks->Dates)){ echo "bgColor='#CCCCCC'"; } ?>> <td><a href="notes.php?GroupID=<?php echo $_GET['GroupID']; ?>&TaskID=<?php echo $tasks->ID; ?>&ProjectID=<?php echo $_GET['ProjectID']; ?>"> <?php --- 88,92 ---- } ?> ! <tr <?php if(date("F j, Y",time()) == date("F j, Y",$tasks->Dates)){ echo "bgColor='#CCCCCC'"; } ?>> <td><a href="notes.php?GroupID=<?php echo $_GET['GroupID']; ?>&TaskID=<?php echo $tasks->ID; ?>&ProjectID=<?php echo $_GET['ProjectID']; ?>"> <?php Index: notes.php =================================================================== RCS file: /cvsroot/openfirst/projects/notes.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** notes.php 30 Aug 2003 14:42:57 -0000 1.7 --- notes.php 1 Sep 2003 17:29:10 -0000 1.8 *************** *** 91,100 **** </tr> </table> ! <table width="100%" bordercolor="#999999"> ! <tr bgcolor="#999999"> ! <td width="5%"> </td> ! <td width="17%">Date</td> ! <td width="63%">Note Write Up</td> ! <td width="15%">Commiter</td> </tr> <?php --- 91,100 ---- </tr> </table> ! <table width="100%"> ! <tr> ! <td class="sub" width="5%"> </td> ! <td class="sub" width="17%">Date</td> ! <td class="sub" width="63%">Note Write Up</td> ! <td class="sub" width="15%">Commiter</td> </tr> <?php Index: projects.php =================================================================== RCS file: /cvsroot/openfirst/projects/projects.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** projects.php 30 Aug 2003 14:42:57 -0000 1.8 --- projects.php 1 Sep 2003 17:29:10 -0000 1.9 *************** *** 103,118 **** </tr> </table> ! <table width="100%" bordercolor="#999999"> ! <tr bgcolor="#999999"> ! <td width="3%"> </td> ! <td width="22%">Project Name</td> ! <td width="9%">Completion</td> ! <td width="35%">Description</td> ! <td width="31%">Assigned</td> </tr> <?php // List current projects in database ! $query = ofirst_dbquery("SELECT * FROM ofirst_projects_projects WHERE GroupID = '".$_GET['GroupID']."' ORDER BY GroupName;"); while($projects = ofirst_dbfetch_object($query)){ --- 103,118 ---- </tr> </table> ! <table width="100%"> ! <tr> ! <td class="sub" width="3%"> </td> ! <td class="sub" width="22%">Project Name</td> ! <td class="sub" width="9%">Completion</td> ! <td class="sub" width="35%">Description</td> ! <td class="sub" width="31%">Assigned</td> </tr> <?php // List current projects in database ! $query = ofirst_dbquery("SELECT * FROM ofirst_projects_projects WHERE GroupID = '".$_GET['GroupID']."' ORDER BY ProjectName;"); while($projects = ofirst_dbfetch_object($query)){ *************** *** 134,138 **** ?> ! <tr <?php if(date("F j, Y",time()) == date("F j, Y",$projects->Dates)){ echo "bgColor='#CCCCCC'"; } ?> onMouseOver="this.style.backgroundColor='#cccccc'" onMouseOut="this.style.backgroundColor='#ffffff'" bgcolor="#ffffff"> <td> <?php --- 134,138 ---- ?> ! <tr <?php if(date("F j, Y",time()) == date("F j, Y",$projects->Dates)){ echo "bgColor='#CCCCCC'"; } ?>> <td> <?php *************** *** 170,174 **** </td> <td><?php echo $projects->Description; ?></td> ! <td><?php echo $projects->Assigned; ?></td> </tr> <? --- 170,174 ---- </td> <td><?php echo $projects->Description; ?></td> ! <td><?php echo str_replace(",", ", ",$projects->Assigned); ?></td> </tr> <? Index: tasks.php =================================================================== RCS file: /cvsroot/openfirst/projects/tasks.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** tasks.php 30 Aug 2003 14:42:57 -0000 1.8 --- tasks.php 1 Sep 2003 17:29:10 -0000 1.9 *************** *** 105,109 **** $group = ofirst_dbfetch_object($query); ! $query = ofirst_dbquery("SELECT * FROM ofirst_projects_projects WHERE GroupID = '".$_GET['GroupID']."' AND ID = '".$_GET['ProjectID']."' ORDER BY GroupName;"); $project = ofirst_dbfetch_object($query); --- 105,109 ---- $group = ofirst_dbfetch_object($query); ! $query = ofirst_dbquery("SELECT * FROM ofirst_projects_projects WHERE GroupID = '".$_GET['GroupID']."' AND ID = '".$_GET['ProjectID']."' ORDER BY ProjectName;"); $project = ofirst_dbfetch_object($query); *************** *** 123,133 **** </tr> </table> ! <table width="100%" bordercolor="#999999"> ! <tr bgcolor="#999999"> ! <td width="4%"> </td> ! <td width="20%">Task Name</td> ! <td width="13%">Target Date</td> ! <td width="33%">Description</td> ! <td width="30%">Assigned</td> </tr> <?php --- 123,133 ---- </tr> </table> ! <table width="100%"> ! <tr> ! <td class="sub" width="4%"> </td> ! <td class="sub" width="20%">Task Name</td> ! <td class="sub" width="13%">Target Date</td> ! <td class="sub" width="33%">Description</td> ! <td class="sub" width="30%">Assigned</td> </tr> <?php *************** *** 155,159 **** ?> ! <tr onMouseOver="this.style.backgroundColor='#cccccc'" onMouseOut="this.style.backgroundColor='#ffffff'" <?php if(date("F j, Y",time()) == date("F j, Y",$tasks->Dates)){ echo "bgColor='#CCCCCC'"; } ?>> <td> <?php --- 155,159 ---- ?> ! <tr <?php if(date("F j, Y",time()) == date("F j, Y",$tasks->Dates)){ echo "bgColor='#CCCCCC'"; } ?>> <td> <?php *************** *** 196,200 **** ?></td> <td><?php echo $tasks->Description; ?></td> ! <td><?php echo $tasks->Assigned; ?></td> </tr> <? --- 196,200 ---- ?></td> <td><?php echo $tasks->Description; ?></td> ! <td><?php echo str_replace(",", ", ",$tasks->Assigned); ?></td> </tr> <? Index: today.php =================================================================== RCS file: /cvsroot/openfirst/projects/today.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** today.php 30 Aug 2003 14:42:57 -0000 1.4 --- today.php 1 Sep 2003 17:29:10 -0000 1.5 *************** *** 113,122 **** </p> </form> ! <table width="100%" border="0" cellspacing="0" cellpadding="6"> ! <tr> ! <th> ! <div align="center">Notes commited on <strong><?php echo $selectdate; ?></strong></div></th> ! </tr> ! </table> <?php --- 113,118 ---- </p> </form> ! <font size="4">Notes commited on <strong><?php echo $selectdate; ?></strong></font><br> ! <br> <?php *************** *** 128,147 **** <table width="100%" border="0" cellspacing="0" cellpadding="6"> <tr> ! <td bgcolor="#CCCCCC"> <div align="center"><font color="#000000"><strong><?php echo $group->GroupName; ?></strong></font></div></td> </tr> </table> <table width="100%"> ! <tr bgcolor="#999999"> ! <td width="4%"> </td> ! <td width="14%">Change</td> ! <td width="15%">Project</td> ! <td width="14%">Task</td> ! <td width="35%">Decsription</td> ! <td width="18%">Assigned/Commiter</td> </tr> <?php // Listed the newly added projects for this day ! $projectquery = ofirst_dbquery("SELECT * FROM ofirst_projects_projects WHERE GroupID = '".$group->ID."' ORDER BY GroupName"); while($project = ofirst_dbfetch_object($projectquery)){ --- 124,143 ---- <table width="100%" border="0" cellspacing="0" cellpadding="6"> <tr> ! <th> <div align="center"><font color="#000000"><strong><?php echo $group->GroupName; ?></strong></font></div></th> </tr> </table> <table width="100%"> ! <tr> ! <td class="sub" width="4%"> </td> ! <td class="sub" width="14%">Change</td> ! <td class="sub" width="15%">Project</td> ! <td class="sub" width="14%">Task</td> ! <td class="sub" width="35%">Decsription</td> ! <td class="sub" width="18%">Assigned/Commiter</td> </tr> <?php // Listed the newly added projects for this day ! $projectquery = ofirst_dbquery("SELECT * FROM ofirst_projects_projects WHERE GroupID = '".$group->ID."' ORDER BY ProjectName"); while($project = ofirst_dbfetch_object($projectquery)){ *************** *** 149,153 **** ?> ! <tr onMouseOver="this.style.backgroundColor='#cccccc'" onMouseOut="this.style.backgroundColor='#ffffff'"> <td><img src="../members/icons/actions/project_open.png" width="32" height="32"></td> <td>New Project</td> --- 145,149 ---- ?> ! <tr> <td><img src="../members/icons/actions/project_open.png" width="32" height="32"></td> <td>New Project</td> *************** *** 172,176 **** ?> ! <tr onMouseOver="this.style.backgroundColor='#cccccc'" onMouseOut="this.style.backgroundColor='#ffffff'"> <td><img src="../members/icons/filesystems/desktop.png" width="32" height="32"></td> <td>New Task</td> --- 168,172 ---- ?> ! <tr> <td><img src="../members/icons/filesystems/desktop.png" width="32" height="32"></td> <td>New Task</td> *************** *** 198,202 **** ?> ! <tr onMouseOver="this.style.backgroundColor='#cccccc'" onMouseOut="this.style.backgroundColor='#ffffff'"> <td><img src="../members/icons/filesystems/files.png" width="32" height="32"></td> <td>New Note Commited</td> --- 194,198 ---- ?> ! <tr> <td><img src="../members/icons/filesystems/files.png" width="32" height="32"></td> <td>New Note Commited</td> |