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 */
/**********************************/
/**
* APPLICATION ENVIRONMENT
/*
* application evironment
*/
include("path.php");
require(BASE."include/"."incl.php");

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -1,7 +1,20 @@
<?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 )
{
$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())
{

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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