forked from andreask7/lwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
print_text.php
235 lines (209 loc) · 10.2 KB
/
print_text.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<?php
/**************************************************************
"Learning with Texts" (LWT) is free and unencumbered software
released into the PUBLIC DOMAIN.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a
compiled binary, for any purpose, commercial or non-commercial,
and by any means.
In jurisdictions that recognize copyright laws, the author or
authors of this software dedicate any and all copyright
interest in the software to the public domain. We make this
dedication for the benefit of the public at large and to the
detriment of our heirs and successors. We intend this
dedication to be an overt act of relinquishment in perpetuity
of all present and future rights to this software under
copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
For more information, please refer to [http://unlicense.org/].
***************************************************************/
/**************************************************************
Call: print_text.php?text=[textid]&...
... ann=[annotationcode] ... ann. filter
... status=[statuscode] ... status filter
Print a text
***************************************************************/
require_once( 'settings.inc.php' );
require_once( 'connect.inc.php' );
require_once( 'dbutils.inc.php' );
require_once( 'utilities.inc.php' );
function output_text($saveterm,$saverom,$savetrans,$savetags,
$show_rom,$show_trans,$show_tags,$annplcmnt) {
if ($show_tags) {
if ($savetrans == '' && $savetags != '')
$savetrans = '* ' . $savetags;
else
$savetrans = trim($savetrans . ' ' . $savetags);
}
if ($show_rom && $saverom == '') $show_rom = 0;
if ($show_trans && $savetrans == '') $show_trans = 0;
if ($annplcmnt == 1) {
if ($show_rom || $show_trans) {
echo ' ';
if ($show_trans)
echo '<span class="anntrans">' . tohtml($savetrans) . '</span> ';
if ($show_rom && (! $show_trans))
echo '<span class="annrom">' . tohtml($saverom) . '</span> ';
if ($show_rom && $show_trans)
echo '<span class="annrom" dir="ltr">[' . tohtml($saverom) . ']</span> ';
echo ' <span class="annterm">';
}
echo tohtml($saveterm);
if ($show_rom || $show_trans)
echo '</span> ';
} elseif ($annplcmnt == 2) {
if ($show_rom || $show_trans) {
echo ' <ruby><rb><span class="anntermruby">' . tohtml($saveterm) . '</span></rb><rt> ';
if ($show_trans)
echo '<span class="anntransruby">' . tohtml($savetrans) . '</span> ';
if ($show_rom && (! $show_trans))
echo '<span class="annromrubysolo">' . tohtml($saverom) . '</span> ';
if ($show_rom && $show_trans)
echo '<span class="annromruby" dir="ltr">[' . tohtml($saverom) . ']</span> ';
echo '</rt></ruby> ';
} else {
echo tohtml($saveterm);
}
} else /* 0 or other */ {
if ($show_rom || $show_trans)
echo ' <span class="annterm">';
echo tohtml($saveterm);
if ($show_rom || $show_trans) {
echo '</span> ';
if ($show_rom && (! $show_trans))
echo '<span class="annrom">' . tohtml($saverom) . '</span>';
if ($show_rom && $show_trans)
echo '<span class="annrom" dir="ltr">[' . tohtml($saverom) . ']</span> ';
if ($show_trans)
echo '<span class="anntrans">' . tohtml($savetrans) . '</span>';
echo ' ';
}
}
}
$textid = getreq('text')+0;
if($textid==0) {
header("Location: edit_texts.php");
exit();
}
$ann = getreq('ann');
if ($ann == '') $ann = getSetting('currentprintannotation');
if ($ann == '') $ann = 3;
$show_rom = $ann & 2;
$show_trans = $ann & 1;
$show_tags = $ann & 4;
$statusrange = getreq('status');
if($statusrange == '') $statusrange = getSetting('currentprintstatus');
if($statusrange == '') $statusrange = 14;
$annplcmnt = getreq('annplcmnt');
if($annplcmnt == '') $annplcmnt = getSetting('currentprintannotationplacement');
if($annplcmnt == '') $annplcmnt = 0;
$sql = 'select TxLgID, TxTitle, TxSourceURI from ' . $tbpref . 'texts where TxID = ' . $textid;
$res = do_mysqli_query($sql);
$record = mysqli_fetch_assoc($res);
$title = $record['TxTitle'];
$sourceURI = $record['TxSourceURI'];
$langid = $record['TxLgID'];
mysqli_free_result($res);
$sql = 'select LgTextSize, LgRemoveSpaces, LgRightToLeft from ' . $tbpref . 'languages where LgID = ' . $langid;
$res = do_mysqli_query($sql);
$record = mysqli_fetch_assoc($res);
$textsize = $record['LgTextSize'];
$removeSpaces = $record['LgRemoveSpaces'];
$rtlScript = $record['LgRightToLeft'];
mysqli_free_result($res);
saveSetting('currenttext',$textid);
saveSetting('currentprintannotation',$ann);
saveSetting('currentprintstatus',$statusrange);
saveSetting('currentprintannotationplacement',$annplcmnt);
pagestart_nobody('Print');
echo '<div class="noprint">';
echo '<h4>';
echo '<a href="edit_texts.php" target="_top">';
echo_lwt_logo();
echo 'LWT';
echo '</a> | ';
quickMenu();
echo getPreviousAndNextTextLinks($textid, 'print_text.php?text=', FALSE, ' | ');
echo ' | <a href="do_text.php?start=' . $textid . '" target="_top"><img src="icn/book-open-bookmark.png" title="Read" alt="Read" /></a> <a href="do_test.php?text=' . $textid . '" target="_top"><img src="icn/question-balloon.png" title="Test" alt="Test" /></a>' . get_annotation_link($textid) . ' <a target="_top" href="edit_texts.php?chg=' . $textid . '"><img src="icn/document--pencil.png" title="Edit Text" alt="Edit Text" /></a>';
echo '</h4><h3>PRINT ▶ ' . tohtml($title) . (isset($sourceURI) && substr(trim($sourceURI),0,1)!='#' ? ' <a href="' . $sourceURI . '" target="_blank"><img src="'.get_file_path('icn/chain.png').'" title="Text Source" alt="Text Source" /></a>' : '') . '</h3>';
echo "<p id=\"printoptions\">Terms with <b>status(es)</b> <select id=\"status\" onchange=\"{val=document.getElementById('status').options[document.getElementById('status').selectedIndex].value;location.href='print_text.php?text=" . $textid . "&status=' + val;}\">";
echo get_wordstatus_selectoptions($statusrange, true, true, false);
echo "</select> ...<br />will be <b>annotated</b> with ";
echo "<select id=\"ann\" onchange=\"{val=document.getElementById('ann').options[document.getElementById('ann').selectedIndex].value;location.href='print_text.php?text=" . $textid . "&ann=' + val;}\">";
echo "<option value=\"0\"" . get_selected(0,$ann) . ">Nothing</option>";
echo "<option value=\"1\"" . get_selected(1,$ann) . ">Translation</option>";
echo "<option value=\"5\"" . get_selected(5,$ann) . ">Translation & Tags</option>";
echo "<option value=\"2\"" . get_selected(2,$ann) . ">Romanization</option>";
echo "<option value=\"3\"" . get_selected(3,$ann) . ">Romanization & Translation</option>";
echo "<option value=\"7\"" . get_selected(7,$ann) . ">Romanization, Translation & Tags</option>";
echo "</select><select id=\"annplcmnt\" onchange=\"{val=document.getElementById('annplcmnt').options[document.getElementById('annplcmnt').selectedIndex].value;location.href='print_text.php?text=" . $textid . "&annplcmnt=' + val;}\">";
echo "<option value=\"0\"" . get_selected(0,$annplcmnt) . ">behind</option>";
echo "<option value=\"1\"" . get_selected(1,$annplcmnt) . ">in front of</option>";
echo "<option value=\"2\"" . get_selected(2,$annplcmnt) . ">above (ruby)</option>";
echo "</select> the term.<br />";
echo "<input type=\"button\" value=\"Print it!\" onclick=\"window.print();\" /> (only the text below the line)";
if ((get_first_value("select length(TxAnnotatedText) as value from " . $tbpref . "texts where TxID = " . $textid) + 0) > 0) {
echo " | Or <input type=\"button\" value=\"Print/Edit/Delete\" onclick=\"location.href='print_impr_text.php?text=" . $textid . "';\" /> your <b>Improved Annotated Text</b>" . get_annotation_link($textid) . ".";
} else {
echo " | <input type=\"button\" value=\"Create\" onclick=\"location.href='print_impr_text.php?edit=1&text=" . $textid . "';\" /> an <b>Improved Annotated Text</b> [<img src=\"icn/tick.png\" title=\"Annotated Text\" alt=\"Annotated Text\" />].";
}
echo "</p></div> <!-- noprint -->";
echo "<div id=\"print\"" . ($rtlScript ? ' dir="rtl"' : '') . ">";
echo '<p style="font-size:' . $textsize . '%;line-height: 1.35; margin-bottom: 10px; ">' . tohtml($title) . '<br /><br />';
$sql = 'select CASE WHEN Ti2WordCount>0 THEN Ti2WordCount ELSE 1 END as Code, CASE WHEN CHAR_LENGTH(Ti2Text)>0 THEN Ti2Text ELSE WoText END as TiText, Ti2Order, CASE WHEN Ti2WordCount > 0 THEN 0 ELSE 1 END as TiIsNotWord, WoID, WoTranslation, WoRomanization, WoStatus from (' . $tbpref . 'textitems2 left join ' . $tbpref . 'words on (Ti2WoID = WoID) and (Ti2LgID = WoLgID)) where Ti2TxID = ' . $textid . ' order by Ti2Order asc, Ti2WordCount desc';
$saveterm = '';
$savetrans = '';
$saverom = '';
$savetags = '';
$until = 0;
$res = do_mysqli_query($sql);
while ($record = mysqli_fetch_assoc($res)) {
$actcode = $record['Code'] + 0;
$order = $record['Ti2Order'] + 0;
if ( $order <= $until ) {
continue;
}
if ( $order > $until ) {
output_text($saveterm,$saverom,$savetrans,$savetags,
$show_rom,$show_trans,$show_tags,$annplcmnt);
$saveterm = '';
$savetrans = '';
$saverom = '';
$savetags = '';
$until = $order;
}
if ($record['TiIsNotWord'] != 0) {
echo str_replace(
"¶",
'</p><p style="font-size:' . $textsize . '%;line-height: 1.3; margin-bottom: 10px;">',
tohtml($record['TiText']));
}
else {
$until = $order + 2 * ($actcode-1);
$saveterm = $record['TiText'];
$savetrans = '';
$savetags = '';
$saverom = '';
if(isset($record['WoID'])) {
if (checkStatusRange($record['WoStatus']+0, $statusrange)) {
$savetrans = $record['WoTranslation'];
$savetags = getWordTagList($record['WoID'],'',1,0);
if ($savetrans == '*') $savetrans = '';
$saverom = trim($record['WoRomanization']);
}
}
}
} // while
mysqli_free_result($res);
output_text($saveterm,$saverom,$savetrans,$savetags,
$show_rom,$show_trans,$show_tags,$annplcmnt);
echo "</p></div>";
pageend();
?>