1
|
<html>
|
2
|
<head>
|
3
|
<META http-equiv=Content-Type content="text/html; charset=utf-8">
|
4
|
<title>View the rules for transliteration</title>
|
5
|
<LINK REL=StyleSheet HREF="/utf/obtc1.css" TYPE="text/css" MEDIA="screen, print">
|
6
|
</head>
|
7
|
<BODY>
|
8
|
<H3 align=center>Rules for transliteration valid in OBTC</H3>
|
9
|
<?
|
10
|
@$spojeni = Pg_Connect ("user=dbowner dbname=klinopis");
|
11
|
if (! $spojeni)
|
12
|
{
|
13
|
echo ("It was imposible to connect to the database, try again later, the server is maybe down!<BR>\n");
|
14
|
exit;
|
15
|
}
|
16
|
?>
|
17
|
<H4 align=center>General remarks</H4>
|
18
|
<P align = justify class=SPAN3>The transliteration used in OBTC differs from the tranliterations used in editio princeps.
|
19
|
<UL><LI>Above all there is a use of special marks to identify personal names, professional names and toponyma.
|
20
|
<LI>Other difference can be found by the logograms which are every time given in the capitals and never together with their possible Old Babylonian
|
21
|
Akkadian reading.
|
22
|
<LI>The determinatives are every time written by the capitals and also never together with their possible Old Babylonian Akkadian reading. They are connected to the chain, to which they refer, by colons.
|
23
|
<LI>The transliteration of personal names, professional names, toponyma and other text may significantly differ from the one in editio princeps.<br>
|
24
|
<LI>It was impossible to collate any text, we are trying to check the hand copies. If you do have some better hand copies or even photos, please, don't hesitate and send a copy of it to us. Of course we are responsible for all errors which can arise in the transliteration given in OBTC, please check the editio princeps any time when you would like to quote a part of the text.
|
25
|
</UL></P>
|
26
|
<H4 align=center>Particular transliteration rules to achieve united transliteration</H4>
|
27
|
<form action="/utf/autor/transrules/transrules1.php">
|
28
|
<center><input type=submit value="input new item - authorization needed"></center>
|
29
|
</form>
|
30
|
<table border=1>
|
31
|
<tr bgcolor=#808080>
|
32
|
<td><center><b> <FONT color=white face=Verdana size=1>transliteration in editio princeps </font></font></b></center></td>
|
33
|
<td><center><b> <FONT color=white face=Verdana size=1>transliteration in OBTC</font></b></center></td>
|
34
|
<td><center><b> <FONT color=white face=Verdana size=1>notes </font></b></center></td>
|
35
|
<td><center><b> <FONT color=white face=Verdana size=1>date </font></b></center></td>
|
36
|
<td><center><b> <FONT color=white face=Verdana size=1>author </font></b></center></td>
|
37
|
</tr>
|
38
|
<?
|
39
|
@$msg = Pg_Exec ($spojeni, "SELECT bad, good, notes, datum, autor, OID FROM transrules ORDER BY bad, datum");
|
40
|
Pg_Close ($spojeni);
|
41
|
|
42
|
for ($i = 0; $i < Pg_NumRows ($msg); $i++)
|
43
|
{
|
44
|
List ($bad, $good, $notes, $datum, $autor, $OID) = Pg_Fetch_Row ($msg, $i);
|
45
|
echo ("<tr><td class=td3> $bad </td>".
|
46
|
"<td class=td3> $good </td>".
|
47
|
"<td class=td3> $notes </td>".
|
48
|
"<td class=td3> <small>$datum </small> </td>".
|
49
|
"<td class=td3> <small>$autor</small> </td>".
|
50
|
"<td> <small><a href=\"/utf/autor/transrules/rulesedit1.php?OID=$OID\">edit</a> </small> ".
|
51
|
"</tr>\n");
|
52
|
}
|
53
|
?>
|
54
|
</table>
|
55
|
</body>
|
56
|
</html>
|