blob: 0f8896c87b01925a551b2487c9136812c6ee396c (
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',
Display => 'Schedule',
DisplayArgs => [ username => $ARGS{username} ],
&>
<%init>
my @files = ();
#if ( ! $initialized ) {
push @files, map "overlibmws$_", ( '', qw( _iframe _draggable _crossframe ) );
push @files, map { "${_}contentmws" } qw( iframe ajax );
#%}
</%init>
|