diff --git a/www/images/logo-large.gif b/www/images/logo-large.gif index 3437ea6..b73f1d7 100644 Binary files a/www/images/logo-large.gif and b/www/images/logo-large.gif differ diff --git a/www/index.php b/www/index.php index 083f622..dfa5f76 100644 --- a/www/index.php +++ b/www/index.php @@ -13,11 +13,66 @@ html_header(); ?> -

Mini-XML: Lightweight XML Support Library

+

Mini-XML logoMini-XML: Lightweight XML +Library

-

Recent News

+

Mini-XML is a small XML library that you can use to read and write XML and +XML-like data files in your application without requiring large non-standard +libraries. Mini-XML only requires an ANSI C compatible compiler (GCC works, as +do most vendors' ANSI C compilers) and a 'make' program.

+ +

Mini-XML provides the following functionality:

+ + + + + +
+ +

Documentation

+ +

Introduction

+ +

Building, Installing, and Packaging +Mini-XML

+ +

Getting Started with Mini-XML

+ +

More Mini-XML Programming +Techniques

+ +

Using the mxmldoc Utility

+ +

Mini-XML License

+ +

Release Notes

+ +

Library Reference

+ +
      + +

Recent News

$date, $count
\n" - ."$title - $abstract

\n"); + print("

$title - $abstract
\n" + ."$date, $count

\n"); } db_free($result); ?> -

About Mini-XML

- -

Mini-XML is a small XML parsing library that you can use to read -XML and XML-like data files in your application without requiring -large non-standard libraries. Mini-XML only requires an ANSI C -compatible compiler (GCC works, as do most vendors' ANSI C -compilers) and a 'make' program.

- -

Mini-XML provides the following functionality:

- -
    - -
  • Reading of UTF-8 and UTF-16 and writing of UTF-8 encoded - XML files and strings.
  • - -
  • Data is stored in a linked-list tree structure, - preserving the XML data hierarchy.
  • - -
  • Supports arbitrary element names, attributes, and - attribute values with no preset limits, just available - memory.
  • - -
  • Supports integer, real, opaque ("cdata"), and text data - types in "leaf" nodes.
  • - -
  • Functions for creating, indexing, and managing trees of - data.
  • - -
  • "Find" and "walk" functions for easily locating and - navigating trees of data.
  • - -
+
diff --git a/www/login.php b/www/login.php index ceb16b9..2ca8cd1 100644 --- a/www/login.php +++ b/www/login.php @@ -164,9 +164,12 @@ else if ($argc == 0 || $argv[0] != "E") if ($argc == 0 && $usererror != "") print("

$usererror

\n"); + $page = htmlspecialchars($page, ENT_QUOTES); + print("

If you are a registered $PROJECT_NAME developer, please enter " ."your username and password to login:

\n" ."
" + ."" ."\n" ."" ."
Username:\n" ."" + ."" ."\n" ."" ."\n"); print("" - ."\n"); + ."\n"); print("" ."
Username:
Created By:
$create_user
Assigned To:"); diff --git a/www/style.css b/www/style.css index cf5e7e5..12600ce 100644 --- a/www/style.css +++ b/www/style.css @@ -143,3 +143,10 @@ TR.data1 TD, TR.data1 TH { font-size: 80%; font-style: italic; } + +.invalid { + background: red; + color: white; + font-weight: bold; + padding: 2px; +}