mirror of https://github.com/BOINC/boinc.git
39 lines
1.4 KiB
PHP
39 lines
1.4 KiB
PHP
<?php
|
|
// This file is part of BOINC.
|
|
// http://boinc.berkeley.edu
|
|
// Copyright (C) 2008 University of California
|
|
//
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU Lesser General Public License
|
|
// as published by the Free Software Foundation,
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
//
|
|
// BOINC is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
// See the GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
require_once("../inc/util.inc");
|
|
|
|
check_get_args(array());
|
|
|
|
page_head(tra("Allowed HTML tags"));
|
|
|
|
echo tra("The following HTML tags are allowed in team descriptions:")."
|
|
<ul>
|
|
<li> <b> or <strong> (".tra("bold").")
|
|
<li> <i> or <em> (".tra("italics").")
|
|
<li> <a> (".tra("hyperlink").")
|
|
<li> <p> (".tra("paragraph").")
|
|
<li> <br> (".tra("break").")
|
|
<li> <pre> (".tra("preformatted").")
|
|
<li> <img> (".tra("image; height cannot exceed 450 pixels. Please do not link to images without permission of the web site where the image is hosted.").")
|
|
</ul>
|
|
".tra("You can also use ampersand notation for special characters.");
|
|
|
|
page_tail();
|
|
?>
|