diff --git a/README.md b/README.md index 63a5e91..0953b1a 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,7 @@ For more info: http://vmorneau.me/apex-theme-boilerplate/ The application export is included in this repo, as well as the theme export. ## What is this Boilerplate thing? -It's an empty APEX 5 application with basic stuff that any APEX theme needs. No pages or anything, just a few shared components templates and settings turned on. - -## Do I need this? -You probably don't. Building a theme from the ground up is not something you do everyday. I personally find this useful. Might as well share it, right? +It's an empty APEX application with basic stuff that any APEX theme needs. No pages or anything, just a few shared components templates and settings turned on. ## Install @@ -15,16 +12,10 @@ You probably don't. Building a theme from the ground up is not something you do - Import the APEX application ```f14963.sql``` into your workspace. #### Theme Only -- Import the APEX theme ```f14963_theme.sql``` into your existing application. +- Import the APEX theme ```f14963_theme_600.sql``` into your existing application. ## Changelog -#### 2.0 -- Added APEX Front-End Boost support -- Added theme export file -- Added `DEV_ONLY` build option -- Added default container on grid layout -- Changed template names -- Changed application comments +[See complete changelog](changelog.md). -#### 1.0 -- Initial release +## License +MIT © [Vincent Morneau](http://vmorneau.me) diff --git a/changelog.md b/changelog.md new file mode 100644 index 0000000..79c9014 --- /dev/null +++ b/changelog.md @@ -0,0 +1,17 @@ +## Changelog + +#### 3.0.0 +- Reviewed most boilerplate templates +- Changed APEX Front-End Boost to APEX Nitro +- Changed Font Awesome to Font APEX + +#### 2.0.0 +- Added APEX Front-End Boost support +- Added theme export file +- Added `DEV_ONLY` build option +- Added default container on grid layout +- Changed template names +- Changed application comments + +#### 1.0.0 +- Initial release diff --git a/f14963.sql b/f14963.sql index e6dcbd3..1e7b071 100644 --- a/f14963.sql +++ b/f14963.sql @@ -5,42 +5,41 @@ whenever sqlerror exit sql.sqlcode rollback -- ORACLE Application Express (APEX) export file -- -- You should run the script connected to SQL*Plus as the Oracle user --- APEX_050000 or as the owner (parsing schema) of the application. +-- APEX_050100 or as the owner (parsing schema) of the application. -- -- NOTE: Calls to apex_application_install override the defaults below. -- -------------------------------------------------------------------------------- begin wwv_flow_api.import_begin ( - p_version_yyyy_mm_dd=>'2013.01.01' -,p_release=>'5.0.3.00.03' -,p_default_workspace_id=>50654249616769752 -,p_default_application_id=>14963 -,p_default_owner=>'APEX_VMORNEAU' + p_version_yyyy_mm_dd=>'2016.08.24' +,p_release=>'5.1.0.00.45' +,p_default_workspace_id=>1871301519555315 +,p_default_application_id=>123 +,p_default_owner=>'OOS_USER' ); end; / prompt --application/set_environment -prompt APPLICATION 14963 - Theme Boilerplate +prompt APPLICATION 123 - Theme Boilerplate -- -- Application Export: --- Application: 14963 +-- Application: 123 -- Name: Theme Boilerplate --- Date and Time: 00:33 Tuesday January 26, 2016 --- Exported By: VINCENT.MORNEAU@GMAIL.COM +-- Date and Time: 17:29 Tuesday June 20, 2017 +-- Exported By: OOS_USER -- Flashback: 0 -- Export Type: Application Export --- Version: 5.0.3.00.03 --- Instance ID: 63113759365424 +-- Version: 5.1.0.00.45 +-- Instance ID: 230182471520822 -- -- Application Statistics: -- Pages: 1 -- Shared Components: -- Logic: --- Items: 1 --- Processes: 2 +-- Processes: 1 -- Build Options: 1 -- Navigation: -- Lists: 2 @@ -50,7 +49,7 @@ prompt APPLICATION 14963 - Theme Boilerplate -- User Interface: -- Themes: 1 -- Templates: --- Page: 2 +-- Page: 1 -- Region: 1 -- Label: 1 -- List: 1 @@ -61,7 +60,7 @@ prompt APPLICATION 14963 - Theme Boilerplate -- Report: 2 -- Globalization: -- Reports: --- Supporting Objects: Included +-- Supporting Objects: Excluded prompt --application/delete_application begin @@ -77,10 +76,10 @@ prompt --application/create_application begin wwv_flow_api.create_flow( p_id=>wwv_flow.g_flow_id -,p_display_id=>nvl(wwv_flow_application_install.get_application_id,14963) -,p_owner=>nvl(wwv_flow_application_install.get_schema,'APEX_VMORNEAU') +,p_display_id=>nvl(wwv_flow_application_install.get_application_id,123) +,p_owner=>nvl(wwv_flow_application_install.get_schema,'OOS_USER') ,p_name=>nvl(wwv_flow_application_install.get_application_name,'Theme Boilerplate') -,p_alias=>nvl(wwv_flow_application_install.get_application_alias,'14963') +,p_alias=>nvl(wwv_flow_application_install.get_application_alias,'123') ,p_page_view_logging=>'YES' ,p_page_protection_enabled_y_n=>'N' ,p_checksum_salt=>'2EF51444DD573C61805687582DBA41A50C9B6F3E0E729BBA5361E6D3771F386B' @@ -88,14 +87,15 @@ wwv_flow_api.create_flow( ,p_compatibility_mode=>'5.0' ,p_flow_language=>'en' ,p_flow_language_derived_from=>'FLOW_PRIMARY_LANGUAGE' +,p_direction_right_to_left=>'N' ,p_flow_image_prefix => nvl(wwv_flow_application_install.get_image_prefix,'') ,p_authentication=>'PLUGIN' -,p_authentication_id=>wwv_flow_api.id(7009057759871299269) +,p_authentication_id=>wwv_flow_api.id(7030459021455915295) ,p_application_tab_set=>0 ,p_logo_image=>'TEXT:Theme Boilerplate' ,p_public_user=>'APEX_PUBLIC_USER' ,p_proxy_server=> nvl(wwv_flow_application_install.get_proxy,'') -,p_flow_version=>'1.1' +,p_flow_version=>'v3.0.0' ,p_flow_status=>'AVAILABLE_W_EDIT_LINK' ,p_flow_unavailable_text=>'This application is currently unavailable at this time.' ,p_exact_substitutions_only=>'Y' @@ -107,8 +107,8 @@ wwv_flow_api.create_flow( ,p_csv_encoding=>'Y' ,p_auto_time_zone=>'N' ,p_default_error_display_loc=>'INLINE_IN_NOTIFICATION' -,p_last_updated_by=>'VINCENT.MORNEAU@GMAIL.COM' -,p_last_upd_yyyymmddhh24miss=>'20160126003231' +,p_last_updated_by=>'OOS_USER' +,p_last_upd_yyyymmddhh24miss=>'20170620171946' ,p_file_prefix => nvl(wwv_flow_application_install.get_static_app_file_prefix,'') ,p_files_version=>482 ,p_ui_type_name => null @@ -118,50 +118,50 @@ end; prompt --application/shared_components/navigation/lists begin wwv_flow_api.create_list( - p_id=>wwv_flow_api.id(7009628588599786487) + p_id=>wwv_flow_api.id(7031029850184402513) ,p_name=>'Navigation Menu' ,p_list_status=>'PUBLIC' ); wwv_flow_api.create_list_item( - p_id=>wwv_flow_api.id(7009629070751786495) + p_id=>wwv_flow_api.id(7031030332336402521) ,p_list_item_display_sequence=>10 ,p_list_item_link_text=>'Option 1' ,p_list_item_link_target=>'#' ,p_list_item_current_type=>'TARGET_PAGE' ); wwv_flow_api.create_list_item( - p_id=>wwv_flow_api.id(7009629365509786495) + p_id=>wwv_flow_api.id(7031030627094402521) ,p_list_item_display_sequence=>20 ,p_list_item_link_text=>'Option 2' ,p_list_item_link_target=>'#' ,p_list_item_current_type=>'TARGET_PAGE' ); wwv_flow_api.create_list_item( - p_id=>wwv_flow_api.id(7009629662049786496) + p_id=>wwv_flow_api.id(7031030923634402522) ,p_list_item_display_sequence=>30 ,p_list_item_link_text=>'Option 3' ,p_list_item_link_target=>'#' ,p_list_item_current_type=>'TARGET_PAGE' ); wwv_flow_api.create_list( - p_id=>wwv_flow_api.id(7010226572448775543) + p_id=>wwv_flow_api.id(7031627834033391569) ,p_name=>'Navigation Bar' ,p_list_status=>'PUBLIC' ); wwv_flow_api.create_list_item( - p_id=>wwv_flow_api.id(7010226775408775544) + p_id=>wwv_flow_api.id(7031628036993391570) ,p_list_item_display_sequence=>10 ,p_list_item_link_text=>'Option 1' ,p_list_item_link_target=>'#' ); wwv_flow_api.create_list_item( - p_id=>wwv_flow_api.id(7010227060538775547) + p_id=>wwv_flow_api.id(7031628322123391573) ,p_list_item_display_sequence=>20 ,p_list_item_link_text=>'Option 2' ,p_list_item_link_target=>'#' ); wwv_flow_api.create_list_item( - p_id=>wwv_flow_api.id(7010227389192775547) + p_id=>wwv_flow_api.id(7031628650777391573) ,p_list_item_display_sequence=>30 ,p_list_item_link_text=>'Logout' ,p_list_item_link_target=>'&LOGOUT_URL.' @@ -176,22 +176,40 @@ end; prompt --application/plugin_settings begin wwv_flow_api.create_plugin_setting( - p_id=>wwv_flow_api.id(6848958799851936411) + p_id=>wwv_flow_api.id(21401503371616070) +,p_plugin_type=>'REGION TYPE' +,p_plugin=>'NATIVE_IR' +,p_attribute_01=>'LEGACY' +); +wwv_flow_api.create_plugin_setting( + p_id=>wwv_flow_api.id(21401945485616070) +,p_plugin_type=>'REGION TYPE' +,p_plugin=>'NATIVE_IG' +); +wwv_flow_api.create_plugin_setting( + p_id=>wwv_flow_api.id(21402074226616070) +,p_plugin_type=>'ITEM TYPE' +,p_plugin=>'NATIVE_COLOR_PICKER' +,p_attribute_01=>'classic' +); +wwv_flow_api.create_plugin_setting( + p_id=>wwv_flow_api.id(6870360061436552437) ,p_plugin_type=>'REGION TYPE' ,p_plugin=>'NATIVE_CSS_CALENDAR' ); wwv_flow_api.create_plugin_setting( - p_id=>wwv_flow_api.id(6848958872431936411) + p_id=>wwv_flow_api.id(6870360134016552437) ,p_plugin_type=>'REGION TYPE' ,p_plugin=>'NATIVE_DISPLAY_SELECTOR' ,p_attribute_01=>'N' ); wwv_flow_api.create_plugin_setting( - p_id=>wwv_flow_api.id(7009046665301299239) + p_id=>wwv_flow_api.id(7030447926885915265) ,p_plugin_type=>'ITEM TYPE' ,p_plugin=>'NATIVE_YES_NO' ,p_attribute_01=>'Y' ,p_attribute_03=>'N' +,p_attribute_05=>'SELECT_LIST' ); end; / @@ -208,42 +226,32 @@ end; prompt --application/shared_components/logic/application_processes begin wwv_flow_api.create_flow_process( - p_id=>wwv_flow_api.id(23488269024415725377) + p_id=>wwv_flow_api.id(23509670286000341403) ,p_process_sequence=>-999 -,p_process_point=>'ON_NEW_INSTANCE' +,p_process_point=>'BEFORE_HEADER' ,p_process_type=>'NATIVE_PLSQL' -,p_process_name=>'OOS APEX Front-End Boost (Dev)' -,p_process_sql_clob=>wwv_flow_utilities.join(wwv_flow_t_varchar2( +,p_process_name=>'APEX Nitro' +,p_process_sql_clob=>wwv_flow_string.join(wwv_flow_t_varchar2( 'declare', -' l_cookie owa_cookie.cookie;', +' l_cookie owa_cookie.cookie;', 'begin', -' l_cookie := owa_cookie.get(''oos-apex-frontend-boost-app-images'');', -' if l_cookie.vals.count > 0 then', -' :G_APP_IMAGES := l_cookie.vals(1);', -' else', -' :G_APP_IMAGES := :APP_IMAGES;', -' end if;', +' l_cookie := owa_cookie.get(''oos-apex-nitro'');', +'', +' if l_cookie.vals.count > 0 then', +' -- Use one of the following depending on your files location', +' apex_application.g_flow_images := l_cookie.vals(1);', +' -- apex_application.g_company_images := l_cookie.vals(1);', +' -- apex_application.g_theme_file_prefix := l_cookie.vals(1);', +' -- :G_APP_IMAGES := l_cookie.vals(1);', +' end if;', 'end;')) -,p_required_patch=>wwv_flow_api.id(18522628038371573914) -); -wwv_flow_api.create_flow_process( - p_id=>wwv_flow_api.id(23488416316828134042) -,p_process_sequence=>-999 -,p_process_point=>'ON_NEW_INSTANCE' -,p_process_type=>'NATIVE_PLSQL' -,p_process_name=>'OOS APEX Front-End Boost (Not Dev)' -,p_process_sql_clob=>':G_APP_IMAGES := :APP_IMAGES;' -,p_required_patch=>-wwv_flow_api.id(18522628038371573914) +,p_required_patch=>wwv_flow_api.id(18544029299956189940) ); end; / prompt --application/shared_components/logic/application_items begin -wwv_flow_api.create_flow_item( - p_id=>wwv_flow_api.id(23487938436612651912) -,p_name=>'G_APP_IMAGES' -,p_protection_level=>'I' -); +null; end; / prompt --application/shared_components/logic/application_computations @@ -276,15 +284,10 @@ begin null; end; / -prompt --application/comments -begin -null; -end; -/ prompt --application/shared_components/navigation/breadcrumbs/breadcrumb begin wwv_flow_api.create_menu( - p_id=>wwv_flow_api.id(7009058873932299274) + p_id=>wwv_flow_api.id(7030460135516915300) ,p_name=>' Breadcrumb' ); end; @@ -292,182 +295,91 @@ end; prompt --application/shared_components/user_interface/templates/page begin wwv_flow_api.create_template( - p_id=>wwv_flow_api.id(1898031717988858628) -,p_theme_id=>102 -,p_name=>'Modal' -,p_is_popup=>true -,p_header_template=>wwv_flow_utilities.join(wwv_flow_t_varchar2( -'', -'', -' #TITLE#', -' ', -' ', -' ', -' ', -' ', -' ', -' ', -' ', -' #HEAD#', -' #APEX_CSS#', -' ', -' ', -' #THEME_CSS#', -' #THEME_STYLE_CSS#', -' #APPLICATION_CSS#', -' ', -' ', -' #TEMPLATE_CSS#', -' #PAGE_CSS#', -'', -'')) -,p_box=>wwv_flow_utilities.join(wwv_flow_t_varchar2( -'#FORM_OPEN#', -'', -'', -'', -'#FORM_CLOSE#')) -,p_footer_template=>wwv_flow_utilities.join(wwv_flow_t_varchar2( -'', -'#DEVELOPER_TOOLBAR#', -'#APEX_JAVASCRIPT#', -'', -'', -'#THEME_JAVASCRIPT#', -'#APPLICATION_JAVASCRIPT#', -' ', -'', -'#TEMPLATE_JAVASCRIPT#', -'#PAGE_JAVASCRIPT#', -'', -'', -'#GENERATED_CSS#', -'#GENERATED_JAVASCRIPT#', -'', -'')) -,p_success_message=>'
#MESSAGE#
' -,p_notification_message=>'
#MESSAGE#
' -,p_theme_class_id=>8 -,p_grid_type=>'FIXED' -,p_grid_max_columns=>12 -,p_grid_always_use_max_columns=>false -,p_grid_has_column_span=>true -,p_grid_always_emit=>false -,p_grid_emit_empty_leading_cols=>true -,p_grid_emit_empty_trail_cols=>false -,p_grid_template=>wwv_flow_utilities.join(wwv_flow_t_varchar2( -'
', -' #ROWS#', -'
')) -,p_grid_row_template=>wwv_flow_utilities.join(wwv_flow_t_varchar2( -'
', -' #COLUMNS#', -'
')) -,p_grid_column_template=>wwv_flow_utilities.join(wwv_flow_t_varchar2( -'
', -' #CONTENT#', -'
')) -,p_dialog_js_init_code=>'apex.navigation.dialog(#PAGE_URL#,{title:#TITLE#,height:#DIALOG_HEIGHT#,width:#DIALOG_WIDTH#,maxWidth:#DIALOG_MAX_WIDTH#,modal:#IS_MODAL#,dialog:#DIALOG#,#DIALOG_ATTRIBUTES#},#DIALOG_CSS_CLASSES#,#TRIGGERING_ELEMENT#);' -,p_dialog_js_close_code=>'apex.navigation.dialog.close(#IS_MODAL#,#TARGET#);' -,p_dialog_js_cancel_code=>'apex.navigation.dialog.cancel(#IS_MODAL#);' -,p_dialog_browser_frame=>'MODAL' -); -wwv_flow_api.create_page_tmpl_display_point( - p_id=>wwv_flow_api.id(1898032138567858635) -,p_page_template_id=>wwv_flow_api.id(1898031717988858628) -,p_name=>'Modal Footer' -,p_placeholder=>'REGION_POSITION_08' -,p_has_grid_support=>false -,p_glv_new_row=>true -); -wwv_flow_api.create_template( - p_id=>wwv_flow_api.id(1898033083328858856) -,p_theme_id=>102 + p_id=>wwv_flow_api.id(1919434344913474882) +,p_theme_id=>600 ,p_name=>'Standard' +,p_internal_name=>'STANDARD' ,p_is_popup=>false -,p_header_template=>wwv_flow_utilities.join(wwv_flow_t_varchar2( +,p_header_template=>wwv_flow_string.join(wwv_flow_t_varchar2( '', +'', '', -' #TITLE#', -' ', -' ', -' ', -' ', -' ', -' ', -' ', -' ', -' #HEAD#', -' #APEX_CSS#', -' ', -' ', -' #THEME_CSS#', -' #THEME_STYLE_CSS#', -' #APPLICATION_CSS#', -' ', -' ', -' #TEMPLATE_CSS#', -' #PAGE_CSS#', +' #TITLE#', +'', +' ', +' ', +' ', +' ', +' ', +'', +' #APEX_CSS#', +' #THEME_CSS#', +' #TEMPLATE_CSS#', +' #THEME_STYLE_CSS#', +' #APPLICATION_CSS#', +' #PAGE_CSS#', +' #FAVICONS#', +' #HEAD#', '', -'')) -,p_box=>wwv_flow_utilities.join(wwv_flow_t_varchar2( +'', +'')) +,p_box=>wwv_flow_string.join(wwv_flow_t_varchar2( '#FORM_OPEN#', '', -'', '#REGION_POSITION_01#', +'#REGION_POSITION_02#', +'#REGION_POSITION_03#', +'#REGION_POSITION_04#', '', -'', -'
', -' #NAVIGATION_BAR#', -' #TOP_GLOBAL_NAVIGATION_LIST#', -' #SIDE_GLOBAL_NAVIGATION_LIST#', -'
', +'#LOGO#', '', -'', -'
', -' #GLOBAL_NOTIFICATION#', -' #SUCCESS_MESSAGE#', -' #NOTIFICATION_MESSAGE#', -' #BODY#', -'
', +'#NAVIGATION_BAR#', +'#TOP_GLOBAL_NAVIGATION_LIST#', +'#SIDE_GLOBAL_NAVIGATION_LIST#', '', -'', -'', +'#GLOBAL_NOTIFICATION#', +'#SUCCESS_MESSAGE#', +'#NOTIFICATION_MESSAGE#', +'#BODY#', '', +'#REGION_POSITION_05#', +'#REGION_POSITION_06#', +'#REGION_POSITION_07#', +'#REGION_POSITION_08#', '', -'#FORM_CLOSE#')) -,p_footer_template=>wwv_flow_utilities.join(wwv_flow_t_varchar2( -'', +'#APP_VERSION#', +'#CUSTOMIZE#', +'#SCREEN_READER_TOGGLE#', +'', +'#FORM_CLOSE#', +'')) +,p_footer_template=>wwv_flow_string.join(wwv_flow_t_varchar2( '#DEVELOPER_TOOLBAR#', '#APEX_JAVASCRIPT#', -'', -'', +'#GENERATED_CSS#', '#THEME_JAVASCRIPT#', -'#APPLICATION_JAVASCRIPT#', -' ', -'', '#TEMPLATE_JAVASCRIPT#', +'#APPLICATION_JAVASCRIPT#', '#PAGE_JAVASCRIPT#', -'', -'', -'#GENERATED_CSS#', '#GENERATED_JAVASCRIPT#', '', -'')) -,p_success_message=>'
#MESSAGE#
' -,p_notification_message=>'
#MESSAGE#
' +'', +'')) +,p_success_message=>wwv_flow_string.join(wwv_flow_t_varchar2( +'
#SUCCESS_MESSAGE#
', +'')) +,p_notification_message=>wwv_flow_string.join(wwv_flow_t_varchar2( +'
#MESSAGE#
', +'')) ,p_theme_class_id=>8 +,p_error_page_template=>wwv_flow_string.join(wwv_flow_t_varchar2( +'
', +'

#MESSAGE#

', +'

#ADDITIONAL_INFO#

', +'

#TECHNICAL_INFO#

', +'
', +'#OK#', +'')) ,p_grid_type=>'FIXED' ,p_grid_max_columns=>12 ,p_grid_always_use_max_columns=>true @@ -475,30 +387,28 @@ wwv_flow_api.create_template( ,p_grid_always_emit=>true ,p_grid_emit_empty_leading_cols=>true ,p_grid_emit_empty_trail_cols=>false -,p_grid_template=>wwv_flow_utilities.join(wwv_flow_t_varchar2( -'
', -' #ROWS#', -'
')) -,p_grid_row_template=>wwv_flow_utilities.join(wwv_flow_t_varchar2( -'
', -' #COLUMNS#', -'
')) -,p_grid_column_template=>wwv_flow_utilities.join(wwv_flow_t_varchar2( -'
', -' #CONTENT#', -'
')) +,p_grid_template=>wwv_flow_string.join(wwv_flow_t_varchar2( +'
#ROWS#
', +'')) +,p_grid_row_template=>wwv_flow_string.join(wwv_flow_t_varchar2( +'
#COLUMNS#
', +'')) +,p_grid_column_template=>wwv_flow_string.join(wwv_flow_t_varchar2( +'
#CONTENT#
', +'')) +,p_translate_this_template=>'N' ); wwv_flow_api.create_page_tmpl_display_point( - p_id=>wwv_flow_api.id(1898033503589858857) -,p_page_template_id=>wwv_flow_api.id(1898033083328858856) + p_id=>wwv_flow_api.id(1919434765174474883) +,p_page_template_id=>wwv_flow_api.id(1919434344913474882) ,p_name=>'Item Container' ,p_placeholder=>'REGION_POSITION_01' ,p_has_grid_support=>false ,p_glv_new_row=>true ); wwv_flow_api.create_page_tmpl_display_point( - p_id=>wwv_flow_api.id(1898035522691858858) -,p_page_template_id=>wwv_flow_api.id(1898033083328858856) + p_id=>wwv_flow_api.id(1919436784276474884) +,p_page_template_id=>wwv_flow_api.id(1919434344913474882) ,p_name=>'Footer' ,p_placeholder=>'REGION_POSITION_08' ,p_has_grid_support=>false @@ -509,151 +419,222 @@ end; prompt --application/shared_components/user_interface/templates/button begin wwv_flow_api.create_button_templates( - p_id=>wwv_flow_api.id(1898205400757951469) + p_id=>wwv_flow_api.id(1919606662342567495) ,p_template_name=>'Standard' -,p_template=>wwv_flow_utilities.join(wwv_flow_t_varchar2( -'#LABEL#', +,p_internal_name=>'STANDARD' +,p_template=>wwv_flow_string.join(wwv_flow_t_varchar2( +'', +'', '')) +,p_translate_this_template=>'N' ,p_theme_class_id=>6 -,p_theme_id=>102 +,p_theme_id=>600 ); end; / prompt --application/shared_components/user_interface/templates/region begin wwv_flow_api.create_plug_template( - p_id=>wwv_flow_api.id(1898027612270850949) + p_id=>wwv_flow_api.id(1919428873855466975) ,p_layout=>'TABLE' -,p_template=>wwv_flow_utilities.join(wwv_flow_t_varchar2( +,p_template=>wwv_flow_string.join(wwv_flow_t_varchar2( '
', -' #TITLE#', -' #CREATE# ', -' #BODY# ', -' #CREATE2#', -'
')) +' #ICON_CSS_CLASSES##TITLE#', +' #PREVIOUS##EDIT##COPY##EXPAND#', +' #BODY##SUB_REGIONS#', +' #CLOSE##HELP##CHANGE##DELETE##CREATE##CREATE2##NEXT#', +'', +'')) ,p_page_plug_template_name=>'Standard' +,p_internal_name=>'STANDARD' ,p_plug_table_bgcolor=>'#ffffff' -,p_theme_id=>102 +,p_theme_id=>600 ,p_theme_class_id=>21 ,p_plug_heading_bgcolor=>'#ffffff' ,p_plug_font_size=>'-1' ,p_default_label_alignment=>'RIGHT' ,p_default_field_alignment=>'LEFT' +,p_translate_this_template=>'N' ); end; / prompt --application/shared_components/user_interface/templates/list begin wwv_flow_api.create_list_template( - p_id=>wwv_flow_api.id(1898096412288884946) -,p_list_template_current=>'
  • #TEXT#
  • ' -,p_list_template_noncurrent=>'
  • #TEXT#
  • ' + p_id=>wwv_flow_api.id(1919497673873500972) +,p_list_template_current=>wwv_flow_string.join(wwv_flow_t_varchar2( +'
  • #ICON_CSS_CLASSES##TEXT#
  • ', +'')) +,p_list_template_noncurrent=>wwv_flow_string.join(wwv_flow_t_varchar2( +'
  • #ICON_CSS_CLASSES##TEXT#
  • ', +'')) ,p_list_template_name=>'Standard' -,p_theme_id=>102 +,p_internal_name=>'STANDARD' +,p_theme_id=>600 ,p_theme_class_id=>9 -,p_list_template_before_rows=>'