Files
mip/Application/application/shared_components/user_interface/templates/calendar/calendar.sql
hardya 1eb479546b Initial import
git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@2914 248e525c-4dfb-0310-94bc-949c084e9493
2007-11-29 17:41:32 +00:00

84 lines
3.7 KiB
SQL

--application/shared_components/user_interface/templates/calendar/calendar
prompt ......template 24750440422526800
begin
begin
wwv_flow_api.create_calendar_template(
p_id=> 24750440422526800 + wwv_flow_api.g_id_offset,
p_flow_id=> wwv_flow.g_flow_id,
p_cal_template_name=>'Calendar',
p_translate_this_template=> 'Y',
p_day_of_week_format=> '<th class="t4DayOfWeek">#IDAY#</th>',
p_month_title_format=> '<table cellspacing="0" cellpadding="0" border="0" summary="" class="t4CalendarHolder"> '||chr(10)||
' <tr>'||chr(10)||
' <td class="t4MonthTitle">#IMONTH# #YYYY#</td>'||chr(10)||
' </tr>'||chr(10)||
' <tr>'||chr(10)||
' <td>',
p_month_open_format=> '<table border="0" cellpadding="0" cellspacing="0" summary="0" class="t4Calendar">',
p_month_close_format=> '</table></td>'||chr(10)||
'</tr>'||chr(10)||
'</table>'||chr(10)||
'',
p_day_title_format=> '<div class="t4DayTitle">#DD#</div>',
p_day_open_format=> '<td class="t4Day" valign="top">',
p_day_close_format=> '</td>',
p_today_open_format=> '<td valign="top" class="t4Today">',
p_weekend_title_format=> '<div class="t4WeekendDayTitle">#DD#</div>',
p_weekend_open_format => '<td valign="top" class="t4WeekendDay">',
p_weekend_close_format => '</td>',
p_nonday_title_format => '<div class="t4NonDayTitle">#DD#</div>',
p_nonday_open_format => '<td class="t4NonDay" valign="top">',
p_nonday_close_format => '</td>',
p_week_title_format => '',
p_week_open_format => '<tr>',
p_week_close_format => '</tr> ',
p_daily_title_format => '<th width="14%" class="calheader">#IDAY#</th>',
p_daily_open_format => '<tr>',
p_daily_close_format => '</tr>',
p_weekly_title_format => '<table cellspacing="0" cellpadding="0" border="0" summary="" class="t4WeekCalendarHolder">'||chr(10)||
'<tr>'||chr(10)||
'<td class="t4MonthTitle" id="test">#WTITLE#</td>'||chr(10)||
'</tr>'||chr(10)||
'<tr>'||chr(10)||
'<td>',
p_weekly_day_of_week_format => '<th class="t4DayOfWeek">#IDAY#<br>#MM#/#DD#</th>',
p_weekly_month_open_format => '<table border="0" cellpadding="0" cellspacing="0" summary="0" class="t4WeekCalendar">',
p_weekly_month_close_format => '</table></td></tr></table>',
p_weekly_day_title_format => '',
p_weekly_day_open_format => '<td class="t4Day" valign="top">',
p_weekly_day_close_format => '<br /></td>',
p_weekly_today_open_format => '<td class="t4Today" valign="top">',
p_weekly_weekend_title_format => '',
p_weekly_weekend_open_format => '<td valign="top" class="t4NonDay">',
p_weekly_weekend_close_format => '<br /></td>',
p_weekly_time_open_format => '<th class="t4Hour">',
p_weekly_time_close_format => '<br /></th>',
p_weekly_time_title_format => '#TIME#',
p_weekly_hour_open_format => '<tr>',
p_weekly_hour_close_format => '</tr>',
p_daily_day_of_week_format => '<th class="t4DayOfWeek">#IDAY# #DD#/#MM#</th>',
p_daily_month_title_format => '<table cellspacing="0" cellpadding="0" border="0" summary="" class="t4DayCalendarHolder"> <tr> <td class="t4MonthTitle">#IMONTH# #DD#, #YYYY#</td> </tr> <tr> <td>'||chr(10)||
'',
p_daily_month_open_format => '<table border="0" cellpadding="2" cellspacing="0" summary="0" class="t4DayCalendar">',
p_daily_month_close_format => '</table></td> </tr> </table>',
p_daily_day_title_format => '',
p_daily_day_open_format => '<td valign="top" class="t4Day">',
p_daily_day_close_format => '<br /></td>',
p_daily_today_open_format => '<td valign="top" class="t4Today">',
p_daily_time_open_format => '<th class="t4Hour">',
p_daily_time_close_format => '<br /></th>',
p_daily_time_title_format => '#TIME#',
p_daily_hour_open_format => '<tr>',
p_daily_hour_close_format => '</tr>',
p_theme_id => 101,
p_theme_class_id => 1,
p_reference_id=> null);
end;
null;
end;
/