version 1.44, 2001/08/07 14:31:27
|
version 1.48, 2001/11/29 19:15:37
|
Line 3
|
Line 3
|
<!-- |
<!-- |
The LearningOnline Network |
The LearningOnline Network |
Resource Assembly Tool |
Resource Assembly Tool |
|
// |
|
// $Id$ |
|
// |
|
// Copyright Michigan State University Board of Trustees |
|
// |
|
// This file is part of the LearningOnline Network with CAPA (LON-CAPA). |
|
// |
|
// LON-CAPA is free software; you can redistribute it and/or modify |
|
// it under the terms of the GNU General Public License as published by |
|
// the Free Software Foundation; either version 2 of the License, or |
|
// (at your option) any later version. |
|
// |
|
// LON-CAPA is distributed in the hope that it will be useful, |
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
// GNU General Public License for more details. |
|
// |
|
// You should have received a copy of the GNU General Public License |
|
// along with LON-CAPA; if not, write to the Free Software |
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
// |
|
// /home/httpd/html/adm/gpl.txt |
|
// |
|
// http://www.lon-capa.org/ |
|
// |
YEAR 2000 |
YEAR 2000 |
7/23,7/24,7/26, |
7/23,7/24,7/26, |
8/11,8/14,8/18,8/19,8/20,8/21,8/22,8/25,8/26,8/28,8/30,8/31, |
8/11,8/14,8/18,8/19,8/20,8/21,8/22,8/25,8/26,8/28,8/30,8/31, |
Line 18 March/April 01 Scott Harrison
|
Line 43 March/April 01 Scott Harrison
|
04/30 Scott Harrison |
04/30 Scott Harrison |
05/31 Scott Harrison |
05/31 Scott Harrison |
06/11,06/25,06/27,06/28,06/29,07/04 Gerd Kortemeyer |
06/11,06/25,06/27,06/28,06/29,07/04 Gerd Kortemeyer |
07/24,8/6 Scott Harrison |
07/24,8/6,8/7,10/16 Scott Harrison |
--> |
--> |
|
|
|
|
Line 1638 function idxopen(mode) {
|
Line 1663 function idxopen(mode) {
|
var options="scrollbars=1,resizable=1,menubar=0"; |
var options="scrollbars=1,resizable=1,menubar=0"; |
idxmode=mode; |
idxmode=mode; |
idxflag=1; |
idxflag=1; |
idx=open("/res?launch=1&catalogmode="+mode,"idxout",options); |
idx=open("/res/?launch=1&catalogmode="+mode,"idxout",options); |
idx.focus(); |
idx.focus(); |
} |
} |
|
|
Line 1648 function srchopen(mode) {
|
Line 1673 function srchopen(mode) {
|
var options="scrollbars=1,resizable=1,menubar=0"; |
var options="scrollbars=1,resizable=1,menubar=0"; |
srchmode=mode; |
srchmode=mode; |
srchflag=1; |
srchflag=1; |
srch=open("/adm/searchcat?catalogmode=interactive","srchout",options); |
srch=open("/adm/searchcat?launch=1&catalogmode="+mode,"srchout",options); |
srch.focus(); |
srch.focus(); |
} |
} |
|
|
Line 1662 function search() {
|
Line 1687 function search() {
|
|
|
function srchcheck(mode) { |
function srchcheck(mode) { |
if (!srch || srch.closed || srchmode!=mode) { |
if (!srch || srch.closed || srchmode!=mode) { |
srchopen(); |
srchopen(mode); |
} |
} |
srch.focus(); |
srch.focus(); |
} |
} |
Line 2674 function schedule(action) {
|
Line 2699 function schedule(action) {
|
// ----------------------------------------------------- launch indexer browser |
// ----------------------------------------------------- launch indexer browser |
|
|
function groupsearch() { |
function groupsearch() { |
alert('not yet implemented'); |
srchcheck('groupsearch'); |
} |
} |
|
|
function groupimport() { |
function groupimport() { |