[LON-CAPA-cvs] cvs: loncom /interface lonwishlist.pm
raeburn
raeburn at source.lon-capa.org
Mon May 14 12:39:42 EDT 2012
raeburn Mon May 14 16:39:42 2012 EDT
Modified files:
/loncom/interface lonwishlist.pm
Log:
- xhtml.
-------------- next part --------------
Index: loncom/interface/lonwishlist.pm
diff -u loncom/interface/lonwishlist.pm:1.10 loncom/interface/lonwishlist.pm:1.11
--- loncom/interface/lonwishlist.pm:1.10 Tue Feb 15 14:54:51 2011
+++ loncom/interface/lonwishlist.pm Mon May 14 16:39:41 2012
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Utility-routines for wishlist
#
-# $Id: lonwishlist.pm,v 1.10 2011/02/15 14:54:51 wenzelju Exp $
+# $Id: lonwishlist.pm,v 1.11 2012/05/14 16:39:41 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -1103,7 +1103,7 @@
# checkboxes
$wishlistHTMLview .= '<td><input type="checkbox" name="mark" id="check'.$index.'" value="'.$index.'" '.
- 'onclick="selectAction('."'row".$index."'".')"/></td>';
+ 'onclick="selectAction('."'row".$index."'".')" /></td>';
# entry is a folder
if ($n->value()->path() eq '') {
@@ -1171,7 +1171,7 @@
# checkboxes
$wishlistHTMLedit .= '<td><input type="checkbox" name="mark" id="check'.$index.'" value="'.$index.'" '.
- 'onclick="selectAction('."'row".$index."'".')"/></td>';
+ 'onclick="selectAction('."'row".$index."'".')" /></td>';
# option-tags for sorting entries. we need the numbers from 1 to n with n being the number of entries on the same level as the current entry.
# set the number for the current entry into brackets
@@ -1194,7 +1194,7 @@
'<a href="javascript:;" onclick="folderAction('."'row".$index."'".')" style="vertical-align:top" >'.
'<img src="/adm/lonIcons/arrow.closed.gif" id="img'.$index.'" alt = "" class="LC_icon"/>'.
'<img src="/adm/lonIcons/navmap.folder.closed.gif" id="imgFolder'.$index.'" alt="folder"/></a>'.
- '<input type="text" name="newtitle" value="'.$n->value()->title().'" alt = "'.$n->value()->title().'"/>'.
+ '<input type="text" name="newtitle" value="'.$n->value()->title().'" alt = "'.$n->value()->title().'" />'.
'</td><td></td>';
}
@@ -1204,8 +1204,8 @@
$options.'</select></td>'.
'<td id="padd'.$index.'" style="padding-left:'.(($indent-$indentConst)<=0?$indentConst:$indent).'px;">'.
'<img src="/res/adm/pages/wishlist-link.png" id="img'.$index.'" alt="link"/>'.
- '<input type="text" name="newtitle" value="'.$n->value()->title().'" alt = "'.$n->value()->title().'"/></td>'.
- '<td><input type="text" name="newpath" value="'.$n->value()->path().'" alt = "'.$n->value()->path().'"/></td>';
+ '<input type="text" name="newtitle" value="'.$n->value()->title().'" alt = "'.$n->value()->title().'" /></td>'.
+ '<td><input type="text" name="newpath" value="'.$n->value()->path().'" alt = "'.$n->value()->path().'" /></td>';
}
# note-icon, different icons for an entries with note and those without
@@ -1348,10 +1348,10 @@
# checkboxes
$wishlistHTMLimport .= '<td>'.
'<input type="checkbox" name="check" id="check'.$index.'" value="'.$index.'" '.
- 'onclick="selectAction('."'row".$index."'".')"/>'.
- '<input type="hidden" name="title'.$index.'" value="'.&escape($n->value()->title()).'">'.
- '<input type="hidden" name="filelink'.$index.'" value="'.&escape($n->value()->path()).'">'.
- '<input type="hidden" name="id'.$index.'">'.
+ 'onclick="selectAction('."'row".$index."'".')" />'.
+ '<input type="hidden" name="title'.$index.'" value="'.&escape($n->value()->title()).'" />'.
+ '<input type="hidden" name="filelink'.$index.'" value="'.&escape($n->value()->path()).'" />'.
+ '<input type="hidden" name="id'.$index.'" />'.
'</td>';
# entry is a folder
@@ -1497,7 +1497,7 @@
# start form
my $inner .= '<form name="list" action ="/adm/wishlist" method="post">'.
- '<input type="hidden" id="action" name="action" value=""/>';
+ '<input type="hidden" id="action" name="action" value="" />';
# only display subbox in view- or edit-mode
if ($mode eq 'view' || $mode eq 'edit') {
@@ -1534,20 +1534,20 @@
}
if ($markStr) {
$markStr = substr($markStr, 0, length($markStr)-1);
- $inner .= '<input type="hidden" value="'.$markStr.'" name="markedToMove"/>';
+ $inner .= '<input type="hidden" value="'.$markStr.'" name="markedToMove" />';
$inner .= '<p><span class="LC_info">'.&mt('You have selected the red marked entries to be moved to another folder. '.
'Now choose the new destination folder.').'</span></p>';
&wishlistMove(\@childrenRt, $marked);
$inner .= '<table class="LC_data_table LC_tableOfContent">'.$wishlistHTMLmove.'</table><br/><br/>';
- $inner .= '<input type="button" value="'.&mt('Move').'" onclick="setFormAction('."'move','view'".');"/>'.
- '<input type="button" value="'.&mt('Cancel').'" onclick="go('."'/adm/wishlist'".')"/>';
+ $inner .= '<input type="button" value="'.&mt('Move').'" onclick="setFormAction('."'move','view'".');" />'.
+ '<input type="button" value="'.&mt('Cancel').'" onclick="go('."'/adm/wishlist'".')" />';
$wishlistHTMLmove ='<tr id="root" class="LC_odd_row"><td><input type="radio" name="mark" id="radioRoot" value="root" /></td>'.
'<td>'.&mt('Top level').'</td><td></td></tr>';
}
else {
$inner .= '<p><span class="LC_info">'.&mt("You haven't marked any entry to move.").'</span></p>'.
- '<input type="button" value="'.&mt('Back').'" onclick="go('."'/adm/wishlist'".')"/>';
+ '<input type="button" value="'.&mt('Back').'" onclick="go('."'/adm/wishlist'".')" />';
}
}
@@ -1631,9 +1631,9 @@
my $popUp = $startPageWishlistlink.
$inPageWishlistlink1.
- '<input type="text" name="title" size="45" value=""/>'.
+ '<input type="text" name="title" size="45" value="" />'.
$inPageWishlistlink2.
- '<input type="text" name="path" size="45" value=""/>'.
+ '<input type="text" name="path" size="45" value="" />'.
$inPageWishlistlink3;
# JavaScript-function to set title and path of ressource automatically
@@ -1804,12 +1804,12 @@
$fnum = (keys %wishlist)-1;
}
- $inner .= '<form method="post" name="groupsort">'.
- '<input type="hidden" value="'.$fnum.'" name="fnum">'.
- '<input type="button" onclick="javascript:checkAll()" id="checkallbutton" value="'.&mt('Check All').'">'.
- '<input type="button" onclick="javascript:uncheckAll()" id="uncheckallbutton" value="'.&mt('Uncheck All').'">'.
- '<input type="button" value="'.&mt('Import Checked').'" onclick="finish_import();">'.
- '<input type="button" value="'.&mt('Cancel').'" onclick="window.close();"><br/><br/>';
+ $inner .= '<form method="post" name="groupsort" action="">'.
+ '<input type="hidden" value="'.$fnum.'" name="fnum" />'.
+ '<input type="button" onclick="javascript:checkAll()" id="checkallbutton" value="'.&mt('Check All').'" />'.
+ '<input type="button" onclick="javascript:uncheckAll()" id="uncheckallbutton" value="'.&mt('Uncheck All').'" />'.
+ '<input type="button" value="'.&mt('Import Checked').'" onclick="finish_import();" />'.
+ '<input type="button" value="'.&mt('Cancel').'" onclick="window.close();" /><br/><br/>';
# wishlist-table
More information about the LON-CAPA-cvs
mailing list