Uniform headers

This commit is contained in:
Jonathan Ernst
2004-12-25 20:08:00 +00:00
committed by WineHQ
parent 5cea0f68f3
commit f5741ea108
18 changed files with 105 additions and 24 deletions

View File

@@ -3,8 +3,8 @@
/* code to display an application */ /* code to display an application */
/**********************************/ /**********************************/
/** /*
* APPLICATION ENVIRONMENT * application evironment
*/ */
include("path.php"); include("path.php");
require(BASE."include/"."incl.php"); require(BASE."include/"."incl.php");

View File

@@ -1,9 +1,11 @@
<?php <?php
/* /*********************************/
* Application Database - appview.php /* bugs linked to an application */
* /*********************************/
*/
/*
* application evironment
*/
include("path.php"); include("path.php");
require(BASE."include/"."incl.php"); require(BASE."include/"."incl.php");
require(BASE."include/"."application.php"); require(BASE."include/"."application.php");

View File

@@ -5,6 +5,9 @@
/* script expects appId, versionId and threadId as argument */ /* script expects appId, versionId and threadId as argument */
/************************************************************/ /************************************************************/
/*
* application evironment
*/
include("path.php"); include("path.php");
include(BASE."include/"."incl.php"); include(BASE."include/"."incl.php");
require(BASE."include/"."comments.php"); require(BASE."include/"."comments.php");

View File

@@ -1,5 +1,11 @@
<?php <?php
/*******************/
/* delete comments */
/*******************/
/*
* application evironment
*/
include("path.php"); include("path.php");
require(BASE."include/"."incl.php"); require(BASE."include/"."incl.php");
require(BASE."include/"."application.php"); require(BASE."include/"."application.php");

View File

@@ -1,5 +1,11 @@
<?php <?php
/************************/
/* code to edit an user */
/************************/
/*
* application evironment
*/
include("path.php"); include("path.php");
include(BASE."include/"."incl.php"); include(BASE."include/"."incl.php");

View File

@@ -1,8 +1,11 @@
<?php <?php
/***********************************/ /***********************************/
/* Application Database Index Page */ /* application database index page */
/***********************************/ /***********************************/
/*
* application evironment
*/
include("path.php"); include("path.php");
require(BASE."include/"."incl.php"); require(BASE."include/"."incl.php");

View File

@@ -1,5 +1,11 @@
<?php <?php
/*******************************/
/* code to delete a maintainer */
/*******************************/
/*
* application evironment
*/
include("path.php"); include("path.php");
require(BASE."include/"."incl.php"); require(BASE."include/"."incl.php");
require(BASE."include/"."tableve.php"); require(BASE."include/"."tableve.php");

View File

@@ -1,7 +1,20 @@
<?php <?php
/*******************************/
/* code to submit a maintainer */
/*******************************/
// Check the input of a submitted form. And output with a list /*
// of errors. (<ul></ul>) * application evironment
*/
include("path.php");
require(BASE."include/"."incl.php");
require(BASE."include/"."tableve.php");
require(BASE."include/"."category.php");
/**
* Check the input of a submitted form. And output with a list
* of errors. (<ul></ul>)
*/
function checkAppMaintainerInput( $fields ) function checkAppMaintainerInput( $fields )
{ {
$errors = ""; $errors = "";
@@ -21,10 +34,6 @@ function checkAppMaintainerInput( $fields )
} }
} }
include("path.php");
require(BASE."include/"."incl.php");
require(BASE."include/"."tableve.php");
require(BASE."include/"."category.php");
if(!loggedin()) if(!loggedin())
{ {

View File

@@ -1,8 +1,11 @@
<?php <?php
/**************************************/ /***************/
/* Application Database - Note Viewer */ /* note viewer */
/**************************************/ /***************/
/*
* application evironment
*/
include("path.php"); include("path.php");
require(BASE."include/"."incl.php"); require(BASE."include/"."incl.php");

View File

@@ -1,5 +1,11 @@
<?php <?php
/**********************/
/* preferences editor */
/**********************/
/*
* application evironment
*/
include("path.php"); include("path.php");
include(BASE."include/"."incl.php"); include(BASE."include/"."incl.php");

View File

@@ -5,12 +5,13 @@
/* cmd and imageId */ /* cmd and imageId */
/*******************************************************************/ /*******************************************************************/
/** /*
* APPLICATION ENVIRONMENT * application evironment
*/ */
include("path.php"); include("path.php");
require(BASE."include/"."incl.php"); require(BASE."include/"."incl.php");
require(BASE."include/"."application.php"); require(BASE."include/"."application.php");
if($_REQUEST['cmd']) if($_REQUEST['cmd'])
{ {
//process screenshot upload //process screenshot upload

View File

@@ -1,5 +1,11 @@
<?php <?php
/*****************/
/* search engine */
/*****************/
/*
* application evironment
*/
include("path.php"); include("path.php");
require(BASE."include/"."incl.php"); require(BASE."include/"."incl.php");
require(BASE."include/"."application.php"); require(BASE."include/"."application.php");

View File

@@ -1,5 +1,11 @@
<?php <?php
/**************************/
/* FIXME: add description */
/**************************/
/*
* application evironment
*/
include("path.php"); include("path.php");
require(BASE."include/"."incl.php"); require(BASE."include/"."incl.php");
require(BASE."include/"."qclass.php"); require(BASE."include/"."qclass.php");

View File

@@ -1,8 +1,11 @@
<?php <?php
/*************************************/ /****************/
/* Application Database Support Page */ /* support page */
/*************************************/ /****************/
/*
* application evironment
*/
include("path.php"); include("path.php");
require(BASE."include/"."incl.php"); require(BASE."include/"."incl.php");

View File

@@ -1,5 +1,11 @@
<?php <?php
/*************************/
/* code to modify rating */
/*************************/
/*
* application evironment
*/
include("path.php"); include("path.php");
include(BASE."include/"."incl.php"); include(BASE."include/"."incl.php");
include(BASE."include/"."rating.php"); include(BASE."include/"."rating.php");

View File

@@ -1,5 +1,11 @@
<?php <?php
/*************************/
/* code to modify voting */
/*************************/
/*
* application evironment
*/
include("path.php"); include("path.php");
include(BASE."include/"."incl.php"); include(BASE."include/"."incl.php");
include(BASE."include/"."vote.php"); include(BASE."include/"."vote.php");

View File

@@ -3,6 +3,9 @@
/* code to view vendors & their apps */ /* code to view vendors & their apps */
/*************************************/ /*************************************/
/*
* application evironment
*/
include("path.php"); include("path.php");
require(BASE."include/"."incl.php"); require(BASE."include/"."incl.php");
require(BASE."include/"."application.php"); require(BASE."include/"."application.php");

View File

@@ -1,5 +1,11 @@
<?php <?php
/*********************/
/* voting statistics */
/*********************/
/*
* application evironment
*/
include("path.php"); include("path.php");
include(BASE."include/"."incl.php"); include(BASE."include/"."incl.php");
require(BASE."include/"."category.php"); require(BASE."include/"."category.php");