blob: bbbfffdc930907d055d9dc16fa81a85e7f226613 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<& /Elements/Header, Title => 'Schedule' &>
%#init_overlib.html
%foreach my $file (@files) {
<SCRIPT TYPE="text/javascript" SRC="<%$fsurl%>elements/<%$file%>.js"></SCRIPT>
%}
<& /Search/Calendar.html,
@_,
Embed => 'Schedule.html',
DayDisplay => 'Schedule',
DayDisplayArgs => [ username => $ARGS{username} ],
&>
<%init>
my @files = ();
#if ( ! $initialized ) {
push @files, map "overlibmws$_", ( '', qw( _iframe _draggable _crossframe ) );
push @files, map { "${_}contentmws" } qw( iframe ajax );
#%}
</%init>
|