| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 | <?phprequire_once('../include/prepend.php');require_once '../include/shared-manual.inc';require_once('../include/prepend.php');commonHeader("Browse Notes"); ?><P>These notes are only visible at <A href="http://gtk.php.net/manual/">gtk.php.net</A>because that's where the database that stores them is located.  If (when) thePHP-GTK website is mirrored in several locations, we'll work out a way ofhaving the notes available across all the mirror sites.</P><?phpcommonFooter();die();if (isset($_POST['cancel'])) {	header("Location: {$_SERVER['PHP_SELF']}".(isset($_POST['queue']) ? '?q' : ''));	exit;}makeAdminOpts();$queue = null;if ($user = get_user()) {	commonHeader("Manual Notes Administration");	$order = isset($_POST['order']) ? $_POST['order'] : null;	if ($order) {		if (!isset($_COOKIE['order']) || (isset($_COOKIE['order']) && $order != $_COOKIE['order'])) {			setcookie('order', $order, time()+(3600*24*7), '/');		}	} else {		if (isset($_COOKIE['order'])) {			$order = $_COOKIE['order'];		} else {			$order = 'page';		}	}	if (isset($_POST['queue']) || array_key_exists('q', $_GET)) {		echo "<h1>Manual Notes Queue Administration</h1>\n\n";		$notesfile = $queuefile;		$queue = '&q';	} else {		echo "<h1>Manual Notes Administration</h1>\n\n";	}	$admin = true;	$id = null;	if (isset($_GET['delete']) && is_numeric($_GET['delete'])) {		$id = $_GET['delete'];	}	if (isset($_GET['reject']) && is_numeric($_GET['reject'])) {		$id = $_GET['reject'];		$reject_text  = "If you are receiving this email, it is because a note you posted for the\n";		$reject_text .= "on-line PHP-GTK manual has been rejected by one of the editors.\n\n";		$reject_text .= "The user contributed notes are not an appropriate place to ask questions,\n";		$reject_text .= "ask questions, report bugs or suggest new features.\n\n";		$reject_text .= "Bug reports and feature requests should be entered as 'PHP-GTK related'\n";		$reject_text .= "at <a href = 'http://bugs.php.net'>bugs.php.net</a>.\n";		$reject_text .= "Support and ways to find answers to your questions can be found at\n";		$reject_text .= "<a href='http://gtk.php.net/resources.php'>gtk.php.net/resources.php</a>.\n\n";		$reject_text .= "Your note has been removed from the on-line manual.\n\n";	}	if ($id) {		$db = sqlite_open($notesfile);		$query = sqlite_query($db, "SELECT * FROM notes WHERE id = '$id'");		$row = sqlite_fetch_array($query, SQLITE_ASSOC);		if (sqlite_exec($db, "DELETE FROM notes WHERE id = '$id'")) {			if (isset($_GET['reject'])) {				if (!substr($row['email'], 0, 3) == 'GTK_') {					/* email user */					if (!isset($_COOKIE[$user])) { /* but only if we're not in test mode */						$mailto = $row['email'];					}					if ($mail) mail($mailto, "note {$row['id']} rejected: {$row['page']}", $reject_text."----- Copy of your note below -----\n\n".stripslashes($row['comment']), "From: $user@php.net");				}				$actioned = 'rejected';			} else {				$actioned = 'deleted';			}			if ($mail) mail($mailto, "note $id $actioned: {$row['page']}", "Content of note:\n\n".stripslashes($row['comment']), "From: $user@php.net");			print "<p><b>Note $id deleted successfully</b></p>";		} else {			print "<p><b>Unable to delete note $id</b></p>";		}		sqlite_close($db);	}	if (isset($_GET['edit']) && is_numeric($_GET['edit'])) {		$db = sqlite_open($notesfile);		$query = sqlite_query($db, "SELECT * FROM notes WHERE id = ".$_GET['edit']);		$row = sqlite_fetch_array($query, SQLITE_ASSOC);		$email = stripslashes($row['email']);		$comment = stripslashes($row['comment']);		if (substr($email, 0, 3) == 'GTK_') {			$email = null;		}		$get = isset($_GET['let']) ? "?let={$_GET['let']}" : null;		if (!$get) {			$get = isset($_GET['y']) ? "?y={$_GET['y']}" : null;		}		if ($get) $get .= $queue ? '&q': null;		else $get .= $queue ? '?q': null;		echo '<form method="POST" action="'.$_SERVER['PHP_SELF'].$get.'">';		echo '<table border="0" cellpadding="5" width="80%" bgcolor="#e0e0e0">';		echo '<tr><td align="right">E-mail:<br /></td>' .			'<td><input type="text" size="40" name="email" value="'.$email.'" />  ID: '.$_GET['edit'].'<br /></td></tr>';		echo '<input type="hidden" name="id" value='.$_GET['edit'].' />';		echo '<tr valign="top"><td align="right">Note:<br /></td>' .				'<td><textarea name="note" rows="15" cols="70">'.$comment.'</textarea><br /></td></tr>';		echo '<tr bgcolor="#cccccc"><td colspan="2"></td></tr>';		echo '<tr><td colspan="2" align="right"><input type="submit" name="modify" value="Save changes">';		echo '  <input type="submit" name="cancel" value="Cancel" /></td></tr>';		echo "</table>\n</form>\n";		sqlite_close($db);		commonFooter();		exit;	}	if (isset($_POST['modify'])) {		$db = sqlite_open($notesfile);		$query = sqlite_query($db, "SELECT * FROM notes WHERE id = ".$_POST['id']);		$row = sqlite_fetch_array($query, SQLITE_ASSOC);		$add_url = "\n\nhttp://gtk.php.net/manual/{$row['lang']}/{$row['page']}\n";		$note = htmlentities($_POST['note'], ENT_COMPAT, 'UTF-8');		$note = sqlite_escape_string($note);		$note = stripslashes($note); // get rid of double slashes		$query = "UPDATE notes SET";		if (!empty($_POST['email'])) $query .= " email='{$_POST['email']}',";		$query .= " comment='$note' WHERE id='{$row['id']}'";		if (sqlite_exec($db, $query)) {			echo "<p><b>Record {$row['id']} modified successfully</b></p>";			if ($mail) mail($mailto, "note {$row['id']} modified: {$row['page']}", $note.$add_url, "From: $user@php.net");		} else {			echo "<p><b>Record {$row['id']} not modified (query failed)</b></p>";		}		sqlite_close($db);	}} else {	commonHeader("Browse Manual Notes");	$order = isset($_POST['order']) ? $_POST['order'] : null;	if (isset($order)) {		if (!isset($_COOKIE['order']) || (isset($_COOKIE['order']) && $order != $_COOKIE['order'])) {			setcookie('order', $order, time()+(3600*24), '/');		}	} else {		if (isset($_COOKIE['order'])) {			$order = $_COOKIE['order'];		} else {			$order = 'page';		}	}	echo '<h1>Browse Manual Notes</h1>';	$admin = false;}ob_start();include('browse.php');commonFooter();?>
 |