You can edit almost every page by Creating an account. Otherwise, see the FAQ.

UHTML

From EverybodyWiki Bios & Wiki


uHTML

User HTML (uHTML) is a simple server-side programmer-designer interface which separates programming and webdesign by making a clear disjunction of tasks and responsibilities in these areas of work possible. It is meant for the World Wide Web but can be used in any context with markup languages. It extends the scope of the original language (usually HTML) by adding user defined tags which get on the fly replaced by the desired content. It replaces technologies like SSI, PHP, ASP and similar.

It was designed in 2008 by Roland Mosler[1] to simplify website development and maintenance by eliminating competence conflicts between programmers and designers. Although implemented primarily in Perl, it can be implemented in any programming language. It is accessed trough the CGI interface (Apache) or the FCGI interface (Apache, nginx).

In order for a web server to recognize an uHTML file and redirect it to the uHTML interpreter, the filename usually ends with a special extension, by default .uhtml. The server can be as well configured to pipe all HTML files trough the uHTML interpreter.

Concept[edit]

uHTML gives the full authority over the web sources to the webdesigner. To insert dynamic contents the webdesigner conceptualize individual tags which meet the HTML syntax. In this way database content, dynamic menus, catalogues, electronic shops, etc. can be integrated into a website. There is no need to insert any program code into the uHTML file.

The webdesigner states the functionalities of the newly created uHTML symbols. On this basis the programmer implements the necessary functions. As soon as the library files created by the programmer are copied into the appropriate directories, the new uHTML tags become fully functional.

Examples[edit]

A web site containing a menu could include the menu by placing the following code into each file of the web site:

<include file="/inc/menu">

The menu file could have the following content:

<Menu NormalClass="MenuNormal" SelectedClass="MenuSelected">
  <MenuItem href="about.uhtml" title="uHTML description">Description</MenuItem>
  <MenuItem href="daily.uhtml" title="uHTML in daily routine">Daily Use</MenuItem>
  ....
</Menu>

The menu file get defined once and all pages that include the file will display the actual menu with a highlighted current entry. The tag include can be implemented under the use of the uHTML::std[2] library while the tags Menu and MenuItem are project specific.

See also[edit]

References[edit]

  1. "uHTML history". Retrieved 4 June 2021.
  2. "Standard uHTML extensions". Retrieved 4 June 2021.

External links[edit]


This article "UHTML" is from Wikipedia. The list of its authors can be seen in its historical and/or the page Edithistory:UHTML. Articles copied from Draft Namespace on Wikipedia could be seen on the Draft Namespace of Wikipedia and not main one.