├── Source ├── RequireMVC199 │ ├── RequireMVC199 │ │ ├── ViewJS │ │ │ ├── entryOfForm.js │ │ │ ├── entryOfList.js │ │ │ ├── Controllers │ │ │ │ ├── Mutiple │ │ │ │ │ └── Mutiple-Index.js │ │ │ │ ├── Sub │ │ │ │ │ └── Sub-Index.js │ │ │ │ └── Main │ │ │ │ │ ├── ListController.js │ │ │ │ │ ├── AddView.js │ │ │ │ │ └── AddController.js │ │ │ ├── temp │ │ │ │ ├── MyMath.js │ │ │ │ └── main.js │ │ │ └── entryOfHome.js │ │ ├── Scripts │ │ │ └── common.js │ │ ├── Global.asax │ │ ├── Content │ │ │ ├── themes │ │ │ │ └── base │ │ │ │ │ ├── images │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── minified │ │ │ │ │ ├── images │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ │ │ ├── jquery.ui.tooltip.min.css │ │ │ │ │ ├── jquery.ui.accordion.min.css │ │ │ │ │ ├── jquery.ui.spinner.min.css │ │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ │ └── jquery.ui.slider.min.css │ │ │ │ │ ├── jquery.ui.all.css │ │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ │ ├── jquery.ui.tooltip.css │ │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ │ └── jquery.ui.base.css │ │ │ └── Style.css │ │ ├── Views │ │ │ ├── Shared │ │ │ │ ├── _LayoutOfForm.cshtml │ │ │ │ ├── _LayoutOfHome.cshtml │ │ │ │ ├── _RequireSetupOfForm.cshtml │ │ │ │ ├── _RequireSetupOfHome.cshtml │ │ │ │ └── _RequireSetupOfList.cshtml │ │ │ ├── Main │ │ │ │ └── List.cshtml │ │ │ ├── Mutiple │ │ │ │ └── MutipleIndex.cshtml │ │ │ └── Sub │ │ │ │ └── SubIndex.cshtml │ │ ├── Models │ │ │ └── User.js │ │ ├── App_Start │ │ │ ├── FilterConfig.cs │ │ │ ├── WebApiConfig.cs │ │ │ └── RouteConfig.cs │ │ ├── RequireJS.config │ │ ├── Controllers │ │ │ ├── MainController.cs │ │ │ ├── SubController.cs │ │ │ ├── HomeController.cs │ │ │ └── MutipleController.cs │ │ ├── Global.asax.cs │ │ ├── RequireJS │ │ │ └── RequireJSController.cs │ │ └── RequireJSOfForm.config │ ├── ProductSys.WebAPI │ │ ├── Views │ │ │ ├── _ViewStart.cshtml │ │ │ └── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ └── _Layout.cshtml │ │ ├── favicon.ico │ │ ├── Global.asax │ │ ├── Images │ │ │ ├── accent.png │ │ │ ├── bullet.png │ │ │ ├── heroAccent.png │ │ │ ├── orderedList0.png │ │ │ ├── orderedList1.png │ │ │ ├── orderedList2.png │ │ │ ├── orderedList3.png │ │ │ ├── orderedList4.png │ │ │ ├── orderedList5.png │ │ │ ├── orderedList6.png │ │ │ ├── orderedList7.png │ │ │ ├── orderedList8.png │ │ │ └── orderedList9.png │ │ ├── Scripts │ │ │ └── _references.js │ │ ├── Plugins │ │ │ ├── ProductSys.PlugIn.dll │ │ │ └── PluginsConfig.xml │ │ ├── Content │ │ │ └── themes │ │ │ │ └── base │ │ │ │ ├── images │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── minified │ │ │ │ ├── images │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ ├── jquery.ui.accordion.min.css │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ └── jquery.ui.slider.min.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ └── jquery.ui.base.css │ │ ├── App_Start │ │ │ ├── FilterConfig.cs │ │ │ ├── RouteConfig.cs │ │ │ └── WebApiConfig.cs │ │ ├── Controllers │ │ │ ├── HomeController.cs │ │ │ └── ValuesController.cs │ │ └── Core │ │ │ └── PluginManager.cs │ ├── TR.Datasource │ │ ├── IProductDatabase.cs │ │ ├── IProductDbSession.cs │ │ ├── IStorageDatabase.cs │ │ ├── IStorageDbSession.cs │ │ ├── ProductDbSession.cs │ │ ├── StorageDbSession.cs │ │ ├── StorageDatabase.cs │ │ └── ProductDatabase.cs │ ├── ProductSys.BizEntity │ │ ├── Queryable │ │ │ ├── OrderQuery.cs │ │ │ └── ProductQuery.cs │ │ ├── Role.cs │ │ ├── FunctionMenu.cs │ │ ├── Product.cs │ │ ├── StorageCheck.cs │ │ ├── Storage.cs │ │ ├── Order.cs │ │ └── OrderView.cs │ ├── ProductWebModeling │ │ └── LayerDiagram.layerdiagram.suppressions │ ├── ProductSys.Interface │ │ ├── IRoleService.cs │ │ ├── IProductService.cs │ │ ├── IStorageCheckService.cs │ │ ├── IFunctionMenuService.cs │ │ └── IStorageService.cs │ ├── ProductSys.DAL │ │ ├── EPFunction.cs │ │ ├── EPProduct.cs │ │ ├── EPStorage.cs │ │ ├── EPStorageCheck.cs │ │ ├── EPOrder.cs │ │ └── App.config │ └── ProductSys.ServiceImp │ │ └── App.config └── PlatFramework │ ├── PlatJS │ ├── Scripts │ │ ├── jstree │ │ │ ├── _demo │ │ │ │ ├── _inc │ │ │ │ │ └── __mysql_errors.log │ │ │ │ ├── file.png │ │ │ │ ├── root.png │ │ │ │ ├── folder.png │ │ │ │ ├── _install.txt │ │ │ │ ├── config.php │ │ │ │ └── _dump.sql │ │ │ ├── _docs │ │ │ │ ├── _search_result.json │ │ │ │ ├── _search_data.json │ │ │ │ ├── _html_data.html │ │ │ │ ├── logo.png │ │ │ │ ├── _drive.png │ │ │ │ ├── syntax │ │ │ │ │ ├── help.png │ │ │ │ │ ├── printer.png │ │ │ │ │ ├── wrapping.png │ │ │ │ │ ├── clipboard.swf │ │ │ │ │ ├── magnifier.png │ │ │ │ │ ├── page_white_code.png │ │ │ │ │ └── page_white_copy.png │ │ │ │ ├── _json_data.json │ │ │ │ ├── _xml_flat.xml │ │ │ │ └── _xml_nest.xml │ │ │ └── themes │ │ │ │ ├── apple │ │ │ │ ├── d.png │ │ │ │ ├── bg.jpg │ │ │ │ ├── throbber.gif │ │ │ │ └── dot_for_ie.gif │ │ │ │ ├── classic │ │ │ │ ├── d.gif │ │ │ │ ├── d.png │ │ │ │ ├── throbber.gif │ │ │ │ └── dot_for_ie.gif │ │ │ │ ├── default │ │ │ │ ├── d.gif │ │ │ │ ├── d.png │ │ │ │ └── throbber.gif │ │ │ │ └── default-rtl │ │ │ │ ├── d.gif │ │ │ │ ├── d.png │ │ │ │ ├── dots.gif │ │ │ │ └── throbber.gif │ │ ├── seajs │ │ │ └── sea-modules │ │ │ │ ├── seajs │ │ │ │ └── 1.3.0 │ │ │ │ │ ├── package.json │ │ │ │ │ ├── plugin-i18n.js │ │ │ │ │ ├── plugin-warning.js │ │ │ │ │ ├── plugin-coffee.js │ │ │ │ │ ├── plugin-json.js │ │ │ │ │ ├── plugin-text.js │ │ │ │ │ ├── plugin-base.js │ │ │ │ │ └── plugin-less.js │ │ │ │ └── gallery │ │ │ │ └── jquery │ │ │ │ └── 1.8.3 │ │ │ │ └── package.json │ │ ├── slickgrid │ │ │ ├── images │ │ │ │ ├── down.gif │ │ │ │ ├── help.png │ │ │ │ ├── info.gif │ │ │ │ ├── tick.png │ │ │ │ ├── expand.gif │ │ │ │ ├── pencil.gif │ │ │ │ ├── actions.gif │ │ │ │ ├── calendar.gif │ │ │ │ ├── collapse.gif │ │ │ │ ├── header-bg.gif │ │ │ │ ├── listview.gif │ │ │ │ ├── sort-asc.gif │ │ │ │ ├── sort-asc.png │ │ │ │ ├── sort-desc.gif │ │ │ │ ├── sort-desc.png │ │ │ │ ├── stripes.png │ │ │ │ ├── tag_red.png │ │ │ │ ├── arrow_redo.png │ │ │ │ ├── arrow_undo.png │ │ │ │ ├── bullet_blue.png │ │ │ │ ├── bullet_star.png │ │ │ │ ├── drag-handle.png │ │ │ │ ├── row-over-bg.gif │ │ │ │ ├── comment_yellow.gif │ │ │ │ ├── user_identity.gif │ │ │ │ ├── editor-helper-bg.gif │ │ │ │ ├── ajax-loader-small.gif │ │ │ │ ├── bullet_toggle_minus.png │ │ │ │ ├── bullet_toggle_plus.png │ │ │ │ ├── header-columns-bg.gif │ │ │ │ ├── user_identity_plus.gif │ │ │ │ ├── arrow_right_spearmint.png │ │ │ │ ├── arrow_right_peppermint.png │ │ │ │ └── header-columns-over-bg.gif │ │ │ ├── css │ │ │ │ └── smoothness │ │ │ │ │ └── images │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── lib │ │ │ │ └── firebugx.js │ │ │ └── controls │ │ │ │ ├── slick.columnpicker.css │ │ │ │ └── slick.pager.css │ │ ├── cutetoolbar │ │ │ ├── images │ │ │ │ ├── add.png │ │ │ │ ├── edit.png │ │ │ │ ├── save.png │ │ │ │ ├── delete.png │ │ │ │ ├── excel.png │ │ │ │ ├── print.png │ │ │ │ ├── query.png │ │ │ │ └── report.png │ │ │ └── css │ │ │ │ └── images │ │ │ │ ├── bg.png │ │ │ │ ├── bg_tab.png │ │ │ │ ├── button5.gif │ │ │ │ ├── dropdown.png │ │ │ │ ├── resize.gif │ │ │ │ ├── tab_left.gif │ │ │ │ ├── panel_left.gif │ │ │ │ ├── popup_left.png │ │ │ │ ├── resize_bg.png │ │ │ │ ├── tab_right.gif │ │ │ │ ├── button2_over.png │ │ │ │ ├── button3_over.png │ │ │ │ ├── button4_over.png │ │ │ │ ├── button5_over.gif │ │ │ │ ├── button_over.png │ │ │ │ ├── panel_right.gif │ │ │ │ ├── tab_left_over.gif │ │ │ │ ├── tab_right_over.gif │ │ │ │ └── button3_over_dropdown.png │ │ ├── tabbackup │ │ │ └── css │ │ │ │ ├── images │ │ │ │ ├── bg.png │ │ │ │ ├── bg_tab.png │ │ │ │ ├── button5.gif │ │ │ │ ├── resize.gif │ │ │ │ ├── dropdown.png │ │ │ │ ├── panel_left.gif │ │ │ │ ├── popup_left.png │ │ │ │ ├── resize_bg.png │ │ │ │ ├── tab_left.gif │ │ │ │ ├── tab_right.gif │ │ │ │ ├── button2_over.png │ │ │ │ ├── button3_over.png │ │ │ │ ├── button4_over.png │ │ │ │ ├── button5_over.gif │ │ │ │ ├── button_over.png │ │ │ │ ├── panel_right.gif │ │ │ │ ├── tab_left_over.gif │ │ │ │ ├── tab_right_over.gif │ │ │ │ └── button3_over_dropdown.png │ │ │ │ ├── qh.css │ │ │ │ └── jiaodian.css │ │ ├── cutetabbar │ │ │ └── css │ │ │ │ ├── images │ │ │ │ ├── bg.png │ │ │ │ ├── bg_tab.png │ │ │ │ ├── resize.gif │ │ │ │ ├── button5.gif │ │ │ │ ├── dropdown.png │ │ │ │ ├── resize_bg.png │ │ │ │ ├── tab_left.gif │ │ │ │ ├── tab_right.gif │ │ │ │ ├── button_over.png │ │ │ │ ├── panel_left.gif │ │ │ │ ├── panel_right.gif │ │ │ │ ├── popup_left.png │ │ │ │ ├── button2_over.png │ │ │ │ ├── button3_over.png │ │ │ │ ├── button4_over.png │ │ │ │ ├── button5_over.gif │ │ │ │ ├── tab_left_over.gif │ │ │ │ ├── tab_right_over.gif │ │ │ │ └── button3_over_dropdown.png │ │ │ │ ├── qh.css │ │ │ │ └── jiaodian.css │ │ ├── cutetoptab │ │ │ └── css │ │ │ │ └── images │ │ │ │ ├── bg.png │ │ │ │ ├── bg_tab.png │ │ │ │ ├── resize.gif │ │ │ │ ├── button5.gif │ │ │ │ ├── dropdown.png │ │ │ │ ├── resize_bg.png │ │ │ │ ├── tab_left.gif │ │ │ │ ├── tab_right.gif │ │ │ │ ├── button_over.png │ │ │ │ ├── panel_left.gif │ │ │ │ ├── panel_right.gif │ │ │ │ ├── popup_left.png │ │ │ │ ├── button2_over.png │ │ │ │ ├── button3_over.png │ │ │ │ ├── button4_over.png │ │ │ │ ├── button5_over.gif │ │ │ │ ├── tab_left_over.gif │ │ │ │ ├── tab_right_over.gif │ │ │ │ └── button3_over_dropdown.png │ │ ├── treetabpanel │ │ │ └── css │ │ │ │ └── images │ │ │ │ ├── bg.png │ │ │ │ ├── bg_tab.png │ │ │ │ ├── button5.gif │ │ │ │ ├── resize.gif │ │ │ │ ├── dropdown.png │ │ │ │ ├── resize_bg.png │ │ │ │ ├── tab_left.gif │ │ │ │ ├── tab_right.gif │ │ │ │ ├── button2_over.png │ │ │ │ ├── button3_over.png │ │ │ │ ├── button4_over.png │ │ │ │ ├── button5_over.gif │ │ │ │ ├── button_over.png │ │ │ │ ├── panel_left.gif │ │ │ │ ├── panel_right.gif │ │ │ │ ├── popup_left.png │ │ │ │ ├── tab_left_over.gif │ │ │ │ ├── tab_right_over.gif │ │ │ │ └── button3_over_dropdown.png │ │ └── cutelabeltab │ │ │ ├── images │ │ │ ├── tab_right.gif │ │ │ └── tab_right_over.gif │ │ │ └── cutemenutab.js │ ├── Global.asax │ ├── Content │ │ ├── fancybox │ │ │ ├── blank.gif │ │ │ ├── fancybox_buttons.png │ │ │ ├── fancybox_loading.gif │ │ │ ├── fancybox_overlay.png │ │ │ └── fancybox_sprite.png │ │ ├── themes │ │ │ └── base │ │ │ │ ├── images │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── minified │ │ │ │ ├── images │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ │ ├── jquery.ui.tooltip.min.css │ │ │ │ ├── jquery.ui.accordion.min.css │ │ │ │ ├── jquery.ui.spinner.min.css │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ ├── jquery.ui.slider.min.css │ │ │ │ └── jquery.ui.menu.min.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ ├── jquery.ui.tooltip.css │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ └── jquery.ui.base.css │ │ └── jquery.fancybox-thumbs.css │ ├── App_Start │ │ ├── FilterConfig.cs │ │ ├── WebApiConfig.cs │ │ └── RouteConfig.cs │ └── Global.asax.cs │ ├── Library │ ├── Dapper.dll │ ├── RazorJS.dll │ ├── log4net.dll │ ├── AutoMapper.dll │ ├── BookSleeve.dll │ ├── MefContrib.dll │ ├── RestSharp.dll │ ├── WebGrease.dll │ ├── RazorEngine.dll │ ├── WebActivator.dll │ ├── Antlr3.Runtime.dll │ ├── EntityFramework.dll │ ├── Newtonsoft.Json.dll │ ├── SimpleInjector.dll │ ├── WebMatrix.Data.dll │ ├── DapperExtensions.dll │ ├── ServiceStack.Text.dll │ ├── System.Web.Helpers.dll │ ├── DotNetOpenAuth.Core.dll │ ├── DotNetOpenAuth.OAuth.dll │ ├── System.Web.Http.Data.dll │ ├── System.Web.Providers.dll │ ├── DotNetOpenAuth.AspNet.dll │ ├── DotNetOpenAuth.OpenId.dll │ ├── System.Web.Optimization.dll │ ├── SimpleInjector.Extensions.dll │ ├── System.Web.WebPages.Razor.dll │ ├── System.Web.Http.Data.Helpers.dll │ ├── DotNetOpenAuth.OAuth.Consumer.dll │ ├── System.Web.Http.Data.Helpers2.dll │ ├── DotNetOpenAuth.OpenId.RelyingParty.dll │ └── System.Web.Http.Data.EntityFramework.dll │ ├── Plat.ServiceBuilder │ ├── IPluginService.cs │ └── Injection │ │ ├── IContainer.cs │ │ └── ContainerWrapper.cs │ ├── Plat.WebUtility │ ├── ApiControllerBase.cs │ ├── WcfException.cs │ ├── JsTreeModel.cs │ ├── UserEntity.cs │ ├── WebControllerBase.cs │ └── HttpClientTest.cs │ ├── DapperExtensions │ └── Mapper │ │ └── AutoClassMapper.cs │ └── Plat.ExceptionHelper │ ├── ErrorHandlerFactory.cs │ └── ErrorHandler.cs ├── Docs └── MVC WebAPI框架开发-NewVersion.pptx └── .gitattributes /Source/RequireMVC199/RequireMVC199/ViewJS/entryOfForm.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/ViewJS/entryOfList.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_demo/_inc/__mysql_errors.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Scripts/common.js: -------------------------------------------------------------------------------- 1 | alert('common js'); -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_docs/_search_result.json: -------------------------------------------------------------------------------- 1 | [ "#root_node" ] -------------------------------------------------------------------------------- /Docs/MVC WebAPI框架开发-NewVersion.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Docs/MVC WebAPI框架开发-NewVersion.pptx -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/seajs/sea-modules/seajs/1.3.0/package.json: -------------------------------------------------------------------------------- 1 | {"root":"","name":"seajs","version":"1.3.0"} -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /Source/PlatFramework/Library/Dapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/Dapper.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/RazorJS.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/RazorJS.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/log4net.dll -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/seajs/sea-modules/gallery/jquery/1.8.3/package.json: -------------------------------------------------------------------------------- 1 | {"root":"","name":"jquery","version":"1.8.3"} -------------------------------------------------------------------------------- /Source/PlatFramework/Library/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/AutoMapper.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/BookSleeve.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/BookSleeve.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/MefContrib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/MefContrib.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/RestSharp.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/WebGrease.dll -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="PlatJS.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /Source/PlatFramework/Library/RazorEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/RazorEngine.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/WebActivator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/WebActivator.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/EntityFramework.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/SimpleInjector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/SimpleInjector.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/WebMatrix.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/WebMatrix.Data.dll -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_docs/_search_data.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Ajax node 1", 3 | "Ajax node 2", 4 | "TARGET", 5 | "Ajax node 4" 6 | ] -------------------------------------------------------------------------------- /Source/PlatFramework/Library/DapperExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/DapperExtensions.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/ServiceStack.Text.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/ServiceStack.Text.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/System.Web.Helpers.dll -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/favicon.ico -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="RequireMVC199.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /Source/PlatFramework/Library/DotNetOpenAuth.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/DotNetOpenAuth.Core.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/DotNetOpenAuth.OAuth.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/DotNetOpenAuth.OAuth.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/System.Web.Http.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/System.Web.Http.Data.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/System.Web.Providers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/System.Web.Providers.dll -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_docs/_html_data.html: -------------------------------------------------------------------------------- 1 |
  • Node 1
  • 2 |
  • Node 2
  • 3 | -------------------------------------------------------------------------------- /Source/PlatFramework/Library/DotNetOpenAuth.AspNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/DotNetOpenAuth.AspNet.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/DotNetOpenAuth.OpenId.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/DotNetOpenAuth.OpenId.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/System.Web.Optimization.dll -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/fancybox/blank.gif -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="ProductSys.WebAPI.WebApiApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Images/accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Images/accent.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Images/bullet.png -------------------------------------------------------------------------------- /Source/PlatFramework/Library/SimpleInjector.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/SimpleInjector.Extensions.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_demo/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/_demo/file.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_demo/root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/_demo/root.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/_docs/logo.png -------------------------------------------------------------------------------- /Source/PlatFramework/Library/System.Web.Http.Data.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/System.Web.Http.Data.Helpers.dll -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_demo/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/_demo/folder.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_docs/_drive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/_docs/_drive.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/themes/apple/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/themes/apple/d.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/down.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/help.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/info.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/tick.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Images/heroAccent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Images/heroAccent.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Scripts/_references.js -------------------------------------------------------------------------------- /Source/PlatFramework/Library/DotNetOpenAuth.OAuth.Consumer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/DotNetOpenAuth.OAuth.Consumer.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/System.Web.Http.Data.Helpers2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/System.Web.Http.Data.Helpers2.dll -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/images/add.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/images/edit.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/images/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/images/save.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/themes/apple/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/themes/apple/bg.jpg -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/themes/classic/d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/themes/classic/d.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/themes/classic/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/themes/classic/d.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/themes/default/d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/themes/default/d.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/themes/default/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/themes/default/d.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/expand.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/pencil.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/pencil.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/bg.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList0.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList1.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList2.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList3.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList4.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList5.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList6.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList7.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList8.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Images/orderedList9.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/fancybox/fancybox_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/fancybox/fancybox_buttons.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/fancybox/fancybox_loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/fancybox/fancybox_loading.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/fancybox/fancybox_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/fancybox/fancybox_overlay.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/fancybox/fancybox_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/fancybox/fancybox_sprite.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/bg.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/bg.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/images/delete.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/images/excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/images/excel.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/images/print.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/images/query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/images/query.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/images/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/images/report.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/bg.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_docs/syntax/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/_docs/syntax/help.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/actions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/actions.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/calendar.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/collapse.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/header-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/header-bg.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/listview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/listview.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/sort-asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/sort-asc.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/sort-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/sort-asc.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/sort-desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/sort-desc.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/sort-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/sort-desc.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/stripes.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/tag_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/tag_red.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/bg.png -------------------------------------------------------------------------------- /Source/PlatFramework/Library/DotNetOpenAuth.OpenId.RelyingParty.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/DotNetOpenAuth.OpenId.RelyingParty.dll -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/bg_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/bg_tab.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/resize.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/bg_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/bg_tab.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/resize.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_docs/syntax/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/_docs/syntax/printer.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_docs/syntax/wrapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/_docs/syntax/wrapping.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/themes/apple/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/themes/apple/throbber.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/themes/default-rtl/d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/themes/default-rtl/d.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/themes/default-rtl/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/themes/default-rtl/d.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/arrow_redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/arrow_redo.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/arrow_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/arrow_undo.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/bullet_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/bullet_blue.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/bullet_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/bullet_star.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/drag-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/drag-handle.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/row-over-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/row-over-bg.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/bg_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/bg_tab.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/button5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/button5.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/resize.gif -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Plugins/ProductSys.PlugIn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Plugins/ProductSys.PlugIn.dll -------------------------------------------------------------------------------- /Source/PlatFramework/Library/System.Web.Http.Data.EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/Library/System.Web.Http.Data.EntityFramework.dll -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutelabeltab/images/tab_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutelabeltab/images/tab_right.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/button5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/button5.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/dropdown.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/resize_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/resize_bg.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/tab_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/tab_left.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/tab_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/tab_right.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/bg_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/bg_tab.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/button5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/button5.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/dropdown.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/resize.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/tab_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/tab_left.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/button5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/button5.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/dropdown.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/resize_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/resize_bg.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/tab_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/tab_left.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/tab_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/tab_right.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_docs/syntax/clipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/_docs/syntax/clipboard.swf -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_docs/syntax/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/_docs/syntax/magnifier.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/themes/apple/dot_for_ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/themes/apple/dot_for_ie.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/themes/classic/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/themes/classic/throbber.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/themes/default-rtl/dots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/themes/default-rtl/dots.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/themes/default/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/themes/default/throbber.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/comment_yellow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/comment_yellow.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/user_identity.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/user_identity.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/dropdown.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/panel_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/panel_left.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/popup_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/popup_left.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/resize_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/resize_bg.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/tab_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/tab_left.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/tab_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/tab_right.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/bg_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/bg_tab.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/button5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/button5.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/resize.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/button_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/button_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/panel_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/panel_left.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/panel_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/panel_right.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/popup_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/popup_left.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/panel_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/panel_left.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/popup_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/popup_left.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/resize_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/resize_bg.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/tab_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/tab_right.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/button_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/button_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/panel_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/panel_left.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/panel_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/panel_right.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/popup_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/popup_left.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_docs/_json_data.json: -------------------------------------------------------------------------------- 1 | [ 2 | { "data" : "A node", "children" : [ { "data" : "Only child", "state" : "closed" } ], "state" : "open" }, 3 | "Ajax node" 4 | ] -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/themes/classic/dot_for_ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/themes/classic/dot_for_ie.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/editor-helper-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/editor-helper-bg.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/button2_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/button2_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/button3_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/button3_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/button4_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/button4_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/button5_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/button5_over.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/button_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/button_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/panel_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/panel_right.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/dropdown.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/resize_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/resize_bg.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/tab_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/tab_left.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/tab_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/tab_right.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutelabeltab/images/tab_right_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutelabeltab/images/tab_right_over.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/button2_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/button2_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/button3_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/button3_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/button4_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/button4_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/button5_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/button5_over.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/tab_left_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/tab_left_over.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/tab_right_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/tab_right_over.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/button2_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/button2_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/button3_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/button3_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/button4_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/button4_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/button5_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/button5_over.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/button_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/button_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/panel_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/panel_right.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/tab_left_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/tab_left_over.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/button2_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/button2_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/button3_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/button3_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/button4_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/button4_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/button5_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/button5_over.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/tab_left_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/tab_left_over.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/tab_right_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/tab_right_over.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_docs/syntax/page_white_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/_docs/syntax/page_white_code.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_docs/syntax/page_white_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/_docs/syntax/page_white_copy.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/themes/default-rtl/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/jstree/themes/default-rtl/throbber.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/ajax-loader-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/ajax-loader-small.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/bullet_toggle_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/bullet_toggle_minus.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/bullet_toggle_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/bullet_toggle_plus.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/header-columns-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/header-columns-bg.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/user_identity_plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/user_identity_plus.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/tab_left_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/tab_left_over.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/tab_right_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/tab_right_over.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/button2_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/button2_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/button3_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/button3_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/button4_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/button4_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/button5_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/button5_over.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/button_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/button_over.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/panel_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/panel_left.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/panel_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/panel_right.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/popup_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/popup_left.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/tab_right_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/tab_right_over.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/arrow_right_spearmint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/arrow_right_spearmint.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/tab_left_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/tab_left_over.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/tab_right_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/tab_right_over.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/arrow_right_peppermint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/arrow_right_peppermint.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/images/header-columns-over-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/images/header-columns-over-bg.gif -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/button3_over_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/images/button3_over_dropdown.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/button3_over_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoptab/css/images/button3_over_dropdown.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/button3_over_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/tabbackup/css/images/button3_over_dropdown.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/button3_over_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/cutetoolbar/css/images/button3_over_dropdown.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/button3_over_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/treetabpanel/css/images/button3_over_dropdown.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/ViewJS/Controllers/Mutiple/Mutiple-Index.js: -------------------------------------------------------------------------------- 1 | require(['../../../Scripts/common'], function (common) { 2 | //require(['app/main1']); 3 | alert('happy mutiple index'); 4 | }); 5 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/ViewJS/temp/MyMath.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | define(function () { 4 | function add(a, b) { 5 | return a + b; 6 | } 7 | 8 | return { 9 | sum: add 10 | }; 11 | 12 | }); -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Plugins/PluginsConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/PlatFramework/PlatJS/Scripts/slickgrid/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/ViewJS/entryOfHome.js: -------------------------------------------------------------------------------- 1 | require.config({ 2 | // config options 3 | }); 4 | 5 | require(['jshelper', 'jstree', 'cutemenutab', 'cutetoolbar'], function () { 6 | // Modules that do stuff on every page are instantiated here 7 | }); -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besley/Plat2012/HEAD/Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Source/RequireMVC199/TR.Datasource/IProductDatabase.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using Plat.DataRepository; 6 | 7 | namespace TR.Datasource 8 | { 9 | public interface IProductDatabase : IDatabase 10 | { 11 | } 12 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/TR.Datasource/IProductDbSession.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using Plat.DataRepository; 6 | 7 | namespace TR.Datasource 8 | { 9 | public interface IProductDbSession : ISession 10 | { 11 | } 12 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/TR.Datasource/IStorageDatabase.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using Plat.DataRepository; 6 | 7 | namespace TR.Datasource 8 | { 9 | public interface IStorageDatabase : IDatabase 10 | { 11 | } 12 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/TR.Datasource/IStorageDbSession.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using Plat.DataRepository; 6 | 7 | namespace TR.Datasource 8 | { 9 | public interface IStorageDbSession : ISession 10 | { 11 | } 12 | } -------------------------------------------------------------------------------- /Source/PlatFramework/Plat.ServiceBuilder/IPluginService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Plat.ServiceBuilder 8 | { 9 | public interface IPluginService 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/seajs/sea-modules/seajs/1.3.0/plugin-i18n.js: -------------------------------------------------------------------------------- 1 | define("seajs/plugin-i18n",[],function(){var a=seajs.pluginSDK,c=a.Module,d=a.config.locale||"",e=c._resolve;c._resolve=function(b,a){0===b.indexOf("i18n!")&&(b="./i18n/"+d+"/"+b.substring(5));return e(b,a)}});seajs.use("seajs/plugin-i18n"); 2 | -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.BizEntity/Queryable/OrderQuery.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace ProductSys.BizEntity 8 | { 9 | public class OrderQuery : Order 10 | { 11 | 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Views/Shared/_LayoutOfForm.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | @ViewBag.Title 7 | 8 | 9 |
    10 | @RenderBody() 11 |
    12 | 13 | 14 | -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.BizEntity/Queryable/ProductQuery.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using ProductSys.BizEntity; 6 | 7 | namespace ProductSys.BizEntity.Queryable 8 | { 9 | public class ProductQuery : Product 10 | { 11 | 12 | } 13 | } -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.selectable.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black} -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_docs/_xml_flat.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.selectable.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black} -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.selectable.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black} -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.autocomplete.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-autocomplete{position:absolute;top:0;cursor:default}* html .ui-autocomplete{width:1px} -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Mvc; 3 | 4 | namespace PlatJS 5 | { 6 | public class FilterConfig 7 | { 8 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 9 | { 10 | filters.Add(new HandleErrorAttribute()); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.autocomplete.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-autocomplete{position:absolute;top:0;cursor:default}* html .ui-autocomplete{width:1px} -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Models/User.js: -------------------------------------------------------------------------------- 1 | //define(function () { 2 | 3 | // function User(name) { 4 | // this.name = name || 'Default name'; 5 | // } 6 | 7 | // return User; 8 | //}); 9 | 10 | define(function () { 11 | function User(name) { 12 | this.name = name || 'Default name'; 13 | } 14 | return User; 15 | }); -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductWebModeling/LayerDiagram.layerdiagram.suppressions: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Source/PlatFramework/Plat.ServiceBuilder/Injection/IContainer.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Plat.ServiceBuilder.Injection 8 | { 9 | public interface IContainer 10 | { 11 | T GetInstance() where T : class; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.BizEntity/Role.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace ProductSys.BizEntity 8 | { 9 | public class Role 10 | { 11 | public int Id { get; set; } 12 | public string Name { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Mvc; 3 | 4 | namespace RequireMVC199 5 | { 6 | public class FilterConfig 7 | { 8 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 9 | { 10 | filters.Add(new HandleErrorAttribute()); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Mvc; 3 | 4 | namespace ProductSys.WebAPI 5 | { 6 | public class FilterConfig 7 | { 8 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 9 | { 10 | filters.Add(new HandleErrorAttribute()); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | 5 | 6 | 7 | 8 | 9 | Error 10 | 11 | 12 |

    13 | Sorry, an error occurred while processing your request. 14 |

    15 | 16 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/ViewJS/Controllers/Sub/Sub-Index.js: -------------------------------------------------------------------------------- 1 | define(['../../../Scripts/common'], function (common) { 2 | //require(['app/main1']); 3 | alert('happy sub index js code'); 4 | 5 | function test() { 6 | alert('test hello in sub'); 7 | } 8 | 9 | test(); 10 | 11 | return { 12 | test: test 13 | } 14 | }); 15 | 16 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.progressbar.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%} -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_demo/_install.txt: -------------------------------------------------------------------------------- 1 | 1) Create a database and a user with all privileges for this database. 2 | 2) Edit the config.php file and update the configuration for the database at the top of the file 3 | 3) Import the _dump.sql in your newly created database 4 | 4) You are ready to go 5 | 6 | *) PLEASE NOTE THAT THE PHP TREE CLASS HAS NOT BEEN THOROUGHLY TESTED -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.progressbar.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%} -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.progressbar.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%} -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Theming 10 | */ 11 | @import "jquery.ui.base.css"; 12 | @import "jquery.ui.theme.css"; 13 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Theming 10 | */ 11 | @import "jquery.ui.base.css"; 12 | @import "jquery.ui.theme.css"; 13 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/seajs/sea-modules/seajs/1.3.0/plugin-warning.js: -------------------------------------------------------------------------------- 1 | define("seajs/plugin-warning",[],function(){var b=seajs.pluginSDK.Module,f=b._save;b._save=function(c,b){if(d.test(c)){var a=c.replace(d,"{{version}}"),a=e[a]||(e[a]=[]);a.push(c);1 "localhost", 5 | "username" => "root", 6 | "password" => "", 7 | "database" => "" 8 | ); 9 | if(extension_loaded("mysqli")) require_once("_inc/class._database_i.php"); 10 | else require_once("_inc/class._database.php"); 11 | 12 | // Tree class 13 | require_once("_inc/class.tree.php"); 14 | ?> -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/RequireJS.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Selectable#theming 10 | */ 11 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 12 | -------------------------------------------------------------------------------- /Source/RequireMVC199/TR.Datasource/ProductDbSession.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using Plat.DataRepository; 6 | 7 | namespace TR.Datasource 8 | { 9 | public class ProductDbSession : SessionBase, IProductDbSession 10 | { 11 | public ProductDbSession(IProductDatabase database) 12 | : base(database) 13 | { 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/TR.Datasource/StorageDbSession.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using Plat.DataRepository; 6 | 7 | namespace TR.Datasource 8 | { 9 | public class StorageDbSession : SessionBase, IStorageDbSession 10 | { 11 | public StorageDbSession(IStorageDatabase database) 12 | :base(database) 13 | { 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/lib/firebugx.js: -------------------------------------------------------------------------------- 1 | if (typeof console === "undefined" || typeof console.log === "undefined") { 2 | var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml", 3 | "group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"]; 4 | 5 | window.console = {}; 6 | for (var i = 0; i < names.length; ++i) { 7 | window.console[names[i]] = function() {} 8 | } 9 | } -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/jquery.ui.tooltip.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.tooltip.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}* html .ui-tooltip{background-image:none}body .ui-tooltip{border-width:2px} -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.Interface/IRoleService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.ComponentModel; 6 | using System.ComponentModel.Composition; 7 | using Plat.DataRepository; 8 | using Plat.ServiceBuilder; 9 | using ProductSys.BizEntity; 10 | 11 | namespace ProductSys.Interface 12 | { 13 | public interface IRoleService : IService 14 | { 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/Style.css: -------------------------------------------------------------------------------- 1 | #container{ 2 | font-family:Calibri, Helvetica, serif; 3 | color:#444; 4 | width:200px; 5 | margin:100px auto 0; 6 | padding:30px; 7 | border:1px solid #ddd; 8 | background:#f6f6f6; 9 | -webkit-border-radius:4px; 10 | -moz-border-radius:4px; 11 | border-radius:4px; 12 | } 13 | 14 | h1, nav{ 15 | text-align:center; 16 | margin:0 0 20px; 17 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/jquery.ui.tooltip.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.tooltip.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}* html .ui-tooltip{background-image:none}body .ui-tooltip{border-width:2px} -------------------------------------------------------------------------------- /Source/RequireMVC199/TR.Datasource/StorageDatabase.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Data; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Web; 6 | using Plat.DataRepository; 7 | 8 | namespace TR.Datasource 9 | { 10 | public class StorageDatabase : Database, IStorageDatabase 11 | { 12 | public StorageDatabase(IDbConnection connection) 13 | : base(connection) 14 | { 15 | } 16 | } 17 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Controllers/MainController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace RequireMVC199.Controllers 8 | { 9 | public class MainController : Controller 10 | { 11 | // 12 | // GET: /Main/ 13 | 14 | public ActionResult List() 15 | { 16 | return View(); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Source/RequireMVC199/TR.Datasource/ProductDatabase.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Data; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Web; 6 | using Plat.DataRepository; 7 | 8 | namespace TR.Datasource 9 | { 10 | public class ProductDatabase : Database, IProductDatabase 11 | { 12 | public ProductDatabase(IDbConnection connection) 13 | : base(connection) 14 | { 15 | 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.DAL/EPFunction.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace ProductSys.DAL 8 | { 9 | public partial class EPFunction 10 | { 11 | public int ID { get; set; } 12 | public string FuncName { get; set; } 13 | public int ParentFuncId { get; set; } 14 | public string Notes { get; set; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Controllers/SubController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace RequireMVC199.Controllers 8 | { 9 | public class SubController : Controller 10 | { 11 | // 12 | // GET: /Sub/ 13 | 14 | public ActionResult Index() 15 | { 16 | return View("SubIndex"); 17 | } 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace RequireMVC199.Controllers 8 | { 9 | public class HomeController : Controller 10 | { 11 | // 12 | // GET: /Home/ 13 | 14 | public ActionResult Index() 15 | { 16 | return View("HomeIndex"); 17 | } 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Progressbar#theming 10 | */ 11 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; } 12 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.DAL/EPProduct.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace ProductSys.DAL 7 | { 8 | public class EPProduct 9 | { 10 | public int ID { get; set; } 11 | public string ProductName { get; set; } 12 | public string ProductType { get; set; } 13 | public Nullable UnitPrice { get; set; } 14 | public string Notes { get; set; } 15 | } 16 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.BizEntity/FunctionMenu.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace ProductSys.BizEntity 8 | { 9 | public partial class FunctionMenu 10 | { 11 | public int ID { get; set; } 12 | public string FuncName { get; set; } 13 | public int ParentFuncId { get; set; } 14 | public string Notes { get; set; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Progressbar#theming 10 | */ 11 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; } 12 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Controllers/MutipleController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace RequireMVC199.Controllers 8 | { 9 | public class MutipleController : Controller 10 | { 11 | // 12 | // GET: /Multiple/ 13 | 14 | public ActionResult Index() 15 | { 16 | return View("MutipleIndex"); 17 | } 18 | 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | @ViewBag.Title 7 | @Styles.Render("~/Content/css") 8 | @Scripts.Render("~/bundles/modernizr") 9 | 10 | 11 | @RenderBody() 12 | 13 | @Scripts.Render("~/bundles/jquery") 14 | @RenderSection("scripts", required: false) 15 | 16 | 17 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/seajs/sea-modules/seajs/1.3.0/plugin-coffee.js: -------------------------------------------------------------------------------- 1 | /** 2 | * The CoffeeScript plugin 3 | */ 4 | define('seajs/plugin-coffee', ['./plugin-base', 'coffee'], function(require) { 5 | 6 | var plugin = require('./plugin-base') 7 | var CoffeeScript = require('coffee') 8 | 9 | 10 | plugin.add({ 11 | name: 'coffee', 12 | 13 | ext: ['.coffee'], 14 | 15 | fetch: function(url, callback) { 16 | CoffeeScript.load(url, callback) 17 | } 18 | }) 19 | 20 | }); 21 | 22 | -------------------------------------------------------------------------------- /Source/PlatFramework/Plat.WebUtility/ApiControllerBase.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Web; 7 | using System.Web.Http; 8 | 9 | namespace Plat.WebUtility 10 | { 11 | /// 12 | /// Controller的基类,用于实现适合业务场景的基础功能 13 | /// 14 | /// 15 | public abstract class ApiControllerBase : ApiController 16 | { 17 | 18 | } 19 | } 20 | 21 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Views/Main/List.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | A simple MVC structure 6 | 7 | 8 | 9 |
    10 |

    My users

    11 | 12 |
    13 |
    14 | 15 | 16 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/seajs/sea-modules/seajs/1.3.0/plugin-json.js: -------------------------------------------------------------------------------- 1 | /** 2 | * The json plugin 3 | */ 4 | define('seajs/plugin-json', ['./plugin-base'], function(require) { 5 | 6 | var plugin = require('./plugin-base') 7 | var util = plugin.util 8 | 9 | 10 | plugin.add({ 11 | name: 'json', 12 | 13 | ext: ['.json'], 14 | 15 | fetch: function(url, callback) { 16 | util.xhr(url, function(code) { 17 | util.globalEval('define(' + code + ')') 18 | callback() 19 | }) 20 | } 21 | }) 22 | 23 | }); 24 | 25 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Autocomplete 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Autocomplete#theming 10 | */ 11 | .ui-autocomplete { 12 | position: absolute; 13 | top: 0; /* #8656 */ 14 | cursor: default; 15 | } 16 | 17 | /* workarounds */ 18 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ 19 | -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.DAL/EPStorage.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace ProductSys.DAL 8 | { 9 | /// 10 | /// 库存业务对象 11 | /// 12 | public partial class EPStorage 13 | { 14 | public int ID { get; set; } 15 | public int ProductId { get; set; } 16 | public int StorageAmount { get; set; } 17 | public System.DateTime LastUpdatedDate { get; set; } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web.Http; 5 | 6 | namespace PlatJS 7 | { 8 | public static class WebApiConfig 9 | { 10 | public static void Register(HttpConfiguration config) 11 | { 12 | config.Routes.MapHttpRoute( 13 | name: "DefaultApi", 14 | routeTemplate: "api/{controller}/{id}", 15 | defaults: new { id = RouteParameter.Optional } 16 | ); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Autocomplete 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Autocomplete#theming 10 | */ 11 | .ui-autocomplete { 12 | position: absolute; 13 | top: 0; /* #8656 */ 14 | cursor: default; 15 | } 16 | 17 | /* workarounds */ 18 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ 19 | -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.Interface/IProductService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using Plat.DataRepository; 6 | using Plat.ServiceBuilder; 7 | using ProductSys.BizEntity; 8 | 9 | namespace ProductSys.Interface 10 | { 11 | /// 12 | /// 产品服务接口 13 | /// 14 | public interface IProductService : IService 15 | { 16 | Product GetProductOrders(long productId); 17 | void UpdateBatch(IEnumerable entityList); 18 | object Find(long productId); 19 | } 20 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.Interface/IStorageCheckService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.ComponentModel.Composition; 6 | using Plat.WebUtility; 7 | using Plat.DataRepository; 8 | using Plat.ServiceBuilder; 9 | using ProductSys.BizEntity; 10 | 11 | namespace ProductSys.Interface 12 | { 13 | /// 14 | /// 插件服务接口 15 | /// 16 | [InheritedExport(typeof(IStorageCheckService))] 17 | public interface IStorageCheckService: IService, IPluginService 18 | { 19 | 20 | } 21 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web.Http; 5 | 6 | namespace RequireMVC199 7 | { 8 | public static class WebApiConfig 9 | { 10 | public static void Register(HttpConfiguration config) 11 | { 12 | config.Routes.MapHttpRoute( 13 | name: "DefaultApi", 14 | routeTemplate: "api/{controller}/{id}", 15 | defaults: new { id = RouteParameter.Optional } 16 | ); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Source/PlatFramework/Plat.WebUtility/WcfException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Plat.WebUtility 8 | { 9 | /// 10 | /// Wcf异常类 11 | /// 12 | public class WcfException : ApplicationException 13 | { 14 | public WcfException(string message) 15 | : base(message) 16 | { 17 | } 18 | 19 | public WcfException(string message, Exception ex) 20 | : base(message, ex) 21 | { 22 | 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/ViewJS/Controllers/Main/ListController.js: -------------------------------------------------------------------------------- 1 | //define(['Views/ListView'], function (ListView) { 2 | 3 | // function start() { 4 | // var users = JSON.parse(localStorage.users); 5 | // ListView.render({ users: users }); 6 | // } 7 | 8 | // return { 9 | // start: start 10 | // }; 11 | //}); 12 | 13 | define(['Controllers/Main/ListView'], function (ListView) { 14 | function start() { 15 | var users = JSON.parse(localStorage.users); 16 | ListView.render({ users: users }); 17 | } 18 | 19 | return { 20 | start: start 21 | }; 22 | }); -------------------------------------------------------------------------------- /Source/PlatFramework/DapperExtensions/Mapper/AutoClassMapper.cs: -------------------------------------------------------------------------------- 1 | using System.Text; 2 | using System.Linq; 3 | using System.Collections.Generic; 4 | using System; 5 | 6 | namespace DapperExtensions.Mapper 7 | { 8 | /// 9 | /// Automatically maps an entity to a table using a combination of reflection and naming conventions for keys. 10 | /// 11 | public class AutoClassMapper : ClassMapper where T : class 12 | { 13 | public AutoClassMapper() 14 | { 15 | Type type = typeof(T); 16 | Table(type.Name); 17 | AutoMap(); 18 | } 19 | } 20 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.Interface/IFunctionMenuService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using Plat.WebUtility; 6 | using Plat.DataRepository; 7 | using Plat.ServiceBuilder; 8 | using ProductSys.BizEntity; 9 | 10 | namespace ProductSys.Interface 11 | { 12 | /// 13 | /// 功能菜单服务类 14 | /// 15 | public interface IFunctionMenuService: IService 16 | { 17 | /// 18 | /// 获取树节点Json格式数据数组 19 | /// 20 | /// 21 | JsTreeModel[] GetJsTreeView(); 22 | } 23 | } -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_docs/_xml_nest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.BizEntity/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace ProductSys.BizEntity 7 | { 8 | public class Product 9 | { 10 | public int ID { get; set; } 11 | public string ProductName { get; set; } 12 | public string ProductType { get; set; } 13 | public Nullable UnitPrice { get; set; } 14 | public string Notes { get; set; } 15 | 16 | /// 17 | /// 产品所包含的订单数据列表 18 | /// 19 | public IEnumerable OrderList { get; set; } 20 | } 21 | } -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/jquery.ui.tooltip.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tooltip 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-tooltip { 10 | padding: 8px; 11 | position: absolute; 12 | z-index: 9999; 13 | max-width: 300px; 14 | -webkit-box-shadow: 0 0 5px #aaa; 15 | box-shadow: 0 0 5px #aaa; 16 | } 17 | /* Fades and background-images don't work well together in IE6, drop the image */ 18 | * html .ui-tooltip { 19 | background-image: none; 20 | } 21 | body .ui-tooltip { border-width: 2px; } 22 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/jquery.ui.tooltip.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tooltip 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-tooltip { 10 | padding: 8px; 11 | position: absolute; 12 | z-index: 9999; 13 | max-width: 300px; 14 | -webkit-box-shadow: 0 0 5px #aaa; 15 | box-shadow: 0 0 5px #aaa; 16 | } 17 | /* Fades and background-images don't work well together in IE6, drop the image */ 18 | * html .ui-tooltip { 19 | background-image: none; 20 | } 21 | body .ui-tooltip { border-width: 2px; } 22 | -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.BizEntity/StorageCheck.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace ProductSys.BizEntity 8 | { 9 | /// 10 | /// 出入库记录实体 11 | /// 12 | public partial class StorageCheck 13 | { 14 | public int ID { get; set; } 15 | public int ProductId { get; set; } 16 | public byte CheckTypeId { get; set; } 17 | public int CheckAmount { get; set; } 18 | public string CheckPerson { get; set; } 19 | public System.DateTime CheckDatetime { get; set; } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Source/PlatFramework/Plat.WebUtility/JsTreeModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Plat.WebUtility 8 | { 9 | /// 10 | /// JsTree 属性 11 | /// 12 | public class JsTreeAttribute 13 | { 14 | public string id; 15 | public bool selected; 16 | } 17 | 18 | /// 19 | /// JsTreeModel 20 | /// 21 | public class JsTreeModel 22 | { 23 | public string data; 24 | public JsTreeAttribute attr; 25 | public JsTreeModel[] children; 26 | } 27 | } 28 | 29 | 30 | -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.DAL/EPStorageCheck.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace ProductSys.DAL 8 | { 9 | /// 10 | /// 出入库记录实体 11 | /// 12 | public partial class EPStorageCheck 13 | { 14 | public int ID { get; set; } 15 | public int ProductId { get; set; } 16 | public byte CheckTypeId { get; set; } 17 | public int CheckAmount { get; set; } 18 | public string CheckPerson { get; set; } 19 | public System.DateTime CheckDatetime { get; set; } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/ViewJS/Controllers/Main/AddView.js: -------------------------------------------------------------------------------- 1 | //define(function () { 2 | 3 | // function render(parameters) { 4 | // var appDiv = document.getElementById('app'); 5 | // appDiv.innerHTML = ''; 6 | // } 7 | 8 | // return { 9 | // render: render 10 | // }; 11 | //}); 12 | 13 | define(function () { 14 | function render(parameters) { 15 | var appDiv = document.getElementById('app'); 16 | appDiv.innerHTML = ''; 17 | } 18 | 19 | return { 20 | render: render 21 | } 22 | }); -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutelabeltab/cutemenutab.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | $.fn.initTabMenu = function (objMenu, objContent, options) { 3 | //Menu绑定click事件 ---- unbind()删除所有绑定事件 4 | $("label", objMenu).unbind().bind("click", function () { 5 | //删掉所有label的选中class 6 | $("label", objMenu).removeClass("selected"); 7 | //当前对象选中Class 8 | $(this).addClass("selected"); 9 | //所有内容DIV 隐藏 10 | objContent.children("div").hide(); 11 | //当前选中tab的内容DIV显示 12 | objContent.children().eq($("label", objMenu).index($(this))).show(); 13 | }); 14 | } 15 | })(jQuery) -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.Interface/IStorageService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.ComponentModel.Composition; 6 | using Plat.DataRepository; 7 | using Plat.ServiceBuilder; 8 | using ProductSys.BizEntity; 9 | 10 | namespace ProductSys.Interface 11 | { 12 | /// 13 | /// 插件服务接口 14 | /// 15 | [InheritedExport(typeof(IStorageService))] 16 | public interface IStorageService: IService, IPluginService 17 | { 18 | Storage GetStorage(object id); 19 | string HelloMessage(string message); 20 | bool BanlanceStorage(dynamic id); 21 | } 22 | } -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/controls/slick.columnpicker.css: -------------------------------------------------------------------------------- 1 | .slick-columnpicker { 2 | border: 1px solid #718BB7; 3 | background: #f0f0f0; 4 | padding: 6px; 5 | -moz-box-shadow: 2px 2px 2px silver; 6 | -webkit-box-shadow: 2px 2px 2px silver; 7 | min-width: 100px; 8 | cursor: default; 9 | } 10 | 11 | .slick-columnpicker li { 12 | list-style: none; 13 | margin: 0; 14 | padding: 0; 15 | background: none; 16 | } 17 | 18 | .slick-columnpicker input { 19 | margin: 4px; 20 | } 21 | 22 | .slick-columnpicker li a { 23 | display: block; 24 | padding: 4px; 25 | font-weight: bold; 26 | } 27 | 28 | .slick-columnpicker li a:hover { 29 | background: white; 30 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.BizEntity/Storage.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace ProductSys.BizEntity 8 | { 9 | /// 10 | /// 库存业务对象 11 | /// 12 | public partial class Storage 13 | { 14 | public int ID { get; set; } 15 | public int ProductId { get; set; } 16 | public int StorageAmount { get; set; } 17 | public System.DateTime LastUpdatedDate { get; set; } 18 | 19 | /// 20 | /// 库存记录的产品数据 21 | /// 22 | public Product Product { get; set; } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using System.Web.Routing; 7 | 8 | namespace PlatJS 9 | { 10 | public class RouteConfig 11 | { 12 | public static void RegisterRoutes(RouteCollection routes) 13 | { 14 | routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); 15 | 16 | routes.MapRoute( 17 | name: "Default", 18 | url: "{controller}/{action}/{id}", 19 | defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } 20 | ); 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.DAL/EPOrder.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace ProductSys.DAL 7 | { 8 | public partial class EPOrder 9 | { 10 | public int ID { get; set; } 11 | public int ProductId { get; set; } 12 | public int BuyAmount { get; set; } 13 | public System.DateTime BuyDate { get; set; } 14 | public string BuyPerson { get; set; } 15 | public bool IsArrivaled { get; set; } 16 | public string Notes { get; set; } 17 | public Nullable DiscountPercentage { get; set; } 18 | public Nullable ArrivaledDate { get; set; } 19 | } 20 | } -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/qh.css: -------------------------------------------------------------------------------- 1 | a {text-decoration:none;color:#666} 2 | a:link {text-decoration: none;} 3 | a:hover {text-decoration: none;color: #FD790A;} 4 | ul, li {list-style:none;margin:0;padding:0} 5 | .in_right { float:left;} 6 | .T_Menu_01 {height:23px;background:#BFDBFF;font-size:14px;} 7 | .T_Menu_01 LABEL{ background:url(images/bg_qh_over.gif) no-repeat;float:left; width:89px; line-height:23px; height:23px;color: #765;text-align:center; cursor:pointer} 8 | .T_Menu_01 .selected { background:url(images/bg_qh.gif) no-repeat; width:89px; HEIGHT:23px;color: #004E99} 9 | .b_cont_01 {width:694px; height:300px;float:left} 10 | .b_con_01_wz {padding-left:12px;width:672px;background:url(l_bg.gif);float:left;} -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/qh.css: -------------------------------------------------------------------------------- 1 | a {text-decoration:none;color:#666} 2 | a:link {text-decoration: none;} 3 | a:hover {text-decoration: none;color: #FD790A;} 4 | ul, li {list-style:none;margin:0;padding:0} 5 | .in_right { float:left;} 6 | .T_Menu_01 {height:23px;background:#BFDBFF;font-size:14px;} 7 | .T_Menu_01 LABEL{ background:url(images/bg_qh_over.gif) no-repeat;float:left; width:89px; line-height:23px; height:23px;color: #765;text-align:center; cursor:pointer} 8 | .T_Menu_01 .selected { background:url(images/bg_qh.gif) no-repeat; width:89px; HEIGHT:23px;color: #004E99} 9 | .b_cont_01 {width:694px; height:300px;float:left} 10 | .b_con_01_wz {padding-left:12px;width:672px;background:url(l_bg.gif);float:left;} -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.BizEntity/Order.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace ProductSys.BizEntity 7 | { 8 | public partial class Order 9 | { 10 | public int ID { get; set; } 11 | public int ProductId { get; set; } 12 | public int BuyAmount { get; set; } 13 | public System.DateTime BuyDate { get; set; } 14 | public string BuyPerson { get; set; } 15 | public bool IsArrivaled { get; set; } 16 | public string Notes { get; set; } 17 | public Nullable DiscountPercentage { get; set; } 18 | public Nullable ArrivaledDate { get; set; } 19 | } 20 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using System.Web.Routing; 7 | 8 | namespace RequireMVC199 9 | { 10 | public class RouteConfig 11 | { 12 | public static void RegisterRoutes(RouteCollection routes) 13 | { 14 | routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); 15 | 16 | routes.MapRoute( 17 | name: "Default", 18 | url: "{controller}/{action}/{id}", 19 | defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } 20 | ); 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using System.Web.Routing; 7 | 8 | namespace ProductSys.WebAPI 9 | { 10 | public class RouteConfig 11 | { 12 | public static void RegisterRoutes(RouteCollection routes) 13 | { 14 | routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); 15 | 16 | routes.MapRoute( 17 | name: "Default", 18 | url: "{controller}/{action}/{id}", 19 | defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } 20 | ); 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /Source/PlatFramework/Plat.WebUtility/UserEntity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Plat.WebUtility 8 | { 9 | public class UserEntity 10 | { 11 | public int UserId 12 | { 13 | get; 14 | set; 15 | } 16 | 17 | public string UserName 18 | { 19 | get; 20 | set; 21 | } 22 | 23 | public string DepartmentId 24 | { 25 | get; 26 | set; 27 | } 28 | 29 | public string DepartmentName 30 | { 31 | get; 32 | set; 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.autocomplete.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-autocomplete{position:absolute;cursor:default}* html .ui-autocomplete{width:1px}.ui-menu{list-style:none;padding:2px;margin:0;display:block;float:left}.ui-menu .ui-menu{margin-top:-3px}.ui-menu .ui-menu-item{margin:0;padding:0;zoom:1;float:left;clear:left;width:100%}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:.2em .4em;line-height:1.5;zoom:1}.ui-menu .ui-menu-item a.ui-state-hover,.ui-menu .ui-menu-item a.ui-state-active{font-weight:normal;margin:-1px} -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web.Http; 5 | using ServiceStack.Text; 6 | 7 | namespace ProductSys.WebAPI 8 | { 9 | public static class WebApiConfig 10 | { 11 | public static void Register(HttpConfiguration config) 12 | { 13 | config.Routes.MapHttpRoute( 14 | name: "defaultApi", 15 | routeTemplate: "api/{controller}/{action}/{id}", 16 | defaults: new 17 | { 18 | //action = RouteParameter.Optional, 19 | id = RouteParameter.Optional 20 | }); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Views/Shared/_LayoutOfHome.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | @ViewBag.Title 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |
    15 | @RenderBody() 16 |
    17 | 18 | 19 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/jquery.ui.accordion.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.accordion.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin-top:2px;padding:.5em .5em .5em .7em;zoom:1}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-noicons{padding-left:.7em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto;zoom:1} -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/jquery.ui.accordion.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.accordion.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin-top:2px;padding:.5em .5em .5em .7em;zoom:1}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-noicons{padding-left:.7em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto;zoom:1} -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.BizEntity/OrderView.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace ProductSys.BizEntity 7 | { 8 | public class OrderView 9 | { 10 | public int ID { get; set; } 11 | public int ProductId { get; set; } 12 | public string ProductName { get; set; } 13 | public int BuyAmount { get; set; } 14 | public System.DateTime BuyDate { get; set; } 15 | public string BuyPerson { get; set; } 16 | public bool IsArrivaled { get; set; } 17 | public string Notes { get; set; } 18 | public Nullable DiscountPercentage { get; set; } 19 | public Nullable ArrivaledDate { get; set; } 20 | } 21 | } -------------------------------------------------------------------------------- /Source/PlatFramework/Plat.ExceptionHelper/ErrorHandlerFactory.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Plat.ExceptionHelper 8 | { 9 | public class ErrorHandlerFactory 10 | { 11 | public static ErrorHandler Create(string message, int errorCode) 12 | { 13 | return Create(message, errorCode, Guid.NewGuid().ToString()); 14 | } 15 | 16 | public static ErrorHandler Create(string message, int errorCode, string errorGuid) 17 | { 18 | ErrorHandler errHandler = new ErrorHandler { ErrorCode = errorCode, ErrorGuid = errorGuid, Cause = message }; 19 | return errHandler; 20 | } 21 | 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Source/PlatFramework/Plat.ExceptionHelper/ErrorHandler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.ServiceModel; 7 | using System.Runtime.Serialization; 8 | 9 | namespace Plat.ExceptionHelper 10 | { 11 | [DataContract] 12 | public class ErrorHandler 13 | { 14 | [DataMember] 15 | public int ErrorCode { get; set; } 16 | 17 | [DataMember] 18 | public string ErrorGuid { get; set; } 19 | 20 | [DataMember] 21 | public string Cause { get; set; } 22 | 23 | public string GetInfo() 24 | { 25 | return string.Format("错误描述:{0}, 错误代码:{1}, 错误标识:{2}", Cause, ErrorCode, ErrorGuid); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.8.20 3 | * 4 | * Copyright 2012, AUTHORS.txt (http://jqueryui.com/about) 5 | * Licensed under the MIT license. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import url("jquery.ui.core.css"); 11 | 12 | @import url("jquery.ui.accordion.css"); 13 | @import url("jquery.ui.autocomplete.css"); 14 | @import url("jquery.ui.button.css"); 15 | @import url("jquery.ui.datepicker.css"); 16 | @import url("jquery.ui.dialog.css"); 17 | @import url("jquery.ui.progressbar.css"); 18 | @import url("jquery.ui.resizable.css"); 19 | @import url("jquery.ui.selectable.css"); 20 | @import url("jquery.ui.slider.css"); 21 | @import url("jquery.ui.tabs.css"); 22 | -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.ServiceImp/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
    6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Global.asax.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Http; 6 | using System.Web.Mvc; 7 | using System.Web.Routing; 8 | 9 | namespace PlatJS 10 | { 11 | // Note: For instructions on enabling IIS6 or IIS7 classic mode, 12 | // visit http://go.microsoft.com/?LinkId=9394801 13 | public class MvcApplication : System.Web.HttpApplication 14 | { 15 | protected void Application_Start() 16 | { 17 | AreaRegistration.RegisterAllAreas(); 18 | 19 | WebApiConfig.Register(GlobalConfiguration.Configuration); 20 | FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters); 21 | RouteConfig.RegisterRoutes(RouteTable.Routes); 22 | } 23 | } 24 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Global.asax.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Http; 6 | using System.Web.Mvc; 7 | using System.Web.Routing; 8 | 9 | namespace RequireMVC199 10 | { 11 | // Note: For instructions on enabling IIS6 or IIS7 classic mode, 12 | // visit http://go.microsoft.com/?LinkId=9394801 13 | public class MvcApplication : System.Web.HttpApplication 14 | { 15 | protected void Application_Start() 16 | { 17 | AreaRegistration.RegisterAllAreas(); 18 | 19 | WebApiConfig.Register(GlobalConfiguration.Configuration); 20 | FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters); 21 | RouteConfig.RegisterRoutes(RouteTable.Routes); 22 | } 23 | } 24 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Views/Mutiple/MutipleIndex.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | 5 | 6 | 7 | 8 | 9 | 10 | MutipleIndex 11 | 12 | 13 | 20 | 21 | 22 |
    23 | hi, this is a sub form 24 |
    25 | 26 | 27 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Views/Shared/_RequireSetupOfForm.cshtml: -------------------------------------------------------------------------------- 1 | 2 | @using RequireMVC199.RequireJS 3 | @{ 4 | var entryCommonJS = Html.RequireCommonJsOfWeb("Form"); 5 | var entryPointPath = Html.RequireJsPagePoint(); 6 | 7 | if (entryPointPath != null) 8 | { 9 | 23 | } 24 | } -------------------------------------------------------------------------------- /Source/PlatFramework/Plat.WebUtility/WebControllerBase.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Web; 6 | using System.Web.Mvc; 7 | using System.Threading.Tasks; 8 | 9 | namespace Plat.WebUtility 10 | { 11 | public abstract class WebControllerBase : Controller 12 | { 13 | /// 14 | /// 登录用户对象 15 | /// 16 | public UserEntity LogonUser 17 | { 18 | get; 19 | set; 20 | } 21 | 22 | public string ApiUrl 23 | { 24 | get; 25 | protected set; 26 | } 27 | 28 | //protected string Update() 29 | //{ 30 | 31 | //} 32 | 33 | //protected string UpdateBatch() 34 | //{ 35 | 36 | //} 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/cutetabbar/css/jiaodian.css: -------------------------------------------------------------------------------- 1 | body, td, th {font-size: 12px;color: #666;} 2 | body {margin-left: 0px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;} 3 | a { text-decoration:none;color:#666} 4 | a:link {text-decoration: none;} 5 | a:hover {text-decoration: none;color: #FD790A;} 6 | ul, li {list-style:none;margin:0;padding:0} 7 | .in_right { float:left;} 8 | .T_Menu_01 {height:23px;background:#BFDBFF;font-size:14px;} 9 | .T_Menu_01 LABEL{background:url(images/tab_right_over.gif) no-repeat;float:left;width:120px; line-height:23px; height:23px;color: #765;text-align:center; cursor:pointer} 10 | .T_Menu_01 .selected { background:url(images/tab_right.gif) no-repeat;HEIGHT: 23px;color: #004E99} 11 | .b_cont_01 {width:694px; height:300px;float:left} 12 | .b_con_01_wz {padding-left:12px;width:672px;background:url(l_bg.gif);float:left;} -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/tabbackup/css/jiaodian.css: -------------------------------------------------------------------------------- 1 | body, td, th {font-size: 12px;color: #666;} 2 | body {margin-left: 0px;margin-top: 0px;margin-right: 0px;margin-bottom: 0px;} 3 | a { text-decoration:none;color:#666} 4 | a:link {text-decoration: none;} 5 | a:hover {text-decoration: none;color: #FD790A;} 6 | ul, li {list-style:none;margin:0;padding:0} 7 | .in_right { float:left;} 8 | .T_Menu_01 {height:23px;background:#BFDBFF;font-size:14px;} 9 | .T_Menu_01 LABEL{background:url(images/tab_right_over.gif) no-repeat;float:left;width:120px; line-height:23px; height:23px;color: #765;text-align:center; cursor:pointer} 10 | .T_Menu_01 .selected { background:url(images/tab_right.gif) no-repeat;HEIGHT: 23px;color: #004E99} 11 | .b_cont_01 {width:694px; height:300px;float:left} 12 | .b_con_01_wz {padding-left:12px;width:672px;background:url(l_bg.gif);float:left;} -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/RequireJS/RequireJSController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace RequireMVC199.RequireJS 8 | { 9 | [RequireJSConfig] 10 | public class RequireJSController : Controller 11 | { 12 | private RequireJSOptions _requireJSOptions; 13 | public RequireJSOptions RequireJSOptions 14 | { 15 | get { return _requireJSOptions; } 16 | } 17 | 18 | public void RegisterGlobalOptions() { } 19 | 20 | public RequireJSController() 21 | { 22 | _requireJSOptions = new RequireJSOptions(this); 23 | } 24 | 25 | public string ApiUrl 26 | { 27 | get; 28 | set; 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/seajs/sea-modules/seajs/1.3.0/plugin-text.js: -------------------------------------------------------------------------------- 1 | /** 2 | * The text plugin to load a module as text content 3 | */ 4 | define('seajs/plugin-text', ['./plugin-base'], function(require) { 5 | 6 | var plugin = require('./plugin-base') 7 | var util = plugin.util 8 | 9 | 10 | plugin.add({ 11 | name: 'text', 12 | 13 | ext: ['.tpl', '.htm', '.html'], 14 | 15 | fetch: function(url, callback) { 16 | util.xhr(url, function(data) { 17 | var str = jsEscape(data) 18 | util.globalEval('define([], "' + str + '")') 19 | callback() 20 | }) 21 | } 22 | }) 23 | 24 | 25 | function jsEscape(s) { 26 | return s.replace(/(["\\])/g, '\\$1') 27 | .replace(/\r/g, "\\r") 28 | .replace(/\n/g, "\\n") 29 | .replace(/\t/g, "\\t") 30 | .replace(/\f/g, "\\f") 31 | } 32 | 33 | }); 34 | 35 | -------------------------------------------------------------------------------- /Source/PlatFramework/Plat.ServiceBuilder/Injection/ContainerWrapper.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using SimpleInjector; 6 | 7 | namespace Plat.ServiceBuilder.Injection 8 | { 9 | public class ContainerWrapper : IContainer 10 | { 11 | protected Container SimpleContainer 12 | { 13 | get; 14 | private set; 15 | } 16 | 17 | private ContainerWrapper(Container container) 18 | { 19 | SimpleContainer = container; 20 | } 21 | 22 | public T GetInstance() where T : class 23 | { 24 | return SimpleContainer.GetInstance(); 25 | } 26 | 27 | public static ContainerWrapper Wrapper(Container container) 28 | { 29 | return new ContainerWrapper(container); 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/jquery.ui.spinner.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.spinner.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px} -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Core/PluginManager.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.IO; 6 | using System.ComponentModel.Composition; 7 | using System.ComponentModel.Composition.Hosting; 8 | 9 | namespace ProductSys.WebAPI.Core 10 | { 11 | /// 12 | /// 插件管理器 13 | /// 14 | public class PluginManager 15 | { 16 | /// 17 | /// 注册Plugin目录下的插件服务 18 | /// 19 | /// 20 | public static CompositionContainer Register() 21 | { 22 | CompositionContainer container = null; 23 | 24 | var catalog = new DirectoryCatalog(@"Plugins"); 25 | container = new CompositionContainer(catalog); 26 | 27 | return container; 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/jquery.ui.spinner.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.spinner.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px} -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/ViewJS/Controllers/Main/AddController.js: -------------------------------------------------------------------------------- 1 | 2 | define(['Controllers/Main/AddView', '../../../Models/User'], function(AddView, User){ 3 | function start(){ 4 | AddView.render(); 5 | bindEvents(); 6 | } 7 | 8 | function bindEvents() { 9 | document.getElementById('add').addEventListener('click', function () { 10 | var users = JSON.parse(localStorage.users); 11 | var userName = document.getElementById('user-name').value; 12 | users.push(new User(userName)); 13 | localStorage.users = JSON.stringify(users); 14 | //require(['Controllers/Main/ListController'], function (ListController) { 15 | // ListController.start(); 16 | //}); 17 | window.location.hash = "#list"; 18 | }, false); 19 | } 20 | 21 | return { 22 | start: start 23 | }; 24 | }); 25 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Accordion 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Accordion#theming 10 | */ 11 | .ui-accordion .ui-accordion-header { display: block; cursor: pointer; position: relative; margin-top: 2px; padding: .5em .5em .5em .7em; zoom: 1; } 12 | .ui-accordion .ui-accordion-icons { padding-left: 2.2em; } 13 | .ui-accordion .ui-accordion-noicons { padding-left: .7em; } 14 | .ui-accordion .ui-accordion-icons .ui-accordion-icons { padding-left: 2.2em; } 15 | .ui-accordion .ui-accordion-header .ui-accordion-header-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } 16 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; overflow: auto; zoom: 1; } 17 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Theming 10 | */ 11 | @import url("jquery.ui.core.css"); 12 | 13 | @import url("jquery.ui.accordion.css"); 14 | @import url("jquery.ui.autocomplete.css"); 15 | @import url("jquery.ui.button.css"); 16 | @import url("jquery.ui.datepicker.css"); 17 | @import url("jquery.ui.dialog.css"); 18 | @import url("jquery.ui.menu.css"); 19 | @import url("jquery.ui.progressbar.css"); 20 | @import url("jquery.ui.resizable.css"); 21 | @import url("jquery.ui.selectable.css"); 22 | @import url("jquery.ui.slider.css"); 23 | @import url("jquery.ui.spinner.css"); 24 | @import url("jquery.ui.tabs.css"); 25 | @import url("jquery.ui.tooltip.css"); 26 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.core.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{zoom:1}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%} -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.core.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{zoom:1}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%} -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Accordion 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Accordion#theming 10 | */ 11 | .ui-accordion .ui-accordion-header { display: block; cursor: pointer; position: relative; margin-top: 2px; padding: .5em .5em .5em .7em; zoom: 1; } 12 | .ui-accordion .ui-accordion-icons { padding-left: 2.2em; } 13 | .ui-accordion .ui-accordion-noicons { padding-left: .7em; } 14 | .ui-accordion .ui-accordion-icons .ui-accordion-icons { padding-left: 2.2em; } 15 | .ui-accordion .ui-accordion-header .ui-accordion-header-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } 16 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; overflow: auto; zoom: 1; } 17 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Theming 10 | */ 11 | @import url("jquery.ui.core.css"); 12 | 13 | @import url("jquery.ui.accordion.css"); 14 | @import url("jquery.ui.autocomplete.css"); 15 | @import url("jquery.ui.button.css"); 16 | @import url("jquery.ui.datepicker.css"); 17 | @import url("jquery.ui.dialog.css"); 18 | @import url("jquery.ui.menu.css"); 19 | @import url("jquery.ui.progressbar.css"); 20 | @import url("jquery.ui.resizable.css"); 21 | @import url("jquery.ui.selectable.css"); 22 | @import url("jquery.ui.slider.css"); 23 | @import url("jquery.ui.spinner.css"); 24 | @import url("jquery.ui.tabs.css"); 25 | @import url("jquery.ui.tooltip.css"); 26 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.core.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{zoom:1}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%} -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/jquery.ui.tabs.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.tabs.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-tabs{position:relative;padding:.2em;zoom:1}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-tabs-loading a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none} -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/jquery.ui.accordion.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.accordion.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-accordion{width:100%}.ui-accordion .ui-accordion-header{cursor:pointer;position:relative;margin-top:1px;zoom:1}.ui-accordion .ui-accordion-li-fix{display:inline}.ui-accordion .ui-accordion-header-active{border-bottom:0!important}.ui-accordion .ui-accordion-header a{display:block;font-size:1em;padding:.5em .5em .5em .7em}.ui-accordion-icons .ui-accordion-header a{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;margin-top:-2px;position:relative;top:1px;margin-bottom:2px;overflow:auto;display:none;zoom:1}.ui-accordion .ui-accordion-content-active{display:block} -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Views/Sub/SubIndex.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | SubIndex 13 | 25 | 26 | 27 |
    28 | i will make it tomorrow; 29 |
    30 | 31 | 32 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/jquery.ui.tabs.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.tabs.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-tabs{position:relative;padding:.2em;zoom:1}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-tabs-loading a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none} -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/ViewJS/temp/main.js: -------------------------------------------------------------------------------- 1 | 2 | //require(['../Models/User', '../Javascript/Controllers/Main/ListController', 3 | // '../Javascript/Controllers/Main/AddController'], 4 | // function (User, ListController, AddController) { 5 | // var users = [new User('Barney'), 6 | // new User('Cartman'), 7 | // new User('Sheldon')]; 8 | 9 | // for (var i = 0, len = users.length; i < len; i++) { 10 | // console.log(users[i].name); 11 | // } 12 | 13 | // localStorage.users = JSON.stringify(users); 14 | 15 | // ListController.start(); 16 | 17 | // AddController.start(); 18 | //}); 19 | 20 | 21 | require(['../Models/User', 'Router'], function (User, Router) { 22 | var users = [new User('Barney'), 23 | new User('Cartman'), 24 | new User('Sheldon')]; 25 | 26 | localStorage.users = JSON.stringify(users); 27 | 28 | Router.startRouting(); 29 | }); -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Views/Shared/_RequireSetupOfHome.cshtml: -------------------------------------------------------------------------------- 1 | 2 | @using RequireMVC199.RequireJS 3 | @{ 4 | 5 | 6 | var entryCommonJS = Html.RequireCommonJsOfWeb("Home"); 7 | var pagePointPath = Html.RequireJsPagePoint(); 8 | 9 | 10 | 11 | 12 | if (pagePointPath != null) 13 | { 14 | 27 | } 28 | } -------------------------------------------------------------------------------- /Source/PlatFramework/Plat.WebUtility/HttpClientTest.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Net; 7 | using System.Net.Http; 8 | using System.Net.Http.Headers; 9 | 10 | namespace Plat.WebUtility 11 | { 12 | /// 13 | /// HttpClient 异步调用示例(仅参考) 14 | /// 15 | class HttpClientTest 16 | { 17 | private static void main() 18 | { 19 | string url = "http://localhost:8081/ProductWcf/ProductService.svc/Product/1"; 20 | HttpClient webClient = HttpClientHelper.Create(url); 21 | var responseMessage = webClient.GetAsync("").Result; 22 | var result = responseMessage.Content.ReadAsStringAsync().Result; 23 | Console.WriteLine(webClient.BaseAddress.ToString()); 24 | Console.WriteLine(result); 25 | 26 | } 27 | } 28 | } 29 | 30 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/slickgrid/controls/slick.pager.css: -------------------------------------------------------------------------------- 1 | .slick-pager { 2 | width: 100%; 3 | height: 26px; 4 | border: 1px solid gray; 5 | border-top: 0; 6 | background: url('../images/header-columns-bg.gif') repeat-x center bottom; 7 | vertical-align: middle; 8 | } 9 | 10 | .slick-pager .slick-pager-status { 11 | display: inline-block; 12 | padding: 6px; 13 | } 14 | 15 | .slick-pager .ui-icon-container { 16 | display: inline-block; 17 | margin: 2px; 18 | border-color: gray; 19 | } 20 | 21 | .slick-pager .slick-pager-nav { 22 | display: inline-block; 23 | float: left; 24 | padding: 2px; 25 | } 26 | 27 | .slick-pager .slick-pager-settings { 28 | display: block; 29 | float: right; 30 | padding: 2px; 31 | } 32 | 33 | .slick-pager .slick-pager-settings * { 34 | vertical-align: middle; 35 | } 36 | 37 | .slick-pager .slick-pager-settings a { 38 | padding: 2px; 39 | text-decoration: underline; 40 | cursor: pointer; 41 | } 42 | -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Net; 5 | using System.Net.Http; 6 | using System.Web.Http; 7 | 8 | namespace ProductSys.WebAPI.Controllers 9 | { 10 | public class ValuesController : ApiController 11 | { 12 | // GET api/values 13 | public IEnumerable Get() 14 | { 15 | return new string[] { "value1", "value2" }; 16 | } 17 | 18 | // GET api/values/5 19 | public string Get(int id) 20 | { 21 | return "value"; 22 | } 23 | 24 | // POST api/values 25 | public void Post([FromBody]string value) 26 | { 27 | } 28 | 29 | // PUT api/values/5 30 | public void Put(int id, [FromBody]string value) 31 | { 32 | } 33 | 34 | // DELETE api/values/5 35 | public void Delete(int id) 36 | { 37 | } 38 | } 39 | } -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/jquery.fancybox-thumbs.css: -------------------------------------------------------------------------------- 1 | #fancybox-thumbs { 2 | position: fixed; 3 | left: 0; 4 | width: 100%; 5 | overflow: hidden; 6 | z-index: 8050; 7 | } 8 | 9 | #fancybox-thumbs.bottom { 10 | bottom: 2px; 11 | } 12 | 13 | #fancybox-thumbs.top { 14 | top: 2px; 15 | } 16 | 17 | #fancybox-thumbs ul { 18 | position: relative; 19 | list-style: none; 20 | margin: 0; 21 | padding: 0; 22 | } 23 | 24 | #fancybox-thumbs ul li { 25 | float: left; 26 | padding: 1px; 27 | opacity: 0.5; 28 | } 29 | 30 | #fancybox-thumbs ul li.active { 31 | opacity: 0.75; 32 | padding: 0; 33 | border: 1px solid #fff; 34 | } 35 | 36 | #fancybox-thumbs ul li:hover { 37 | opacity: 1; 38 | } 39 | 40 | #fancybox-thumbs ul li a { 41 | display: block; 42 | position: relative; 43 | overflow: hidden; 44 | border: 1px solid #222; 45 | background: #111; 46 | outline: none; 47 | } 48 | 49 | #fancybox-thumbs ul li img { 50 | display: block; 51 | position: relative; 52 | border: 0; 53 | padding: 0; 54 | } -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/jstree/_demo/_dump.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE IF NOT EXISTS `tree` ( 2 | `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, 3 | `parent_id` bigint(20) unsigned NOT NULL, 4 | `position` bigint(20) unsigned NOT NULL, 5 | `left` bigint(20) unsigned NOT NULL, 6 | `right` bigint(20) unsigned NOT NULL, 7 | `level` bigint(20) unsigned NOT NULL, 8 | `title` text CHARACTER SET utf8 COLLATE utf8_unicode_ci, 9 | `type` varchar(255) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL, 10 | PRIMARY KEY (`id`) 11 | ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=13 ; 12 | 13 | INSERT INTO `tree` (`id`, `parent_id`, `position`, `left`, `right`, `level`, `title`, `type`) VALUES 14 | (1, 0, 2, 1, 14, 0, 'ROOT', ''), 15 | (2, 1, 0, 2, 11, 1, 'C:', 'drive'), 16 | (3, 2, 0, 3, 6, 2, '_demo', 'folder'), 17 | (4, 3, 0, 4, 5, 3, 'index.html', 'default'), 18 | (5, 2, 1, 7, 10, 2, '_docs', 'folder'), 19 | (6, 1, 1, 12, 13, 1, 'D:', 'drive'), 20 | (12, 5, 0, 8, 9, 3, 'zmei.html', 'default'); 21 | -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/jquery.ui.tabs.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.tabs.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-tabs{position:relative;padding:.2em;zoom:1}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:1px;margin:0 .2em 1px 0;border-bottom:0!important;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-selected{margin-bottom:0;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-selected a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-state-processing a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tabs .ui-tabs-hide{display:none!important} -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/jquery.ui.resizable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.resizable.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px} -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/jquery.ui.slider.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.slider.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0} -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.DAL/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
    6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/jquery.ui.resizable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.resizable.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px} -------------------------------------------------------------------------------- /Source/RequireMVC199/ProductSys.WebAPI/Content/themes/base/minified/jquery.ui.slider.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.8.20 - 2012-04-30 2 | * https://github.com/jquery/jquery-ui 3 | * Includes: jquery.ui.slider.css 4 | * Copyright (c) 2012 AUTHORS.txt; Licensed MIT */ 5 | .ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0} -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/jquery.ui.resizable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.resizable.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px} -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Views/Shared/_RequireSetupOfList.cshtml: -------------------------------------------------------------------------------- 1 | 2 | @using RequireMVC199.RequireJS 3 | @{ 4 | var entryCommonJS = Html.RequireCommonJsOfWeb("List"); 5 | var pagePointPath = Html.RequireJsPagePoint(); 6 | 7 | //如果Home页面未加载requirejs, 可以在此处添加 requirejs 8 | // 9 | 10 | if (pagePointPath != null) 11 | { 12 | 25 | } 26 | } 27 | 28 | 29 | -------------------------------------------------------------------------------- /Source/RequireMVC199/RequireMVC199/Content/themes/base/minified/jquery.ui.slider.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.slider.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0} -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Scripts/seajs/sea-modules/seajs/1.3.0/plugin-base.js: -------------------------------------------------------------------------------- 1 | define("seajs/plugin-base",[],function(m,k){var l=seajs.pluginSDK,i=l.util,h=l.Module,g={},j={};k.add=function(b){g[b.name]=b};k.util={xhr:function(b,a){var c=window.ActiveXObject?new window.ActiveXObject("Microsoft.XMLHTTP"):new window.XMLHttpRequest;c.open("GET",b,!0);c.onreadystatechange=function(){if(4===c.readyState)if(200===c.status)a(c.responseText);else throw Error("Could not load: "+b+", status = "+c.status);};return c.send(null)},globalEval:function(b){b&&/\S/.test(b)&&(window.execScript|| 2 | function(a){window.eval.call(window,a)})(b)}};(function(){var b=h._resolve;h._resolve=function(a,c){var d,e;if(e=a.match(/^(\w+)!(.+)$/))d=e[1],a=e[2];a="#"+i.parseAlias(a);if(!d&&(e=a.match(/[^?]*(\.\w+)/))){e=e[1];for(var f in g)if(g.hasOwnProperty(f)&&-1 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /Source/PlatFramework/PlatJS/Content/themes/base/minified/jquery.ui.menu.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.menu.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-menu{list-style:none;padding:2px;margin:0;display:block;outline:none}.ui-menu .ui-menu{margin-top:-3px;position:absolute}.ui-menu .ui-menu-item{margin:0;padding:0;zoom:1;width:100%}.ui-menu .ui-menu-divider{margin:5px -2px 5px -2px;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:2px .4em;line-height:1.5;zoom:1;font-weight:normal}.ui-menu .ui-menu-item a.ui-state-focus,.ui-menu .ui-menu-item a.ui-state-active{font-weight:normal;margin:-1px}.ui-menu .ui-state-disabled{font-weight:normal;margin:.4em 0 .2em;line-height:1.5}.ui-menu .ui-state-disabled a{cursor:default}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item a{position:relative;padding-left:2em}.ui-menu .ui-icon{position:absolute;top:.2em;left:.2em}.ui-menu .ui-menu-icon{position:static;float:right} --------------------------------------------------------------------------------