- convert to unix line endings

This commit is contained in:
steinm 2011-04-09 11:34:30 +00:00
parent 02dc5e7215
commit 720d5532a8

View File

@ -1,37 +1,37 @@
<?php <?php
// MyDMS. Document Management System // MyDMS. Document Management System
// Copyright (C) 2002-2005 Markus Westphal // Copyright (C) 2002-2005 Markus Westphal
// Copyright (C) 2006-2008 Malcolm Cowe // Copyright (C) 2006-2008 Malcolm Cowe
// Copyright (C) 2010 Matteo Lucarelli // Copyright (C) 2010 Matteo Lucarelli
// Copyright (C) 2011 Uwe Steinmann // Copyright (C) 2011 Uwe Steinmann
// //
// This program is free software; you can redistribute it and/or modify // This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by // it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or // the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version. // (at your option) any later version.
// //
// This program is distributed in the hope that it will be useful, // This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of // but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details. // GNU General Public License for more details.
// //
// You should have received a copy of the GNU General Public License // You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software // along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
include("../inc/inc.Settings.php"); include("../inc/inc.Settings.php");
include("../inc/inc.DBInit.php"); include("../inc/inc.DBInit.php");
include("../inc/inc.Language.php"); include("../inc/inc.Language.php");
include("../inc/inc.ClassUI.php"); include("../inc/inc.ClassUI.php");
include("../inc/inc.Authentication.php"); include("../inc/inc.Authentication.php");
$allusers = $dms->getAllUsers(); $allusers = $dms->getAllUsers();
$userids = array($user->getID()); $userids = array($user->getID());
foreach($allusers as $u) { foreach($allusers as $u) {
if($u->isAdmin()) if($u->isAdmin())
$userids[] = $u->getId(); $userids[] = $u->getId();
} }
$categories = $dms->getAllKeywordCategories($userids); $categories = $dms->getAllKeywordCategories($userids);
if($_GET['target']) { if($_GET['target']) {
$target = $_GET['target']; $target = $_GET['target'];
@ -39,190 +39,190 @@ if($_GET['target']) {
$target = 'form1'; $target = 'form1';
} }
UI::htmlStartPage(getMLText("use_default_keywords")); UI::htmlStartPage(getMLText("use_default_keywords"));
?> ?>
<script language="JavaScript"> <script language="JavaScript">
var targetObj = opener.document.<?= $target ?>; var targetObj = opener.document.<?= $target ?>;
var myTA; var myTA;
function insertKeywords(keywords) { function insertKeywords(keywords) {
if (navigator.appName == "Microsoft Internet Explorer") { if (navigator.appName == "Microsoft Internet Explorer") {
myTA.value += " " + keywords; myTA.value += " " + keywords;
} }
//assuming Mozilla //assuming Mozilla
else { else {
selStart = myTA.selectionStart; selStart = myTA.selectionStart;
myTA.value = myTA.value.substring(0,myTA.selectionStart) + " " myTA.value = myTA.value.substring(0,myTA.selectionStart) + " "
+ keywords + keywords
+ myTA.value.substring(myTA.selectionStart,myTA.value.length); + myTA.value.substring(myTA.selectionStart,myTA.value.length);
myTA.selectionStart = selStart + keywords.length+1; myTA.selectionStart = selStart + keywords.length+1;
myTA.selectionEnd = selStart + keywords.length+1; myTA.selectionEnd = selStart + keywords.length+1;
} }
myTA.focus(); myTA.focus();
} }
function cancel() { function cancel() {
window.close(); window.close();
return true; return true;
} }
function acceptKeywords() { function acceptKeywords() {
targetObj.value = myTA.value; targetObj.value = myTA.value;
window.close(); window.close();
return true; return true;
} }
obj = new Array(); obj = new Array();
obj[0] = -1; obj[0] = -1;
obj[1] = -1; obj[1] = -1;
function showKeywords(which) { function showKeywords(which) {
if (obj[which] != -1) if (obj[which] != -1)
obj[which].style.display = "none"; obj[which].style.display = "none";
list = document.getElementById("categories" + which); list = document.getElementById("categories" + which);
id = list.options[list.selectedIndex].value; id = list.options[list.selectedIndex].value;
if (id == -1) if (id == -1)
return; return;
obj[which] = document.getElementById("keywords" + id); obj[which] = document.getElementById("keywords" + id);
obj[which].style.display = ""; obj[which].style.display = "";
} }
</script> </script>
<div> <div>
<?php <?php
UI::contentHeading(getMLText("use_default_keywords")); UI::contentHeading(getMLText("use_default_keywords"));
UI::contentContainerStart(); UI::contentContainerStart();
?> ?>
<table> <table>
<tr> <tr>
<td valign="top" class="inputDescription"><?php echo getMLText("keywords")?>:</td> <td valign="top" class="inputDescription"><?php echo getMLText("keywords")?>:</td>
<td><textarea id="keywordta" rows="5" cols="30"></textarea></td> <td><textarea id="keywordta" rows="5" cols="30"></textarea></td>
</tr> </tr>
<tr> <tr>
<td colspan="2"><hr></td> <td colspan="2"><hr></td>
</tr> </tr>
<tr> <tr>
<td class="inputDescription"><?php echo getMLText("global_default_keywords")?>:</td> <td class="inputDescription"><?php echo getMLText("global_default_keywords")?>:</td>
<td> <td>
<select onchange="showKeywords(0)" id="categories0"> <select onchange="showKeywords(0)" id="categories0">
<option value="-1"><?php echo getMLText("choose_category")?> <option value="-1"><?php echo getMLText("choose_category")?>
<?php <?php
foreach ($categories as $category) { foreach ($categories as $category) {
$owner = $category->getOwner(); $owner = $category->getOwner();
if (!$owner->isAdmin()) if (!$owner->isAdmin())
continue; continue;
print "<option value=\"".$category->getID()."\">" . $category->getName(); print "<option value=\"".$category->getID()."\">" . $category->getName();
} }
?> ?>
</select> </select>
</td> </td>
</tr> </tr>
<?php <?php
foreach ($categories as $category) { foreach ($categories as $category) {
$owner = $category->getOwner(); $owner = $category->getOwner();
if (!$owner->isAdmin()) if (!$owner->isAdmin())
continue; continue;
?> ?>
<tr id="keywords<?php echo $category->getID()?>" style="display : none;"> <tr id="keywords<?php echo $category->getID()?>" style="display : none;">
<td valign="top" class="inputDescription"><?php echo getMLText("default_keywords")?>:</td> <td valign="top" class="inputDescription"><?php echo getMLText("default_keywords")?>:</td>
<td> <td>
<?php <?php
$lists = $category->getKeywordLists(); $lists = $category->getKeywordLists();
if (count($lists) == 0) print getMLText("no_default_keywords"); if (count($lists) == 0) print getMLText("no_default_keywords");
else { else {
print "<ul>"; print "<ul>";
foreach ($lists as $list) { foreach ($lists as $list) {
print "<li><a href='javascript:insertKeywords(\"$list[keywords]\");'>$list[keywords]</a></li>"; print "<li><a href='javascript:insertKeywords(\"$list[keywords]\");'>$list[keywords]</a></li>";
} }
print "</ul>"; print "</ul>";
} }
?> ?>
</td> </td>
</tr> </tr>
<?php } ?> <?php } ?>
<tr> <tr>
<td colspan="2"><hr></td> <td colspan="2"><hr></td>
</tr> </tr>
<tr> <tr>
<td class="inputDescription"><?php echo getMLText("personal_default_keywords")?>:</td> <td class="inputDescription"><?php echo getMLText("personal_default_keywords")?>:</td>
<td> <td>
<select onchange="showKeywords(1)" id="categories1"> <select onchange="showKeywords(1)" id="categories1">
<option value="-1"><?php echo getMLText("choose_category")?> <option value="-1"><?php echo getMLText("choose_category")?>
<?php <?php
foreach ($categories as $category) { foreach ($categories as $category) {
$owner = $category->getOwner(); $owner = $category->getOwner();
if ($owner->isAdmin()) if ($owner->isAdmin())
continue; continue;
print "<option value=\"".$category->getID()."\">" . $category->getName(); print "<option value=\"".$category->getID()."\">" . $category->getName();
} }
?> ?>
</select> </select>
</td> </td>
</tr> </tr>
<?php <?php
foreach ($categories as $category) { foreach ($categories as $category) {
$owner = $category->getOwner(); $owner = $category->getOwner();
if ($owner->isAdmin()) if ($owner->isAdmin())
continue; continue;
?> ?>
<tr id="keywords<?php echo $category->getID()?>" style="display : none;"> <tr id="keywords<?php echo $category->getID()?>" style="display : none;">
<td valign="top" class="inputDescription"><?php echo getMLText("default_keywords")?>:</td> <td valign="top" class="inputDescription"><?php echo getMLText("default_keywords")?>:</td>
<td class="standardText"> <td class="standardText">
<?php <?php
$lists = $category->getKeywordLists(); $lists = $category->getKeywordLists();
if (count($lists) == 0) print getMLText("no_default_keywords"); if (count($lists) == 0) print getMLText("no_default_keywords");
else { else {
print "<ul>"; print "<ul>";
foreach ($lists as $list) { foreach ($lists as $list) {
print "<li><a href='javascript:insertKeywords(\"$list[keywords]\");'>$list[keywords]</a></li>"; print "<li><a href='javascript:insertKeywords(\"$list[keywords]\");'>$list[keywords]</a></li>";
} }
print "</ul>"; print "</ul>";
} }
?> ?>
</td> </td>
</tr> </tr>
<?php } ?> <?php } ?>
<tr> <tr>
<td colspan="2"><hr></td> <td colspan="2"><hr></td>
</tr> </tr>
<tr> <tr>
<td colspan="2"> <td colspan="2">
<br> <br>
<input type="Button" onclick="acceptKeywords();" value="<?php echo getMLText("accept")?>"> &nbsp;&nbsp; <input type="Button" onclick="acceptKeywords();" value="<?php echo getMLText("accept")?>"> &nbsp;&nbsp;
<input type="Button" onclick="cancel();" value="<?php echo getMLText("cancel")?>"> <input type="Button" onclick="cancel();" value="<?php echo getMLText("cancel")?>">
</td> </td>
</tr> </tr>
</table> </table>
<?php <?php
UI::contentContainerEnd(); UI::contentContainerEnd();
UI::htmlEndPage(); UI::htmlEndPage();
?> ?>
</div> </div>
<script language="JavaScript"> <script language="JavaScript">
myTA = document.getElementById("keywordta"); myTA = document.getElementById("keywordta");
myTA.value = targetObj.value; myTA.value = targetObj.value;
myTA.focus(); myTA.focus();
</script> </script>
</body> </body>
</html> </html>