openfirst-cvscommit Mailing List for openFIRST (Page 88)
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: <xt...@us...> - 2003-08-12 21:09:40
|
Update of /cvsroot/openfirst/manual In directory sc8-pr-cvs1:/tmp/cvs-serv19432 Modified Files: index.php Log Message: Allow multiple documents to have manuals (this should make this module a lot more useful). Index: index.php =================================================================== RCS file: /cvsroot/openfirst/manual/index.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** index.php 1 Jun 2003 04:26:58 -0000 1.1.1.1 --- index.php 12 Aug 2003 21:01:08 -0000 1.2 *************** *** 30,39 **** ?> ! <h1>openFIRST Manual</h1> <?php mysql_select_db($sqldatabase); ! if(isset($_GET["chapter"]) == false && isset($_GET["id"]) == false && isset($_POST["ID"]) == false) { echo("<h2>Table of Contents</h2>"); ! $query = "SELECT ID, title, chapter from ofirst_manual ORDER BY chapter, title;"; $q = mysql_query($query); while($t = mysql_fetch_object($q)) { --- 30,47 ---- ?> ! <h1>Manual</h1> <?php mysql_select_db($sqldatabase); ! if(isset($_GET["chapter"]) == false && isset($_GET["id"]) == false && isset($_POST["ID"]) == false && isset($_GET["doc"]) == false) { ! echo("<p>The following manuals exist, and are able to be read and commented on:</p>"); ! $query = mysql_query("SELECT document FROM ofirst_manual GROUP BY document;"); ! if(mysql_num_rows($query) == 0) { echo("<p>There is currently no documentation available.</p>"); } ! while($q = mysql_fetch_object($query)) { ! echo($q->document); ! } ! } ! if(isset($_GET["chapter"]) == false && isset($_GET["id"]) == false && isset($_POST["ID"]) == false && isset($_GET["doc"]) == true) { echo("<h2>Table of Contents</h2>"); ! $query = "SELECT ID, title, chapter FROM ofirst_manual ORDER BY chapter, title WHERE document='" . $_GET["doc"] . "';"; $q = mysql_query($query); while($t = mysql_fetch_object($q)) { *************** *** 47,50 **** --- 55,59 ---- if(isset($_POST["ID"]) == true) { $id = $_POST["ID"]; + $doc = $_POST["doc"]; echo("<p><strong>Note Added.</strong></p>"); $query = "SELECT notes FROM ofirst_manual WHERE ID='$id';"; *************** *** 57,61 **** $_POST["name"] . " - " . $_POST["email"] . "<br /> " . ! $_POST["note"] . "' WHERE ID='$id';"; $q = mysql_query($query); } else { --- 66,70 ---- $_POST["name"] . " - " . $_POST["email"] . "<br /> " . ! $_POST["note"] . "' WHERE ID='$id' AND document='$doc';"; $q = mysql_query($query); } else { *************** *** 63,67 **** } ! $query = "SELECT * FROM ofirst_manual WHERE ID='$id';"; $q = mysql_query($query); $f = mysql_fetch_object($q); --- 72,76 ---- } ! $query = "SELECT * FROM ofirst_manual WHERE ID='$id' AND document='" . $doc . "';"; $q = mysql_query($query); $f = mysql_fetch_object($q); *************** *** 114,117 **** --- 123,127 ---- <table> <tr><td><input type='hidden' name='ID' value='$f->ID'>Note Title + <input type='hidden' name='doc' value='$f->document'> </td><td> <input type='text' name='title' /> </td></tr><tr><td>Your E-mail Address</td><td><input type='text' name='email' /> |
From: <xt...@us...> - 2003-08-12 21:09:39
|
Update of /cvsroot/openfirst/manual/setup In directory sc8-pr-cvs1:/tmp/cvs-serv19432/setup Modified Files: setup.mysql Log Message: Allow multiple documents to have manuals (this should make this module a lot more useful). Index: setup.mysql =================================================================== RCS file: /cvsroot/openfirst/manual/setup/setup.mysql,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** setup.mysql 28 Jun 2003 00:38:34 -0000 1.4 --- setup.mysql 12 Aug 2003 21:01:08 -0000 1.5 *************** *** 1,3 **** --- 1,5 ---- CREATE table ofirst_manual (title TEXT, functionname TEXT, maintainer TEXT, creator TEXT, ID int(6) unsigned NOT NULL auto_increment, chapter int(3), description TEXT, notes TEXT, syntax TEXT, PRIMARY KEY (`ID`)); + ALTER TABLE ofirst_manual ADD COLUMN document TEXT; + UPDATE ofirst_manual SET document='1' WHERE document IS NULL; INSERT INTO ofirst_config SET modulename='manual',showonmenu='0',active='0',modulenavigation='<a href="$basepath/manual/">View Manual</a>'; |
From: <xt...@us...> - 2003-08-12 19:59:25
|
Update of /cvsroot/openfirst/members In directory sc8-pr-cvs1:/tmp/cvs-serv10180 Modified Files: workspace.php Added Files: default.html web.php Log Message: Add preliminary personal workspace ability to members area (only supports text/html at this point in time), fix bug with virtfs creation. --- NEW FILE: default.html --- <html> <head> <title>Default Page</title> </head> <body> <h1>Default Page</h1> <p>Hello, I haven't yet modified my personal web page. Feel free to contact me, my information is listed elsewhere on the site.</p> <h2>Seeing this page instead of the page you expected?</h2> <p>This page is the default page created by the <a href="http://www.openfirst.org/">open FIRST Web Portal System</a> for user accounts. Users are supposed to replace this page with their own content. <a href="http://www.openfirst.org/">open FIRST</a> is not affiliated with this person, and is not responsible for the content on this web site.</p> </body> </html> --- NEW FILE: web.php --- <?php /* * openFIRST.members - web.php * * Copyright (C) 2003, * openFIRST Project * Original Author: Tim Ginn <tim...@po...> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ include("../config/globals.php"); echo("<p><strong>Disclaimer:</strong> This page is not maintained by the administration of the rest of the site. The opinions and views expressed here are those of the author and are not necessarily the views and opinions of the administration.</p>"); $user = substr($_GET["uri"],1, strpos($_GET["uri"], "/", 2) - 1); $file = substr($_GET["uri"],strlen($user) + 2, strlen($_GET["uri"]) - strlen($user)); $vfs = mysql_fetch_object(mysql_query("SELECT virtfspath FROM ofirst_workspace_users WHERE user='$user';")); $vfs = $vfs->virtfspath . "www/"; if(substr($file, -1, 1) == "/") { $file .= "index.html"; } if($file == "") { $file .= "index.html"; } if ($fd = fopen ($vfs . $file, "rb")) { fpassthru($fd); } ?> Index: workspace.php =================================================================== RCS file: /cvsroot/openfirst/members/workspace.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** workspace.php 12 Aug 2003 04:27:00 -0000 1.5 --- workspace.php 12 Aug 2003 17:09:14 -0000 1.6 *************** *** 435,441 **** } else { if($_GET["activate"] == true) { ! if(iswritable(getcwd() . "/virtfs/") == true) { mysql_query("INSERT INTO ofirst_workspace_users (quota, user, virtfspath, frozen) VALUES('10', '$user->user', '" . getcwd() . "/virtfs/$user->user/', '0');"); mkdir(getcwd() . "/virtfs/$user->user/"); echo("Congratulations, your workspace has been created. [ <a href='workspace.php'>Continue</a> ]"); } else { --- 435,452 ---- } else { if($_GET["activate"] == true) { ! if(is_writable(getcwd() . "/virtfs/") == true) { mysql_query("INSERT INTO ofirst_workspace_users (quota, user, virtfspath, frozen) VALUES('10', '$user->user', '" . getcwd() . "/virtfs/$user->user/', '0');"); mkdir(getcwd() . "/virtfs/$user->user/"); + mkdir(getcwd() . "/virtfs/$user->user/www/"); + mkdir(getcwd() . "/virtfs/$user->user/$filepath/" . $_POST["directory"]); + $uf = mysql_query("INSERT INTO ofirst_workspace_files (size, location, owner, permissions, + date, description, filetype, name) VALUES('0', '$filepath', '$user->user', 'drw-------', '" . + date('D M d Y h:m:s') . "', 'Web Site Directory', 'dir-folder_html.png', 'www');"); + + $uf = mysql_query("INSERT INTO ofirst_workspace_files (size, location, owner, permissions, + date, description, filetype, name) VALUES('0', '/www', '$user->user', '-rw-------', '" . + date('D M d Y h:m:s') . "', 'Main Page for Personal Web Site', 'html', 'index.html');"); + copy("default.html", getcwd() . "/virtfs/$user->user/www/index.html"); + echo("Congratulations, your workspace has been created. [ <a href='workspace.php'>Continue</a> ]"); } else { |
From: <xt...@us...> - 2003-08-12 17:57:27
|
Update of /cvsroot/openfirst/members In directory sc8-pr-cvs1:/tmp/cvs-serv17357 Modified Files: profile.php Log Message: Add skill search to members profiles Index: profile.php =================================================================== RCS file: /cvsroot/openfirst/members/profile.php,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** profile.php 12 Aug 2003 05:02:59 -0000 1.9 --- profile.php 12 Aug 2003 17:47:25 -0000 1.10 *************** *** 32,42 **** <h1>Members Profiles</h1> <?php if(isset($_GET["id"]) == false) { ?> <table> <tr><th><a href="profile.php?orderby=user">Nick Name</a></th><th><a href="profile.php?orderby=team">Team</a></th><th><a href="profile.php?orderby=email">E-mail</a></th><th><a href="profile.php?orderby=msn">MSN</a></th><th><a href="profile.php?orderby=icq">ICQ</a></th><th><a href="profile.php?orderby=aim">AIM</a></th><th><a href="profile.php?orderby=picturelocation">Photo</th></tr> <?php if($_GET["orderby"] == "") { $_GET["orderby"] = "user"; } ! $query = mysql_query("SELECT * FROM ofirst_members where " . $_GET["orderby"] . " is NOT NULL ORDER BY " . $_GET["orderby"] . ";"); while($q = mysql_fetch_object($query)) { echo("<tr><td><a href='profile.php?id=$q->user'>$q->user</a></td><td>$q->team</td>"); --- 32,97 ---- <h1>Members Profiles</h1> <?php + function status($n) { + if($n == "1") { + return("Minimal Skill"); + } elseif($n == "2") { + return("Not quite mediocre"); + } elseif($n == "3") { + return("Mediocre"); + } elseif($n == "4") { + return("Competent"); + } elseif($n == "5") { + return("Above Average"); + } elseif($n == "6") { + return("Professional"); + } + } + if(isset($_GET["action"]) == true && $_GET["action"] == "skillsearch") { + $extra = " AND skills IS NOT NULL AND skills like '%" . $_GET["skill"] . "|" . $_GET["level"] . "%'"; + } + if(isset($_GET["id"]) == false) { + + + ?> + <table> + <tr><th>Search by Skills</th><td><form action="profile.php" method="get"> + <input type="hidden" value="skillsearch" name="action"> + Find someone with + <select name='level'> + <option value='0' selected='selected'>No skill</option> + <option value='1'>Minimal</option> + <option value='2'>Not quite mediocre</option> + <option value='3'>Mediocre</option> + <option value='4'>Competent</option> + <option value='5'>Above Average</option> + <option value='6'>Professional</option> + </select> + at + + <select name='skill'> + <?php + $skills = array('Languages', 'Computer-Programming', 'Hands-on-Skills', 'Fundraising', + 'Creativity', 'Organization', 'Time-Management', 'Research', 'Computer-Aided-Design', 'Teaching', + 'Mentorship'); + + for($y = 0; $y < count($skills); $y++) { + echo("<option value='" . $skills[$y] . "'>" . $skills[$y] . "</option>"); + } ?> + </select> + + <input type="submit" value="Search"></form></td></tr> + </table> + <table> <tr><th><a href="profile.php?orderby=user">Nick Name</a></th><th><a href="profile.php?orderby=team">Team</a></th><th><a href="profile.php?orderby=email">E-mail</a></th><th><a href="profile.php?orderby=msn">MSN</a></th><th><a href="profile.php?orderby=icq">ICQ</a></th><th><a href="profile.php?orderby=aim">AIM</a></th><th><a href="profile.php?orderby=picturelocation">Photo</th></tr> <?php if($_GET["orderby"] == "") { $_GET["orderby"] = "user"; } ! if(isset($extra) == true && $extra != "") { ! $query = mysql_query("SELECT * FROM ofirst_members where " . $_GET["orderby"] . " is NOT NULL $extra ORDER BY " . $_GET["orderby"] . ";"); ! } else { ! $query = mysql_query("SELECT * FROM ofirst_members where " . $_GET["orderby"] . " is NOT NULL ORDER BY " . $_GET["orderby"] . ";"); ! } while($q = mysql_fetch_object($query)) { echo("<tr><td><a href='profile.php?id=$q->user'>$q->user</a></td><td>$q->team</td>"); *************** *** 120,138 **** <p>"); - function status($n) { - if($n == "1") { - return("Minimal Skill"); - } elseif($n == "2") { - return("Not quite mediocre"); - } elseif($n == "3") { - return("Mediocre"); - } elseif($n == "4") { - return("Competent"); - } elseif($n == "5") { - return("Above Average"); - } elseif($n == "6") { - return("Professional"); - } - } $skill = explode(",", $q->skills); for($y = 0; $y < count($skill); $y++) { --- 175,178 ---- |
From: <xt...@us...> - 2003-08-12 05:44:09
|
Update of /cvsroot/openfirst/members In directory sc8-pr-cvs1:/tmp/cvs-serv30896 Modified Files: adduser.php profile.php updateprofile.php Log Message: Add division functionality to other major areas of members area. Index: adduser.php =================================================================== RCS file: /cvsroot/openfirst/members/adduser.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** adduser.php 28 Jun 2003 03:01:25 -0000 1.3 --- adduser.php 12 Aug 2003 05:02:59 -0000 1.4 *************** *** 34,37 **** --- 34,42 ---- $lastname = $_POST["lastname"]; if($_POST["password"] == $_POST["password2"]) { + if(isset($_POST["ndivision"]) == true && $_POST["ndivision"] != "") { + $_POST["division"] = $_POST["ndivision"]; + $q = mysql_query("INSERT INTO ofirst_divisions (division, description) VALUES ( + '" . $_POST["division"] . "', '" . $_POST["divisiondescription"] . "');"); + } $q = mysql_query("INSERT INTO ofirst_members (user, firstname, lastname, password, membertype, division, year, email, icq, aim, msn, *************** *** 92,96 **** <tr> <th>Division</th> ! <td><input type="text" name="division" /></td> </tr> <tr> --- 97,114 ---- <tr> <th>Division</th> ! <td>Existing: ! <br><select name="division"> ! <?php ! $div = mysql_query("SELECT division FROM ofirst_divisions;"); ! while($d = mysql_fetch_object($div)) { ! echo("<option value='$d->division'>$d->division</option>"); ! } ! ?> ! </select> ! <br>New ! <br><input type="text" name="ndivision" /> ! <br>Description of New Division ! <br><input type="text" name="divisiondescription" /> ! </td> </tr> <tr> *************** *** 142,144 **** showlogin(); } ! include($footer); ?> \ No newline at end of file --- 160,162 ---- showlogin(); } ! include($footer); ?> Index: profile.php =================================================================== RCS file: /cvsroot/openfirst/members/profile.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** profile.php 23 Jul 2003 22:46:30 -0000 1.8 --- profile.php 12 Aug 2003 05:02:59 -0000 1.9 *************** *** 80,84 **** <br />Last seen logged in: $q->lastseen</sub> <p> ! Division: $q->division <br />Year $q->year </p> --- 80,84 ---- <br />Last seen logged in: $q->lastseen</sub> <p> ! Division: <a href='divisions.php?division=$q->division'>$q->division</a> <br />Year $q->year </p> Index: updateprofile.php =================================================================== RCS file: /cvsroot/openfirst/members/updateprofile.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** updateprofile.php 29 Jun 2003 03:58:50 -0000 1.3 --- updateprofile.php 12 Aug 2003 05:02:59 -0000 1.4 *************** *** 31,34 **** --- 31,40 ---- if(isset($user->user)) { if (isset($_POST["firstname"]) == true) { + if(isset($_POST["ndivision"]) == true && $_POST["ndivision"] != "") { + $_POST["division"] = $_POST["ndivision"]; + $q = mysql_query("INSERT INTO ofirst_divisions (division) VALUES ( + '" . $_POST["division"] . "');"); + $q = mysql_query("UPDATE ofirst_divisions SET description='" . $_POST["divisiondescription"] . "' WHERE division='" . $_POST["division"] . "';"); + } $query = "UPDATE ofirst_members SET firstname='" . $_POST["firstname"] . "', lastname='" . $_POST["lastname"] . "' , division='" . $_POST["division"] . "', year='" . $_POST["year"] . "', email='" . $_POST["email"] . *************** *** 61,65 **** <tr><th>Password</th><td><input type='password' name='password' value='' /></td></tr> <tr><th>Confirm Password</th><td><input type='password' name='cpassword' value='' /></td></tr> ! <tr><th>Division</th><td><input type='text' name='division' value='$user->division'></td></tr> <tr><th>Year</th><td><input type='text' name='year' value='$user->year'></td></tr> <tr><th>E-mail Address</th><td><input type='text' name='email' value='$user->email'></td></tr> --- 67,85 ---- <tr><th>Password</th><td><input type='password' name='password' value='' /></td></tr> <tr><th>Confirm Password</th><td><input type='password' name='cpassword' value='' /></td></tr> ! <tr><th>Division</th><td> ! Existing: ! <br><select name='division'>"); ! $div = mysql_query("SELECT division FROM ofirst_divisions;"); ! while($d = mysql_fetch_object($div)) { ! echo("<option value='$d->division'"); ! if($d->division == $user->division) { echo(" selected='selected'"); } ! echo(">$d->division</option>"); ! } ! echo("</select> ! <br>New ! <br><input type='text' name='ndivision' /> ! <br>Description of New Division ! <br><input type='text' name='divisiondescription' /> ! </td></tr> <tr><th>Year</th><td><input type='text' name='year' value='$user->year'></td></tr> <tr><th>E-mail Address</th><td><input type='text' name='email' value='$user->email'></td></tr> |
From: <xt...@us...> - 2003-08-12 04:46:56
|
Update of /cvsroot/openfirst/members/setup In directory sc8-pr-cvs1:/tmp/cvs-serv29166/setup Modified Files: setup.mysql Log Message: Add division pages to members area. Index: setup.mysql =================================================================== RCS file: /cvsroot/openfirst/members/setup/setup.mysql,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** setup.mysql 12 Aug 2003 04:27:00 -0000 1.8 --- setup.mysql 12 Aug 2003 04:45:57 -0000 1.9 *************** *** 1,4 **** INSERT INTO ofirst_config SET modulename='members',showonmenu='0',active='0'; ! UPDATE ofirst_config SET modulenavigation='<a href="$basepath/members/workspace.php">Workspace</a> | <a href="$basepath/members/profile.php">Profile</a> | <a href="$basepath/members/skills.php">Skills</a> | <a href="$basepath/members/updateprofile.php">Update Profile</a> | <a href="$basepath/members/logout.php">Logout</a>',adminnavigation='<a href="$basepath/members/adduser.php">Add Users</a> | <a href="$basepath/config/">Configuration</a>' where modulename='members'; CREATE TABLE IF NOT EXISTS ofirst_workspace_users (quota BIGINT, user CHAR(128), virtfspath TEXT, frozen INT(1)); CREATE TABLE IF NOT EXISTS ofirst_workspace_files(size BIGINT, name TEXT, location TEXT, owner TEXT, division TEXT, permissions TEXT, date TEXT, description TEXT, filetype TEXT); --- 1,4 ---- INSERT INTO ofirst_config SET modulename='members',showonmenu='0',active='0'; ! UPDATE ofirst_config SET modulenavigation='<a href="$basepath/members/workspace.php">Workspace</a> | <a href="$basepath/members/divisions.php">Divisions</a> | <a href="$basepath/members/profile.php">Profile</a> | <a href="$basepath/members/skills.php">Skills</a> | <a href="$basepath/members/updateprofile.php">Update Profile</a> | <a href="$basepath/members/logout.php">Logout</a>',adminnavigation='<a href="$basepath/members/adduser.php">Add Users</a> | <a href="$basepath/config/">Configuration</a>' where modulename='members'; CREATE TABLE IF NOT EXISTS ofirst_workspace_users (quota BIGINT, user CHAR(128), virtfspath TEXT, frozen INT(1)); CREATE TABLE IF NOT EXISTS ofirst_workspace_files(size BIGINT, name TEXT, location TEXT, owner TEXT, division TEXT, permissions TEXT, date TEXT, description TEXT, filetype TEXT); |
From: <xt...@us...> - 2003-08-12 04:46:50
|
Update of /cvsroot/openfirst/members In directory sc8-pr-cvs1:/tmp/cvs-serv29166 Added Files: divisions.php Log Message: Add division pages to members area. --- NEW FILE: divisions.php --- <?php /* * openFIRST.members - divisions.php * * Copyright (C) 2003, * openFIRST Project * Original Author: Tim Ginn <tim...@po...> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ include("../config/globals.php"); include($header); ?> <h1>Divisions</h1> <?php if(isset($user->division) == true) { $division = $user->division; } if(isset($_GET["division"]) == true) { $division = $_GET["division"]; } if($division != "") { $div = mysql_fetch_object(mysql_query("SELECT * FROM ofirst_divisions WHERE division='$division';")); echo("<h2>$div->division</h2> <sub><a href='divisions.php?division='>View list of all divisions</a></sub> <p>$div->description</p> <h2>$div->division Division Members</h2>"); $members = mysql_query("SELECT user, firstname, lastname, year, dateregistered, lastseen FROM ofirst_members WHERE division='$div->division';"); echo("<table> <tr><th>Full Name</th><th>Year</th><th>Date Registered</th><th>Last Seen</th></tr>"); while ($m = mysql_fetch_object($members)) { echo("<tr><td><a href='profile.php?id=$m->user'>$m->firstname $m->lastname</a></td><td>$m->year</td><td>$m->dateregistered</td><td>$m->lastseen</td></tr>"); } } else { $d = mysql_query("SELECT * FROM ofirst_divisions;"); echo("<table>"); while ($div = mysql_fetch_object($d)) { echo("<tr><th><a href='divisions.php?division=$div->division'>$div->division</a></th><td>$div->description</td></tr>"); } echo("</table>"); } ?> <?php include($footer); ?> |
From: <xt...@us...> - 2003-08-12 04:33:55
|
Update of /cvsroot/openfirst/members In directory sc8-pr-cvs1:/tmp/cvs-serv26851 Modified Files: workspace.php Log Message: Implement subdirectory functionality. Complete with customisable sub directory icons, and adding/removing sub directories, as well as support sub directories within sub directories, etc. Index: workspace.php =================================================================== RCS file: /cvsroot/openfirst/members/workspace.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** workspace.php 12 Aug 2003 02:33:41 -0000 1.4 --- workspace.php 12 Aug 2003 04:27:00 -0000 1.5 *************** *** 28,31 **** --- 28,35 ---- include("../config/globals.php"); + + if($_GET["filepath"] == "") { $filepath = "/"; } else {$filepath = $_GET["filepath"]; } + if($_POST["filepath"] != "") { $filepath = $_POST["filepath"]; } + // Get important data used throughout this. $wsu = mysql_query("SELECT * FROM ofirst_workspace_users WHERE user='$user->user';"); *************** *** 78,81 **** --- 82,92 ---- die(include($footer)); } + if($_POST["action"] == "makedirectory") { + mkdir(getcwd() . "/virtfs/$user->user/$filepath/" . $_POST["directory"]); + $uf = mysql_query("INSERT INTO ofirst_workspace_files (size, location, owner, permissions, date, description, filetype, name) VALUES('0', '$filepath', '$user->user', 'drw-------', '" . date('D M d Y h:m:s') . "', 'Sub Directory', 'dir-" . $_POST["directorytype"] . "', '" . $_POST["directory"] . "');"); + echo("Sub directory Created [<a href='workspace.php?filepath=$filepath'>Return to Workspace</a> ]"); + + die(include($footer)); + } if(isset($_GET["action"])) { *************** *** 93,100 **** die(include($footer)); } // Handle file modification if($_GET["action"] == "modify") { ! $fi = mysql_fetch_object(mysql_query("SELECT * FROM ofirst_workspace_files WHERE name='" . $_GET["file"] . "' AND location='" . $_GET["filepath"] . "' ! AND owner='" . $_GET["owner"] . "';")); echo("<h1>Modify " . $_GET["file"] . "</h1> <table style='width: 500px;'> --- 104,144 ---- die(include($footer)); } + // Handle directory deletion + if($_GET["action"] == "removedirectory" && isset($_GET["confirmed"]) == true) { + $del = mysql_query("DELETE FROM ofirst_workspace_files WHERE name='" . $_GET["directory"] . "' AND owner='$user->user' AND location='" . $_GET["filepath"] ."';"); + + // deldir() based on code originally written by: fl...@cu... + + function deldir($dir){ + $current_dir = opendir($dir); + while($entryname = readdir($current_dir)){ + if(is_dir("$dir/$entryname") and ($entryname != "." and $entryname!="..")){ + deldir("${dir}/${entryname}"); + } elseif($entryname != "." and $entryname!="..") { + unlink("${dir}/${entryname}"); + } + } + closedir($current_dir); + rmdir(${dir}); + } + + if($filepath =="/") { + deldir($ws->virtfspath . $_GET["directory"]); + } else { + deldir($ws->virtfspath . $filepath . $_GET["directory"]); + } + echo("The sub directory <strong>"" . $_GET["directory"] . ""</strong> has been deleted. [ <a href='workspace.php'>Workspace</a> ]"); + die(include($footer)); + } elseif($_GET["action"] == "removedirectory" && isset($_GET["confirmed"]) == false) { + echo("Are you sure you want to delete "" . $_GET["directory"] . "" in the " . $_GET["filepath"] . " directory? This <strong>will also remove all + sub directories and files underneath the sub directory.</strong> + <br><a href='workspace.php?confirmed=true&directory=" . $_GET["directory"] . "&action=removedirectory&filepath=" . $_GET["filepath"] . + "'>Yes, I'm sure</a> <a href='workspace.php'>No, I've changed my mind</a>"); + die(include($footer)); + + } // Handle file modification if($_GET["action"] == "modify") { ! $fi = mysql_fetch_object(mysql_query("SELECT * FROM ofirst_workspace_files WHERE name='" . $_GET["file"] . "' AND location='" . $_GET["filepath"] . "' AND owner='" . $_GET["owner"] . "';")); echo("<h1>Modify " . $_GET["file"] . "</h1> <table style='width: 500px;'> *************** *** 124,133 **** <br>User: <select name="userperm"> ! <option value="-r--" <?php if(substr($fi->permissions, 0,4) == "-r--") { echo ! "selected='selected'"; } ?>>View</option> ! <option value="--w-" <?php if(substr($fi->permissions, 0,4) == "--w-") { echo ! "selected='selected'"; } ?>>Modify</option> ! <option value="-rw-" <?php if(substr($fi->permissions, 0,4) == "-rw-") { echo ! "selected='selected'"; } ?>>View and Modify</option> </select> <br>Group: --- 168,174 ---- <br>User: <select name="userperm"> ! <option value="-r--" <?php if(substr($fi->permissions, 0,4) == "-r--") { echo "selected='selected'"; } ?>>View</option> ! <option value="--w-" <?php if(substr($fi->permissions, 0,4) == "--w-") { echo "selected='selected'"; } ?>>Modify</option> ! <option value="-rw-" <?php if(substr($fi->permissions, 0,4) == "-rw-") { echo "selected='selected'"; } ?>>View and Modify</option> </select> <br>Group: *************** *** 136,142 **** <option value="r--" <?php if(substr($fi->permissions, 4,3) == "r--") { echo "selected='selected'"; } ?>>View</option> <option value="-w-" <?php if(substr($fi->permissions, 4,3) == "-w-") { echo "selected='selected'"; } ?>>Modify</option> ! <option value="rw-" <?php if(substr($fi->permissions, 4,3) == "rw-") { echo "selected='selected'"; } ?> ! ! >View and Modify</option> </select> <br>Other: --- 177,181 ---- <option value="r--" <?php if(substr($fi->permissions, 4,3) == "r--") { echo "selected='selected'"; } ?>>View</option> <option value="-w-" <?php if(substr($fi->permissions, 4,3) == "-w-") { echo "selected='selected'"; } ?>>Modify</option> ! <option value="rw-" <?php if(substr($fi->permissions, 4,3) == "rw-") { echo "selected='selected'"; } ?>>View and Modify</option> </select> <br>Other: *************** *** 223,228 **** <p><?php if($_GET["filepath"] == "") { $filepath = "/"; } else {$filepath = $_GET["filepath"]; } ! $files = mysql_fetch_object(mysql_query("SELECT SUM(size) as used FROM ofirst_workspace_files ! WHERE owner='$user->user';")); if(mysql_num_rows($wsu) == 1) { ?> --- 262,266 ---- <p><?php if($_GET["filepath"] == "") { $filepath = "/"; } else {$filepath = $_GET["filepath"]; } ! $files = mysql_fetch_object(mysql_query("SELECT SUM(size) as used FROM ofirst_workspace_files WHERE owner='$user->user';")); if(mysql_num_rows($wsu) == 1) { ?> *************** *** 231,234 **** --- 269,273 ---- <table style="width: 155px;"> <tr><th style="width: 50px;">User</th><td><?php echo $ws->user; ?></td></tr> + <tr><th style="width: 50px;">Home</th><td><a href='workspace.php?filepath=/'>Home</a></td></tr> <tr><th style="width: 50px;">Usage</th><td style="width: 105px;"> *************** *** 238,248 **** <br><?php echo(round($files->used / 1024, 2) . " of $ws->quota"); ?> Megabytes</td></tr> </table></td><td> <p><strong>Your Files (<?php echo($filepath); ?>)</strong></p> <table> <?php ! $files = mysql_query("SELECT * FROM ofirst_workspace_files WHERE owner='$user->user' AND location='$filepath';"); ! echo("<tr><th>File ! Type</th><th>Name</th><th>Division</th><th>Permissions</th><th>Date</th><th>Description</th> ! <th>Actions</th></tr>"); while($file = mysql_fetch_object($files)) { $file->name = str_replace("\"", """, $file->name); --- 277,301 ---- <br><?php echo(round($files->used / 1024, 2) . " of $ws->quota"); ?> Megabytes</td></tr> </table></td><td> + <?php + $dirs = mysql_query("SELECT * FROM ofirst_workspace_files WHERE permissions like 'd%' AND owner='$user->user' AND location='$filepath';"); + if(mysql_num_rows($dirs) > 0) { + ?> + <p><strong>Your Sub Directories (<?php echo($filepath); ?>)</strong></p> + <table> + <?php + echo("<tr><th>Icon</th><th>Name</th><th>Date Created</th><th>Actions</th></tr>"); + while($d = mysql_fetch_object($dirs)) { + echo("<tr><td>" . fileicon($d->filetype) . "</td><td><a href='workspace.php?filepath=$d->location$d->name'>$d->name</a></td><td>$d->date</td><td><a href='workspace.php?action=removedirectory&directory=$d->name&filepath=$filepath'>Remove Directory</a></td></tr>"); + } + ?> + </table> + <?php + } + ?> <p><strong>Your Files (<?php echo($filepath); ?>)</strong></p> <table> <?php ! $files = mysql_query("SELECT * FROM ofirst_workspace_files WHERE permissions not like 'd%' AND owner='$user->user' AND location='$filepath';"); ! echo("<tr><th>File Type</th><th>Name</th><th>Division</th><th>Permissions</th><th>Date</th><th>Description</th> <th>Actions</th></tr>"); while($file = mysql_fetch_object($files)) { $file->name = str_replace("\"", """, $file->name); *************** *** 256,259 **** --- 309,350 ---- ?> </table> + Make a directory: + <form action="workspace.php" method="post"> + <input type="hidden" name="action" value="makedirectory"> + <input type="hidden" name="filepath" value="<?php echo $filepath; ?>"> + <table> + <tr><th>Directory Name</th><td><input type="text" name="directory"></td></tr> + <tr><th>Directory Type</th><td> + <select name="directorytype"> + <option value="folder.png" selected="selected">Standard (Blue)</option> + <option value="folder_green.png">Green</option> + <option value="folder_orange.png">Orange</option> + <option value="folder_red.png">Red</option> + <option value="folder_yellow.png">Yellow</option> + <option value="folder_grey.png">Grey</option> + <option value="folder_violet.png">Violet</option> + <option value="trashcan_full.png">Junk</option> + <option value="favorites.png">Favourites (Star)</option> + <option value="folder_cool.png">Smiley</option> + <option value="folder_penguin.png">Penguin</option> + <option value="folder_cd.png">CD-ROM</option> + <option value="folder_home.png">Home</option> + <option value="folder_html.png">Web</option> + <option value="folder_image.png">Images</option> + <option value="folder_important.png">Important</option> + <option value="folder_man.png">Documentation</option> + <option value="folder_midi.png">Midi</option> + <option value="folder_sound.png">Sound</option> + <option value="folder_tar.png">Archive</option> + <option value="folder_video.png">Video</option> + <option value="network_local.png">Network</option> + <option value="folder_txt.png">Text Documents</option> + <option value="folder_wordprocessing.png">Wordprocessing</option> + </select> + </td></tr> + <tr><th>Make</th><td><input type="submit" value="Make Directory"></td></tr> + </table> + </form> + Add a file: <?php *************** *** 308,314 **** <?php $files = mysql_query("SELECT * FROM ofirst_workspace_files WHERE permissions like '____r%';"); ! echo("<tr><th>File ! Type</th><th>Name</th><th>Owner</th><th>Division</th><th>Permissions</th><th>Date</th><th>Description</th> ! <th>Actions</th></tr>"); while($file = mysql_fetch_object($files)) { echo("<tr><td>" . fileicon($file->filetype) . --- 399,404 ---- <?php $files = mysql_query("SELECT * FROM ofirst_workspace_files WHERE permissions like '____r%';"); ! echo("<tr><th>File Type</th><th>Name</th><th>Owner</th><th>Division</th><th>Permissions</th><th>Date</th><th>Description</th> ! <th>Actions</th></tr>"); while($file = mysql_fetch_object($files)) { echo("<tr><td>" . fileicon($file->filetype) . *************** *** 326,339 **** <?php $files = mysql_query("SELECT * FROM ofirst_workspace_files WHERE permissions like '%r__';"); ! echo("<tr><th>File ! Type</th><th>Name</th><th>Owner</th><th>Division</th><th>Permissions</th><th>Date</th><th>Description</th> ! <th>Actions</th></tr>"); while($file = mysql_fetch_object($files)) { echo("<tr><td>" . fileicon($file->filetype) . ! "</td><td>$file->name</td><td>$file->owner</td><td>$file->division</td> ! <td>$file->permissions</td><td>$file->date</td><td>$file->description</td><td> ! <a href='workspace.php?file=$file->name&owner=$file->owner&action=view&filepath=$filepath'>View</a> ! <br><a href='workspace.php?file=$file->name&owner=$file->owner&action=modify&filepath=$filepath'>Modify</a> ! </td></tr>"); } ?> --- 416,428 ---- <?php $files = mysql_query("SELECT * FROM ofirst_workspace_files WHERE permissions like '%r__';"); ! echo("<tr><th>File Type</th><th>Name</th><th>Owner</th><th>Division</th><th>Permissions</th><th>Date</th><th>Description</th> ! <th>Actions</th></tr>"); while($file = mysql_fetch_object($files)) { echo("<tr><td>" . fileicon($file->filetype) . ! "</td><td>$file->name</td><td>$file->owner</td><td>$file->division</td> ! <td>$file->permissions</td><td>$file->date</td><td>$file->description</td><td> ! <a href='workspace.php?file=$file->name&owner=$file->owner&action=view&filepath=$filepath'>View</a> ! <br><a href='workspace.php?file=$file->name&owner=$file->owner&action=modify&filepath=$filepath'>Modify</a> ! </td></tr>"); } ?> |
From: <xt...@us...> - 2003-08-12 04:33:51
|
Update of /cvsroot/openfirst/members/setup In directory sc8-pr-cvs1:/tmp/cvs-serv26851/setup Modified Files: setup.mysql Log Message: Implement subdirectory functionality. Complete with customisable sub directory icons, and adding/removing sub directories, as well as support sub directories within sub directories, etc. Index: setup.mysql =================================================================== RCS file: /cvsroot/openfirst/members/setup/setup.mysql,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** setup.mysql 9 Aug 2003 14:38:40 -0000 1.7 --- setup.mysql 12 Aug 2003 04:27:00 -0000 1.8 *************** *** 4,10 **** CREATE TABLE IF NOT EXISTS ofirst_workspace_files(size BIGINT, name TEXT, location TEXT, owner TEXT, division TEXT, permissions TEXT, date TEXT, description TEXT, filetype TEXT); DROP TABLE IF EXISTS ofirst_workspace_filetypes; ! CREATE TABLE IF NOT EXISTS ofirst_workspace_filetypes (extension CHAR(20), image TEXT, description TEXT); CREATE TABLE IF NOT EXISTS ofirst_divisions(division CHAR(50) UNIQUE, description TEXT); INSERT INTO ofirst_divisions (division, description) VALUES('Sample Division', 'A generic division responsible for taking care of everything.'); INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('unknown', 'icons/mimetypes/unknown.png', 'Unknown file type'); INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('jpg', 'icons/mimetypes/image.png', 'JPEG Image'); --- 4,34 ---- CREATE TABLE IF NOT EXISTS ofirst_workspace_files(size BIGINT, name TEXT, location TEXT, owner TEXT, division TEXT, permissions TEXT, date TEXT, description TEXT, filetype TEXT); DROP TABLE IF EXISTS ofirst_workspace_filetypes; ! CREATE TABLE IF NOT EXISTS ofirst_workspace_filetypes (extension CHAR(50), image TEXT, description TEXT); CREATE TABLE IF NOT EXISTS ofirst_divisions(division CHAR(50) UNIQUE, description TEXT); INSERT INTO ofirst_divisions (division, description) VALUES('Sample Division', 'A generic division responsible for taking care of everything.'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder.png', 'icons/filesystems/folder.png', 'Standard Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_green.png', 'icons/filesystems/folder_green.png', 'Standard Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_red.png', 'icons/filesystems/folder_red.png', 'Standard Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_orange.png', 'icons/filesystems/folder_orange.png', 'Standard Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_yellow.png', 'icons/filesystems/folder_yellow.png', 'Standard Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_grey.png', 'icons/filesystems/folder_grey.png', 'Standard Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_violet.png', 'icons/filesystems/folder_violet.png', 'Standard Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-trashcan_full.png', 'icons/filesystems/trashcan_full.png', 'Junk Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-favorites.png', 'icons/filesystems/favorites.png', 'Favourites Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_cool.png', 'icons/filesystems/folder_cool.png', 'Smiley Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_penguin.png', 'icons/filesystems/folder_penguin.png', 'Penguin-ified Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_cd.png', 'icons/filesystems/folder_cd.png', 'CD-ROM Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_home.png', 'icons/filesystems/folder_home.png', 'Home Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_html.png', 'icons/filesystems/folder_html.png', 'Web Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_image.png', 'icons/filesystems/folder_image.png', 'Image Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_important.png', 'icons/filesystems/folder_important.png', 'Important Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_man.png', 'icons/filesystems/folder_man.png', 'Documentation Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_midi.png', 'icons/filesystems/folder_midi.png', 'Midi Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_sound.png', 'icons/filesystems/folder_sound.png', 'Audio Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_tar.png', 'icons/filesystems/folder_tar.png', 'Archive Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_video.png', 'icons/filesystems/folder_video.png', 'Video Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-network_local.png', 'icons/filesystems/network_local.png', 'Network Sub Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_txt.png', 'icons/filesystems/folder_txt.png', 'Text Documents Directory'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dir-folder_wordprocessing.png', 'icons/filesystems/folder_wordprocessing.png', 'Word Processing Directory'); INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('unknown', 'icons/mimetypes/unknown.png', 'Unknown file type'); INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('jpg', 'icons/mimetypes/image.png', 'JPEG Image'); |
From: <xt...@us...> - 2003-08-12 02:41:33
|
Update of /cvsroot/openfirst/members In directory sc8-pr-cvs1:/tmp/cvs-serv13648 Modified Files: workspace.php Log Message: Fix filename handling bug preventing certain files from being handled properly (anything with an ampersand or space) Index: workspace.php =================================================================== RCS file: /cvsroot/openfirst/members/workspace.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** workspace.php 29 Jul 2003 17:39:19 -0000 1.3 --- workspace.php 12 Aug 2003 02:33:41 -0000 1.4 *************** *** 212,215 **** --- 212,216 ---- $filename = $_FILES['userfile']['tmp_name'][0]; $name = str_replace(" ", "-", $_FILES['userfile']['name'][0]); + $name = str_replace("&", "and", $name); copy($filename, "$ws->virtfspath/" . $_POST["filepath"] . "/$name"); $uf = mysql_query("INSERT INTO ofirst_workspace_files (size, location, owner, division, permissions, date, description, filetype, name) VALUES('" .( filesize("$ws->virtfspath/" . $_POST["filepath"] . "/$name") / 1024). "', '" . $_POST["filepath"] . "', '$user->user', '" . $_POST["division"] . "', '" . $_POST["userperm"] . $_POST["groupperm"] . $_POST["otherperm"] . "', '" . date('D M d Y h:m:s') . "', '" . $_POST["description"] . "', '" . strtolower(substr($name, strrpos($name, ".") +1)) . "', '$name');"); *************** *** 245,253 **** <th>Actions</th></tr>"); while($file = mysql_fetch_object($files)) { echo("<tr><td>" . fileicon($file->filetype) . "</td><td>$file->name</td><td>$file->division</td> <td>$file->permissions</td><td>$file->date</td><td>$file->description</td><td> ! <a href='workspace.php?file=$file->name&owner=$file->owner&action=view&filepath=$filepath'>View</a> ! <br><a href='workspace.php?file=$file->name&owner=$file->owner&action=modify&filepath=$filepath'>Modify</a> ! <br><a href='workspace.php?file=$file->name&owner=$file->owner&action=delete&filepath=$filepath'>Delete</a> </td></tr>"); } --- 246,255 ---- <th>Actions</th></tr>"); while($file = mysql_fetch_object($files)) { + $file->name = str_replace("\"", """, $file->name); echo("<tr><td>" . fileicon($file->filetype) . "</td><td>$file->name</td><td>$file->division</td> <td>$file->permissions</td><td>$file->date</td><td>$file->description</td><td> ! <a href=\"workspace.php?file=$file->name&owner=$file->owner&action=view&filepath=$filepath\">View</a> ! <br><a href=\"workspace.php?file=$file->name&owner=$file->owner&action=modify&filepath=$filepath\">Modify</a> ! <br><a href=\"workspace.php?file=$file->name&owner=$file->owner&action=delete&filepath=$filepath\">Delete</a> </td></tr>"); } |
From: <xt...@us...> - 2003-08-09 14:38:43
|
Update of /cvsroot/openfirst/members/setup In directory sc8-pr-cvs1:/tmp/cvs-serv14174 Modified Files: setup.mysql Log Message: Add next batch of file type icons... request: someone get MS-Windows specific icons up here Index: setup.mysql =================================================================== RCS file: /cvsroot/openfirst/members/setup/setup.mysql,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** setup.mysql 29 Jul 2003 17:37:46 -0000 1.6 --- setup.mysql 9 Aug 2003 14:38:40 -0000 1.7 *************** *** 255,256 **** --- 255,283 ---- INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('hwp', 'icons/mimetypes/wordprocessing.png', 'HancomWord Document'); INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('gnumeric', 'icons/mimetypes/txt.png', 'GNUmeric Spreadsheet'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ui', 'icons/mimetypes/widget_doc.png', 'Qt Designer File'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('desktop', 'icons/actions/exec.png', 'Desktop Config File'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('kdelnk', 'icons/actions/exec.png', 'Desktop Config File'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dvi', 'icons/mimetypes/dvi.png', 'TeX Device Independent File'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('edu', 'icons/apps/keduca.png', 'Edu Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('exe', 'icons/actions/exec.png', 'Microsoft Windows Executable'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('bdf', 'icons/mimetypes/font_bitmap.png', 'BDF Bitmap Font'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('bdf.Z', 'icons/mimetypes/font_bitmap.png', 'BDF Bitmap Font'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('bdf.gz', 'icons/mimetypes/font_bitmap.png', 'BDF Bitmap Font'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pcf', 'icons/mimetypes/font_bitmap.png', 'PCF Bitmap Font'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pcf.Z', 'icons/mimetypes/font_bitmap.png', 'PCF Bitmap Font'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pcf.gz', 'icons/mimetypes/font_bitmap.png', 'PCF Bitmap Font'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('snf.gz', 'icons/mimetypes/font_bitmap.png', 'SNF Bitmap Font'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('snf.Z', 'icons/mimetypes/font_bitmap.png', 'SNF Bitmap Font'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('snf', 'icons/mimetypes/font_bitmap.png', 'SNF Bitmap Font'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ttf', 'icons/mimetypes/font_truetype.png', 'Truetype Font'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pfa', 'icons/mimetypes/font_type1.png', 'PostScript Type1 Font'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pfb', 'icons/mimetypes/font_type1.png', 'PostScript Type1 Font'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('po', 'icons/mimetypes/gettext.png', 'Message Catalog'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('po', 'icons/mimetypes/gettext.png', 'Message Catalog'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pot', 'icons/mimetypes/gettext.png', 'Message Catalog'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('shell', 'icons/apps/konsole.png', 'File to open a shell'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('kpm', 'icons/mimetypes/kpovmodeler_doc.png', 'KPovModeler File'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sgrd', 'icons/apps/ksysguard.png', 'KDE System Guard'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('swf', 'icons/apps/netscape.png', 'Shockwave Flash Media'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('gf', 'icons/mimetypes/metafont.png', 'Generic Font'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pk', 'icons/mimetypes/pk.png', 'Packed Font'); |
From: <xt...@us...> - 2003-07-29 17:41:15
|
Update of /cvsroot/openfirst/members In directory sc8-pr-cvs1:/tmp/cvs-serv22712 Modified Files: workspace.php Added Files: line.png Log Message: Add missing line image for quotas --- NEW FILE: line.png --- (This appears to be a binary file; contents omitted.) Index: workspace.php =================================================================== RCS file: /cvsroot/openfirst/members/workspace.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** workspace.php 29 Jul 2003 16:11:28 -0000 1.2 --- workspace.php 29 Jul 2003 17:39:19 -0000 1.3 *************** *** 159,163 **** $vfs = mysql_fetch_object(mysql_query("SELECT virtfspath FROM ofirst_workspace_users WHERE user='" . $_GET["owner"] . "';")); $fi = fopen($vfs->virtfspath . "/" . $_GET["filepath"] . "/" . $_GET["file"], 'r'); ! fpassthru($fi); fclose($fi); echo("</textarea> --- 159,163 ---- $vfs = mysql_fetch_object(mysql_query("SELECT virtfspath FROM ofirst_workspace_users WHERE user='" . $_GET["owner"] . "';")); $fi = fopen($vfs->virtfspath . "/" . $_GET["filepath"] . "/" . $_GET["file"], 'r'); ! htmlentities(fpassthru($fi)); fclose($fi); echo("</textarea> |
From: <xt...@us...> - 2003-07-29 17:37:52
|
Update of /cvsroot/openfirst/members/setup In directory sc8-pr-cvs1:/tmp/cvs-serv22439 Modified Files: setup.mysql Log Message: Add latest batch of file type associations. Index: setup.mysql =================================================================== RCS file: /cvsroot/openfirst/members/setup/setup.mysql,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** setup.mysql 29 Jul 2003 16:02:57 -0000 1.5 --- setup.mysql 29 Jul 2003 17:37:46 -0000 1.6 *************** *** 188,189 **** --- 188,256 ---- INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('rss', 'icons/mimetypes/document.png', 'RDF Site Summary'); INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('rdf', 'icons/mimetypes/document.png', 'Resource Description Framework (RDF) File'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sieve', 'icons/mimetypes/unknown.png', 'SIEVE Mail Filter Script'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('siv', 'icons/mimetypes/unknown.png', 'SIEVE Mail Filter Script'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('gsf', 'icons/mimetypes/unknown.png', 'Ghostscript Font'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('spd', 'icons/mimetypes/unknown.png', 'Speedo Font'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('gra', 'icons/mimetypes/unknown.png', 'Graphite Scientific Graph'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('karbon', 'icons/mimetypes/unknown.png', 'Karbon14 Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('chrt', 'icons/mimetypes/unknown.png', 'KChart Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('kfo', 'icons/mimetypes/unknown.png', 'KFormula Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('flw', 'icons/mimetypes/unknown.png', 'Kivio Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('kon', 'icons/mimetypes/unknown.png', 'Kontour Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('kpr', 'icons/mimetypes/unknown.png', 'KPresenter Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('kpt', 'icons/mimetypes/unknown.png', 'KPresenter Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('kra', 'icons/mimetypes/unknown.png', 'Krita Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ksp', 'icons/mimetypes/unknown.png', 'KSpread Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ktheme', 'icons/mimetypes/colorscm.png', 'KDE Theme'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('kud', 'icons/mimetypes/unknown.png', 'Kugar Data File'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('kwd', 'icons/mimetypes/unknown.png', 'KWord Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('kwt', 'icons/mimetypes/unknown.png', 'KWord Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ts', 'icons/mimetypes/unknown.png', 'Message Catalog'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('py', 'icons/mimetypes/unknown.png', 'Python Program'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pyc', 'icons/mimetypes/unknown.png', 'Python Bytecode'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('abw', 'icons/mimetypes/wordprocessing.png', 'AbiWord Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('zabw', 'icons/mimetypes/wordprocessing.png', 'AbiWord Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('abw.bz2', 'icons/mimetypes/wordprocessing.png', 'AbiWord Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('bzabw', 'icons/mimetypes/wordprocessing.png', 'AbiWord Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('abw.gz', 'icons/mimetypes/wordprocessing.png', 'AbiWord Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ag', 'icons/mimetypes/applix.png', 'Applix Graphics Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('as', 'icons/mimetypes/applix.png', 'Applix Spreadsheets Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('aw', 'icons/mimetypes/applix.png', 'Applix Words Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('aw', 'icons/apps/wp.png', 'WordPerfect Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sam', 'icons/mimetypes/wordprocessing.png', 'Lotus AmiPro Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('arts', 'icons/mimetypes/mime_audio.png', 'Arts Builder'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('awk', 'icons/mimetypes/shellscript.png', 'Awk Shell Script'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sh', 'icons/mimetypes/shellscript.png', 'SH/Bash Shell Script'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('csh', 'icons/mimetypes/shellscript.png', 'SH/Bash Shell Script'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('cda', 'icons/mimetypes/mime_track.png', 'CD Audio'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('cue', 'icons/mimetypes/mime_track.png', 'CDRWIN cue-sheet'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('core', 'icons/mimetypes/core.png', 'Program Crash Data'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('deb', 'icons/mimetypes/deb.png', 'Debian Package'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('der', 'icons/actions/lock.png', 'DER, PEM, or Netscape Encoded X.509 Certificate'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('cer', 'icons/actions/lock.png', 'DER, PEM, or Netscape Encoded X.509 Certificate'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('crt', 'icons/actions/lock.png', 'DER, PEM, or Netscape Encoded X.509 Certificate'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('cert', 'icons/actions/lock.png', 'DER, PEM, or Netscape Encoded X.509 Certificate'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pem', 'icons/actions/lock.png', 'DER, PEM, or Netscape Encoded X.509 Certificate'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('p12', 'icons/actions/lock.png', 'PKCS#12 Certificate Bundle'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pfx', 'icons/actions/lock.png', 'PKCS#12 Certificate Bundle'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('man', 'icons/mimetypes/man.png', 'Troff Document with Manpage Macros'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('tr', 'icons/mimetypes/man.png', 'Troff Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('roff', 'icons/mimetypes/man.png', 'Troff Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('~', 'icons/mimetypes/recycled.png', 'Backup Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('%', 'icons/mimetypes/recycled.png', 'Backup Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('bak', 'icons/mimetypes/recycled.png', 'Backup Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('old', 'icons/mimetypes/recycled.png', 'Backup Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sik', 'icons/mimetypes/recycled.png', 'Backup Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('rpm', 'icons/mimetypes/rpm.png', 'RPM Package File'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('wb1', 'icons/mimetypes/spreadsheet.png', 'Quattro Pro Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('wb2', 'icons/mimetypes/spreadsheet.png', 'Quattro Pro Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('wb3', 'icons/mimetypes/spreadsheet.png', 'Quattro Pro Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pl', 'icons/mimetypes/source_pl.png', 'PERL Program'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('perl', 'icons/mimetypes/source_pl.png', 'PERL Program'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('o', 'icons/mimetypes/binary.png', 'Object Code'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ogg', 'icons/mimetypes/sound.png', 'Ogg Multimedia'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('class', 'icons/mimetypes/binary.png', 'Java Class'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('jar', 'icons/mimetypes/source_java.png', 'Java Archive'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('iso', 'icons/mimetypes/mime_track.png', 'ISO9660 image file'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('hwp', 'icons/mimetypes/wordprocessing.png', 'HancomWord Document'); + INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('gnumeric', 'icons/mimetypes/txt.png', 'GNUmeric Spreadsheet'); |
From: <xt...@us...> - 2003-07-29 16:37:46
|
Update of /cvsroot/openfirst/feedback/admin In directory sc8-pr-cvs1:/tmp/cvs-serv22286 Modified Files: index.php Log Message: Fix bug occuring when the same names are present on the feedback users form. Add some comments Index: index.php =================================================================== RCS file: /cvsroot/openfirst/feedback/admin/index.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** index.php 28 Jun 2003 01:02:06 -0000 1.2 --- index.php 29 Jul 2003 15:04:19 -0000 1.3 *************** *** 31,34 **** --- 31,36 ---- if(isset($_POST["feedbackusers"])) { echo("<p>The feedback users have been modified as per your request.</p>"); + // Delete current users, as they will all be replaced with new users. + $query = mysql_query("DELETE FROM ofirst_feedbackusers;"); $line = explode("\n", $_POST["feedbackusers"]); foreach ($line as $lin) { *************** *** 36,39 **** --- 38,42 ---- $femail = substr($lin, 0, strpos($lin, " ")); if(trim($fname) != "" && trim($femail) != "") { + // Create the new users for the feedback list $query = mysql_query("INSERT INTO ofirst_feedbackusers (name, email) VALUES ('$fname', '$femail');"); } *************** *** 61,63 **** include($footer); ! ?> \ No newline at end of file --- 64,66 ---- include($footer); ! ?> |
From: <xt...@us...> - 2003-07-29 16:11:31
|
Update of /cvsroot/openfirst/members In directory sc8-pr-cvs1:/tmp/cvs-serv3587 Modified Files: workspace.php Log Message: Add some error trapping to workspace creation Index: workspace.php =================================================================== RCS file: /cvsroot/openfirst/members/workspace.php,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** workspace.php 28 Jul 2003 01:21:48 -0000 1.1 --- workspace.php 29 Jul 2003 16:11:28 -0000 1.2 *************** *** 344,350 **** } else { if($_GET["activate"] == true) { ! mysql_query("INSERT INTO ofirst_workspace_users (quota, user, virtfspath, frozen) VALUES('10', '$user->user', '" . getcwd() . "/virtfs/$user->user/', '0');"); ! mkdir(getcwd() . "/virtfs/$user->user/"); ! echo("Congratulations, your workspace has been created. [ <a href='workspace.php'>Continue</a> ]"); } else { echo("You do not have a workspace account. If you would like, you may <a href='workspace.php?activate=true'>Activate your workspace account.</a>"); --- 344,354 ---- } else { if($_GET["activate"] == true) { ! if(iswritable(getcwd() . "/virtfs/") == true) { ! mysql_query("INSERT INTO ofirst_workspace_users (quota, user, virtfspath, frozen) VALUES('10', '$user->user', '" . getcwd() . "/virtfs/$user->user/', '0');"); ! mkdir(getcwd() . "/virtfs/$user->user/"); ! echo("Congratulations, your workspace has been created. [ <a href='workspace.php'>Continue</a> ]"); ! } else { ! echo("You cannot setup a workspace because the administration has not enabled it.<br>To enable users to create work spaces, they must create an "virtfs" directory and set it to be writable by the web server user (typically using <code>chmod g+w,o+w virtfs</code>, on UNIX-based systems) [ <a href='workspace.php'>Continue</a> ]"); ! } } else { echo("You do not have a workspace account. If you would like, you may <a href='workspace.php?activate=true'>Activate your workspace account.</a>"); |
From: <xt...@us...> - 2003-07-29 16:03:00
|
Update of /cvsroot/openfirst/members/setup In directory sc8-pr-cvs1:/tmp/cvs-serv2045 Modified Files: setup.mysql Log Message: Change setup script so that it correctly modifies the menus of already existing members installations Index: setup.mysql =================================================================== RCS file: /cvsroot/openfirst/members/setup/setup.mysql,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** setup.mysql 28 Jul 2003 01:21:50 -0000 1.4 --- setup.mysql 29 Jul 2003 16:02:57 -0000 1.5 *************** *** 1,3 **** ! INSERT INTO ofirst_config SET modulename='members',showonmenu='0',active='0',adminnavigation='<a href="$basepath/members/adduser.php">Add Users</a> | <a href="$basepath/config/">Configuration</a>',modulenavigation='<a href="$basepath/members/workspace.php">Workspace</a> | <a href="$basepath/members/profile.php">Profile</a> | <a href="$basepath/members/skills.php">Skills</a> | <a href="$basepath/members/updateprofile.php">Update Profile</a> | <a href="$basepath/members/logout.php">Logout</a>'; CREATE TABLE IF NOT EXISTS ofirst_workspace_users (quota BIGINT, user CHAR(128), virtfspath TEXT, frozen INT(1)); CREATE TABLE IF NOT EXISTS ofirst_workspace_files(size BIGINT, name TEXT, location TEXT, owner TEXT, division TEXT, permissions TEXT, date TEXT, description TEXT, filetype TEXT); --- 1,4 ---- ! INSERT INTO ofirst_config SET modulename='members',showonmenu='0',active='0'; ! UPDATE ofirst_config SET modulenavigation='<a href="$basepath/members/workspace.php">Workspace</a> | <a href="$basepath/members/profile.php">Profile</a> | <a href="$basepath/members/skills.php">Skills</a> | <a href="$basepath/members/updateprofile.php">Update Profile</a> | <a href="$basepath/members/logout.php">Logout</a>',adminnavigation='<a href="$basepath/members/adduser.php">Add Users</a> | <a href="$basepath/config/">Configuration</a>' where modulename='members'; CREATE TABLE IF NOT EXISTS ofirst_workspace_users (quota BIGINT, user CHAR(128), virtfspath TEXT, frozen INT(1)); CREATE TABLE IF NOT EXISTS ofirst_workspace_files(size BIGINT, name TEXT, location TEXT, owner TEXT, division TEXT, permissions TEXT, date TEXT, description TEXT, filetype TEXT); |
From: <xt...@us...> - 2003-07-29 15:32:52
|
Update of /cvsroot/openfirst/news/setup In directory sc8-pr-cvs1:/tmp/cvs-serv28299/setup Modified Files: setup.mysql Log Message: Add images to news postings, change layout to table, fix lingering issue from file name changes Index: setup.mysql =================================================================== RCS file: /cvsroot/openfirst/news/setup/setup.mysql,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** setup.mysql 28 Jun 2003 14:39:36 -0000 1.3 --- setup.mysql 29 Jul 2003 15:32:49 -0000 1.4 *************** *** 1,2 **** ! CREATE TABLE `ofirst_news` (`ID` int(6) unsigned NOT NULL auto_increment, `date` TINYTEXT, `poster` TINYTEXT, `title` TINYTEXT, `news` TEXT, PRIMARY KEY (`ID`)) Type=MyISAM; ! INSERT INTO ofirst_config SET modulename='news',showonmenu='0',active='0',adminnavigation='<a href="$basepath/news/admin/">Admin Main</a>',modulenavigation='<a href="$basepath/news/">Current News</a>',includes='viewnews.php'; \ No newline at end of file --- 1,3 ---- ! CREATE TABLE IF NOT EXISTS `ofirst_news` (`ID` int(6) unsigned NOT NULL auto_increment, `date` TINYTEXT, `poster` TINYTEXT, `title` TINYTEXT, `news` TEXT, PRIMARY KEY (`ID`)) Type=MyISAM; ! ALTER TABLE ofirst_news ADD COLUMN image TEXT; ! INSERT INTO ofirst_config SET modulename='news',showonmenu='0',active='0',adminnavigation='<a href="$basepath/news/admin/">Admin Main</a>',modulenavigation='<a href="$basepath/news/">Current News</a>',includes='viewnews.php'; |
From: <xt...@us...> - 2003-07-29 15:32:52
|
Update of /cvsroot/openfirst/news In directory sc8-pr-cvs1:/tmp/cvs-serv28299 Modified Files: viewnews.php Log Message: Add images to news postings, change layout to table, fix lingering issue from file name changes Index: viewnews.php =================================================================== RCS file: /cvsroot/openfirst/news/viewnews.php,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** viewnews.php 28 Jun 2003 14:39:36 -0000 1.2 --- viewnews.php 29 Jul 2003 15:32:49 -0000 1.3 *************** *** 38,45 **** while($news = mysql_fetch_object($query)){ ! echo("<p><strong>$news->title</strong> ! <br />Posted on $news->date by $news->poster ! <br />$news->news ! </p>"); } --- 38,46 ---- while($news = mysql_fetch_object($query)){ ! echo("<table> ! <tr><th> </th><th><strong>$news->title</strong></th></tr> ! <tr><th> </th><th>Posted on $news->date by $news->poster</th></tr> ! <tr><th><img src='$news->image' alt='$news->title'></th><td>$news->news</td></tr> ! </table>"); } |
From: <xt...@us...> - 2003-07-29 15:31:57
|
Update of /cvsroot/openfirst/news/admin In directory sc8-pr-cvs1:/tmp/cvs-serv28106 Modified Files: index.php Log Message: Add images to news postings, change layout to table, fix lingering issue from file name changes Index: index.php =================================================================== RCS file: /cvsroot/openfirst/news/admin/index.php,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** index.php 28 Jun 2003 14:39:36 -0000 1.3 --- index.php 29 Jul 2003 15:31:54 -0000 1.4 *************** *** 35,40 **** // Display a form for news. ?> ! <form method="post" action="addnews.php"> ! Message Title: <input name="title" type="text" value="openFIRST News"> <br />Message: <br /><textarea name="news" cols="40" rows="20">Insert your news here.</textarea> --- 35,42 ---- // Display a form for news. ?> ! <form method="post" action="index.php"> ! Message Title: <input name="title" type="text" value="openFIRST News" style="width: 250px;"> ! <br />Image: <input type="text" name="image" value="<?php echo $basepath . "/images/openfirst.png"; ?>" ! style="width: 250px;"> <br />Message: <br /><textarea name="news" cols="40" rows="20">Insert your news here.</textarea> *************** *** 48,52 **** $now = date("D M j G:i:s T Y"); ! $query = mysql_query("INSERT INTO ofirst_news (date, poster, title, news) VALUES ('$now', '$user->user', '" . $_POST["title"] . "', '" . $_POST["news"] . "');"); echo("The news item " . $_POST["title"] . " has been added."); --- 50,54 ---- $now = date("D M j G:i:s T Y"); ! $query = mysql_query("INSERT INTO ofirst_news (date, poster, title, news, image) VALUES ('$now', '$user->user', '" . $_POST["title"] . "', '" . $_POST["news"] . "', '" . $_POST["image"] . "');"); echo("The news item " . $_POST["title"] . " has been added."); *************** *** 56,58 **** } include($footer); ! ?> \ No newline at end of file --- 58,60 ---- } include($footer); ! ?> |
From: <xt...@us...> - 2003-07-28 01:33:46
|
Update of /cvsroot/openfirst/base/config In directory sc8-pr-cvs1:/tmp/cvs-serv32691 Modified Files: headers.php Log Message: Hide administrative menus from non-administrators (bug report credit: Kyle Gretchev - sti...@sy...) Index: headers.php =================================================================== RCS file: /cvsroot/openfirst/base/config/headers.php,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** headers.php 29 Jun 2003 04:09:42 -0000 1.16 --- headers.php 28 Jul 2003 01:30:21 -0000 1.17 *************** *** 110,114 **** if (isset($user->user)){ ! if(isset($adminnav)){ ?> --- 110,114 ---- if (isset($user->user)){ ! if(isset($adminnav) == true && $user->membertype == "administrator"){ ?> |
Update of /cvsroot/openfirst/members/icons/mimetypes In directory sc8-pr-cvs1:/tmp/cvs-serv31243/icons/mimetypes Added Files: applix.png ascii.png binary.png binary2.png cdimage.png cdtrack.png colorscm.png core.png deb.png document.png document2.png dvi.png empty.png file_locked.png file_temporary.png font.png font_bitmap.png font_truetype.png font_type1.png gettext.png gf.png html.png image.png images.png info.png kmultiple.png kpovmodeler_doc.png log.png make.png man.png message.png message2.png metafont.png midi.png mime.png mime_ascii.png mime_audio.png mime_empty.png mime_track.png mime_video.png misc_doc.png netscape_doc.png pdf.png pk.png postscript.png postscript2.png quicktime.png readme.png real.png real_doc.png recycled.png resource.png rpm.png shellscript.png shellscript2.png soffice.png sound.png source.png source_c.png source_cpp.png source_f.png source_h.png source_j.png source_java.png source_l.png source_moc.png source_o.png source_p.png source_pl.png source_py.png source_s.png source_y.png spreadsheet.png tar.png template_source.png tex.png tgz.png txt.png unknown.png vcalendar.png vcard.png vectorgfx.png video.png widget_doc.png wordprocessing.png Log Message: Commit many changes, bugfixes, and features. Namely, the creation of a personal workspace for all users who wish to activate it, with quotas, file type recognition, online editing of files, user group and other permissions, and the framework to support multiple directories implemented (though directory creation is not implemented, yet). Also lay foundation for adding division pages into members area. --- NEW FILE: applix.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ascii.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: binary.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: binary2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cdimage.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cdtrack.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: colorscm.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: core.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: deb.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: document.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: document2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: dvi.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: empty.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: file_locked.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: file_temporary.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: font.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: font_bitmap.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: font_truetype.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: font_type1.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: gettext.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: gf.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: html.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: image.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: images.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: info.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kmultiple.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kpovmodeler_doc.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: log.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: make.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: man.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: message.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: message2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: metafont.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: midi.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mime.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mime_ascii.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mime_audio.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mime_empty.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mime_track.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mime_video.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: misc_doc.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: netscape_doc.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: pdf.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: pk.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: postscript.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: postscript2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: quicktime.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: readme.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: real.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: real_doc.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: recycled.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: resource.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: rpm.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: shellscript.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: shellscript2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: soffice.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: sound.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: source.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: source_c.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: source_cpp.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: source_f.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: source_h.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: source_j.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: source_java.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: source_l.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: source_moc.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: source_o.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: source_p.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: source_pl.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: source_py.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: source_s.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: source_y.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: spreadsheet.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tar.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: template_source.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tex.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tgz.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: txt.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: unknown.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: vcalendar.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: vcard.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: vectorgfx.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: video.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: widget_doc.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: wordprocessing.png --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/openfirst/members/icons/filesystems In directory sc8-pr-cvs1:/tmp/cvs-serv31243/icons/filesystems Added Files: blockdevice.png chardevice.png desktop.png desktop2.png exec.png exec_wine.png favorites.png file_broken.png file_important.png file_locked.png file_temporary.png files.png folder.png folder3.png folder_2cd.png folder_blue.png folder_blue_open.png folder_cd.png folder_cool.png folder_crystal.png folder_cyan.png folder_cyan_open.png folder_green.png folder_green_open.png folder_green_side.png folder_grey.png folder_grey_open.png folder_grey_side.png folder_home.png folder_html.png folder_image.png folder_important.png folder_locked.png folder_man.png folder_midi.png folder_open.png folder_orange.png folder_orange_open.png folder_penguin.png folder_print2.png folder_red.png folder_red_open.png folder_red_side.png folder_sound.png folder_tar.png folder_txt.png folder_video.png folder_violet.png folder_violet_open.png folder_violet_side.png folder_wordprocessing.png folder_yellow.png folder_yellow_open.png folder_yellow_side.png ftp.png home_blue.png home_white.png link.png lockoverlay.png network.png network_local.png pipe.png services.png shredder.png socket.png temporary.png trashcan_empty.png trashcan_full.png www.png zip.png Log Message: Commit many changes, bugfixes, and features. Namely, the creation of a personal workspace for all users who wish to activate it, with quotas, file type recognition, online editing of files, user group and other permissions, and the framework to support multiple directories implemented (though directory creation is not implemented, yet). Also lay foundation for adding division pages into members area. --- NEW FILE: blockdevice.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: chardevice.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: desktop.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: desktop2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: exec.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: exec_wine.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: favorites.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: file_broken.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: file_important.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: file_locked.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: file_temporary.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: files.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder3.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_2cd.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_blue.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_blue_open.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_cd.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_cool.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_crystal.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_cyan.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_cyan_open.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_green.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_green_open.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_green_side.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_grey.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_grey_open.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_grey_side.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_home.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_html.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_image.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_important.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_locked.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_man.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_midi.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_open.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_orange.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_orange_open.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_penguin.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_print2.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_red.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_red_open.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_red_side.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_sound.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_tar.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_txt.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_video.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_violet.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_violet_open.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_violet_side.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_wordprocessing.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_yellow.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_yellow_open.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_yellow_side.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ftp.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: home_blue.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: home_white.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: link.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lockoverlay.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: network.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: network_local.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: pipe.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: services.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: shredder.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: socket.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: temporary.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: trashcan_empty.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: trashcan_full.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: www.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: zip.png --- (This appears to be a binary file; contents omitted.) |
Update of /cvsroot/openfirst/members/icons/ooo In directory sc8-pr-cvs1:/tmp/cvs-serv31243/icons/ooo Added Files: ooo_calc.png ooo_draw.png ooo_gulls.png ooo_impress.png ooo_math.png ooo_office.png ooo_printeradmin.png ooo_writer.png Log Message: Commit many changes, bugfixes, and features. Namely, the creation of a personal workspace for all users who wish to activate it, with quotas, file type recognition, online editing of files, user group and other permissions, and the framework to support multiple directories implemented (though directory creation is not implemented, yet). Also lay foundation for adding division pages into members area. --- NEW FILE: ooo_calc.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ooo_draw.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ooo_gulls.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ooo_impress.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ooo_math.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ooo_office.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ooo_printeradmin.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ooo_writer.png --- (This appears to be a binary file; contents omitted.) |
From: <xt...@us...> - 2003-07-28 01:21:53
|
Update of /cvsroot/openfirst/members/setup In directory sc8-pr-cvs1:/tmp/cvs-serv31243/setup Modified Files: setup.mysql Log Message: Commit many changes, bugfixes, and features. Namely, the creation of a personal workspace for all users who wish to activate it, with quotas, file type recognition, online editing of files, user group and other permissions, and the framework to support multiple directories implemented (though directory creation is not implemented, yet). Also lay foundation for adding division pages into members area. Index: setup.mysql =================================================================== RCS file: /cvsroot/openfirst/members/setup/setup.mysql,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** setup.mysql 28 Jun 2003 16:08:52 -0000 1.3 --- setup.mysql 28 Jul 2003 01:21:50 -0000 1.4 *************** *** 1 **** ! INSERT INTO ofirst_config SET modulename='members',showonmenu='0',active='0',adminnavigation='<a href="$basepath/members/adduser.php">Add Users</a> | <a href="$basepath/config/">Configuration</a>',modulenavigation='<a href="$basepath/members/profile.php">Profile</a> | <a href="$basepath/members/skills.php">Skills</a> | <a href="$basepath/members/updateprofile.php">Update Profile</a> | <a href="$basepath/members/logout.php">Logout</a>'; --- 1,188 ---- ! INSERT INTO ofirst_config SET modulename='members',showonmenu='0',active='0',adminnavigation='<a href="$basepath/members/adduser.php">Add Users</a> | <a href="$basepath/config/">Configuration</a>',modulenavigation='<a href="$basepath/members/workspace.php">Workspace</a> | <a href="$basepath/members/profile.php">Profile</a> | <a href="$basepath/members/skills.php">Skills</a> | <a href="$basepath/members/updateprofile.php">Update Profile</a> | <a href="$basepath/members/logout.php">Logout</a>'; ! CREATE TABLE IF NOT EXISTS ofirst_workspace_users (quota BIGINT, user CHAR(128), virtfspath TEXT, frozen INT(1)); ! CREATE TABLE IF NOT EXISTS ofirst_workspace_files(size BIGINT, name TEXT, location TEXT, owner TEXT, division TEXT, permissions TEXT, date TEXT, description TEXT, filetype TEXT); ! DROP TABLE IF EXISTS ofirst_workspace_filetypes; ! CREATE TABLE IF NOT EXISTS ofirst_workspace_filetypes (extension CHAR(20), image TEXT, description TEXT); ! CREATE TABLE IF NOT EXISTS ofirst_divisions(division CHAR(50) UNIQUE, description TEXT); ! INSERT INTO ofirst_divisions (division, description) VALUES('Sample Division', 'A generic division responsible for taking care of everything.'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('unknown', 'icons/mimetypes/unknown.png', 'Unknown file type'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('jpg', 'icons/mimetypes/image.png', 'JPEG Image'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('jpeg', 'icons/mimetypes/image.png', 'JPEG Image'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('spl', 'icons/mimetypes/netscape_doc.png', 'Netscape Shockwave Flash'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ai', 'icons/mimetypes/postscript.png', 'Adobe Illustrator Document'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('xls', 'icons/mimetypes/spreadsheet.png', 'Microsoft Excel Spreadsheet'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('xlc', 'icons/mimetypes/spreadsheet.png', 'Microsoft Excel Spreadsheet'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('xll', 'icons/mimetypes/spreadsheet.png', 'Microsoft Excel Spreadsheet'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('xlm', 'icons/mimetypes/spreadsheet.png', 'Microsoft Excel Spreadsheet'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('xlw', 'icons/mimetypes/spreadsheet.png', 'Microsoft Excel Spreadsheet'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ppt', 'icons/mimetypes/document.png', 'Microsoft PowerPoint Document'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ppz', 'icons/mimetypes/document.png', 'Microsoft PowerPoint Document'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pdf', 'icons/mimetypes/pdf.png', 'PDF Document'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pgp', 'icons/mimetypes/file_locked.png', 'PGP/MIME Encrypted Message Header'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('gpg', 'icons/mimetypes/file_locked.png', 'PGP/MIME Encrypted Message Header'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('asc', 'icons/mimetypes/file_locked.png', 'PGP/MIME Encrypted Message Header'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('p10', 'icons/mimetypes/mime.png', 'S/MIME Certification Request'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('p7m', 'icons/mimetypes/file_locked.png', 'PKCS#7 (S/MIME) Formatted Data'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('p7c', 'icons/mimetypes/file_locked.png', 'PKCS#7 (S/MIME) Formatted Data'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ps', 'icons/mimetypes/postscript.png', 'PostScript Document'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sdp', 'icons/mimetypes/real.png', 'RealPlayer File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('smil', 'icons/mimetypes/real.png', 'RealPlayer File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('smi', 'icons/mimetypes/real.png', 'RealPlayer File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('asf', 'icons/mimetypes/video.png', 'ASF Media'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('rm', 'icons/mimetypes/real.png', 'RealPlayer File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('af', 'icons/mimetypes/real.png', 'RealPlayer File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('au', 'icons/mimetypes/real.png', 'RealPlayer File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ra', 'icons/mimetypes/real.png', 'RealPlayer File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ram', 'icons/mimetypes/real.png', 'RealPlayer File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('rmm', 'icons/mimetypes/real.png', 'RealPlayer File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('aiff', 'icons/mimetypes/real.png', 'RealPlayer File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('au', 'icons/mimetypes/sound.png', 'ULAW (Sun) Audio'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('snd', 'icons/mimetypes/sound.png', 'ULAW (Sun) Audio'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('kar', 'icons/mimetypes/sound.png', 'Karaoke file'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('mid', 'icons/mimetypes/midi.png', 'MIDI Audio'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('midi', 'icons/mimetypes/midi.png', 'MIDI Audio'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('mod', 'icons/mimetypes/sound.png', 'Amiga Soundtracker Audio'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('s3m', 'icons/mimetypes/sound.png', 'Amiga Soundtracker Audio'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('stm', 'icons/mimetypes/sound.png', 'Amiga Soundtracker Audio'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ult', 'icons/mimetypes/sound.png', 'Amiga Soundtracker Audio'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('uni', 'icons/mimetypes/sound.png', 'Amiga Soundtracker Audio'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('xm', 'icons/mimetypes/sound.png', 'Amiga Soundtracker Audio'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('m15', 'icons/mimetypes/sound.png', 'Amiga Soundtracker Audio'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('mtm', 'icons/mimetypes/sound.png', 'Amiga Soundtracker Audio'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('669', 'icons/mimetypes/sound.png', 'Amiga Soundtracker Audio'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('it', 'icons/mimetypes/sound.png', 'Amiga Soundtracker Audio'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('mp3', 'icons/mimetypes/sound.png', 'MPEG Layer 3 Audio'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('m3u', 'icons/mimetypes/sound.png', 'Streaming MPEG Layer 3 Audio'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pls', 'icons/mimetypes/sound.png', 'MP3 ShoutCast Playlist'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('wav', 'icons/mimetypes/sound.png', 'WAV Audio'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('mpg', 'icons/mimetypes/video.png', 'MPEG Video'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('mpeg', 'icons/mimetypes/video.png', 'MPEG Video'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('qt', 'icons/mimetypes/video.png', 'QuickTime Video'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('mov', 'icons/mimetypes/video.png', 'QuickTime Video'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('moov', 'icons/mimetypes/video.png', 'QuickTime Video'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('qtvr', 'icons/mimetypes/video.png', 'QuickTime Video'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('rv', 'icons/mimetypes/real.png', 'RealPlayer Video'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('fli', 'icons/mimetypes/video.png', 'Autodesk FLIC File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('flc', 'icons/mimetypes/video.png', 'Autodesk FLIC File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('mng', 'icons/mimetypes/images.png', 'MNG Image'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('avi', 'icons/mimetypes/video.png', 'Microsoft AVI Video'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ics', 'icons/mimetypes/vcalendar.png', 'iCalendar File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('css', 'icons/mimetypes/txt.png', 'Cascading Style Sheet'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('cssl', 'icons/mimetypes/txt.png', 'Cascading Style Sheet'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('readme', 'icons/mimetypes/txt.png', 'English Text'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('html', 'icons/mimetypes/html.png', 'HTML Page'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('htm', 'icons/mimetypes/html.png', 'HTML Page'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('mrml', 'icons/mimetypes/html.png', 'Multimedia Retrieval Markup Language Document'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('txt', 'icons/mimetypes/txt.png', 'Plain Text'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('eml', 'icons/mimetypes/message.png', 'E-mail message'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('wsz', 'icons/mimetypes/colorscm.png', 'Compressed Winamp skin'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('xhtml', 'icons/mimetypes/html.png', 'XHTML Family Document'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('zoo', 'icons/mimetypes/tgz.png', 'Zoo Archive'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('zip', 'icons/mimetypes/tgz.png', 'Zip Archive'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('tar.lzo', 'icons/mimetypes/tgz.png', 'Lzopped Tar Archive'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('lzo', 'icons/mimetypes/tgz.png', 'Lzopped File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('tzo', 'icons/mimetypes/tgz.png', 'Lzopped Tar Archive'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('tgz', 'icons/mimetypes/tgz.png', 'Gzipped Tar Archive'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('tar.gz', 'icons/mimetypes/tgz.png', 'Gzipped Tar Archive'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('tar.bz', 'icons/mimetypes/tgz.png', 'Bzipped Tar Archive'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('tar.bz2', 'icons/mimetypes/tgz.png', 'Bzipped Tar Archive'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('tar.Z', 'icons/mimetypes/tgz.png', 'Compressed Tar Archive'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('tar', 'icons/mimetypes/tgz.png', 'Tar Archive'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('rar', 'icons/mimetypes/tgz.png', 'Rar Archive'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('lzh', 'icons/mimetypes/tgz.png', 'Lha Archive'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('lha', 'icons/mimetypes/tgz.png', 'Lha Archive'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('gz', 'icons/mimetypes/tgz.png', 'Gzip File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('tgz', 'icons/mimetypes/tgz.png', 'Gzip File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('cpio', 'icons/mimetypes/tgz.png', 'CPIO Archive'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('Z', 'icons/mimetypes/tgz.png', 'UNIX Compressed File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('bz2', 'icons/mimetypes/tgz.png', 'Bzip2 File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('bz', 'icons/mimetypes/tgz.png', 'Bzip File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('arj', 'icons/mimetypes/tgz.png', 'ARJ Archive'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('a', 'icons/mimetypes/tgz.png', 'Ar Archive'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('cgm', 'icons/mimetypes/image.png', 'Computer Graphics Metafile'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('g3', 'icons/mimetypes/image.png', 'CCITT G3 Fax'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('gif', 'icons/mimetypes/image.png', 'GIF Image'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('png', 'icons/mimetypes/image.png', 'PNG Image'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('tif', 'icons/mimetypes/image.png', 'TIFF Image'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('tiff', 'icons/mimetypes/image.png', 'TIFF Image'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('bmp', 'icons/mimetypes/image.png', 'Windows BMP Image'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('eps', 'icons/mimetypes/image.png', 'Encapsulated PostScript File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('epsi', 'icons/mimetypes/image.png', 'Encapsulated PostScript File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('epsf', 'icons/mimetypes/image.png', 'Encapsulated PostScript File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ico', 'icons/mimetypes/image.png', 'Windows Icon'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('jng', 'icons/mimetypes/image.png', 'JNG Image'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('msod', 'icons/mimetypes/image.png', 'Microsoft Office Drawing'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pcx', 'icons/mimetypes/image.png', 'PCX Image'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pcd', 'icons/mimetypes/image.png', 'PhotoCD Image'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pbm', 'icons/mimetypes/image.png', 'Portable Bitmap Image'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pgm', 'icons/mimetypes/image.png', 'Portable Graymap Image'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ppm', 'icons/mimetypes/image.png', 'Portable Pixmap Image'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pnm', 'icons/mimetypes/image.png', 'Portable Pixmap Image'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('tga', 'icons/mimetypes/image.png', 'Truevision Targa Image'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('xbm', 'icons/mimetypes/image.png', 'X BitMap Image'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('xcf', 'icons/apps/gimp.png', 'GIMP Native Image Format'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('xpm', 'icons/mimetypes/image.png', 'X PixMap Image'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('fig', 'icons/mimetypes/vectorgfx.png', 'XFig File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('wmf', 'icons/mimetypes/vectorgfx.png', 'Windows MetaFile'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('svg', 'icons/mimetypes/vectorgfx.png', 'Scalable Vector Graphics'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('xml', 'icons/mimetypes/html.png', 'eXtensible Markup Language Document'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('xslt', 'icons/mimetypes/unknown.png', 'XSLT Stylesheet File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('fo', 'icons/mimetypes/unknown.png', 'XSL Formating Object File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('xslfo', 'icons/mimetypes/unknown.png', 'XSL Formating Object File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('vct', 'icons/mimetypes/vcard.png', 'Electronic Business Card'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('vcs', 'icons/mimetypes/vcalendar.png', 'vCalendar Interchange File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sdc', 'icons/ooo/ooo_calc.png', 'StarOffice Calc Spreadsheet'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sds', 'icons/ooo/ooo_calc.png', 'StarChart 5.0'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sda', 'icons/ooo/ooo_draw.png', 'StarDraw 5.0'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sdd', 'icons/ooo/ooo_impress.png', 'StarOffice Impress Presentation'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sds', 'icons/ooo/ooo_math.png', 'StarMath 5.0'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sdw', 'icons/ooo/ooo_writer.png', 'StarWriter 5.0'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sgl', 'icons/ooo/ooo_writer.png', 'StarWriter 5.0 Master Document'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sxc', 'icons/ooo/ooo_calc.png', 'OpenOffice.org 1.0 Spreadsheet'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('stc', 'icons/ooo/ooo_calc.png', 'OpenOffice.org Spreadsheet Template'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('stc', 'icons/ooo/ooo_draw.png', 'OpenOffice.org 1.0 Drawing'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('std', 'icons/ooo/ooo_draw.png', 'OpenOffice.org Drawing Template'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sxi', 'icons/ooo/ooo_impress.png', 'OpenOffice.org 1.0 Presentation'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sti', 'icons/ooo/ooo_impress.png', 'OpenOffice.org Presentation Template'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sxw', 'icons/ooo/ooo_writer.png', 'OpenOffice.org 1.0 Text Document'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('stw', 'icons/ooo/ooo_writer.png', 'OpenOffice.org Text Document Template'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sxg', 'icons/ooo/ooo_writer.png', 'OpenOffice.org 1.0 Master Document'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('adb', 'icons/mimetypes/source_cpp.png', 'Ada Source File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ads', 'icons/mimetypes/source_cpp.png', 'Ada Source File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('bib', 'icons/mimetypes/tex.png', 'Bibliographic Data (Bibtex)'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('hh', 'icons/mimetypes/source_h.png', 'C++ Header File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('h', 'icons/mimetypes/source_h.png', 'C Header File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('cpp', 'icons/mimetypes/source_cpp.png', 'C++ Source File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('cxx', 'icons/mimetypes/source_cpp.png', 'C++ Source File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('cc', 'icons/mimetypes/source_cpp.png', 'C++ Source File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('c', 'icons/mimetypes/source_c.png', 'C Source File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('m', 'icons/mimetypes/source_c.png', 'Objective-C Source File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('csv', 'icons/mimetypes/txt.png', 'Text File with Comma Separated Values'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('dif', 'icons/mimetypes/txt.png', 'Differences Between Files'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('diff', 'icons/mimetypes/txt.png', 'Differences Between Files'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('patch', 'icons/mimetypes/txt.png', 'Differences Between Files'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('java', 'icons/mimetypes/source_java.png', 'Java Source File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('java', 'icons/mimetypes/unknown.png', 'File List (for the Kate File List Loader Plugin)'; ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ksysv_log', 'icons/mimetypes/log.png', 'SysV-Init Editor logfile'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('log', 'icons/mimetypes/log.png', 'Application logfile'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sgml', 'icons/mimetypes/txt.png', 'SGML Document'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('lyx', 'icons/mimetypes/dvi.png', 'LyX Document'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('makefile', 'icons/mimetypes/make.png', 'Makefile'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('moc', 'icons/mimetypes/source_moc.png', 'Qt Meta Object File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('latex', 'icons/mimetypes/tex.png', 'Text File with Comma Separated Values'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('url', 'icons/mimetypes/html.png', 'Internet Shortcut'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('wml', 'icons/mimetypes/html.png', 'WML Document'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('p', 'icons/mimetypes/source_p.png', 'Pascal Source File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pas', 'icons/mimetypes/source_p.png', 'Pascal Source File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pl', 'icons/mimetypes/source_pl.png', 'Perl Source File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('pm', 'icons/mimetypes/source_pl.png', 'Perl Source File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('py', 'icons/mimetypes/source_py.png', 'Python Source File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('tcl', 'icons/mimetypes/source.png', 'Tcl File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('tk', 'icons/mimetypes/source.png', 'Tcl File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('tex', 'icons/mimetypes/tex.png', 'TeX File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('ltx', 'icons/mimetypes/tex.png', 'TeX File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('sty', 'icons/mimetypes/tex.png', 'TeX File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('cls', 'icons/mimetypes/tex.png', 'TeX File'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('rtf', 'icons/mimetypes/document.png', 'Rich Text Format'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('rss', 'icons/mimetypes/document.png', 'RDF Site Summary'); ! INSERT INTO ofirst_workspace_filetypes (extension, image, description) VALUES ('rdf', 'icons/mimetypes/document.png', 'Resource Description Framework (RDF) File'); |
Update of /cvsroot/openfirst/members/icons/apps In directory sc8-pr-cvs1:/tmp/cvs-serv31243/icons/apps Added Files: access.png acroread.png agent.png aktion.png alevt.png amor.png applixware.png ark.png atlantik.png atlantikdesigner.png background.png bell.png blender.png cache.png catalogmanager.png cervisia.png clanbomber.png clock.png colors.png cookie.png date.png designer.png dlgedit.png edu_languages.png edu_mathematics.png edu_miscellanous.png edu_science.png emacs.png email.png energy.png energy_star.png enhanced_browsing.png error.png filetypes.png flashkard.png fonts.png galeon.png gimp.png go.png gv.png gvim.png help_index.png hwinfo.png icons.png iconthemes.png input_devices_settings.png kaboodle.png kaddressbook.png kalarm.png kalzium.png kaphorism.png kappfinder.png karm.png kasteroids.png kate.png katomic.png kaudiocreator.png kbabel.png kbabeldict.png kbackgammon.png kbackgammon_engine.png kbattleship.png kblackbox.png kbounce.png kcalc.png kcmdevices.png kcmdf.png kcmdrkonqi.png kcmfontinst.png kcmkicker.png kcmkwm.png kcmmemory.png kcmmidi.png kcmpartitions.png kcmpci.png kcmprocessor.png kcmscsi.png kcmsound.png kcmsystem.png kcmx.png kcoloredit.png kcontrol.png kcron.png kdat.png kdeprintfax.png kdf.png kdict.png kdisknav.png kdmconfig.png kdvi.png kedit.png keditbookmarks.png keduca.png kenolaba.png key_bindings.png keyboard.png keyboard_layout.png kfax.png kfind.png kfloppy.png kfm.png kfm_home.png kgeo.png kghostview.png khangman.png khelpcenter.png khexedit.png kiconedit.png kit.png kjobviewer.png kjots.png kjumpingcube.png klettres.png klines.png klipper.png kmahjongg.png kmail.png kmailcvt.png kmenu.png kmenuedit.png kmessedwords.png kmid.png kmidi.png kmines.png kmix.png kmoon.png kmplot.png knewsticker.png knode.png knotes.png knotify.png kodo.png kolf.png konqsidebar_mediaplayer.png konqueror.png konquest.png konsole.png korganizer.png korn.png kpackage.png kpager.png kpaint.png kpat.png kpercentage.png kpersonalizer.png kpf.png kpoker.png kpovmodeler.png kppp.png krdc.png kreversi.png krfb.png kruler.png ksame.png kscd.png kscreensaver.png kshisen.png ksim.png ksirc.png ksirtet.png ksmiletris.png ksnake.png ksnapshot.png ksokoban.png kspaceduel.png kstars.png ksysguard.png ksysv.png ktalkd.png kthememgr.png ktimemon.png ktip.png ktouch.png ktron.png ktuberling.png kuickshow.png kuser.png kview.png kviewshell.png kvirc.png kwikdisk.png kwin.png kwin4.png kworldclock.png kwrite.png kxconfig.png kxkb.png laptop_battery.png laptop_pcmcia.png licq.png linuxconf.png locale.png looknfeel.png lskat.png lyx.png mac.png mathematica.png megami.png mozilla.png multimedia.png nedit.png netscape.png noatun.png opera.png package.png package_applications.png package_editors.png package_edutainment.png package_favourite.png package_games.png package_games_arcade.png package_games_board.png package_games_card.png package_games_strategy.png package_graphics.png package_multimedia.png package_network.png package_settings.png package_system.png package_toys.png package_utilities.png package_wordprocessing.png password.png penguin.png personal.png phppg.png plan.png printmgr.png proxy.png pybliographic.png pysol.png realplayer.png samba.png soffice.png style.png stylesheet.png terminal.png tux.png usb.png vnc.png wabi.png window_list.png winprops.png wp.png x.png xapp.png xawtv.png xcalc.png xclipboard.png xclock.png xconsole.png xedit.png xemacs.png xeyes.png xfig.png xfmail.png xload.png xmag.png xmms.png xosview.png xpaint.png xv.png Log Message: Commit many changes, bugfixes, and features. Namely, the creation of a personal workspace for all users who wish to activate it, with quotas, file type recognition, online editing of files, user group and other permissions, and the framework to support multiple directories implemented (though directory creation is not implemented, yet). Also lay foundation for adding division pages into members area. --- NEW FILE: access.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: acroread.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: agent.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: aktion.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: alevt.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: amor.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: applixware.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ark.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: atlantik.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: atlantikdesigner.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: background.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: bell.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: blender.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cache.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: catalogmanager.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cervisia.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: clanbomber.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: clock.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: colors.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cookie.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: date.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: designer.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: dlgedit.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: edu_languages.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: edu_mathematics.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: edu_miscellanous.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: edu_science.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: emacs.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: email.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: energy.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: energy_star.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: enhanced_browsing.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: error.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: filetypes.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: flashkard.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: fonts.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: galeon.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: gimp.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: go.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: gv.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: gvim.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: help_index.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: hwinfo.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icons.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: iconthemes.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: input_devices_settings.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kaboodle.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kaddressbook.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kalarm.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kalzium.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kaphorism.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kappfinder.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: karm.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kasteroids.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kate.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: katomic.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kaudiocreator.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kbabel.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kbabeldict.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kbackgammon.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kbackgammon_engine.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kbattleship.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kblackbox.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kbounce.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kcalc.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kcmdevices.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kcmdf.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kcmdrkonqi.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kcmfontinst.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kcmkicker.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kcmkwm.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kcmmemory.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kcmmidi.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kcmpartitions.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kcmpci.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kcmprocessor.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kcmscsi.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kcmsound.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kcmsystem.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kcmx.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kcoloredit.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kcontrol.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kcron.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kdat.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kdeprintfax.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kdf.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kdict.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kdisknav.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kdmconfig.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kdvi.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kedit.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: keditbookmarks.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: keduca.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kenolaba.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: key_bindings.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: keyboard.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: keyboard_layout.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kfax.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kfind.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kfloppy.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kfm.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kfm_home.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kgeo.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kghostview.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: khangman.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: khelpcenter.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: khexedit.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kiconedit.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kit.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kjobviewer.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kjots.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kjumpingcube.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: klettres.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: klines.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: klipper.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kmahjongg.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kmail.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kmailcvt.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kmenu.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kmenuedit.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kmessedwords.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kmid.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kmidi.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kmines.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kmix.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kmoon.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kmplot.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: knewsticker.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: knode.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: knotes.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: knotify.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kodo.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kolf.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: konqsidebar_mediaplayer.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: konqueror.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: konquest.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: konsole.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: korganizer.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: korn.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kpackage.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kpager.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kpaint.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kpat.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kpercentage.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kpersonalizer.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kpf.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kpoker.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kpovmodeler.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kppp.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: krdc.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kreversi.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: krfb.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kruler.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ksame.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kscd.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kscreensaver.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kshisen.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ksim.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ksirc.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ksirtet.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ksmiletris.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ksnake.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ksnapshot.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ksokoban.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kspaceduel.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kstars.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ksysguard.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ksysv.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ktalkd.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kthememgr.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ktimemon.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ktip.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ktouch.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ktron.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: ktuberling.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kuickshow.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kuser.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kview.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kviewshell.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kvirc.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kwikdisk.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kwin.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kwin4.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kworldclock.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kwrite.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kxconfig.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: kxkb.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: laptop_battery.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: laptop_pcmcia.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: licq.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: linuxconf.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: locale.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: looknfeel.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lskat.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lyx.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mac.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mathematica.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: megami.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mozilla.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: multimedia.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nedit.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: netscape.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: noatun.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: opera.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: package.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: package_applications.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: package_editors.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: package_edutainment.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: package_favourite.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: package_games.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: package_games_arcade.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: package_games_board.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: package_games_card.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: package_games_strategy.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: package_graphics.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: package_multimedia.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: package_network.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: package_settings.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: package_system.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: package_toys.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: package_utilities.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: package_wordprocessing.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: password.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: penguin.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: personal.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: phppg.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: plan.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: printmgr.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: proxy.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: pybliographic.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: pysol.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: realplayer.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: samba.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: soffice.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: style.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: stylesheet.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: terminal.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: tux.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: usb.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: vnc.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: wabi.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: window_list.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: winprops.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: wp.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: x.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xapp.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xawtv.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xcalc.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xclipboard.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xclock.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xconsole.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xedit.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xemacs.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xeyes.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xfig.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xfmail.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xload.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xmag.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xmms.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xosview.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xpaint.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: xv.png --- (This appears to be a binary file; contents omitted.) |