phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] old/anthill/backend/template/default theme.php, 1.1 s


From: skwashd
Subject: [Phpgroupware-cvs] old/anthill/backend/template/default theme.php, 1.1 style.css, 1.1
Date: Thu, 5 May 2005 02:34:00 +0200

Update of old/anthill/backend/template/default

Added Files:
     Branch: MAIN
            theme.php 
            style.css 

Log Message:
retiring app

====================================================
Index: theme.php
<?
  // Default theme for Anthill
  // $Id: theme.php,v 1.1 2005/05/05 00:34:03 skwashd Exp $

  // footer on each page ****************************************************
  function t_footer($name, $version, $copyright, $weburl)
  {
    echo 'depricated call';
  }

  // index page (index.php) *************************************************
  function t_index($sitename, $content)
  {
    echo 'depricated call';
    exit;
  }

  // header on each page ****************************************************
  function t_header($option) {
?>
<!-- header template begins -->
<table border="0" cellpadding="0" cellspacing="0" align="center" width="95%">
  <tr>
    <td width="100%">
      <table border="0" cellpadding="0" cellspacing="0" align="center" 
bgcolor="#000000" width="100%">
        <tr>
          <td>
            <table border="0" cellpadding="2" cellspacing="2" width="100%">
              <tr>
                <td bgcolor="#8b95a8" width="100%">
                  <big><b><? print($option); ?></b></big>
                </td>
              </tr>
            </table>
          </td>
        </tr>
      </table>
      <br />
<!-- header template ends -->
<?
  }

  // navigation bar on each page ********************************************
  function t_nav($home, $query, $submit, $reg, $newbug, $pref, $login, $logout, 
$username, $adm) {
?>
<!-- navbar template begins -->
      <table border="0" cellpadding="0" cellspacing="0" align="center" 
bgcolor="#000000" width="95%">
        <tr>
          <td>
            <table border="0" cellpadding="2" cellspacing="2" width="100%">
              <tr>
                <td bgcolor="#8b95a8" width="70%">
                  <center>[ <a href="<? print($home); ?>"><? 
print(gettext("home")); ?></a>
               <? print($adm);
                  print($query);
                  print($submit);
                  print($reg);
                  print($newbug);
                  print($pref);
                  print($login);
                  print($logout);
               ?>
                  ]</center>
                </td>
                <td bgcolor="#8b95a8" width="30%" align="right">
                  <? print(sprintf(gettext("Current user: %s"), $username)); ?>
                </td>
              </tr>
            </table>
          </td>
        </tr>
      </table>
      <br />
<!-- navbar template ends -->
<?
  }

  // new user forms (newuser.php) *******************************************
  function t_newuser($sitename, $content, $name, $form) {
    // be careful: there are two forms here and the variables/names must be 
consistent!
    print($content);
?>
<!-- new user registration form template begins -->
<form method="post" action="<? print($form); ?>">
<table border="0" cellpadding="0" cellspacing="0" align="center" 
bgcolor="#000000" width="100%">
  <tr>
    <td>
      <table border="0" cellpadding="0" cellspacing="0" align="center" 
bgcolor="#ffffff" width="100%">
        <tr>
          <td>
            <table border="0" cellpadding="2" cellspacing="2" width="100%">
              <tr>
                <td bgcolor="#ffffff" width="50%" align="right">
                  <b><? print(gettext("Username")); ?>:</b>
                </td>
                <td bgcolor="#ffffff" width="50%">
                  <input type="text" name="uname" size="25" maxlength="25">
                </td>
              </tr>
              <tr>
                <td bgcolor="#ffffff" width="50%" align="right">
                  <b><? print(gettext("Real Name")); ?>:</b>
                </td>
                <td bgcolor="#ffffff" width="50%">
                  <input type="text" name="rname" size="40" maxlength="60">
                </td>
              </tr>
              <tr>
                <td bgcolor="#ffffff" width="50%" align="right">
                  <b><? print(gettext("E-mail address")) ?>:</b>
                </td>
                <td bgcolor="#ffffff" width="50%">
                  <input type="text" name="email" size="40" maxlength="60">
                </td>
              </tr>
              <tr>
                <td bgcolor="#ffffff" width="50%" align="right">
                  <input type="submit" value="<? print(gettext("Create 
Account")); ?>">
                  <input type="hidden" name="go" value="newuser">
                </td>
                <td bgcolor="#ffffff" width="50%">
                  &nbsp;
                </td>
              </tr>
            </table>
          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
</form>
<!-- new user registration form templte ends -->

<p><? print(gettext("Please use a legitimate email address.  The account will 
be created and the password will be mailed to you.  Please fill out the form 
entirely.")); ?></p>
<p><? print(sprintf(gettext("If you have lost or forgotten your password, you 
can have %s generate a new password for you and email it to you.  For security, 
please include your chosen username as well.  If you have forgotten that as 
well, you have problems."), $name)); ?> =)</p>

<!-- forgotten password form begins -->
<form method="post" action="<? print($form); ?>">
<table border="0" cellpadding="0" cellspacing="0" align="center" 
bgcolor="#000000" width="100%">
  <tr>
    <td>
      <table border="0" cellpadding="0" cellspacing="0" align="center" 
bgcolor="#ffffff" width="100%">
        <tr>
          <td>
            <table border="0" cellpadding="2" cellspacing="2" width="100%">
              <tr>
                <td bgcolor="#ffffff" width="50%" align="right">
                  <b><? print(gettext("Username")); ?>:</b>
                </td>
                <td bgcolor="#ffffff" width="50%">
                  <input type="text" name="uname" size="25" maxlength="25">
                </td>
              </tr>
              <tr>
                <td bgcolor="#ffffff" width="50%" align="right">
                  <b><? print(gettext("E-mail address")); ?>:</b>
                </td>
                <td bgcolor="#ffffff" width="50%">
                  <input type="text" name="email" size="40" maxlength="60">
                </td>
              </tr>
              <tr>
                <td bgcolor="#ffffff" width="50%" align="right">
                  <input type="submit" value="<? print(gettext("Send New 
Password")); ?>">
                  <input type="hidden" name="go" value="newpass">
                </td>
                <td bgcolor="#ffffff" width="50%">
                  &nbsp;
                </td>
              </tr>
            </table>
          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
</form>
<!-- forgotten password form template ends -->
<?
  }

  // display user preferences (pref.php) ************************************
  function t_pref($sitename, $content, $form, $uname, $rname, $email, $laston, 
$uid, $gpg, $dkeyform, $cookieval, $epref) {
    print($content);
?>
<!-- edit preferences form template begins -->
<form method="post" action="<? print($form); ?>">
<table border="0" cellpadding="0" cellspacing="0" align="center" 
bgcolor="#000000" width="100%">
  <tr>
    <td>
      <table border="0" cellpadding="0" cellspacing="0" align="center" 
bgcolor="#ffffff" width="100%">
        <tr>
          <td>
            <table border="0" cellpadding="2" cellspacing="2" width="100%">
              <tr>
                <td bgcolor="#ffffff" width="50%" align="right">
                  <b><? print(gettext("Last Login Date")); ?>:</b>
                </td>
                <td bgcolor="#ffffff" width="50%">
                  <? print($laston); ?>
                </td>
              </tr>
              <tr>
                <td bgcolor="#ffffff" width="50%" align="right">
                  <b><? print(gettext("Username")); ?>:</b>
                </td>
                <td bgcolor="#ffffff" width="50%">
                  <input type="text" name="uname" size="25" maxlength="25" 
value="<? print($uname); ?>">
                </td>
              </tr>
              <tr>
                <td bgcolor="#ffffff" width="50%" align="right">
                  <b><? print(gettext("Real Name")); ?>:</b>
                </td>
                <td bgcolor="#ffffff" width="50%">
                  <input type="text" name="rname" size="40" maxlength="60" 
value="<? print($rname); ?>">
                </td>
              </tr>
              <tr>
                <td bgcolor="#ffffff" width="50%" align="right">
                  <b><? print(gettext("E-mail address")); ?>:</b>
                </td>
                <td bgcolor="#ffffff" width="50%">
                  <input type="text" name="email" size="40" maxlength="60" 
value="<? print($email); ?>">
                </td>
              </tr>
               <tr>
                <td bgcolor="#ffffff" width="50%" align="right">
                  <b><? print(gettext("Receive changes I make via E-mail")); 
?>:</b>
                </td>
                <td bgcolor="#ffffff" width="50%">
                  <select name="epref">
                    <option value="1" <? if($epref == "1") { print("SELECTED"); 
} ?>>Yes</option>
                    <option value="0" <? if($epref == "0") { print("SELECTED"); 
} ?>>No</option>
                  </select>
                </td>
              </tr>
              <tr>
                <td bgcolor="#ffffff" width="50%" align="right">
                  <b><? print(gettext("Password")); ?>:</b>
                </td>
                <td bgcolor="#ffffff" width="50%">
                  <input type="password" name="pass1" size="40" maxlength="40">
                </td>
              </tr>
              <tr>
                <td bgcolor="#ffffff" width="50%" align="right">
                  <b><? print(gettext("Re-Enter Password")); ?>:</b>
                </td>
                <td bgcolor="#ffffff" width="50%">
                  <input type="password" name="pass2" size="40" maxlength="40">
                </td>
              </tr>
              <tr>
                <td bgcolor="#ffffff" width="50%" align="right">
                  <b><? print(gettext("Remember Me for")); ?></b>
                </td>
                <td bgcolor="#ffffff" width="50%">
                  <select name="cookieexp">
                    <option value="3600" <? if($cookieval == "3600") { 
print("SELECTED"); } ?>>1 Hour</option>
                    <option value="7200" <? if($cookieval == "7200") { 
print("SELECTED"); } ?>>2 Hours</option>
                    <option value="10800" <? if($cookieval == "10800") { 
print("SELECTED"); } ?>>3 Hours</option>
                    <option value="28800" <? if($cookieval == "28800") { 
print("SELECTED"); } ?>>8 Hours</option>
                    <option value="86400" <? if($cookieval == "86400") { 
print("SELECTED"); } ?>>1 Day</option>
                    <option value="604800" <? if($cookieval == "604800") { 
print("SELECTED"); } ?>>1 Week</option>
                    <option value="2419200" <? if($cookieval == "2419200") { 
print("SELECTED"); } ?>>1 Month</option>
                    <option value="29030400" <? if($cookieval == "29030400") { 
print("SELECTED"); } ?>>1 Year</option>
                  </select>
                </td>
              </tr>
              <tr>
                <td bgcolor="#ffffff" width="50%" align="right">
                  <input type="submit" value="<? print(gettext("Change")); ?>">
                  <input type="hidden" name="uid" value="<? print($uid); ?>">
                  <input type="hidden" name="go" value="change">
                </td>
                <td bgcolor="#ffffff" width="50%">
                  &nbsp;
                  </form>
                </td>
              </tr>
              <tr>
                <td bgcolor="#ffffff" width="50%" align="right">
                  <form enctype="multipart/form-data" action="gpgupload.php" 
method="post">
                  <input type="hidden" name="MAX_FILE_SIZE" value="10000">
                  <b><? print(gettext("Upload GPG/PGP keyfile")); ?>:</b>
                </td>
                <td bgcolor="#ffffff" width="50%">
                  <input name="gfile" type="file">
                </td>
              </tr>
              <tr>
                <td bgcolor="#ffffff" width="50%" align="right">
                  <input type="submit" value="<? print(gettext("Upload")); ?>">
                </td>
                <td bgcolor="#ffffff" width="50%">
                  &nbsp;
                  </form>
                </td>
              </tr>
              <tr>
                <td bgcolor="#ffffff" width="50%" align="right" valign="top">
                  <b><? print(gettext("GnuPG/PGP Key on File")); ?>:</b>
                </td>
                <td bgcolor="#ffffff" width="50%">
                  <pre><? print($gpg); ?></pre>
                  <? print($dkeyform); ?>
                </td>
              </tr>
            </table>
          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<!-- edit preferences form template ends -->
<?
  }

  // query bugs form ********************************************************
  function t_queryform($sitename, $statopts, $useropts, $user2opts, $prodopts) {
?>
<!-- query form template starts -->
<form method="get" action="query.php">
<table border="0" cellpadding="0" cellspacing="0" align="center" width="100%">
  <tr>
    <td width="50%" valign="top">
      <p><? print(gettext("You must select a bug to view or search for it:")); 
?></p>
      <table border="0" cellpadding="2" cellspacing="0" align="center" 
width="100%">
        <tr>
          <td>
            <b><? print(gettext("View Bug")); ?>:</b>
          </td>
          <td>
             <input type="text" name="bug" size="6" maxlength="6">
          </td>
        </tr>
        <tr>
          <td>
            &nbsp;
          </td>
          <td>
            <input type="submit" value="<? print(gettext("Query")); ?>"><br />
            </form>
            <form method="post" action="buglist.php">
          </td>
        </tr>
        <tr>
          <td>
            <b><? print(gettext("Keyword Search")) ?>:</b>
          </td>
          <td>
            <input type="text" name="search" size="50" maxlength="100">
            <input type="hidden" name="type" value="all">
            <input type="hidden" name="allclass" value="all">
          </td>
        </tr>
        <tr>
          <td>
            &nbsp;
          </td>
          <td>
            <input type="submit" value="<? print(gettext("Search")); ?>"><br />
            </form>
          </td>
        </tr>
      </table>
    </td>
    <td width="50%" valign="top">
      <p><? print(gettext("Here you can obtain a listing of the bugs stored.  
Please select one of the following criteria:")); ?></p>
      <form method="post" action="buglist.php">
      <table cellpadding="0" cellspacing="0" border="0" width="100%">
        <tr>
          <td valign="center">
            <input type="radio" name="type" value="mine" CHECKED>
            <? print(gettext("List my bugs of status")); ?>
          </td>
          <td valign="center">
            <select name="myclass">
              <option value="all" SELECTED>ALL</option>
              <? print($statopts); ?>
            </select>
          </td>
        </tr>
        <tr>
          <td valign="center">
            <input type="radio" name="type" value="all">
            <? print(gettext("List all bugs of status")); ?>
          </td>
          <td valign="center">
            <select name="allclass">
              <option value="all" SELECTED>ALL</option>
              <? print($statopts); ?>
            </select>
          </td>
        </tr>
        <tr>
          <td valign="center">
            <input type="radio" name="type" value="user">
            <? print(gettext("List all bugs for user")); ?>
          </td>
          <td valign="center">
            <select name="who">
              <option value="" SELECTED>----</option>
              <? print($useropts); ?>
            </select>
          </td>
        </tr>
        <tr>
          <td valign="center">
            <input type="radio" name="type" value="reportby">
            <? print(gettext("List all bugs reported by")); ?>
          </td>
          <td valign="center">
            <select name="rwho">
              <option value="" SELECTED>----</option>
              <? print($user2opts); ?>
            </select>
          </td>
        </tr>
        <tr>
          <td valign="center" colspan="2">
            <input type="radio" name="type" value="reporter">
            <? print(gettext("List all bugs you reported")); ?>
          </td>
        </tr>
        <tr>
          <td valign="center" colspan="2">
            <input type="radio" name="type" value="unres">
            <? print(gettext("List all unresolved bugs")); ?>
          </td>
        </tr>
        <tr>
          <td valign="center">
            <input type="radio" name="type" value="product">
            <? print(gettext("List all bugs for product")); ?>
          </td>
          <td valign="center">
            <select name="product">
            <option value="" SELECTED><? print(gettext("All Products")); 
?></option>
            <? print($prodopts); ?>
            </select>
          </td>
        </tr>
        <tr>
          <td valign="center">
            <input type="radio" name="type" value="versiondiff">
            <? print(gettext("List version differences for product")); ?>
          </td>
          <td valign="center">
            <select name="vproduct">
            <? print($prodopts); ?>
            </select>
          </td>
        </tr>
        <tr>
          <td>
            &nbsp;
          </td>
          <td>
            <input type="submit" value="<? print(gettext("Check")); ?>">
          </td>
        </tr>
      </table>
      </form>
    </td>
  </tr>
</table>
<!-- query form template ends -->
<?
  }

  // faq page (faq.php) *****************************************************
  function t_faq() {
?>
<!-- faq template begins -->
<table border="0" cellpadding="0" cellspacing="0" width="100%">
  <tr>
    <td bgcolor="#8b95a8" width="100%">
      <b><? print(gettext("What are the different steps of a bug's life?")); 
?></b>
    </td>
  </tr>
  <tr>
    <td width="100%">
      <ol>
      <li><? print(gettext("NEW: status of a bug just inserted into the 
database.")); ?></li>
      <li><? print(gettext("ASSIGNED: when the maintainers accept 
responsibility for the bug.")); ?></li>
      <li><? print(gettext("UNCONFIRMED: the bug is not yet confirmed, but 
testing is being done to verify it.")); ?></li>
      <li><? print(gettext("VERIFIED: the bug is verified but has not been 
fixed.")); ?></li>
      <li><? print(gettext("TOVALIDATE: the bug is sent to QA to verify the 
fix.")); ?></li>
      <li><? print(gettext("NEEDSWORK: the bug is sent back to the maintainer 
to work on it more (ie. QA did not validate the fix).")); ?>
      <li><? print(gettext("RESOLVED: when the bug is resolved by the 
maintainer; can be one of the following states:")); ?></li>
        <ol>
        <li><? print(gettext("FIXED: the bug is fixed and the solution is 
tested.")); ?></li>
        <li><? print(gettext("INVALID: the problem described is not a bug.")); 
?></li>
        <li><? print(gettext("WONTFIX: the bug cannot be fixed for some 
reason.")); ?></li>
        </ol>
      <li><? print(gettext("CLOSED: the bug is closed, with no resolution 
status (ie. an invalid bug report).")); ?></li>
      <li><? print(gettext("REOPENED: the bug has been reopened after it was 
CLOSED or RESOLVED due to new information")); ?></li>
      </ol>
      <br /><br />
    </td>
  </tr>
  <tr>
    <td bgcolor="#8b95a8" width="100%">
      <b><? print(gettext("Can maintainers reassign a bug?")); ?></b>
    </td>
  </tr>
  <tr>
    <td width="100%">
      <? print(gettext("Yes they can.  On the bug report page, a field allows 
the maintainer to reassign the bug to another person.")); ?>
      <br /><br />
    </td>
  </tr>
  <tr>
    <td bgcolor="#8b95a8" width="100%">
      <b><? print(gettext("Can the reporter modify the bug status?")); ?></b>
    </td>
  </tr>
  <tr>
    <td width="100%">
      <? print(gettext("No.  The reporter is only authorized to enter more 
comments about the bug, like anyone else.  Only the assigned maintainer and 
privileged users are able to modify the bug status.")); ?>
    </td>
  </tr>
</table>
<!-- faq template ends -->
<?
  }

  // create attachment form (createattachment.php) **************************
  function t_cattach($bug, $maxsize) {
?>
<!-- create attachment form template begins -->
<p><? print(sprintf(gettext("To attach a file to <a 
href=\"query.php?bug=%s\">bug #%s</a>, place it in a file on your local machine 
and enter the path to that file here:"), $bug, $bug)); ?></p>

<form enctype="multipart/form-data" method="post" action="createattachment.php">
  <input type="hidden" name="bug" value="<? print($bug); ?>">
  <input type="hidden" name="doit" value="create">
  <input type="hidden" name="MAX_FILE_SIZE" value="<? print($maxsize); ?>">
  <input type="file" name="afile" size="60">
  <span class="tiny"><? print(sprintf(gettext("Please note that the maximum 
file size accepted is %s bytes"), $maxsize)); ?></span><br />
  <p><? print(gettext("Please provide a one-line description of this 
attachment:")); ?></p>
  <input name="description" size="60">
  <p><? print(gettext("Please select the type of file you are uploading:")); 
?></p>
  <input type="radio" name="type" value="patch"><? print(gettext("Patch file 
(text/plain, diffs)")); ?><br />
  <input type="radio" name="type" value="text/plain"><? print(gettext("Plain 
text (text/plain)")); ?><br />
  <input type="radio" name="type" value="text/html"><? print(gettext("HTML 
source (text/html)")); ?><br />
  <input type="radio" name="type" value="image/gif"><? print(gettext("GIF image 
(image/gif)")); ?><br />
  <input type="radio" name="type" value="image/jpeg"><? print(gettext("JPEG 
image (image/jpeg)")); ?><br />
  <input type="radio" name="type" value="image/png"><? print(gettext("PNG image 
(image/png)")); ?><br />
  <input type="radio" name="type" value="application/octet-stream"><? 
print(gettext("Binary file (application/octet-stream)")); ?><br />
  <input type="radio" name="type" value="other"><? print(gettext("Other (enter 
MIME type:")); ?> <input name="othertype" size="30">)
  <br />
  <input type="submit" value="<? print(gettext("Upload")); ?>">
</form>
<!-- create attachment form template ends -->
<?
  }

  // login form (login.php) *************************************************
  function t_login($form)
  {
    echo 'deprivated call';
  }

  // rules to entering a bug (enterbug.php) 
*************************************************
  function t_rules() { // we don't use gettext here since this should be 
customized on a per-site basis
?>
<!-- bug rules template begins -->

<table border="0" cellpadding="1" cellspacing="1" width="100%">
  <tr>
    <td bgcolor="#8b95a8" width="100%">
      <b>What is a bug?</b>
    </td>
  </tr>
  <tr>
    <td width="100%">
      <br />
      <p>A bug can be generalized as an error in a piece of software, however 
it can be more than just that.
      A bug can be something immediate (ie. a crash), or strange behaviour in a 
program (ie. it doesn't seem
      to work correctly) that cannot be fixed through configuration changes.  
Errors in documentation may also
      be considered to be a bug.</p>

      <p>This system is a means to assist vendors and developers in gathering 
information related to a problem
      report.  It offers several critical features:  Accountability on behalf 
of developers, a clear path for
      bug's "lifespan" to travel through the stages necessary for the bug to be 
fixed, and a central information
      source for developers to look at when dealing with error reports (rather 
than multiple sources such as email,
      web forums, IRC, etc.).</p>
      <br />
    </td>
  </tr>
  <tr>
    <td bgcolor="#8b95a8" width="100%">
      <b>How do I report a bug?</b>
    </td>
  </tr>
  <tr>
    <td width="100%">
      <br />
      <p>To submit a bug you must first obtain an Anthill account if you do not 
have one already.  This can be done
      by using the <a href="newuser.php">New User Registration</a> form.  If 
you already have an account, be sure
      that you are logged in.</p>

      <p><b>Search for your problem first!</b>  This allows the developers to 
spend more resources on fixing bugs
      than Anthill management.  By searching, you can see if your problem has 
already been reported or previously
      fixed.  If you see an open bug dealing with the same problem, you can add 
yourself to the CC list and add
      any pertinent comments to the report to assist the developers in 
resolving the problem.  You can search for
      bugs by using the <a href="query.php">Query Bugs</a> form.</p>

      <p>If your bug is not already in the system, proceed to entering a bug 
report.  You will be asked to choose
      an appropriate product if more than one product exists in the system.  
You will also be asked to provide the
      version of the product this bug pertains to, and a component that it 
belongs to.  Try to be as accurate as
      possible as that will help the developers to quickly identify the problem 
so they can spend time fixing it.</p>

      <p>You can choose whom to assign the report to.  In most cases, the owner 
of the component, which is selected
      by default, is the obvious choice.  Only re-assign ownership of a bug if 
you have a real reason to assign it
      to another developer.  You can also select Resolution Priorities and 
Severities for the bug; the Resolution
      Priority is how quickly you feel the bug should be addressed.  If it is a 
"show stopper" bug, you might assign
      it a Resolution Priority of "High" or "Critical", whereas a feature 
enhancement or smaller bug might have a lower
      priority.  Likewise, a bug that causes data loss may be assigned a 
Severity of "Critical", while a cosmetic
      bug may be "Trivial".  Please be considerate of the developers and think 
of your problem in the grand scheme
      of things; because you feel having new widgets is critical does not mean 
this will be a priority for
      developers or others.</p>

      <p>Include a brief summary of the bug that easily and quickly identifies 
the problem, and include a website or
      other URL to provide more information if one exists (ie. a mailing list 
archive or other bug tracking system
      that may discuss the problem).  When filling out the initial comments for 
the bug, be as verbose as you can so
      that the developers can quickly obtain all of the data they need in order 
to solve the problem quickly.  By not
      providing as much data as you possibly can, you may be delaying the 
process to fix the bug; the more information
      present, the faster the bug can be resolved.</p>

      <center><form action="enterbug.php" method="POST">
      <input type="hidden" name="ebug" value="1">
      <input type="submit" name="submit" value="Enter a New Bug Report">
      </form></center>
    </td>
  </tr>
</table>
<!-- bug rules template ends -->
<?
  }
?>

====================================================
Index: style.css
body            { font-family: Helvetica, Arial; font-size: 12px;
                  color: #000000; background-color: #ffffff }

a               { text-decoration: none }
a:link          { color: darkcyan }
a:visited       { color: darkcyan }
a:hover         { color: red; text-decoration: underline }

p               { font-family: Helvetica, Arial;
                  color: #000000; font-size: 12px; margin-right: 10px }

h1              { font-family: Helvetica, Arial; font-size: 22px;
                  color: darkblue; text-align: center }

h2              { font-family: Helvetica, Arial; font-size: 18px;
                  color: darkred }

h3              { font-family: Helvetica, Arial; font-size: 14px;
                  color: darkcyan; text-decoration: underline }

td              { font-family: Helvetica, Arial; font-size: 12px }
ol              { font-family: Helvetica, Arial; font-size: 12px }
ul              { font-family: Helvetica, Arial; font-size: 12px }
input           { font-family: Helvetica, Arial; font-size: 10px }
textarea        { font-family: Helvetica, Arial; font-size: 10px;
                  width: 500px }

.header         { font-family: Helvetica, Arial; font-weight: bold;
                  color: #ffffff; font-size: 12px }

.subhead        { font-family: Helvetica, Arial; font-weight: bold;
                  color: #000000; font-size: 14px; text-decoration: underline }

.text           { font-family: Helvetica, Arial; color: #000000;
                  font-size: 12px }

.foot           { font-family: Helvetica, Arial; color: #000000;
                  font-size: 10px }

.tiny           { font-family: Helvetica, Arial; color: #000000;
                  font-size: 8px }

.rcs            { font-family: Helvetica, Arial; color: #000000;
                  font-size: 8px; text-align: right }

.code           { font-family: Helvetica; color: #000000;
                  font-size: 10px; }






reply via email to

[Prev in Thread] Current Thread [Next in Thread]