Wgrałem biezaca wersje strony www.
git-svn-id: svn://atos.wmid.amu.edu.pl/utt@53 e293616e-ec6a-49c2-aa92-f4a8b91c5d16
This commit is contained in:
parent
b012e2a7b0
commit
843c58d4aa
10
www/authors.php
Normal file
10
www/authors.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
require_once 'locale.php';
|
||||
require_once 'cmn_frame.php';
|
||||
|
||||
$title = '<title>UAM Text Tools - '.AUTHORS_TITLE."</title>\n";
|
||||
$context = AUTHORS_CONTENT;
|
||||
|
||||
getMainPage($title, $context);
|
||||
|
||||
?>
|
57
www/cmn_frame.php
Normal file
57
www/cmn_frame.php
Normal file
@ -0,0 +1,57 @@
|
||||
<?php
|
||||
|
||||
require_once 'locale.php';
|
||||
|
||||
function getMainPage($header, $content) {
|
||||
echo "<html><head>\n";
|
||||
echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-2\">\n";
|
||||
echo "<link type='text/css' href='css/utt.css' rel='stylesheet'>\n";
|
||||
echo "<script type=\"text/javascript\" src=\"js/menu.js\"></script>\n";
|
||||
if(isset($header)) {
|
||||
# jesli pominieto znacznik tytulu - dodajemy sami
|
||||
if (stristr($header, '<title>') === false) {
|
||||
echo '<title>'.DEFAULT_PAGE_TITLE."</title>\n";
|
||||
}
|
||||
echo $header;
|
||||
}
|
||||
else {
|
||||
echo '<title>'.DEFAULT_PAGE_TITLE."</title>\n";
|
||||
}
|
||||
echo "</head>\n";
|
||||
echo "<body>\n";
|
||||
echo "<table class=\"page_table\">\n";
|
||||
echo "<tr>\n";
|
||||
echo " <td class=\"page_title\" colspan=\"3\">".PAGE_HEADER."</td>\n";
|
||||
echo "</tr>\n";
|
||||
echo "<tr>\n";
|
||||
echo " <td class=\"page_menu\">\n";
|
||||
echo " <table class=\"main_menu\" align=\"center\" cellspacing=\"1\">\n";
|
||||
$menu = array("index.php" => MENU_MAIN_PAGE,
|
||||
"help.php" => MENU_HELP,
|
||||
"licence.php" => MENU_LICENSE,
|
||||
"authors.php" => MENU_AUTHORS,
|
||||
"down.php" => MENU_DOWNLOADS);
|
||||
|
||||
foreach($menu as $page=>$descr) {
|
||||
echo " <tr>\n";
|
||||
echo " <td class=\"main_menu_cell\"\n";
|
||||
echo " onMouseOver=\"return menu_select_element(this, true);\"\n";
|
||||
echo " onMouseOut=\"return menu_select_element(this, false);\"\n";
|
||||
echo " onClick=\"window.location='".$page."'; return true;\"\n";
|
||||
echo " >\n";
|
||||
echo $descr."\n";
|
||||
echo " </td>\n";
|
||||
echo " </tr>\n";
|
||||
}
|
||||
echo " </table>\n";
|
||||
echo " </td>\n";
|
||||
echo " <td class=\"page_content\">\n";
|
||||
echo $content;
|
||||
echo " </td>\n";
|
||||
echo " <td class=\"page_left_margin\"> </td>\n";
|
||||
echo " </tr>\n";
|
||||
echo "</table>\n";
|
||||
echo "</body></html>\n";
|
||||
}
|
||||
|
||||
?>
|
@ -1,34 +0,0 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>UAM Text Tools</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>UAM Text Tools</h1>
|
||||
|
||||
|
||||
<h3>UTT components</h3>
|
||||
<ul>
|
||||
<li>tok - tokenizer
|
||||
<li>lem - lemmatizer
|
||||
<li>gue - guesser
|
||||
<li>cor - corrector
|
||||
<li>ser - searcher
|
||||
<li>grp - grepper
|
||||
<li>con - concordancer
|
||||
<li>dgp - dependency graph parser
|
||||
<li>kot - rezinekot
|
||||
</ul>
|
||||
|
||||
<h3>Download</h3>
|
||||
<ul>
|
||||
<li>Software
|
||||
<li>Polish dictionary data (PMDB tagset)
|
||||
<li>Portuguese dictionary data (INTEX tagset)
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
Authors: Tomasz Obrêbski, Micha³ Stolarski, Justyna Walkowska
|
||||
|
||||
</body>
|
||||
<html>
|
105
www/css/utt.css
Normal file
105
www/css/utt.css
Normal file
@ -0,0 +1,105 @@
|
||||
BODY {
|
||||
FONT-FAMILY: Verdana, Arial, Helvetica;
|
||||
FONT-SIZE: 13px;
|
||||
background-color: #CCFF99;
|
||||
/*
|
||||
#FFF8DC pomaranczowy
|
||||
#F5F5DC be¿owy
|
||||
#F0F8FF jasnoniebieski
|
||||
|
||||
font-style: italic;
|
||||
font-weight: bold;
|
||||
text-decoration: underline;
|
||||
*/
|
||||
}
|
||||
|
||||
.page_table {
|
||||
width: 100%;
|
||||
border: 0px solid black;
|
||||
margin-top: 30px;
|
||||
}
|
||||
|
||||
.page_title {
|
||||
text-align: center;
|
||||
font-size: 30px;
|
||||
font-weight: bold;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
|
||||
.page_menu {
|
||||
width: 20%;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.main_menu {
|
||||
border: 0 solid black;
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.main_menu_cell {
|
||||
border-width:2px;
|
||||
border-style: outset;
|
||||
/* text-align: center; */
|
||||
/* margin-left: 200px; */
|
||||
padding-left: 10px;
|
||||
font-weight: bold;
|
||||
color: #006600; /*#336600;*/
|
||||
text-decoration: none;
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
.page_content {
|
||||
vertical-align: top;
|
||||
padding: 10px;
|
||||
background-color: #FFFFFF;
|
||||
height: 400px;
|
||||
}
|
||||
|
||||
.page_left_margin {
|
||||
width: 10%;
|
||||
}
|
||||
|
||||
.distribution {
|
||||
/* padding: 30px; */
|
||||
/* margin: 30px; */
|
||||
border-spacing: 10px;
|
||||
}
|
||||
|
||||
.distribution .app, .distribution .dict {
|
||||
border-spacing: 10px;
|
||||
}
|
||||
|
||||
.distribution .product {
|
||||
/* background-color: #CCCC66;*/
|
||||
font-size: larger;
|
||||
text-transform: capitalize;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.distribution .product td {
|
||||
border-bottom: solid 2px #669933;
|
||||
}
|
||||
|
||||
.distribution .dist_type {
|
||||
/* background-color: orange; */
|
||||
font-family: Courier New; /* monospace;*/
|
||||
text-transform: uppercase;
|
||||
font-size: smaller;
|
||||
border-bottom: solid 1px #669933;
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
.distribution .dist_item {
|
||||
font-size: smaller;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.distribution .dist_item img {
|
||||
width: 16px;
|
||||
vertical-align: bottom;
|
||||
}
|
||||
|
||||
.distribution .dist_item a {
|
||||
text-decoration: none;
|
||||
color: blue;
|
||||
}
|
9
www/dbconst.php
Normal file
9
www/dbconst.php
Normal file
@ -0,0 +1,9 @@
|
||||
<?php
|
||||
|
||||
define('DB_HOST', 'mysql.amu.edu.pl');
|
||||
define('DB_NAME', 'utt');
|
||||
define('DB_USER', 'utt');
|
||||
define('DB_PASSWD', 'bazadanych');
|
||||
define('DB_CHARSET', 'utf8');
|
||||
|
||||
?>
|
92
www/down.php
Normal file
92
www/down.php
Normal file
@ -0,0 +1,92 @@
|
||||
<?php
|
||||
require_once 'locale.php';
|
||||
require_once 'cmn_frame.php';
|
||||
|
||||
$archiwa = array('utt' => array(),
|
||||
'utt-dict' => array()
|
||||
);
|
||||
|
||||
$dn = "files/";
|
||||
if ($dh = opendir($dn)) {
|
||||
while (($file = readdir($dh)) !== false) {
|
||||
if(true == is_file($dn.$file)) {
|
||||
if(preg_match('/^utt\-dict\-.+?\.(.+)$/', $file, $dopasowania)) {
|
||||
$arch_type = $dopasowania[1];
|
||||
if(! array_key_exists($arch_type, $archiwa['utt-dict'])) {
|
||||
$archiwa['utt-dict'][$arch_type] = array();
|
||||
}
|
||||
$archiwa['utt-dict'][$arch_type][] = $file;
|
||||
}
|
||||
else if(preg_match('/^utt\-\d.+?\.(.+)$/', $file, $dopasowania)) {
|
||||
$arch_type = $dopasowania[1];
|
||||
if(! array_key_exists($arch_type, $archiwa['utt'])) {
|
||||
$archiwa['utt'][$arch_type] = array();
|
||||
}
|
||||
$archiwa['utt'][$arch_type][] = $file;
|
||||
}
|
||||
} // if is file
|
||||
} // while
|
||||
closedir($dh);
|
||||
} // if opendir
|
||||
//print_r($archiwa);
|
||||
|
||||
$title = '<title>UAM Text Tools - '.DOWNLOAD_SELECTFILE_PAGE_TITLE."</title>\n";
|
||||
|
||||
$content = "<p>".DOWNLOAD_SELECTFILE_CAPTION.":</p>\n";
|
||||
$content .= '<table class="distribution" width="100%">';
|
||||
# aplikacja
|
||||
$content .= '<tr class="product"><td>'.DOWNLOAD_SELECTFILE_APP_CAPTION."</td></tr>\n";
|
||||
$content .= '<tr><td>';
|
||||
if(count(array_keys($archiwa['utt'])) > 0) {
|
||||
$content .= '<table class="app" width="100%">';
|
||||
$content .= "\n";
|
||||
foreach (array_keys($archiwa['utt']) as $dist_type) {
|
||||
$content .= '<tr><td class="dist_type">'.DOWNLOAD_SELECTFILE_DISTRIBUTION_TYPE." $dist_type</td><td> </td></tr>\n";
|
||||
$content .= "<tr><td colspan='2'>\n<table width='100%'>";
|
||||
$arr = $archiwa['utt'][$dist_type];
|
||||
rsort($arr);
|
||||
foreach($arr as $app) {
|
||||
$content .= "<tr>\n<td class=\"dist_item\">\n";
|
||||
$content .= "<a href=\"down_form.php?filename=".$app."\">";
|
||||
$content .= "<img src=\"im/down.jpg\" border=\"0\" />";
|
||||
$content .= $app."</a> (".(filesize($dn.$app)/1024)." KB)\n";
|
||||
$content .= "</td></tr>\n";
|
||||
}
|
||||
$content .= "</table>\n</td></tr>\n";
|
||||
}
|
||||
$content .= "</table>\n";
|
||||
}
|
||||
else {
|
||||
$content .= DOWNLOAD_SELECTFILE_NO_FILE."\n";
|
||||
}
|
||||
|
||||
# slowniki
|
||||
$content .= '<tr class="product"><td>'.DOWNLOAD_SELECTFILE_DICT_CAPTION."</td></tr>\n";
|
||||
$content .= '<tr><td>';
|
||||
if(count(array_keys($archiwa['utt-dict'])) > 0) {
|
||||
$content .= '<table class="dict" width="100%">';
|
||||
$content .= "\n";
|
||||
foreach (array_keys($archiwa['utt-dict']) as $dist_type) {
|
||||
$content .= '<tr><td class="dist_type">'.DOWNLOAD_SELECTFILE_DISTRIBUTION_TYPE." $dist_type</td><td> </td></tr>\n";
|
||||
$content .= "<tr><td colspan='2'>\n<table width='100%'>";
|
||||
$arr = $archiwa['utt-dict'][$dist_type];
|
||||
rsort($arr);
|
||||
foreach($arr as $dict) {
|
||||
$content .= "<tr>\n<td class=\"dist_item\">\n";
|
||||
$content .= "<a href=\"down_form.php?filename=".$dict."\">";
|
||||
$content .= "<img src=\"im/down.jpg\" border=\"0\" />";
|
||||
$content .= $dict."</a> (".(filesize($dn.$dict)/1024)." KB)\n";
|
||||
$content .= "</td></tr>\n";
|
||||
}
|
||||
$content .= "</table>\n</td></tr>\n";
|
||||
}
|
||||
$content .= "</table>\n";
|
||||
}
|
||||
else {
|
||||
$content .= DOWNLOAD_SELECTFILE_NO_FILE."\n";
|
||||
}
|
||||
$content .= '</td></tr></table>';
|
||||
$content .= "\n";
|
||||
|
||||
getMainPage($title, $content);
|
||||
?>
|
24
www/down_form.php
Normal file
24
www/down_form.php
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
require_once 'locale.php';
|
||||
require_once 'cmn_frame.php';
|
||||
|
||||
if(isset($_GET['filename'])) {
|
||||
$title = '<title>UAM Text Tools - '.DOWNLOAD_FORM_PAGE_TITLE."</title>\n";
|
||||
|
||||
$content = "<h3>".DOWNLOAD_FORM_CAPTION."</h3>\n".
|
||||
"<table border='1' align='center'><form action='down_thanks.php' method='post'>\n".
|
||||
"<tr><td>".DOWNLOAD_FORM_FIELD_FIRSTNAME.":</td><td><input type='text' name='_firstname' value=''></td></tr>\n".
|
||||
"<tr><td>".DOWNLOAD_FORM_FIELD_NAME.":</td><td><input type='text' name='_name' value=''></td></tr>\n".
|
||||
"<tr><td>".DOWNLOAD_FORM_FIELD_ORGANIZATION.":</td><td><input type='text' name='_organization' value=''></td></tr>\n".
|
||||
"<tr><td>".DOWNLOAD_FORM_FIELD_COUNTRY.":</td><td><input type='text' name='_country' value=''></td></tr>\n".
|
||||
"<tr><td>".DOWNLOAD_FORM_FIELD_EMAIL.":</td><td><input type='text' name='_email' value=''></td></tr>\n".
|
||||
"<tr><td colspan='2' align=\"center\">\n".
|
||||
"<input type='submit' value='".DOWNLOAD_FORM_FIELD_NEXT." >'></td></tr>\n".
|
||||
"<input type=\"hidden\" name='_filename' value=\"".$_GET['filename']."\">\n".
|
||||
"</form></table>\n";
|
||||
getMainPage($title, $content);
|
||||
}
|
||||
else {
|
||||
header('Location: http://'.$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']).'/down.php');
|
||||
}
|
||||
?>
|
63
www/down_thanks.php
Normal file
63
www/down_thanks.php
Normal file
@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
require_once 'locale.php';
|
||||
require_once 'dbconst.php';
|
||||
require_once 'cmn_frame.php';
|
||||
|
||||
function _wu($text) {
|
||||
return iconv("cp1250", "utf-8", $text);
|
||||
}
|
||||
|
||||
function save_user() {
|
||||
$firstname = isset($_POST['_firstname']) ? _wu($_POST['_firstname']) : 'NULL';
|
||||
$name = isset($_POST['_name']) ? _wu($_POST['_name']) : 'NULL';
|
||||
$organization = isset($_POST['_organization']) ? _wu($_POST['_organization']) : 'NULL';
|
||||
$country = isset($_POST['_country']) ? _wu($_POST['_country']) : 'NULL';
|
||||
$email = isset($_POST['_email']) ? _wu($_POST['_email']) : 'NULL';
|
||||
$ip = $_SERVER['REMOTE_ADDR'];
|
||||
$filename = _wu($_POST['_filename']);
|
||||
$now = date("Y-m-d H:i:s");
|
||||
|
||||
$link = mysql_connect(DB_HOST, DB_USER, DB_PASSWD)
|
||||
or die (DB_ERROR.': '.mysql_error().' ('.mysql_errno().')');
|
||||
|
||||
mysql_select_db (DB_NAME)
|
||||
or die (DB_ERROR.': '.mysql_error().' ('.mysql_errno().')');
|
||||
|
||||
/* Ustawiamy kodowanie */
|
||||
mysql_query("SET NAMES '".DB_CHARSET."'")
|
||||
or die (DB_ERROR.': '.mysql_error().' ('.mysql_errno().')');
|
||||
|
||||
$sql = "INSERT INTO `utt_downloaders`(`firstname`, `name`, ".
|
||||
"`organization`, `country`, `email`, ".
|
||||
"`ip`, `filename`, `date`) ".
|
||||
"VALUES('$firstname', '$name', ".
|
||||
"'$organization', '$country', '$email', ".
|
||||
"'$ip', '$filename', '$now')";
|
||||
//echo "Execute query: $sql<br />\n";
|
||||
mysql_query($sql)
|
||||
or die(DB_ERROR.': '.mysql_error().' ('.mysql_errno().')');
|
||||
|
||||
mysql_close($link);
|
||||
}
|
||||
|
||||
|
||||
// main part
|
||||
// print_r($_SERVER);
|
||||
// print_r($_POST);
|
||||
if(isset($_POST['_filename'])) {
|
||||
save_user();
|
||||
$head = '<title>UAM Text Tools - '.DOWNLOAD_THANKS_PAGE_TITLE."</title>\n";
|
||||
$head .= "<meta HTTP-EQUIV=\"REFRESH\" content=\"5; url=files/".$_POST['_filename']."\">\n";
|
||||
$content = DOWNLOAD_THANKS_CAPTION."<br />\n".
|
||||
"<br />".DOWNLOAD_THANKS_EXTRA_LINK.
|
||||
" <a href=\"files/".$_POST['_filename']."\">".$_POST['_filename']."</a>.<br />\n".
|
||||
"<a href=index.php>".DOWNLOAD_THANKS_MAINPAGE_LINK."</a>\n";
|
||||
|
||||
getMainPage($head, $content);
|
||||
}
|
||||
else {
|
||||
header('Location: http://'.$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']).'/down.php');
|
||||
}
|
||||
|
||||
?>
|
@ -1,34 +0,0 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>UAM Text Tools</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>UAM Text Tools</h1>
|
||||
|
||||
|
||||
<h3>UTT components</h3>
|
||||
<ul>
|
||||
<li>tok - tokenizer
|
||||
<li>lem - lemmatizer
|
||||
<li>gue - guesser
|
||||
<li>cor - corrector
|
||||
<li>ser - searcher
|
||||
<li>grp - grepper
|
||||
<li>con - concordancer
|
||||
<li>dgp - dependency graph parser
|
||||
<li>kot - rezinekot
|
||||
</ul>
|
||||
|
||||
<h3>Download</h3>
|
||||
<ul>
|
||||
<li>Software
|
||||
<li>Polish dictionary data (PMDB tagset)
|
||||
<li>Portuguese dictionary data (INTEX tagset)
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
Authors: Tomasz Obrêbski, Micha³ Stolarski, Justyna Walkowska
|
||||
|
||||
</body>
|
||||
<html>
|
10
www/help.php
Normal file
10
www/help.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
require_once 'locale.php';
|
||||
require_once 'cmn_frame.php';
|
||||
|
||||
$title = '<title>UAM Text Tools - '.HELP_PAGE_TITLE."</title>\n";
|
||||
$context = HELP_PAGE_CONTENT;
|
||||
|
||||
getMainPage($title, $context);
|
||||
|
||||
?>
|
BIN
www/im/down.jpg
Normal file
BIN
www/im/down.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 KiB |
BIN
www/im/uam.jpg
Normal file
BIN
www/im/uam.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.2 KiB |
@ -1,34 +0,0 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>UAM Text Tools</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>UAM Text Tools</h1>
|
||||
|
||||
|
||||
<h3>UTT components</h3>
|
||||
<ul>
|
||||
<li>tok - tokenizer
|
||||
<li>lem - lemmatizer
|
||||
<li>gue - guesser
|
||||
<li>cor - corrector
|
||||
<li>ser - searcher
|
||||
<li>grp - grepper
|
||||
<li>con - concordancer
|
||||
<li>dgp - dependency graph parser
|
||||
<li>kot - rezinekot
|
||||
</ul>
|
||||
|
||||
<h3>Download</h3>
|
||||
<ul>
|
||||
<li>Software
|
||||
<li>Polish dictionary data (PMDB tagset)
|
||||
<li>Portuguese dictionary data (INTEX tagset)
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
Authors: Tomasz Obrêbski, Micha³ Stolarski, Justyna Walkowska
|
||||
|
||||
</body>
|
||||
<html>
|
10
www/index.php
Normal file
10
www/index.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
require_once 'locale.php';
|
||||
require_once 'cmn_frame.php';
|
||||
|
||||
$title = '<title>UAM Text Tools - '.MAIN_PAGE_TITLE."</title>\n";
|
||||
$context = "<p><img src=\"im/uam.jpg\" title=\"God³o UAM\" alt=\"uam logo\" align=\"right\" /></p>\n".MAIN_PAGE_CONTENT;
|
||||
|
||||
getMainPage($title, $context);
|
||||
|
||||
?>
|
13
www/js/menu.js
Normal file
13
www/js/menu.js
Normal file
@ -0,0 +1,13 @@
|
||||
function menu_select_element(el_menu, is_selected) {
|
||||
|
||||
if(is_selected) {
|
||||
el_menu.style.background = '#00FF66';
|
||||
el_menu.style.cursor = 'hand'; // for IE
|
||||
el_menu.style.cursor = 'pointer';
|
||||
}
|
||||
else {
|
||||
el_menu.style.background = '#CCFF99';
|
||||
el_menu.style.cursor = 'default';
|
||||
}
|
||||
return true;
|
||||
}
|
6
www/lang/locale.en
Normal file
6
www/lang/locale.en
Normal file
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
/**
|
||||
* Plik z etykietami po angielsku.
|
||||
*/
|
||||
|
||||
?>
|
83
www/lang/locale.pl
Normal file
83
www/lang/locale.pl
Normal file
@ -0,0 +1,83 @@
|
||||
<?php
|
||||
/**
|
||||
* Plik z etykietami po polsku.
|
||||
*/
|
||||
|
||||
# komunikaty o bledach
|
||||
define('DB_ERROR', 'Błąd bazy danych');
|
||||
|
||||
# elementy wspolne dla stron
|
||||
define('DEFAULT_PAGE_TITLE', 'UAM Text Tools Homepage');
|
||||
define('PAGE_HEADER', 'UAM Text Tools');
|
||||
define('MENU_MAIN_PAGE', 'Strona główna');
|
||||
define('MENU_HELP', 'Pomoc');
|
||||
define('MENU_LICENSE', 'Licencja');
|
||||
define('MENU_AUTHORS', 'O autorach');
|
||||
define('MENU_DOWNLOADS', 'Do pobrania');
|
||||
define('MENU_DOWNLOAD_LINK', 'Pobierz plik');
|
||||
|
||||
# strona glowna
|
||||
define('MAIN_PAGE_TITLE', 'Strona główna');
|
||||
define('MAIN_PAGE_CONTENT', "<p>\n".
|
||||
"Witamy na naszej stronie.\n".
|
||||
"</p>\n".
|
||||
"<p>O stronie<br />\n".
|
||||
"Budowanie stron, ze względu na to, że każda przeglądarka na swój specyficzny sposób reaguje na niektóre polecenia, nie jest wcale proste. Nie wystarczy tylko tworzyć zgodnie ze standardami, ale trzeba także zatroszczyć się o to, żeby w starszych przeglądarkach, ciągle używanych (przede wszystkim Internet Explorer), strona prezentowała się dobrze.</p>\n".
|
||||
"<p>Celem powstania tej strony było zebranie wszystkich aktualnych informacji dotyczących języków HTML, XHTML, CSS oraz DOM w jednym miejscu. Znajdziesz tutaj zarówno informacje typowe, z oficjalnych specyfikacji, ale także, w formie ciekawostki, liczne rozszerzenia przeglądarek.</p>\n".
|
||||
"<p>W chwili obecnej znajdują się tutaj informacje o 119 znacznikach HTML oraz 187 atrybutach stylów. W przyszłości systematycznie będą dodawane polecenia ze specyfikacji XHTML 2.0, Web Applications 1.0 oraz CSS 3.0</p>\n".
|
||||
"<p>Polecane: Profesjonalne tworzenie stron www</p>\n");
|
||||
|
||||
# O autorach
|
||||
define('AUTHORS_TITLE', 'O autorach');
|
||||
define('AUTHORS_CONTENT', "<p>Tu będziemy my!</p>\n");
|
||||
|
||||
# Do pobrania 1/3
|
||||
define('DOWNLOAD_SELECTFILE_PAGE_TITLE', 'Do pobrania 1/3');
|
||||
define('DOWNLOAD_SELECTFILE_CAPTION', 'Dostępne w archiwum pliki');
|
||||
define('DOWNLOAD_SELECTFILE_NO_FILE', '<strong>Błąd!</strong> Nie znaleziono żadnego pliku!');
|
||||
define('DOWNLOAD_SELECTFILE_APP_CAPTION', 'Dostępne wersje narzędzi UTT');
|
||||
define('DOWNLOAD_SELECTFILE_DICT_CAPTION', 'Dostępne wersje słowników');
|
||||
define('DOWNLOAD_SELECTFILE_DISTRIBUTION_TYPE', 'Dystrybucja');
|
||||
|
||||
# Do pobrania 2/3
|
||||
define('DOWNLOAD_FORM_PAGE_TITLE', 'Do pobrania 2/3');
|
||||
define('DOWNLOAD_FORM_CAPTION', 'Przed pobraniem pliku wypełnij poniższy formularz');
|
||||
define('DOWNLOAD_FORM_FIELD_FIRSTNAME', 'Imię');
|
||||
define('DOWNLOAD_FORM_FIELD_NAME', 'Nazwisko');
|
||||
define('DOWNLOAD_FORM_FIELD_ORGANIZATION', 'Organizacja');
|
||||
define('DOWNLOAD_FORM_FIELD_COUNTRY', 'Kraj');
|
||||
define('DOWNLOAD_FORM_FIELD_EMAIL', 'Adres emailowy');
|
||||
define('DOWNLOAD_FORM_FIELD_NEXT', 'Dalej');
|
||||
|
||||
# Do pobrania 3/3
|
||||
define('DOWNLOAD_THANKS_PAGE_TITLE', 'Do pobrania 3/3');
|
||||
define('DOWNLOAD_THANKS_CAPTION', 'Dziękujemy za zainteresowanie narzędziami UTT!');
|
||||
define('DOWNLOAD_THANKS_EXTRA_LINK', 'Jeśli pobieranie pliku nie rozpoczęło się automatycznie, kliknij link');
|
||||
define('DOWNLOAD_THANKS_MAINPAGE_LINK', 'Wróć do Strony głównej');
|
||||
|
||||
# Pomoc
|
||||
define('HELP_PAGE_TITLE', 'Pomoc');
|
||||
define('HELP_PAGE_CONTENT', "<p>\n".
|
||||
"Pomocy!!!
|
||||
</p>
|
||||
<p>O stronie<br />
|
||||
Budowanie stron, ze względu na to, że każda przeglądarka na swój specyficzny sposób reaguje na niektóre polecenia, nie jest wcale proste. Nie wystarczy tylko tworzyć zgodnie ze standardami, ale trzeba także zatroszczyć się o to, żeby w starszych przeglądarkach, ciągle używanych (przede wszystkim Internet Explorer), strona prezentowała się dobrze.</p>
|
||||
<p>Celem powstania tej strony było zebranie wszystkich aktualnych informacji dotyczących języków HTML, XHTML, CSS oraz DOM w jednym miejscu. Znajdziesz tutaj zarówno informacje typowe, z oficjalnych specyfikacji, ale także, w formie ciekawostki, liczne rozszerzenia przeglądarek.</p>
|
||||
<p>W chwili obecnej znajdują się tutaj informacje o 119 znacznikach HTML oraz 187 atrybutach stylów. W przyszłości systematycznie będą dodawane polecenia ze specyfikacji XHTML 2.0, Web Applications 1.0 oraz CSS 3.0</p>
|
||||
<p>Polecane: Profesjonalne tworzenie stron www</p>
|
||||
<p>O stronie<br />
|
||||
Budowanie stron, ze względu na to, że każda przeglądarka na swój specyficzny sposób reaguje na niektóre polecenia, nie jest wcale proste. Nie wystarczy tylko tworzyć zgodnie ze standardami, ale trzeba także zatroszczyć się o to, żeby w starszych przeglądarkach, ciągle używanych (przede wszystkim Internet Explorer), strona prezentowała się dobrze.</p>
|
||||
<p>Celem powstania tej strony było zebranie wszystkich aktualnych informacji dotyczących języków HTML, XHTML, CSS oraz DOM w jednym miejscu. Znajdziesz tutaj zarówno informacje typowe, z oficjalnych specyfikacji, ale także, w formie ciekawostki, liczne rozszerzenia przeglądarek.</p>
|
||||
<p>W chwili obecnej znajdują się tutaj informacje o 119 znacznikach HTML oraz 187 atrybutach stylów. W przyszłości systematycznie będą dodawane polecenia ze specyfikacji XHTML 2.0, Web Applications 1.0 oraz CSS 3.0</p>
|
||||
<p>Polecane: Profesjonalne tworzenie stron www</p>
|
||||
<p>O stronie<br />
|
||||
Budowanie stron, ze względu na to, że każda przeglądarka na swój specyficzny sposób reaguje na niektóre polecenia, nie jest wcale proste. Nie wystarczy tylko tworzyć zgodnie ze standardami, ale trzeba także zatroszczyć się o to, żeby w starszych przeglądarkach, ciągle używanych (przede wszystkim Internet Explorer), strona prezentowała się dobrze.</p>
|
||||
<p>Celem powstania tej strony było zebranie wszystkich aktualnych informacji dotyczących języków HTML, XHTML, CSS oraz DOM w jednym miejscu. Znajdziesz tutaj zarówno informacje typowe, z oficjalnych specyfikacji, ale także, w formie ciekawostki, liczne rozszerzenia przeglądarek.</p>
|
||||
<p>W chwili obecnej znajdują się tutaj informacje o 119 znacznikach HTML oraz 187 atrybutach stylów. W przyszłości systematycznie będą dodawane polecenia ze specyfikacji XHTML 2.0, Web Applications 1.0 oraz CSS 3.0</p>
|
||||
<p>Polecane: Profesjonalne tworzenie stron www</p>\n");
|
||||
|
||||
# Licencja
|
||||
define('LICENSE_PAGE_TITLE', 'Licencja');
|
||||
define('LICENSE_PAGE_CONTENT', "<p>UTeTe jest debeściarskie!</p>\n");
|
||||
|
||||
?>
|
10
www/licence.php
Normal file
10
www/licence.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
require_once 'locale.php';
|
||||
require_once 'cmn_frame.php';
|
||||
|
||||
$title = '<title>UAM Text Tools - '.LICENSE_PAGE_TITLE."</title>\n";
|
||||
$context = LICENSE_PAGE_CONTENT;
|
||||
|
||||
getMainPage($title, $context);
|
||||
|
||||
?>
|
5
www/locale.php
Normal file
5
www/locale.php
Normal file
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
include "lang/locale.pl";
|
||||
// include "lang/locale.en";
|
||||
|
||||
?>
|
34
www/utt.html
34
www/utt.html
@ -1,34 +0,0 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>UAM Text Tools</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>UAM Text Tools</h1>
|
||||
|
||||
|
||||
<h3>UTT components</h3>
|
||||
<ul>
|
||||
<li>tok - tokenizer
|
||||
<li>lem - lemmatizer
|
||||
<li>gue - guesser
|
||||
<li>cor - corrector
|
||||
<li>ser - searcher
|
||||
<li>grp - grepper
|
||||
<li>con - concordancer
|
||||
<li>dgp - dependency graph parser
|
||||
<li>kot - rezinekot
|
||||
</ul>
|
||||
|
||||
<h3>Download</h3>
|
||||
<ul>
|
||||
<li>Software
|
||||
<li>Polish dictionary data (PMDB tagset)
|
||||
<li>Portuguese dictionary data (INTEX tagset)
|
||||
</ul>
|
||||
|
||||
|
||||
|
||||
Authors: Tomasz Obrêbski, Micha³ Stolarski, Justyna Walkowska
|
||||
|
||||
</body>
|
||||
<html>
|
Loading…
Reference in New Issue
Block a user