1
|
<html>
|
2
|
<head>
|
3
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
4
|
<title>Cuneiform Circle - about us</title>
|
5
|
<LINK REL=StyleSheet HREF="/utf/obtc1.css" TYPE="text/css" MEDIA="screen, print">
|
6
|
</head>
|
7
|
<body>
|
8
|
<H3 align=center>What is Cuneiform Circle and how to be a member</H3>
|
9
|
<p class=span01>Cuneiform Circle is a circle of scientists engaged in the Old Babylonian
|
10
|
Akkadian Language. The main current aim is building the Old Babylonian Text Corpus, the Old
|
11
|
Babylonian Dictionary and the List of Old Babylonian Cuneiform Signs. <br>As we started already in 1988-89 some parts of the job are
|
12
|
already realized and we are eagerly working on other parts. We are still very unsatisfied with
|
13
|
the progress and quality of our work and hope we can improve it.<br><br>
|
14
|
</p>
|
15
|
<p class=span01>Old Babylonian Text Corpus (OBTC) on the web is an idea
|
16
|
arose already in 1995, when I was a member of the Institute of Ancient Near Eastern Studies
|
17
|
at the Charles University Faculty of Arts - Prague (until 1998). Mainly the technical
|
18
|
obstacles didn't enabled us to realize it. </P>
|
19
|
<P>Anyway there was some strenge feeling, there should be a way out, some solution.
|
20
|
Some years later I found it. This important step was enabled by learning the SQL.</P>
|
21
|
|
22
|
<?
|
23
|
$status = true;
|
24
|
echo ("<FONT FACE='Arial Unicode MS, Code2000, Titus Cyberbit Basic' SIZE=3>");
|
25
|
@$connection = Pg_Connect ("user=dbowner dbname=klinopis");
|
26
|
if (!$connection)
|
27
|
{
|
28
|
echo "There are probably too many querries, please try again later!";
|
29
|
}
|
30
|
else
|
31
|
{
|
32
|
if (@$result = @Pg_Exec (
|
33
|
"SELECT * FROM c_autor"))
|
34
|
{
|
35
|
if (($pocethesel = @Pg_NumRows ($result)) > 0)
|
36
|
{
|
37
|
?>
|
38
|
<P class=vstup>Cuneiform circle is assotiation of friends of Cuneiform studies with
|
39
|
the main focus in mind - the building of Old Babylonian Text Corpus and related matter (mainly dictionary, sign list etc.).</p>
|
40
|
|
41
|
<P class=vstup>Cuneiform circle does have an editorial board which manage the building
|
42
|
of Old Babylonian Text Corpus.</p>
|
43
|
|
44
|
<P class=vstup>Everybode who has a serious interest to enter our assotiation is welcome.</p>
|
45
|
<h4>First condition</h4>
|
46
|
<P class=vstup>We suppose a future member does have a certain knowledge degree of Old Babylonian
|
47
|
Akkadian, i.e. min. M.A. in the field of Assyriology is highly recommend but in some cases not
|
48
|
indispensable.</p>
|
49
|
|
50
|
<h4>Second condition</h4>
|
51
|
<P class=vstup>To achieve growing range of texts we decide that the full access will be given to the members, who submitted
|
52
|
transliteration of Old Babylonian texts which are not yet in the corpus in the scope of Frankena's AbB 3, i.e min. 2500 lines.</p>
|
53
|
|
54
|
<h4>Third condition</h4>
|
55
|
<P class=vstup>The future member agrees that every other member can use his transliteration of Old
|
56
|
Babylonian texts without any other permission and that the editorial board can improve it mainly to unify the way how
|
57
|
the texts are translitered.</P>
|
58
|
|
59
|
|
60
|
<P class=vstup>Present goals of OBTC (07/2002):</P>
|
61
|
<UL>
|
62
|
<LI> bring united transliteratation of OB texts to enable search of various items</LI>
|
63
|
<LI> to prepare an Old Babylonian Dictionary on this textual basis</LI>
|
64
|
<LI> to prepare a commented list of personal names</LI>
|
65
|
<LI> to prepare a commented list of professional names</LI>
|
66
|
<LI> to prepare a commented list of toponyms</LI>
|
67
|
</UL>
|
68
|
<?
|
69
|
echo ("Currently there are $pocethesel members of the Cuneiform Circle: <BR><BR>");
|
70
|
echo "<table border=1 bgcolor=\"#ecece6\" cellspacing=0 cellpadding=3>";
|
71
|
echo "<tr><em><td><FONT color=#8080ff face=Verdana size=4><small></small></FONT></td></em><td><FONT color=#8080ff face=Verdana size=3>author's first name and surname</FONT></td></tr>";
|
72
|
for ($i = 0; $i < $pocethesel; $i++)
|
73
|
{
|
74
|
List ($kod, $autor) = Pg_Fetch_Row ($result, $i);
|
75
|
echo "<tr><td>$kod</td><td><FONT FACE=\"Arial Unicode MS, Code2000, Titus Cyberbit Basic\">$autor</FONT></td></tr>";
|
76
|
}
|
77
|
echo "</table>";
|
78
|
}
|
79
|
else
|
80
|
echo "nothing found!";
|
81
|
}
|
82
|
Pg_Close($connection);
|
83
|
}
|
84
|
?>
|
85
|
</FONT>
|
86
|
</body>
|
87
|
</html>
|