This commit is contained in:
mike.morgan%oregonstate.edu 2005-08-08 16:20:22 +00:00
Родитель 54cc29288e
Коммит 73ca7ae764
8 изменённых файлов: 27 добавлений и 1 удалений

Просмотреть файл

@ -0,0 +1,7 @@
<?php
/**
* Add a comment to any Addon.
*
* @todo require session authentication.
*/
?>

Просмотреть файл

@ -1,8 +1,11 @@
<?php
/**
* FAQ page.
*
* @package amo
* @subpackage docs
*
* @todo FAQ search?
*/
$db->query("
SELECT

Просмотреть файл

@ -5,6 +5,9 @@
*
* @package amo
* @subpackage docs
*
* @todo break this into a simpler design, probably a smaller table with an abbreviated desc.
* @todo do we still want to allow users access to old versions?
*/
// Arrays to store clean inputs.

Просмотреть файл

@ -4,6 +4,9 @@
*
* @package amo
* @subpackage docs
*
* @todo Do something to spice up this page.
* @todo Get main template spruced up.
*/
// Arrays to store clean inputs.

Просмотреть файл

@ -240,7 +240,7 @@ class AddOn extends AMO_Object
CommentNote,
CommentDate,
CommentVote,
`helpful-yes` as helpful_yes,
`helpful-yes` as helpful_yes,
`helpful-no` as helpful_no,
`helpful-yes` + `helpful-no` as helpful_total
FROM

Просмотреть файл

@ -1,8 +1,11 @@
<?php
/**
* Policy page.
*
* @package amo
* @subpackage docs
*
* @todo talk to cbeard and rebron about establishing the policy document.
*/
$links = array(

Просмотреть файл

@ -4,7 +4,12 @@
*
* @package amo
* @subpackage docs
*
* @todo figure out why some addon listings have incorrect applications.
* @todo add page links ( 1 2 3 4 5 ..... n ) for big result sets? is this necessary?
* @todo take pagination and throw it into a class so we can reuse the methodology.
* @todo check validation - the form has some errors in it.
* @todo fix CSS so the pull-downs look symmetrical before design freaks start crying.
*/
// Array to store clean inputs.

Просмотреть файл

@ -14,6 +14,7 @@
<ul>
<li><a href="./addcomment.php?id={$addon->ID}">Add a Comment</a></li>
<li><a href="./mailfriend.php?id={$addon->ID}">Email a Friend</a></li>
<li><a href="./report.php?id={$addon->ID}">Report a Bug</a></li>
</ul>
<li><span>Find similar Addons...</span>
<ul>
@ -26,6 +27,7 @@
<li><span>More about the author...</span>
<ul>
<li><a href="./author.php?id={$addon->UserID}">{$addon->UserName}</a></li>
<li><a href="./mailauthor.php?id={$addon->UserID}">Contact this Author</a></li>
</ul>
</ul>