├── .gitattributes
├── .gitignore
├── AngularJS-WebApi-EF.sln
├── AngularJS-WebApi-EF
├── AngularJS-WebApi-EF.csproj
├── App_Data
│ ├── PersonContext.mdf
│ └── PersonContext_log.ldf
├── App_Start
│ ├── BootstrapBundleConfig.cs
│ ├── BundleConfig.cs
│ ├── FilterConfig.cs
│ ├── RouteConfig.cs
│ └── WebApiConfig.cs
├── Content
│ ├── Site.css
│ ├── bootstrap
│ │ ├── bootstrap-theme.css
│ │ ├── bootstrap-theme.min.css
│ │ ├── bootstrap.css
│ │ └── bootstrap.min.css
│ ├── fontawesome
│ │ ├── font-awesome.css
│ │ └── font-awesome.min.css
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
│ ├── themes
│ │ └── base
│ │ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── 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
│ │ │ ├── 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
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery.ui.accordion.css
│ │ │ ├── jquery.ui.all.css
│ │ │ ├── jquery.ui.autocomplete.css
│ │ │ ├── jquery.ui.base.css
│ │ │ ├── jquery.ui.button.css
│ │ │ ├── jquery.ui.core.css
│ │ │ ├── jquery.ui.datepicker.css
│ │ │ ├── jquery.ui.dialog.css
│ │ │ ├── jquery.ui.menu.css
│ │ │ ├── jquery.ui.progressbar.css
│ │ │ ├── jquery.ui.resizable.css
│ │ │ ├── jquery.ui.selectable.css
│ │ │ ├── jquery.ui.slider.css
│ │ │ ├── jquery.ui.spinner.css
│ │ │ ├── jquery.ui.tabs.css
│ │ │ ├── jquery.ui.theme.css
│ │ │ ├── jquery.ui.tooltip.css
│ │ │ └── minified
│ │ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── 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
│ │ │ ├── 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
│ │ │ ├── jquery-ui.min.css
│ │ │ ├── jquery.ui.accordion.min.css
│ │ │ ├── jquery.ui.autocomplete.min.css
│ │ │ ├── jquery.ui.button.min.css
│ │ │ ├── jquery.ui.core.min.css
│ │ │ ├── jquery.ui.datepicker.min.css
│ │ │ ├── jquery.ui.dialog.min.css
│ │ │ ├── jquery.ui.menu.min.css
│ │ │ ├── jquery.ui.progressbar.min.css
│ │ │ ├── jquery.ui.resizable.min.css
│ │ │ ├── jquery.ui.selectable.min.css
│ │ │ ├── jquery.ui.slider.min.css
│ │ │ ├── jquery.ui.spinner.min.css
│ │ │ ├── jquery.ui.tabs.min.css
│ │ │ ├── jquery.ui.theme.min.css
│ │ │ └── jquery.ui.tooltip.min.css
│ ├── toastr.css
│ ├── toastr.less
│ └── toastr.min.css
├── Controllers
│ ├── HomeController.cs
│ ├── PersonController.cs
│ └── PlaceController.cs
├── Global.asax
├── Global.asax.cs
├── Models
│ ├── Person.cs
│ ├── PersonContext.cs
│ └── Place.cs
├── Properties
│ └── AssemblyInfo.cs
├── Scripts
│ ├── App
│ │ ├── Directives
│ │ │ ├── Content
│ │ │ │ └── crud-grid-directive.css
│ │ │ ├── Services
│ │ │ │ └── crud-grid-data-factory.js
│ │ │ ├── Templates
│ │ │ │ └── crud-grid-directive-template.html
│ │ │ ├── crud-grid-directive.js
│ │ │ └── model-change-blur-directive.js
│ │ ├── Services
│ │ │ └── notification-factory.js
│ │ └── app.js
│ ├── _references.js
│ ├── angular-animate.js
│ ├── angular-animate.min.js
│ ├── angular-animate.min.js.map
│ ├── angular-cookies.js
│ ├── angular-cookies.min.js
│ ├── angular-cookies.min.js.map
│ ├── angular-loader.js
│ ├── angular-loader.min.js
│ ├── angular-loader.min.js.map
│ ├── angular-mocks.js
│ ├── angular-resource.js
│ ├── angular-resource.min.js
│ ├── angular-resource.min.js.map
│ ├── angular-route.js
│ ├── angular-route.min.js
│ ├── angular-route.min.js.map
│ ├── angular-sanitize.js
│ ├── angular-sanitize.min.js
│ ├── angular-sanitize.min.js.map
│ ├── angular-scenario.js
│ ├── angular-touch.js
│ ├── angular-touch.min.js
│ ├── angular-touch.min.js.map
│ ├── angular.js
│ ├── angular.min.js
│ ├── angular.min.js.map
│ ├── bootstrap.js
│ ├── bootstrap.min.js
│ ├── errors.json
│ ├── i18n
│ │ ├── angular-locale_af-na.js
│ │ ├── angular-locale_af-za.js
│ │ ├── angular-locale_af.js
│ │ ├── angular-locale_am-et.js
│ │ ├── angular-locale_am.js
│ │ ├── angular-locale_ar-001.js
│ │ ├── angular-locale_ar-ae.js
│ │ ├── angular-locale_ar-bh.js
│ │ ├── angular-locale_ar-dz.js
│ │ ├── angular-locale_ar-eg.js
│ │ ├── angular-locale_ar-iq.js
│ │ ├── angular-locale_ar-jo.js
│ │ ├── angular-locale_ar-kw.js
│ │ ├── angular-locale_ar-lb.js
│ │ ├── angular-locale_ar-ly.js
│ │ ├── angular-locale_ar-ma.js
│ │ ├── angular-locale_ar-om.js
│ │ ├── angular-locale_ar-qa.js
│ │ ├── angular-locale_ar-sa.js
│ │ ├── angular-locale_ar-sd.js
│ │ ├── angular-locale_ar-sy.js
│ │ ├── angular-locale_ar-tn.js
│ │ ├── angular-locale_ar-ye.js
│ │ ├── angular-locale_ar.js
│ │ ├── angular-locale_bg-bg.js
│ │ ├── angular-locale_bg.js
│ │ ├── angular-locale_bn-bd.js
│ │ ├── angular-locale_bn-in.js
│ │ ├── angular-locale_bn.js
│ │ ├── angular-locale_ca-ad.js
│ │ ├── angular-locale_ca-es.js
│ │ ├── angular-locale_ca.js
│ │ ├── angular-locale_chr.js
│ │ ├── angular-locale_cs-cz.js
│ │ ├── angular-locale_cs.js
│ │ ├── angular-locale_cy.js
│ │ ├── angular-locale_da-dk.js
│ │ ├── angular-locale_da.js
│ │ ├── angular-locale_de-at.js
│ │ ├── angular-locale_de-be.js
│ │ ├── angular-locale_de-ch.js
│ │ ├── angular-locale_de-de.js
│ │ ├── angular-locale_de-li.js
│ │ ├── angular-locale_de-lu.js
│ │ ├── angular-locale_de.js
│ │ ├── angular-locale_el-cy.js
│ │ ├── angular-locale_el-gr.js
│ │ ├── angular-locale_el-polyton.js
│ │ ├── angular-locale_el.js
│ │ ├── angular-locale_en-as.js
│ │ ├── angular-locale_en-au.js
│ │ ├── angular-locale_en-bb.js
│ │ ├── angular-locale_en-be.js
│ │ ├── angular-locale_en-bm.js
│ │ ├── angular-locale_en-bw.js
│ │ ├── angular-locale_en-bz.js
│ │ ├── angular-locale_en-ca.js
│ │ ├── angular-locale_en-dsrt-us.js
│ │ ├── angular-locale_en-dsrt.js
│ │ ├── angular-locale_en-fm.js
│ │ ├── angular-locale_en-gb.js
│ │ ├── angular-locale_en-gu.js
│ │ ├── angular-locale_en-gy.js
│ │ ├── angular-locale_en-hk.js
│ │ ├── angular-locale_en-ie.js
│ │ ├── angular-locale_en-in.js
│ │ ├── angular-locale_en-iso.js
│ │ ├── angular-locale_en-jm.js
│ │ ├── angular-locale_en-mh.js
│ │ ├── angular-locale_en-mp.js
│ │ ├── angular-locale_en-mt.js
│ │ ├── angular-locale_en-mu.js
│ │ ├── angular-locale_en-na.js
│ │ ├── angular-locale_en-nz.js
│ │ ├── angular-locale_en-ph.js
│ │ ├── angular-locale_en-pk.js
│ │ ├── angular-locale_en-pr.js
│ │ ├── angular-locale_en-pw.js
│ │ ├── angular-locale_en-sg.js
│ │ ├── angular-locale_en-tc.js
│ │ ├── angular-locale_en-tt.js
│ │ ├── angular-locale_en-um.js
│ │ ├── angular-locale_en-us.js
│ │ ├── angular-locale_en-vg.js
│ │ ├── angular-locale_en-vi.js
│ │ ├── angular-locale_en-za.js
│ │ ├── angular-locale_en-zw.js
│ │ ├── angular-locale_en-zz.js
│ │ ├── angular-locale_en.js
│ │ ├── angular-locale_es-419.js
│ │ ├── angular-locale_es-ar.js
│ │ ├── angular-locale_es-bo.js
│ │ ├── angular-locale_es-cl.js
│ │ ├── angular-locale_es-co.js
│ │ ├── angular-locale_es-cr.js
│ │ ├── angular-locale_es-do.js
│ │ ├── angular-locale_es-ea.js
│ │ ├── angular-locale_es-ec.js
│ │ ├── angular-locale_es-es.js
│ │ ├── angular-locale_es-gq.js
│ │ ├── angular-locale_es-gt.js
│ │ ├── angular-locale_es-hn.js
│ │ ├── angular-locale_es-ic.js
│ │ ├── angular-locale_es-mx.js
│ │ ├── angular-locale_es-ni.js
│ │ ├── angular-locale_es-pa.js
│ │ ├── angular-locale_es-pe.js
│ │ ├── angular-locale_es-pr.js
│ │ ├── angular-locale_es-py.js
│ │ ├── angular-locale_es-sv.js
│ │ ├── angular-locale_es-us.js
│ │ ├── angular-locale_es-uy.js
│ │ ├── angular-locale_es-ve.js
│ │ ├── angular-locale_es.js
│ │ ├── angular-locale_et-ee.js
│ │ ├── angular-locale_et.js
│ │ ├── angular-locale_eu-es.js
│ │ ├── angular-locale_eu.js
│ │ ├── angular-locale_fa-af.js
│ │ ├── angular-locale_fa-ir.js
│ │ ├── angular-locale_fa.js
│ │ ├── angular-locale_fi-fi.js
│ │ ├── angular-locale_fi.js
│ │ ├── angular-locale_fil-ph.js
│ │ ├── angular-locale_fil.js
│ │ ├── angular-locale_fr-be.js
│ │ ├── angular-locale_fr-bf.js
│ │ ├── angular-locale_fr-bi.js
│ │ ├── angular-locale_fr-bj.js
│ │ ├── angular-locale_fr-bl.js
│ │ ├── angular-locale_fr-ca.js
│ │ ├── angular-locale_fr-cd.js
│ │ ├── angular-locale_fr-cf.js
│ │ ├── angular-locale_fr-cg.js
│ │ ├── angular-locale_fr-ch.js
│ │ ├── angular-locale_fr-ci.js
│ │ ├── angular-locale_fr-cm.js
│ │ ├── angular-locale_fr-dj.js
│ │ ├── angular-locale_fr-fr.js
│ │ ├── angular-locale_fr-ga.js
│ │ ├── angular-locale_fr-gf.js
│ │ ├── angular-locale_fr-gn.js
│ │ ├── angular-locale_fr-gp.js
│ │ ├── angular-locale_fr-gq.js
│ │ ├── angular-locale_fr-km.js
│ │ ├── angular-locale_fr-lu.js
│ │ ├── angular-locale_fr-mc.js
│ │ ├── angular-locale_fr-mf.js
│ │ ├── angular-locale_fr-mg.js
│ │ ├── angular-locale_fr-ml.js
│ │ ├── angular-locale_fr-mq.js
│ │ ├── angular-locale_fr-ne.js
│ │ ├── angular-locale_fr-re.js
│ │ ├── angular-locale_fr-rw.js
│ │ ├── angular-locale_fr-sn.js
│ │ ├── angular-locale_fr-td.js
│ │ ├── angular-locale_fr-tg.js
│ │ ├── angular-locale_fr-yt.js
│ │ ├── angular-locale_fr.js
│ │ ├── angular-locale_gl-es.js
│ │ ├── angular-locale_gl.js
│ │ ├── angular-locale_gsw-ch.js
│ │ ├── angular-locale_gsw.js
│ │ ├── angular-locale_gu-in.js
│ │ ├── angular-locale_gu.js
│ │ ├── angular-locale_haw.js
│ │ ├── angular-locale_he-il.js
│ │ ├── angular-locale_he.js
│ │ ├── angular-locale_hi-in.js
│ │ ├── angular-locale_hi.js
│ │ ├── angular-locale_hr-hr.js
│ │ ├── angular-locale_hr.js
│ │ ├── angular-locale_hu-hu.js
│ │ ├── angular-locale_hu.js
│ │ ├── angular-locale_id-id.js
│ │ ├── angular-locale_id.js
│ │ ├── angular-locale_in.js
│ │ ├── angular-locale_is-is.js
│ │ ├── angular-locale_is.js
│ │ ├── angular-locale_it-ch.js
│ │ ├── angular-locale_it-it.js
│ │ ├── angular-locale_it-sm.js
│ │ ├── angular-locale_it.js
│ │ ├── angular-locale_iw.js
│ │ ├── angular-locale_ja-jp.js
│ │ ├── angular-locale_ja.js
│ │ ├── angular-locale_kn-in.js
│ │ ├── angular-locale_kn.js
│ │ ├── angular-locale_ko-kr.js
│ │ ├── angular-locale_ko.js
│ │ ├── angular-locale_ln-cd.js
│ │ ├── angular-locale_ln-cg.js
│ │ ├── angular-locale_ln.js
│ │ ├── angular-locale_lt-lt.js
│ │ ├── angular-locale_lt.js
│ │ ├── angular-locale_lv-lv.js
│ │ ├── angular-locale_lv.js
│ │ ├── angular-locale_ml-in.js
│ │ ├── angular-locale_ml.js
│ │ ├── angular-locale_mo.js
│ │ ├── angular-locale_mr-in.js
│ │ ├── angular-locale_mr.js
│ │ ├── angular-locale_ms-bn.js
│ │ ├── angular-locale_ms-my.js
│ │ ├── angular-locale_ms.js
│ │ ├── angular-locale_mt-mt.js
│ │ ├── angular-locale_mt.js
│ │ ├── angular-locale_nl-aw.js
│ │ ├── angular-locale_nl-be.js
│ │ ├── angular-locale_nl-cw.js
│ │ ├── angular-locale_nl-nl.js
│ │ ├── angular-locale_nl-sx.js
│ │ ├── angular-locale_nl.js
│ │ ├── angular-locale_no.js
│ │ ├── angular-locale_or-in.js
│ │ ├── angular-locale_or.js
│ │ ├── angular-locale_pl-pl.js
│ │ ├── angular-locale_pl.js
│ │ ├── angular-locale_pt-ao.js
│ │ ├── angular-locale_pt-br.js
│ │ ├── angular-locale_pt-gw.js
│ │ ├── angular-locale_pt-mz.js
│ │ ├── angular-locale_pt-pt.js
│ │ ├── angular-locale_pt-st.js
│ │ ├── angular-locale_pt.js
│ │ ├── angular-locale_ro-md.js
│ │ ├── angular-locale_ro-ro.js
│ │ ├── angular-locale_ro.js
│ │ ├── angular-locale_ru-md.js
│ │ ├── angular-locale_ru-ru.js
│ │ ├── angular-locale_ru-ua.js
│ │ ├── angular-locale_ru.js
│ │ ├── angular-locale_sk-sk.js
│ │ ├── angular-locale_sk.js
│ │ ├── angular-locale_sl-si.js
│ │ ├── angular-locale_sl.js
│ │ ├── angular-locale_sq-al.js
│ │ ├── angular-locale_sq.js
│ │ ├── angular-locale_sr-cyrl-ba.js
│ │ ├── angular-locale_sr-cyrl-me.js
│ │ ├── angular-locale_sr-cyrl-rs.js
│ │ ├── angular-locale_sr-cyrl.js
│ │ ├── angular-locale_sr-latn-ba.js
│ │ ├── angular-locale_sr-latn-me.js
│ │ ├── angular-locale_sr-latn-rs.js
│ │ ├── angular-locale_sr-latn.js
│ │ ├── angular-locale_sr-rs.js
│ │ ├── angular-locale_sr.js
│ │ ├── angular-locale_sv-fi.js
│ │ ├── angular-locale_sv-se.js
│ │ ├── angular-locale_sv.js
│ │ ├── angular-locale_sw-ke.js
│ │ ├── angular-locale_sw-tz.js
│ │ ├── angular-locale_sw.js
│ │ ├── angular-locale_ta-in.js
│ │ ├── angular-locale_ta-lk.js
│ │ ├── angular-locale_ta.js
│ │ ├── angular-locale_te-in.js
│ │ ├── angular-locale_te.js
│ │ ├── angular-locale_th-th.js
│ │ ├── angular-locale_th.js
│ │ ├── angular-locale_tl-ph.js
│ │ ├── angular-locale_tl.js
│ │ ├── angular-locale_tr-tr.js
│ │ ├── angular-locale_tr.js
│ │ ├── angular-locale_uk-ua.js
│ │ ├── angular-locale_uk.js
│ │ ├── angular-locale_ur-in.js
│ │ ├── angular-locale_ur-pk.js
│ │ ├── angular-locale_ur.js
│ │ ├── angular-locale_vi-vn.js
│ │ ├── angular-locale_vi.js
│ │ ├── angular-locale_zh-cn.js
│ │ ├── angular-locale_zh-hans-cn.js
│ │ ├── angular-locale_zh-hans-hk.js
│ │ ├── angular-locale_zh-hans-mo.js
│ │ ├── angular-locale_zh-hans-sg.js
│ │ ├── angular-locale_zh-hans.js
│ │ ├── angular-locale_zh-hant-hk.js
│ │ ├── angular-locale_zh-hant-mo.js
│ │ ├── angular-locale_zh-hant-tw.js
│ │ ├── angular-locale_zh-hant.js
│ │ ├── angular-locale_zh-hk.js
│ │ ├── angular-locale_zh-tw.js
│ │ ├── angular-locale_zh.js
│ │ ├── angular-locale_zu-za.js
│ │ └── angular-locale_zu.js
│ ├── jquery-2.0.3.intellisense.js
│ ├── jquery-2.0.3.js
│ ├── jquery-2.0.3.min.js
│ ├── jquery-2.0.3.min.map
│ ├── jquery-ui-1.10.3.js
│ ├── jquery-ui-1.10.3.min.js
│ ├── jquery.unobtrusive-ajax.js
│ ├── jquery.unobtrusive-ajax.min.js
│ ├── jquery.validate-vsdoc.js
│ ├── jquery.validate.js
│ ├── jquery.validate.min.js
│ ├── jquery.validate.unobtrusive.js
│ ├── jquery.validate.unobtrusive.min.js
│ ├── modernizr-2.6.2.js
│ ├── toastr.js
│ ├── toastr.min.js
│ └── toastr.min.js.map
├── Views
│ ├── Home
│ │ └── Index.cshtml
│ ├── Shared
│ │ ├── Error.cshtml
│ │ └── _Layout.cshtml
│ ├── Web.config
│ └── _ViewStart.cshtml
├── Web.Debug.config
├── Web.Release.config
├── Web.config
└── packages.config
├── README.md
├── TextFile1.txt
├── license.md
└── packages
├── Antlr.3.5.0.2
├── Antlr.3.5.0.2.nupkg
├── Antlr.3.5.0.2.nuspec
└── lib
│ └── Antlr3.Runtime.dll
├── EntityFramework.6.0.1
├── EntityFramework.6.0.1.nupkg
├── EntityFramework.6.0.1.nuspec
├── content
│ ├── App.config.transform
│ └── Web.config.transform
├── lib
│ ├── net40
│ │ ├── EntityFramework.SqlServer.dll
│ │ ├── EntityFramework.SqlServer.xml
│ │ ├── EntityFramework.dll
│ │ └── EntityFramework.xml
│ └── net45
│ │ ├── EntityFramework.SqlServer.dll
│ │ ├── EntityFramework.SqlServer.xml
│ │ ├── EntityFramework.dll
│ │ └── EntityFramework.xml
└── tools
│ ├── EntityFramework.PowerShell.Utility.dll
│ ├── EntityFramework.PowerShell.dll
│ ├── EntityFramework.psd1
│ ├── EntityFramework.psm1
│ ├── about_EntityFramework.help.txt
│ ├── init.ps1
│ ├── install.ps1
│ └── migrate.exe
├── FontAwesome.4.0.0
├── FontAwesome.4.0.0.nupkg
├── FontAwesome.4.0.0.nuspec
├── content
│ └── Content
│ │ ├── fontawesome
│ │ ├── font-awesome.css
│ │ └── font-awesome.min.css
│ │ └── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ └── fontawesome-webfont.woff
└── tools
│ └── install.ps1
├── Microsoft.AspNet.Mvc.5.0.0
├── Microsoft.AspNet.Mvc.5.0.0.nupkg
├── Microsoft.AspNet.Mvc.5.0.0.nuspec
└── lib
│ └── net45
│ ├── System.Web.Mvc.dll
│ └── System.Web.Mvc.xml
├── Microsoft.AspNet.Mvc.FixedDisplayModes.5.0.0
├── Microsoft.AspNet.Mvc.FixedDisplayModes.5.0.0.nupkg
├── Microsoft.AspNet.Mvc.FixedDisplayModes.5.0.0.nuspec
└── readme.txt
├── Microsoft.AspNet.Providers.Core.1.2
├── Microsoft.AspNet.Providers.Core.1.2.nupkg
├── Microsoft.AspNet.Providers.Core.1.2.nuspec
├── lib
│ └── net40
│ │ └── System.Web.Providers.dll
└── readme.html
├── Microsoft.AspNet.Providers.LocalDB.1.1
├── Microsoft.AspNet.Providers.LocalDB.1.1.nupkg
├── Microsoft.AspNet.Providers.LocalDB.1.1.nuspec
├── content
│ └── web.config.transform
└── tools
│ └── Install.ps1
├── Microsoft.AspNet.Razor.3.0.0
├── Microsoft.AspNet.Razor.3.0.0.nupkg
├── Microsoft.AspNet.Razor.3.0.0.nuspec
└── lib
│ └── net45
│ ├── System.Web.Razor.dll
│ └── System.Web.Razor.xml
├── Microsoft.AspNet.Web.Optimization.1.1.1
├── Microsoft.AspNet.Web.Optimization.1.1.1.nupkg
├── Microsoft.AspNet.Web.Optimization.1.1.1.nuspec
└── lib
│ └── net40
│ ├── System.Web.Optimization.dll
│ └── system.web.optimization.xml
├── Microsoft.AspNet.WebApi.5.0.0
├── Microsoft.AspNet.WebApi.5.0.0.nupkg
└── Microsoft.AspNet.WebApi.5.0.0.nuspec
├── Microsoft.AspNet.WebApi.Client.5.0.0
├── Microsoft.AspNet.WebApi.Client.5.0.0.nupkg
├── Microsoft.AspNet.WebApi.Client.5.0.0.nuspec
└── lib
│ ├── net45
│ ├── System.Net.Http.Formatting.dll
│ └── System.Net.Http.Formatting.xml
│ └── portable-wp8+netcore45+net45
│ ├── System.Net.Http.Formatting.dll
│ └── System.Net.Http.Formatting.xml
├── Microsoft.AspNet.WebApi.Core.5.0.0
├── Microsoft.AspNet.WebApi.Core.5.0.0.nupkg
├── Microsoft.AspNet.WebApi.Core.5.0.0.nuspec
├── content
│ └── web.config.transform
└── lib
│ └── net45
│ ├── System.Web.Http.dll
│ └── System.Web.Http.xml
├── Microsoft.AspNet.WebApi.WebHost.5.0.0
├── Microsoft.AspNet.WebApi.WebHost.5.0.0.nupkg
├── Microsoft.AspNet.WebApi.WebHost.5.0.0.nuspec
└── lib
│ └── net45
│ ├── System.Web.Http.WebHost.dll
│ └── System.Web.Http.WebHost.xml
├── Microsoft.AspNet.WebPages.3.0.0
├── Microsoft.AspNet.WebPages.3.0.0.nupkg
├── Microsoft.AspNet.WebPages.3.0.0.nuspec
└── lib
│ └── net45
│ ├── System.Web.Helpers.dll
│ ├── System.Web.Helpers.xml
│ ├── System.Web.WebPages.Deployment.dll
│ ├── System.Web.WebPages.Deployment.xml
│ ├── System.Web.WebPages.Razor.dll
│ ├── System.Web.WebPages.Razor.xml
│ ├── System.Web.WebPages.dll
│ └── System.Web.WebPages.xml
├── Microsoft.Web.Infrastructure.1.0.0.0
├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg
├── Microsoft.Web.Infrastructure.1.0.0.0.nuspec
└── lib
│ └── net40
│ └── Microsoft.Web.Infrastructure.dll
├── Microsoft.jQuery.Unobtrusive.Ajax.3.0.0
├── Content
│ └── Scripts
│ │ ├── jquery.unobtrusive-ajax.js
│ │ └── jquery.unobtrusive-ajax.min.js
├── Microsoft.jQuery.Unobtrusive.Ajax.3.0.0.nupkg
└── Microsoft.jQuery.Unobtrusive.Ajax.3.0.0.nuspec
├── Microsoft.jQuery.Unobtrusive.Validation.3.0.0
├── Content
│ └── Scripts
│ │ ├── jquery.validate.unobtrusive.js
│ │ └── jquery.validate.unobtrusive.min.js
├── Microsoft.jQuery.Unobtrusive.Validation.3.0.0.nupkg
└── Microsoft.jQuery.Unobtrusive.Validation.3.0.0.nuspec
├── Modernizr.2.6.2
├── Content
│ └── Scripts
│ │ └── modernizr-2.6.2.js
├── Modernizr.2.6.2.nupkg
├── Modernizr.2.6.2.nuspec
└── Tools
│ ├── common.ps1
│ ├── install.ps1
│ └── uninstall.ps1
├── Newtonsoft.Json.5.0.8
├── Newtonsoft.Json.5.0.8.nupkg
├── Newtonsoft.Json.5.0.8.nuspec
├── lib
│ ├── net20
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── net35
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── net40
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── net45
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── netcore45
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ ├── portable-net40+sl4+wp7+win8
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
│ └── portable-net45+wp80+win8
│ │ ├── Newtonsoft.Json.dll
│ │ └── Newtonsoft.Json.xml
└── tools
│ └── install.ps1
├── Twitter.Bootstrap.3.0.0
├── Twitter.Bootstrap.3.0.0.nupkg
├── Twitter.Bootstrap.3.0.0.nuspec
└── content
│ ├── Content
│ ├── bootstrap
│ │ ├── bootstrap-theme.css
│ │ ├── bootstrap-theme.min.css
│ │ ├── bootstrap.css
│ │ └── bootstrap.min.css
│ └── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ └── glyphicons-halflings-regular.woff
│ └── Scripts
│ ├── bootstrap.js
│ └── bootstrap.min.js
├── Twitter.Bootstrap.MVC.2.1.0
├── Twitter.Bootstrap.MVC.2.1.0.nupkg
├── Twitter.Bootstrap.MVC.2.1.0.nuspec
└── content
│ └── net40
│ └── App_Start
│ └── BootstrapBundleConfig.cs.pp
├── WebActivatorEx.2.0.3
├── WebActivatorEx.2.0.3.nupkg
├── WebActivatorEx.2.0.3.nuspec
└── lib
│ └── net40
│ └── WebActivatorEx.dll
├── WebGrease.1.5.2
├── WebGrease.1.5.2.nupkg
├── WebGrease.1.5.2.nuspec
├── lib
│ └── WebGrease.dll
└── tools
│ ├── WG.exe
│ ├── install.ps1
│ └── uninstall.ps1
├── angularjs.1.2.0-RC3
├── angularjs.1.2.0-RC3.nupkg
├── angularjs.1.2.0-RC3.nuspec
└── content
│ └── Scripts
│ ├── angular-animate.js
│ ├── angular-animate.min.js
│ ├── angular-animate.min.js.map
│ ├── angular-cookies.js
│ ├── angular-cookies.min.js
│ ├── angular-cookies.min.js.map
│ ├── angular-loader.js
│ ├── angular-loader.min.js
│ ├── angular-loader.min.js.map
│ ├── angular-mocks.js
│ ├── angular-resource.js
│ ├── angular-resource.min.js
│ ├── angular-resource.min.js.map
│ ├── angular-route.js
│ ├── angular-route.min.js
│ ├── angular-route.min.js.map
│ ├── angular-sanitize.js
│ ├── angular-sanitize.min.js
│ ├── angular-sanitize.min.js.map
│ ├── angular-scenario.js
│ ├── angular-touch.js
│ ├── angular-touch.min.js
│ ├── angular-touch.min.js.map
│ ├── angular.js
│ ├── angular.min.js
│ ├── angular.min.js.map
│ ├── errors.json
│ └── i18n
│ ├── angular-locale_af-na.js
│ ├── angular-locale_af-za.js
│ ├── angular-locale_af.js
│ ├── angular-locale_am-et.js
│ ├── angular-locale_am.js
│ ├── angular-locale_ar-001.js
│ ├── angular-locale_ar-ae.js
│ ├── angular-locale_ar-bh.js
│ ├── angular-locale_ar-dz.js
│ ├── angular-locale_ar-eg.js
│ ├── angular-locale_ar-iq.js
│ ├── angular-locale_ar-jo.js
│ ├── angular-locale_ar-kw.js
│ ├── angular-locale_ar-lb.js
│ ├── angular-locale_ar-ly.js
│ ├── angular-locale_ar-ma.js
│ ├── angular-locale_ar-om.js
│ ├── angular-locale_ar-qa.js
│ ├── angular-locale_ar-sa.js
│ ├── angular-locale_ar-sd.js
│ ├── angular-locale_ar-sy.js
│ ├── angular-locale_ar-tn.js
│ ├── angular-locale_ar-ye.js
│ ├── angular-locale_ar.js
│ ├── angular-locale_bg-bg.js
│ ├── angular-locale_bg.js
│ ├── angular-locale_bn-bd.js
│ ├── angular-locale_bn-in.js
│ ├── angular-locale_bn.js
│ ├── angular-locale_ca-ad.js
│ ├── angular-locale_ca-es.js
│ ├── angular-locale_ca.js
│ ├── angular-locale_cs-cz.js
│ ├── angular-locale_cs.js
│ ├── angular-locale_da-dk.js
│ ├── angular-locale_da.js
│ ├── angular-locale_de-at.js
│ ├── angular-locale_de-be.js
│ ├── angular-locale_de-ch.js
│ ├── angular-locale_de-de.js
│ ├── angular-locale_de-li.js
│ ├── angular-locale_de-lu.js
│ ├── angular-locale_de.js
│ ├── angular-locale_el-cy.js
│ ├── angular-locale_el-gr.js
│ ├── angular-locale_el.js
│ ├── angular-locale_en-as.js
│ ├── angular-locale_en-au.js
│ ├── angular-locale_en-bb.js
│ ├── angular-locale_en-be.js
│ ├── angular-locale_en-bm.js
│ ├── angular-locale_en-bw.js
│ ├── angular-locale_en-bz.js
│ ├── angular-locale_en-ca.js
│ ├── angular-locale_en-dsrt-us.js
│ ├── angular-locale_en-dsrt.js
│ ├── angular-locale_en-fm.js
│ ├── angular-locale_en-gb.js
│ ├── angular-locale_en-gu.js
│ ├── angular-locale_en-gy.js
│ ├── angular-locale_en-hk.js
│ ├── angular-locale_en-ie.js
│ ├── angular-locale_en-in.js
│ ├── angular-locale_en-iso.js
│ ├── angular-locale_en-jm.js
│ ├── angular-locale_en-mh.js
│ ├── angular-locale_en-mp.js
│ ├── angular-locale_en-mt.js
│ ├── angular-locale_en-mu.js
│ ├── angular-locale_en-na.js
│ ├── angular-locale_en-nz.js
│ ├── angular-locale_en-ph.js
│ ├── angular-locale_en-pk.js
│ ├── angular-locale_en-pr.js
│ ├── angular-locale_en-pw.js
│ ├── angular-locale_en-sg.js
│ ├── angular-locale_en-tc.js
│ ├── angular-locale_en-tt.js
│ ├── angular-locale_en-um.js
│ ├── angular-locale_en-us.js
│ ├── angular-locale_en-vg.js
│ ├── angular-locale_en-vi.js
│ ├── angular-locale_en-za.js
│ ├── angular-locale_en-zw.js
│ ├── angular-locale_en.js
│ ├── angular-locale_es-419.js
│ ├── angular-locale_es-ar.js
│ ├── angular-locale_es-bo.js
│ ├── angular-locale_es-cl.js
│ ├── angular-locale_es-co.js
│ ├── angular-locale_es-cr.js
│ ├── angular-locale_es-do.js
│ ├── angular-locale_es-ea.js
│ ├── angular-locale_es-ec.js
│ ├── angular-locale_es-es.js
│ ├── angular-locale_es-gq.js
│ ├── angular-locale_es-gt.js
│ ├── angular-locale_es-hn.js
│ ├── angular-locale_es-ic.js
│ ├── angular-locale_es-mx.js
│ ├── angular-locale_es-ni.js
│ ├── angular-locale_es-pa.js
│ ├── angular-locale_es-pe.js
│ ├── angular-locale_es-pr.js
│ ├── angular-locale_es-py.js
│ ├── angular-locale_es-sv.js
│ ├── angular-locale_es-us.js
│ ├── angular-locale_es-uy.js
│ ├── angular-locale_es-ve.js
│ ├── angular-locale_es.js
│ ├── angular-locale_et-ee.js
│ ├── angular-locale_et.js
│ ├── angular-locale_eu-es.js
│ ├── angular-locale_eu.js
│ ├── angular-locale_fa-af.js
│ ├── angular-locale_fa-ir.js
│ ├── angular-locale_fa.js
│ ├── angular-locale_fi-fi.js
│ ├── angular-locale_fi.js
│ ├── angular-locale_fil-ph.js
│ ├── angular-locale_fil.js
│ ├── angular-locale_fr-be.js
│ ├── angular-locale_fr-bf.js
│ ├── angular-locale_fr-bi.js
│ ├── angular-locale_fr-bj.js
│ ├── angular-locale_fr-bl.js
│ ├── angular-locale_fr-ca.js
│ ├── angular-locale_fr-cd.js
│ ├── angular-locale_fr-cf.js
│ ├── angular-locale_fr-cg.js
│ ├── angular-locale_fr-ch.js
│ ├── angular-locale_fr-ci.js
│ ├── angular-locale_fr-cm.js
│ ├── angular-locale_fr-dj.js
│ ├── angular-locale_fr-fr.js
│ ├── angular-locale_fr-ga.js
│ ├── angular-locale_fr-gf.js
│ ├── angular-locale_fr-gn.js
│ ├── angular-locale_fr-gp.js
│ ├── angular-locale_fr-gq.js
│ ├── angular-locale_fr-km.js
│ ├── angular-locale_fr-lu.js
│ ├── angular-locale_fr-mc.js
│ ├── angular-locale_fr-mf.js
│ ├── angular-locale_fr-mg.js
│ ├── angular-locale_fr-ml.js
│ ├── angular-locale_fr-mq.js
│ ├── angular-locale_fr-ne.js
│ ├── angular-locale_fr-re.js
│ ├── angular-locale_fr-yt.js
│ ├── angular-locale_fr.js
│ ├── angular-locale_gl-es.js
│ ├── angular-locale_gl.js
│ ├── angular-locale_gsw-ch.js
│ ├── angular-locale_gsw.js
│ ├── angular-locale_gu-in.js
│ ├── angular-locale_gu.js
│ ├── angular-locale_he-il.js
│ ├── angular-locale_he.js
│ ├── angular-locale_hi-in.js
│ ├── angular-locale_hi.js
│ ├── angular-locale_hr-hr.js
│ ├── angular-locale_hr.js
│ ├── angular-locale_hu-hu.js
│ ├── angular-locale_hu.js
│ ├── angular-locale_id-id.js
│ ├── angular-locale_id.js
│ ├── angular-locale_in.js
│ ├── angular-locale_is-is.js
│ ├── angular-locale_is.js
│ ├── angular-locale_it-it.js
│ ├── angular-locale_it-sm.js
│ ├── angular-locale_it.js
│ ├── angular-locale_iw.js
│ ├── angular-locale_ja-jp.js
│ ├── angular-locale_ja.js
│ ├── angular-locale_kn-in.js
│ ├── angular-locale_kn.js
│ ├── angular-locale_ko-kr.js
│ ├── angular-locale_ko.js
│ ├── angular-locale_ln-cd.js
│ ├── angular-locale_ln.js
│ ├── angular-locale_lt-lt.js
│ ├── angular-locale_lt.js
│ ├── angular-locale_lv-lv.js
│ ├── angular-locale_lv.js
│ ├── angular-locale_ml-in.js
│ ├── angular-locale_ml.js
│ ├── angular-locale_mr-in.js
│ ├── angular-locale_mr.js
│ ├── angular-locale_ms-my.js
│ ├── angular-locale_ms.js
│ ├── angular-locale_mt-mt.js
│ ├── angular-locale_mt.js
│ ├── angular-locale_nl-cw.js
│ ├── angular-locale_nl-nl.js
│ ├── angular-locale_nl-sx.js
│ ├── angular-locale_nl.js
│ ├── angular-locale_no.js
│ ├── angular-locale_or-in.js
│ ├── angular-locale_or.js
│ ├── angular-locale_pl-pl.js
│ ├── angular-locale_pl.js
│ ├── angular-locale_pt-br.js
│ ├── angular-locale_pt-pt.js
│ ├── angular-locale_pt.js
│ ├── angular-locale_ro-ro.js
│ ├── angular-locale_ro.js
│ ├── angular-locale_ru-ru.js
│ ├── angular-locale_ru.js
│ ├── angular-locale_sk-sk.js
│ ├── angular-locale_sk.js
│ ├── angular-locale_sl-si.js
│ ├── angular-locale_sl.js
│ ├── angular-locale_sq-al.js
│ ├── angular-locale_sq.js
│ ├── angular-locale_sr-cyrl-rs.js
│ ├── angular-locale_sr-latn-rs.js
│ ├── angular-locale_sr.js
│ ├── angular-locale_sv-se.js
│ ├── angular-locale_sv.js
│ ├── angular-locale_sw-tz.js
│ ├── angular-locale_sw.js
│ ├── angular-locale_ta-in.js
│ ├── angular-locale_ta.js
│ ├── angular-locale_te-in.js
│ ├── angular-locale_te.js
│ ├── angular-locale_th-th.js
│ ├── angular-locale_th.js
│ ├── angular-locale_tl.js
│ ├── angular-locale_tr-tr.js
│ ├── angular-locale_tr.js
│ ├── angular-locale_uk-ua.js
│ ├── angular-locale_uk.js
│ ├── angular-locale_ur-pk.js
│ ├── angular-locale_ur.js
│ ├── angular-locale_vi-vn.js
│ ├── angular-locale_vi.js
│ ├── angular-locale_zh-cn.js
│ ├── angular-locale_zh-hans-cn.js
│ ├── angular-locale_zh-hk.js
│ ├── angular-locale_zh-tw.js
│ ├── angular-locale_zh.js
│ ├── angular-locale_zu-za.js
│ └── angular-locale_zu.js
├── jQuery.2.0.3
├── Content
│ └── Scripts
│ │ ├── jquery-2.0.3-vsdoc.js
│ │ ├── jquery-2.0.3.js
│ │ ├── jquery-2.0.3.min.js
│ │ └── jquery-2.0.3.min.map
├── Tools
│ ├── common.ps1
│ ├── install.ps1
│ ├── jquery-2.0.3.intellisense.js
│ └── uninstall.ps1
├── jQuery.2.0.3.nupkg
└── jQuery.2.0.3.nuspec
├── jQuery.UI.Combined.1.10.3
├── Content
│ ├── Content
│ │ └── themes
│ │ │ └── base
│ │ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── 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
│ │ │ ├── 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
│ │ │ ├── jquery-ui.css
│ │ │ ├── jquery.ui.accordion.css
│ │ │ ├── jquery.ui.all.css
│ │ │ ├── jquery.ui.autocomplete.css
│ │ │ ├── jquery.ui.base.css
│ │ │ ├── jquery.ui.button.css
│ │ │ ├── jquery.ui.core.css
│ │ │ ├── jquery.ui.datepicker.css
│ │ │ ├── jquery.ui.dialog.css
│ │ │ ├── jquery.ui.menu.css
│ │ │ ├── jquery.ui.progressbar.css
│ │ │ ├── jquery.ui.resizable.css
│ │ │ ├── jquery.ui.selectable.css
│ │ │ ├── jquery.ui.slider.css
│ │ │ ├── jquery.ui.spinner.css
│ │ │ ├── jquery.ui.tabs.css
│ │ │ ├── jquery.ui.theme.css
│ │ │ ├── jquery.ui.tooltip.css
│ │ │ └── minified
│ │ │ ├── images
│ │ │ ├── animated-overlay.gif
│ │ │ ├── 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
│ │ │ ├── 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
│ │ │ ├── jquery-ui.min.css
│ │ │ ├── jquery.ui.accordion.min.css
│ │ │ ├── jquery.ui.autocomplete.min.css
│ │ │ ├── jquery.ui.button.min.css
│ │ │ ├── jquery.ui.core.min.css
│ │ │ ├── jquery.ui.datepicker.min.css
│ │ │ ├── jquery.ui.dialog.min.css
│ │ │ ├── jquery.ui.menu.min.css
│ │ │ ├── jquery.ui.progressbar.min.css
│ │ │ ├── jquery.ui.resizable.min.css
│ │ │ ├── jquery.ui.selectable.min.css
│ │ │ ├── jquery.ui.slider.min.css
│ │ │ ├── jquery.ui.spinner.min.css
│ │ │ ├── jquery.ui.tabs.min.css
│ │ │ ├── jquery.ui.theme.min.css
│ │ │ └── jquery.ui.tooltip.min.css
│ └── Scripts
│ │ ├── jquery-ui-1.10.3.js
│ │ └── jquery-ui-1.10.3.min.js
├── Tools
│ ├── common.ps1
│ ├── install.ps1
│ └── uninstall.ps1
├── jQuery.UI.Combined.1.10.3.nupkg
└── jQuery.UI.Combined.1.10.3.nuspec
├── jQuery.Validation.1.11.1
├── Content
│ └── Scripts
│ │ ├── jquery.validate-vsdoc.js
│ │ ├── jquery.validate.js
│ │ └── jquery.validate.min.js
├── jQuery.Validation.1.11.1.nupkg
└── jQuery.Validation.1.11.1.nuspec
├── repositories.config
└── toastr.2.0.1
├── content
├── content
│ ├── toastr.css
│ ├── toastr.less
│ └── toastr.min.css
└── scripts
│ ├── toastr.js
│ ├── toastr.min.js
│ └── toastr.min.js.map
├── toastr.2.0.1.nupkg
└── toastr.2.0.1.nuspec
/.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 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2012
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AngularJS-WebApi-EF", "AngularJS-WebApi-EF\AngularJS-WebApi-EF.csproj", "{CE10925D-4A62-4CB7-A635-328FCCC78D1A}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Any CPU = Debug|Any CPU
9 | Release|Any CPU = Release|Any CPU
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {CE10925D-4A62-4CB7-A635-328FCCC78D1A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13 | {CE10925D-4A62-4CB7-A635-328FCCC78D1A}.Debug|Any CPU.Build.0 = Debug|Any CPU
14 | {CE10925D-4A62-4CB7-A635-328FCCC78D1A}.Release|Any CPU.ActiveCfg = Release|Any CPU
15 | {CE10925D-4A62-4CB7-A635-328FCCC78D1A}.Release|Any CPU.Build.0 = Release|Any CPU
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/App_Data/PersonContext.mdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/App_Data/PersonContext.mdf
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/App_Data/PersonContext_log.ldf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/App_Data/PersonContext_log.ldf
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/App_Start/BootstrapBundleConfig.cs:
--------------------------------------------------------------------------------
1 | using System.Web.Optimization;
2 |
3 | [assembly: WebActivatorEx.PostApplicationStartMethod(typeof(AngularJS_WebApi_EF.App_Start.BootstrapBundleConfig), "RegisterBundles")]
4 |
5 | namespace AngularJS_WebApi_EF.App_Start
6 | {
7 | public class BootstrapBundleConfig
8 | {
9 | public static void RegisterBundles()
10 | {
11 | // Add @Styles.Render("~/Content/bootstrap/base") in the
of your _Layout.cshtml view
12 | // For Bootstrap theme add @Styles.Render("~/Content/bootstrap/theme") in the
of your _Layout.cshtml view
13 | // Add @Scripts.Render("~/bundles/bootstrap") after jQuery in your _Layout.cshtml view
14 | // When , MVC4 will render the full readable version. When set to , the minified version will be rendered automatically
15 | BundleTable.Bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include("~/Scripts/bootstrap.js"));
16 | BundleTable.Bundles.Add(new StyleBundle("~/Content/bootstrap/base").Include("~/Content/bootstrap/bootstrap.css"));
17 | BundleTable.Bundles.Add(new StyleBundle("~/Content/bootstrap/theme").Include("~/Content/bootstrap/bootstrap-theme.css"));
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/App_Start/FilterConfig.cs:
--------------------------------------------------------------------------------
1 | using System.Web;
2 | using System.Web.Mvc;
3 |
4 | namespace AngularJS_WebApi_EF
5 | {
6 | public class FilterConfig
7 | {
8 | public static void RegisterGlobalFilters(GlobalFilterCollection filters)
9 | {
10 | filters.Add(new HandleErrorAttribute());
11 | }
12 | }
13 | }
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/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 AngularJS_WebApi_EF
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 | }
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/App_Start/WebApiConfig.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Web.Http;
5 |
6 | namespace AngularJS_WebApi_EF
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 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/Site.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/images/animated-overlay.gif
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/images/ui-icons_888888_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/images/ui-icons_888888_256x240.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/jquery.ui.accordion.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Accordion 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 {
12 | display: block;
13 | cursor: pointer;
14 | position: relative;
15 | margin-top: 2px;
16 | padding: .5em .5em .5em .7em;
17 | min-height: 0; /* support: IE7 */
18 | }
19 | .ui-accordion .ui-accordion-icons {
20 | padding-left: 2.2em;
21 | }
22 | .ui-accordion .ui-accordion-noicons {
23 | padding-left: .7em;
24 | }
25 | .ui-accordion .ui-accordion-icons .ui-accordion-icons {
26 | padding-left: 2.2em;
27 | }
28 | .ui-accordion .ui-accordion-header .ui-accordion-header-icon {
29 | position: absolute;
30 | left: .5em;
31 | top: 50%;
32 | margin-top: -8px;
33 | }
34 | .ui-accordion .ui-accordion-content {
35 | padding: 1em 2.2em;
36 | border-top: 0;
37 | overflow: auto;
38 | }
39 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/jquery.ui.all.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI CSS Framework 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/jquery.ui.autocomplete.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Autocomplete 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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;
14 | left: 0;
15 | cursor: default;
16 | }
17 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/jquery.ui.base.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI CSS Framework 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/jquery.ui.core.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI CSS Framework 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Theming/API
10 | */
11 |
12 | /* Layout helpers
13 | ----------------------------------*/
14 | .ui-helper-hidden {
15 | display: none;
16 | }
17 | .ui-helper-hidden-accessible {
18 | border: 0;
19 | clip: rect(0 0 0 0);
20 | height: 1px;
21 | margin: -1px;
22 | overflow: hidden;
23 | padding: 0;
24 | position: absolute;
25 | width: 1px;
26 | }
27 | .ui-helper-reset {
28 | margin: 0;
29 | padding: 0;
30 | border: 0;
31 | outline: 0;
32 | line-height: 1.3;
33 | text-decoration: none;
34 | font-size: 100%;
35 | list-style: none;
36 | }
37 | .ui-helper-clearfix:before,
38 | .ui-helper-clearfix:after {
39 | content: "";
40 | display: table;
41 | border-collapse: collapse;
42 | }
43 | .ui-helper-clearfix:after {
44 | clear: both;
45 | }
46 | .ui-helper-clearfix {
47 | min-height: 0; /* support: IE7 */
48 | }
49 | .ui-helper-zfix {
50 | width: 100%;
51 | height: 100%;
52 | top: 0;
53 | left: 0;
54 | position: absolute;
55 | opacity: 0;
56 | filter:Alpha(Opacity=0);
57 | }
58 |
59 | .ui-front {
60 | z-index: 100;
61 | }
62 |
63 |
64 | /* Interaction Cues
65 | ----------------------------------*/
66 | .ui-state-disabled {
67 | cursor: default !important;
68 | }
69 |
70 |
71 | /* Icons
72 | ----------------------------------*/
73 |
74 | /* states and images */
75 | .ui-icon {
76 | display: block;
77 | text-indent: -99999px;
78 | overflow: hidden;
79 | background-repeat: no-repeat;
80 | }
81 |
82 |
83 | /* Misc visuals
84 | ----------------------------------*/
85 |
86 | /* Overlays */
87 | .ui-widget-overlay {
88 | position: fixed;
89 | top: 0;
90 | left: 0;
91 | width: 100%;
92 | height: 100%;
93 | }
94 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/jquery.ui.dialog.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Dialog 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Dialog#theming
10 | */
11 | .ui-dialog {
12 | position: absolute;
13 | top: 0;
14 | left: 0;
15 | padding: .2em;
16 | outline: 0;
17 | }
18 | .ui-dialog .ui-dialog-titlebar {
19 | padding: .4em 1em;
20 | position: relative;
21 | }
22 | .ui-dialog .ui-dialog-title {
23 | float: left;
24 | margin: .1em 0;
25 | white-space: nowrap;
26 | width: 90%;
27 | overflow: hidden;
28 | text-overflow: ellipsis;
29 | }
30 | .ui-dialog .ui-dialog-titlebar-close {
31 | position: absolute;
32 | right: .3em;
33 | top: 50%;
34 | width: 21px;
35 | margin: -10px 0 0 0;
36 | padding: 1px;
37 | height: 20px;
38 | }
39 | .ui-dialog .ui-dialog-content {
40 | position: relative;
41 | border: 0;
42 | padding: .5em 1em;
43 | background: none;
44 | overflow: auto;
45 | }
46 | .ui-dialog .ui-dialog-buttonpane {
47 | text-align: left;
48 | border-width: 1px 0 0 0;
49 | background-image: none;
50 | margin-top: .5em;
51 | padding: .3em 1em .5em .4em;
52 | }
53 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
54 | float: right;
55 | }
56 | .ui-dialog .ui-dialog-buttonpane button {
57 | margin: .5em .4em .5em 0;
58 | cursor: pointer;
59 | }
60 | .ui-dialog .ui-resizable-se {
61 | width: 12px;
62 | height: 12px;
63 | right: -5px;
64 | bottom: -5px;
65 | background-position: 16px 16px;
66 | }
67 | .ui-draggable .ui-dialog-titlebar {
68 | cursor: move;
69 | }
70 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/jquery.ui.menu.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Menu 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Menu#theming
10 | */
11 | .ui-menu {
12 | list-style: none;
13 | padding: 2px;
14 | margin: 0;
15 | display: block;
16 | outline: none;
17 | }
18 | .ui-menu .ui-menu {
19 | margin-top: -3px;
20 | position: absolute;
21 | }
22 | .ui-menu .ui-menu-item {
23 | margin: 0;
24 | padding: 0;
25 | width: 100%;
26 | /* support: IE10, see #8844 */
27 | list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
28 | }
29 | .ui-menu .ui-menu-divider {
30 | margin: 5px -2px 5px -2px;
31 | height: 0;
32 | font-size: 0;
33 | line-height: 0;
34 | border-width: 1px 0 0 0;
35 | }
36 | .ui-menu .ui-menu-item a {
37 | text-decoration: none;
38 | display: block;
39 | padding: 2px .4em;
40 | line-height: 1.5;
41 | min-height: 0; /* support: IE7 */
42 | font-weight: normal;
43 | }
44 | .ui-menu .ui-menu-item a.ui-state-focus,
45 | .ui-menu .ui-menu-item a.ui-state-active {
46 | font-weight: normal;
47 | margin: -1px;
48 | }
49 |
50 | .ui-menu .ui-state-disabled {
51 | font-weight: normal;
52 | margin: .4em 0 .2em;
53 | line-height: 1.5;
54 | }
55 | .ui-menu .ui-state-disabled a {
56 | cursor: default;
57 | }
58 |
59 | /* icon support */
60 | .ui-menu-icons {
61 | position: relative;
62 | }
63 | .ui-menu-icons .ui-menu-item a {
64 | position: relative;
65 | padding-left: 2em;
66 | }
67 |
68 | /* left-aligned */
69 | .ui-menu .ui-icon {
70 | position: absolute;
71 | top: .2em;
72 | left: .2em;
73 | }
74 |
75 | /* right-aligned */
76 | .ui-menu .ui-menu-icon {
77 | position: static;
78 | float: right;
79 | }
80 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/jquery.ui.progressbar.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Progressbar 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 {
12 | height: 2em;
13 | text-align: left;
14 | overflow: hidden;
15 | }
16 | .ui-progressbar .ui-progressbar-value {
17 | margin: -1px;
18 | height: 100%;
19 | }
20 | .ui-progressbar .ui-progressbar-overlay {
21 | background: url("images/animated-overlay.gif");
22 | height: 100%;
23 | filter: alpha(opacity=25);
24 | opacity: 0.25;
25 | }
26 | .ui-progressbar-indeterminate .ui-progressbar-value {
27 | background-image: none;
28 | }
29 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/jquery.ui.resizable.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Resizable 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Resizable#theming
10 | */
11 | .ui-resizable {
12 | position: relative;
13 | }
14 | .ui-resizable-handle {
15 | position: absolute;
16 | font-size: 0.1px;
17 | display: block;
18 | }
19 | .ui-resizable-disabled .ui-resizable-handle,
20 | .ui-resizable-autohide .ui-resizable-handle {
21 | display: none;
22 | }
23 | .ui-resizable-n {
24 | cursor: n-resize;
25 | height: 7px;
26 | width: 100%;
27 | top: -5px;
28 | left: 0;
29 | }
30 | .ui-resizable-s {
31 | cursor: s-resize;
32 | height: 7px;
33 | width: 100%;
34 | bottom: -5px;
35 | left: 0;
36 | }
37 | .ui-resizable-e {
38 | cursor: e-resize;
39 | width: 7px;
40 | right: -5px;
41 | top: 0;
42 | height: 100%;
43 | }
44 | .ui-resizable-w {
45 | cursor: w-resize;
46 | width: 7px;
47 | left: -5px;
48 | top: 0;
49 | height: 100%;
50 | }
51 | .ui-resizable-se {
52 | cursor: se-resize;
53 | width: 12px;
54 | height: 12px;
55 | right: 1px;
56 | bottom: 1px;
57 | }
58 | .ui-resizable-sw {
59 | cursor: sw-resize;
60 | width: 9px;
61 | height: 9px;
62 | left: -5px;
63 | bottom: -5px;
64 | }
65 | .ui-resizable-nw {
66 | cursor: nw-resize;
67 | width: 9px;
68 | height: 9px;
69 | left: -5px;
70 | top: -5px;
71 | }
72 | .ui-resizable-ne {
73 | cursor: ne-resize;
74 | width: 9px;
75 | height: 9px;
76 | right: -5px;
77 | top: -5px;
78 | }
79 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/jquery.ui.selectable.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Selectable 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 {
12 | position: absolute;
13 | z-index: 100;
14 | border: 1px dotted black;
15 | }
16 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/jquery.ui.slider.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Slider 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Slider#theming
10 | */
11 | .ui-slider {
12 | position: relative;
13 | text-align: left;
14 | }
15 | .ui-slider .ui-slider-handle {
16 | position: absolute;
17 | z-index: 2;
18 | width: 1.2em;
19 | height: 1.2em;
20 | cursor: default;
21 | }
22 | .ui-slider .ui-slider-range {
23 | position: absolute;
24 | z-index: 1;
25 | font-size: .7em;
26 | display: block;
27 | border: 0;
28 | background-position: 0 0;
29 | }
30 |
31 | /* For IE8 - See #6727 */
32 | .ui-slider.ui-state-disabled .ui-slider-handle,
33 | .ui-slider.ui-state-disabled .ui-slider-range {
34 | filter: inherit;
35 | }
36 |
37 | .ui-slider-horizontal {
38 | height: .8em;
39 | }
40 | .ui-slider-horizontal .ui-slider-handle {
41 | top: -.3em;
42 | margin-left: -.6em;
43 | }
44 | .ui-slider-horizontal .ui-slider-range {
45 | top: 0;
46 | height: 100%;
47 | }
48 | .ui-slider-horizontal .ui-slider-range-min {
49 | left: 0;
50 | }
51 | .ui-slider-horizontal .ui-slider-range-max {
52 | right: 0;
53 | }
54 |
55 | .ui-slider-vertical {
56 | width: .8em;
57 | height: 100px;
58 | }
59 | .ui-slider-vertical .ui-slider-handle {
60 | left: -.3em;
61 | margin-left: 0;
62 | margin-bottom: -.6em;
63 | }
64 | .ui-slider-vertical .ui-slider-range {
65 | left: 0;
66 | width: 100%;
67 | }
68 | .ui-slider-vertical .ui-slider-range-min {
69 | bottom: 0;
70 | }
71 | .ui-slider-vertical .ui-slider-range-max {
72 | top: 0;
73 | }
74 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/jquery.ui.spinner.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Spinner 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Spinner#theming
10 | */
11 | .ui-spinner {
12 | position: relative;
13 | display: inline-block;
14 | overflow: hidden;
15 | padding: 0;
16 | vertical-align: middle;
17 | }
18 | .ui-spinner-input {
19 | border: none;
20 | background: none;
21 | color: inherit;
22 | padding: 0;
23 | margin: .2em 0;
24 | vertical-align: middle;
25 | margin-left: .4em;
26 | margin-right: 22px;
27 | }
28 | .ui-spinner-button {
29 | width: 16px;
30 | height: 50%;
31 | font-size: .5em;
32 | padding: 0;
33 | margin: 0;
34 | text-align: center;
35 | position: absolute;
36 | cursor: default;
37 | display: block;
38 | overflow: hidden;
39 | right: 0;
40 | }
41 | /* more specificity required here to overide default borders */
42 | .ui-spinner a.ui-spinner-button {
43 | border-top: none;
44 | border-bottom: none;
45 | border-right: none;
46 | }
47 | /* vertical centre icon */
48 | .ui-spinner .ui-icon {
49 | position: absolute;
50 | margin-top: -8px;
51 | top: 50%;
52 | left: 0;
53 | }
54 | .ui-spinner-up {
55 | top: 0;
56 | }
57 | .ui-spinner-down {
58 | bottom: 0;
59 | }
60 |
61 | /* TR overrides */
62 | .ui-spinner .ui-icon-triangle-1-s {
63 | /* need to fix icons sprite */
64 | background-position: -65px -16px;
65 | }
66 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/jquery.ui.tabs.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Tabs 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Tabs#theming
10 | */
11 | .ui-tabs {
12 | position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
13 | padding: .2em;
14 | }
15 | .ui-tabs .ui-tabs-nav {
16 | margin: 0;
17 | padding: .2em .2em 0;
18 | }
19 | .ui-tabs .ui-tabs-nav li {
20 | list-style: none;
21 | float: left;
22 | position: relative;
23 | top: 0;
24 | margin: 1px .2em 0 0;
25 | border-bottom-width: 0;
26 | padding: 0;
27 | white-space: nowrap;
28 | }
29 | .ui-tabs .ui-tabs-nav li a {
30 | float: left;
31 | padding: .5em 1em;
32 | text-decoration: none;
33 | }
34 | .ui-tabs .ui-tabs-nav li.ui-tabs-active {
35 | margin-bottom: -1px;
36 | padding-bottom: 1px;
37 | }
38 | .ui-tabs .ui-tabs-nav li.ui-tabs-active a,
39 | .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
40 | .ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
41 | cursor: text;
42 | }
43 | .ui-tabs .ui-tabs-nav li a, /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
44 | .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
45 | cursor: pointer;
46 | }
47 | .ui-tabs .ui-tabs-panel {
48 | display: block;
49 | border-width: 0;
50 | padding: 1em 1.4em;
51 | background: none;
52 | }
53 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/jquery.ui.tooltip.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Tooltip 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 | body .ui-tooltip {
18 | border-width: 2px;
19 | }
20 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/minified/images/animated-overlay.gif
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-icons_888888_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-icons_888888_256x240.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/AngularJS-WebApi-EF/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/jquery.ui.accordion.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin-top:2px;padding:.5em .5em .5em .7em;min-height:0}.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}
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/jquery.ui.autocomplete.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-autocomplete{position:absolute;top:0;left:0;cursor:default}
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/jquery.ui.button.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/jquery.ui.core.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width: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;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/jquery.ui.dialog.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:21px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/jquery.ui.menu.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-menu{list-style:none;padding:2px;margin:0;display:block;outline:0}.ui-menu .ui-menu{margin-top:-3px;position:absolute}.ui-menu .ui-menu-item{margin:0;padding:0;width:100%;list-style-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)}.ui-menu .ui-menu-divider{margin:5px -2px 5px -2px;height:0;font-size:0;line-height:0;border-width:1px 0 0}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:2px .4em;line-height:1.5;min-height:0;font-weight:400}.ui-menu .ui-menu-item a.ui-state-focus,.ui-menu .ui-menu-item a.ui-state-active{font-weight:400;margin:-1px}.ui-menu .ui-state-disabled{font-weight:400;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}
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/jquery.ui.progressbar.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url(images/animated-overlay.gif);height:100%;filter:alpha(opacity=25);opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/jquery.ui.resizable.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.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}
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/jquery.ui.selectable.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted #000}
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/jquery.ui.slider.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
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.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.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}
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/jquery.ui.spinner.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:0;background:0;color:inherit;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:0;border-bottom:0;border-right:0}.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}
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/jquery.ui.tabs.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-tabs{position:relative;padding:.2em}.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-width: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:0}
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Content/themes/base/minified/jquery.ui.tooltip.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
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}body .ui-tooltip{border-width:2px}
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/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 AngularJS_WebApi_EF.Controllers
8 | {
9 | public class HomeController : Controller
10 | {
11 | //
12 | // GET: /Home/
13 |
14 | public ActionResult Index()
15 | {
16 | return View();
17 | }
18 |
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="AngularJS_WebApi_EF.MvcApplication" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Global.asax.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Data.Entity;
4 | using System.Linq;
5 | using System.Web;
6 | using System.Web.Http;
7 | using System.Web.Mvc;
8 | using System.Web.Optimization;
9 | using System.Web.Routing;
10 | using AngularJS_WebApi_EF.Models;
11 | using Newtonsoft.Json;
12 |
13 | namespace AngularJS_WebApi_EF
14 | {
15 | // Note: For instructions on enabling IIS6 or IIS7 classic mode,
16 | // visit http://go.microsoft.com/?LinkId=9394801
17 |
18 | public class MvcApplication : System.Web.HttpApplication
19 | {
20 | protected void Application_Start()
21 | {
22 | AreaRegistration.RegisterAllAreas();
23 |
24 | WebApiConfig.Register(GlobalConfiguration.Configuration);
25 | FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
26 | RouteConfig.RegisterRoutes(RouteTable.Routes);
27 | BundleConfig.RegisterBundles(BundleTable.Bundles);
28 |
29 | Database.SetInitializer(null);
30 |
31 | GlobalConfiguration.Configuration.Formatters.JsonFormatter.SerializerSettings.ReferenceLoopHandling = ReferenceLoopHandling.Ignore;
32 |
33 | }
34 | }
35 | }
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Models/Person.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.ComponentModel.DataAnnotations;
4 | using System.ComponentModel.DataAnnotations.Schema;
5 | using System.Linq;
6 | using System.Web;
7 |
8 | namespace AngularJS_WebApi_EF.Models
9 | {
10 | [Table("Person")]
11 | public class Person
12 | {
13 | public int Id { get; set; }
14 | public string Name { get; set; }
15 |
16 | public int? PlaceId { get; set; }
17 | public virtual Place Place { get; set; }
18 | }
19 | }
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Models/PersonContext.cs:
--------------------------------------------------------------------------------
1 | using System.Data.Entity;
2 |
3 | namespace AngularJS_WebApi_EF.Models
4 | {
5 | public class PersonContext : DbContext
6 | {
7 | // You can add custom code to this file. Changes will not be overwritten.
8 | //
9 | // If you want Entity Framework to drop and regenerate your database
10 | // automatically whenever you change your model schema, add the following
11 | // code to the Application_Start method in your Global.asax file.
12 | // Note: this will destroy and re-create your database with every model change.
13 | //
14 | // System.Data.Entity.Database.SetInitializer(new System.Data.Entity.DropCreateDatabaseIfModelChanges());
15 |
16 | public PersonContext() : base("name=PersonContext")
17 | {
18 | }
19 |
20 | public DbSet People { get; set; }
21 | public DbSet Places { get; set; }
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Models/Place.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.ComponentModel.DataAnnotations;
4 | using System.ComponentModel.DataAnnotations.Schema;
5 | using System.Linq;
6 | using System.Web;
7 |
8 | namespace AngularJS_WebApi_EF.Models
9 | {
10 | [Table("Place")]
11 | public class Place
12 | {
13 | public int Id { get; set; }
14 | public string Name { get; set; }
15 | }
16 | }
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // General Information about an assembly is controlled through the following
6 | // set of attributes. Change these attribute values to modify the information
7 | // associated with an assembly.
8 | [assembly: AssemblyTitle("AngularJS_WebApi_EF")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("AngularJS_WebApi_EF")]
13 | [assembly: AssemblyCopyright("Copyright © 2013")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // Setting ComVisible to false makes the types in this assembly not visible
18 | // to COM components. If you need to access a type in this assembly from
19 | // COM, set the ComVisible attribute to true on that type.
20 | [assembly: ComVisible(false)]
21 |
22 | // The following GUID is for the ID of the typelib if this project is exposed to COM
23 | [assembly: Guid("3b7c21cd-b7e6-4e7a-a9a2-97affb9bf01f")]
24 |
25 | // Version information for an assembly consists of the following four values:
26 | //
27 | // Major Version
28 | // Minor Version
29 | // Build Number
30 | // Revision
31 | //
32 | // You can specify all the values or you can default the Revision and Build Numbers
33 | // by using the '*' as shown below:
34 | [assembly: AssemblyVersion("1.0.0.0")]
35 | [assembly: AssemblyFileVersion("1.0.0.0")]
36 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/App/Directives/Content/crud-grid-directive.css:
--------------------------------------------------------------------------------
1 | table.crud-grid th:hover:not(:first-child) {
2 | cursor: pointer;
3 | }
4 |
5 | .filter {
6 | padding-bottom: 10px;
7 | }
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/App/Directives/Services/crud-grid-data-factory.js:
--------------------------------------------------------------------------------
1 | app.factory('crudGridDataFactory', ['$http', '$resource', function ($http, $resource) {
2 | return function (type) {
3 | return $resource('api/' + type + '/:id', { id: '@id' }, { 'update': { method: 'PUT' } }, { 'query': { method: 'GET', isArray: false } });
4 | };
5 | }]);
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/App/Directives/model-change-blur-directive.js:
--------------------------------------------------------------------------------
1 | app.directive('modelChangeBlur', function () {
2 | return {
3 | restrict: 'A',
4 | require: 'ngModel',
5 | link: function (scope, elm, attr, ngModelCtrl) {
6 | if (attr.type === 'radio' || attr.type === 'checkbox') return;
7 |
8 | elm.unbind('input').unbind('keydown').unbind('change');
9 | elm.bind('blur', function () {
10 | scope.$apply(function () {
11 | ngModelCtrl.$setViewValue(elm.val());
12 | });
13 | });
14 | }
15 | };
16 | });
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/App/Services/notification-factory.js:
--------------------------------------------------------------------------------
1 | app.factory('notificationFactory', function () {
2 | return {
3 | success: function () {
4 | toastr.success("Success");
5 | },
6 | error: function (text) {
7 | toastr.error(text, "Error");
8 | }
9 | };
10 | });
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/App/app.js:
--------------------------------------------------------------------------------
1 | var app = angular.module('app', ['ngResource']);
2 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/_references.js:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 | ///
4 | ///
5 | ///
6 | ///
7 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/angular-cookies.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | AngularJS v1.2.0-rc.3
3 | (c) 2010-2012 Google, Inc. http://angularjs.org
4 | License: MIT
5 | */
6 | (function(p,f,n){'use strict';f.module("ngCookies",["ng"]).factory("$cookies",["$rootScope","$browser",function(d,b){var c={},g={},h,k=!1,l=f.copy,m=f.isUndefined;b.addPollFn(function(){var a=b.cookies();h!=a&&(h=a,l(a,g),l(a,c),k&&d.$apply())})();k=!0;d.$watch(function(){var a,e,d;for(a in g)m(c[a])&&b.cookies(a,n);for(a in c)(e=c[a],f.isString(e))?e!==g[a]&&(b.cookies(a,e),d=!0):f.isDefined(g[a])?c[a]=g[a]:delete c[a];if(d)for(a in e=b.cookies(),c)c[a]!==e[a]&&(m(e[a])?delete c[a]:c[a]=e[a])});
7 | return c}]).factory("$cookieStore",["$cookies",function(d){return{get:function(b){return(b=d[b])?f.fromJson(b):b},put:function(b,c){d[b]=f.toJson(c)},remove:function(b){delete d[b]}}}])})(window,window.angular);
8 | //# sourceMappingURL=angular-cookies.min.js.map
9 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/angular-loader.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | AngularJS v1.2.0-rc.3
3 | (c) 2010-2012 Google, Inc. http://angularjs.org
4 | License: MIT
5 | */
6 | (function(k){'use strict';function d(c,b,e){return c[b]||(c[b]=e())}var l=minErr("$injector");return d(d(k,"angular",Object),"module",function(){var c={};return function(b,e,f){assertNotHasOwnProperty(b,"module");e&&c.hasOwnProperty(b)&&(c[b]=null);return d(c,b,function(){function a(a,b,d){return function(){c[d||"push"]([a,b,arguments]);return g}}if(!e)throw l("nomod",b);var c=[],d=[],h=a("$injector","invoke"),g={_invokeQueue:c,_runBlocks:d,requires:e,name:b,provider:a("$provide","provider"),factory:a("$provide",
7 | "factory"),service:a("$provide","service"),value:a("$provide","value"),constant:a("$provide","constant","unshift"),animation:a("$animateProvider","register"),filter:a("$filterProvider","register"),controller:a("$controllerProvider","register"),directive:a("$compileProvider","directive"),config:h,run:function(a){d.push(a);return this}};f&&h(f);return g})}})})(window);
8 | //# sourceMappingURL=angular-loader.min.js.map
9 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/angular-loader.min.js.map:
--------------------------------------------------------------------------------
1 | {
2 | "version":3,
3 | "file":"angular-loader.min.js",
4 | "lineCount":7,
5 | "mappings":"A;;;;;aAgBAA,SAA0B,CAACC,CAAD,CAAS,CAIjCC,QAASA,EAAM,CAACC,CAAD,CAAMC,CAAN,CAAYC,CAAZ,CAAqB,CAClC,MAAOF,EAAA,CAAIC,CAAJ,CAAP,GAAqBD,CAAA,CAAIC,CAAJ,CAArB,CAAiCC,CAAA,EAAjC,CADkC,CAFpC,IAAIC,EAAkBC,MAAA,CAAO,WAAP,CAMtB,OAAOL,EAAA,CAAOA,CAAA,CAAOD,CAAP,CAAe,SAAf,CAA0BO,MAA1B,CAAP,CAA0C,QAA1C,CAAoD,QAAQ,EAAG,CAEpE,IAAIC,EAAU,EAmDd,OAAOC,SAAe,CAACN,CAAD,CAAOO,CAAP,CAAiBC,CAAjB,CAA2B,CAC/CC,uBAAA,CAAwBT,CAAxB,CAA8B,QAA9B,CACIO,EAAJ,EAAgBF,CAAAK,eAAA,CAAuBV,CAAvB,CAAhB,GACEK,CAAA,CAAQL,CAAR,CADF,CACkB,IADlB,CAGA,OAAOF,EAAA,CAAOO,CAAP,CAAgBL,CAAhB,CAAsB,QAAQ,EAAG,CA6MtCW,QAASA,EAAW,CAACC,CAAD,CAAWC,CAAX,CAAmBC,CAAnB,CAAiC,CACnD,MAAO,SAAQ,EAAG,CAChBC,CAAA,CAAYD,CAAZ,EAA4B,MAA5B,CAAA,CAAoC,CAACF,CAAD,CAAWC,CAAX,CAAmBG,SAAnB,CAApC,CACA,OAAOC,EAFS,CADiC,CA5MrD,GAAI,CAACV,CAAL,CACE,KAAML,EAAA,CAAgB,OAAhB,CAEWF,CAFX,CAAN,CAMF,IAAIe,EAAc,EAAlB,CAGIG,EAAY,EAHhB,CAKIC,EAASR,CAAA,CAAY,WAAZ,CAAyB,QAAzB,CALb,CAQIM,EAAiB,cAELF,CAFK,YAGPG,CAHO,UAaTX,CAbS,MAsBbP,CAtBa,UAkCTW,CAAA,CAAY,UAAZ,CAAwB,UAAxB,CAlCS,SA6CVA,CAAA,CAAY,UAAZ;AAAwB,SAAxB,CA7CU,SAwDVA,CAAA,CAAY,UAAZ,CAAwB,SAAxB,CAxDU,OAmEZA,CAAA,CAAY,UAAZ,CAAwB,OAAxB,CAnEY,UA+ETA,CAAA,CAAY,UAAZ,CAAwB,UAAxB,CAAoC,SAApC,CA/ES,WAgHRA,CAAA,CAAY,kBAAZ,CAAgC,UAAhC,CAhHQ,QA2HXA,CAAA,CAAY,iBAAZ,CAA+B,UAA/B,CA3HW,YAuIPA,CAAA,CAAY,qBAAZ,CAAmC,UAAnC,CAvIO,WAoJRA,CAAA,CAAY,kBAAZ,CAAgC,WAAhC,CApJQ,QA+JXQ,CA/JW,KA2KdC,QAAQ,CAACC,CAAD,CAAQ,CACnBH,CAAAI,KAAA,CAAeD,CAAf,CACA,OAAO,KAFY,CA3KF,CAiLjBb,EAAJ,EACEW,CAAA,CAAOX,CAAP,CAGF,OAAQS,EArM8B,CAAjC,CALwC,CArDmB,CAA/D,CAR0B,CAAnCrB,CAAA,CA2REC,MA3RF;",
6 | "sources":["angular-loader.js"],
7 | "names":["setupModuleLoader","window","ensure","obj","name","factory","$injectorMinErr","minErr","Object","modules","module","requires","configFn","assertNotHasOwnProperty","hasOwnProperty","invokeLater","provider","method","insertMethod","invokeQueue","arguments","moduleInstance","runBlocks","config","run","block","push"]
8 | }
9 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/i18n/angular-locale_chr.js:
--------------------------------------------------------------------------------
1 | angular.module("ngLocale", [], ["$provide", function($provide) {
2 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
3 | $provide.value("$locale", {"DATETIME_FORMATS":{"MONTH":["ᎤᏃᎸᏔᏅ","ᎧᎦᎵ","ᎠᏅᏱ","ᎧᏬᏂ","ᎠᏂᏍᎬᏘ","ᏕᎭᎷᏱ","ᎫᏰᏉᏂ","ᎦᎶᏂ","ᏚᎵᏍᏗ","ᏚᏂᏅᏗ","ᏅᏓᏕᏆ","ᎤᏍᎩᏱ"],"SHORTMONTH":["ᎤᏃ","ᎧᎦ","ᎠᏅ","ᎧᏬ","ᎠᏂ","ᏕᎭ","ᎫᏰ","ᎦᎶ","ᏚᎵ","ᏚᏂ","ᏅᏓ","ᎤᏍ"],"DAY":["ᎤᎾᏙᏓᏆᏍᎬ","ᎤᎾᏙᏓᏉᏅᎯ","ᏔᎵᏁᎢᎦ","ᏦᎢᏁᎢᎦ","ᏅᎩᏁᎢᎦ","ᏧᎾᎩᎶᏍᏗ","ᎤᎾᏙᏓᏈᏕᎾ"],"SHORTDAY":["ᏆᏍᎬ","ᏉᏅᎯ","ᏔᎵᏁ","ᏦᎢᏁ","ᏅᎩᏁ","ᏧᎾᎩ","ᏈᏕᎾ"],"AMPMS":["ᏌᎾᎴ","ᏒᎯᏱᎢᏗᏢ"],"medium":"MMM d, y h:mm:ss a","short":"M/d/yy h:mm a","fullDate":"EEEE, MMMM d, y","longDate":"MMMM d, y","mediumDate":"MMM d, y","shortDate":"M/d/yy","mediumTime":"h:mm:ss a","shortTime":"h:mm a"},"pluralCat":function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;},"id":"chr"});
4 | }]);
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/i18n/angular-locale_cy.js:
--------------------------------------------------------------------------------
1 | angular.module("ngLocale", [], ["$provide", function($provide) {
2 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
3 | $provide.value("$locale", {"DATETIME_FORMATS":{"MONTH":["Ionawr","Chwefror","Mawrth","Ebrill","Mai","Mehefin","Gorffenaf","Awst","Medi","Hydref","Tachwedd","Rhagfyr"],"SHORTMONTH":["Ion","Chwef","Mawrth","Ebrill","Mai","Meh","Gorff","Awst","Medi","Hyd","Tach","Rhag"],"DAY":["Dydd Sul","Dydd Llun","Dydd Mawrth","Dydd Mercher","Dydd Iau","Dydd Gwener","Dydd Sadwrn"],"SHORTDAY":["Sul","Llun","Maw","Mer","Iau","Gwen","Sad"],"AMPMS":["AM","PM"],"medium":"d MMM y HH:mm:ss","short":"dd/MM/yyyy HH:mm","fullDate":"EEEE, d MMMM y","longDate":"d MMMM y","mediumDate":"d MMM y","shortDate":"dd/MM/yyyy","mediumTime":"HH:mm:ss","shortTime":"HH:mm"},"pluralCat":function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;},"id":"cy"});
4 | }]);
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/i18n/angular-locale_el-polyton.js:
--------------------------------------------------------------------------------
1 | angular.module("ngLocale", [], ["$provide", function($provide) {
2 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
3 | $provide.value("$locale", {"NUMBER_FORMATS":{"DECIMAL_SEP":",","GROUP_SEP":".","PATTERNS":[{"minInt":1,"minFrac":0,"macFrac":0,"posPre":"","posSuf":"","negPre":"-","negSuf":"","gSize":3,"lgSize":3,"maxFrac":3},{"minInt":1,"minFrac":2,"macFrac":0,"posPre":"","posSuf":" \u00A4","negPre":"-","negSuf":" \u00A4","gSize":3,"lgSize":3,"maxFrac":2}],"CURRENCY_SYM":"€"},"pluralCat":function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;},"DATETIME_FORMATS":{"MONTH":["Ιανουαρίου","Φεβρουαρίου","Μαρτίου","Απριλίου","Μαΐου","Ιουνίου","Ιουλίου","Αυγούστου","Σεπτεμβρίου","Οκτωβρίου","Νοεμβρίου","Δεκεμβρίου"],"SHORTMONTH":["Ιαν","Φεβ","Μαρ","Απρ","Μαϊ","Ιουν","Ιουλ","Αυγ","Σεπ","Οκτ","Νοε","Δεκ"],"DAY":["Κυριακή","Δευτέρα","Τρίτη","Τετάρτη","Πέμπτη","Παρασκευή","Σάββατο"],"SHORTDAY":["Κυρ","Δευ","Τρι","Τετ","Πεμ","Παρ","Σαβ"],"AMPMS":["π.μ.","μ.μ."],"medium":"d MMM y h:mm:ss a","short":"d/M/yy h:mm a","fullDate":"EEEE, d MMMM y","longDate":"d MMMM y","mediumDate":"d MMM y","shortDate":"d/M/yy","mediumTime":"h:mm:ss a","shortTime":"h:mm a"},"id":"el-polyton"});
4 | }]);
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/i18n/angular-locale_en-zz.js:
--------------------------------------------------------------------------------
1 | angular.module("ngLocale", [], ["$provide", function($provide) {
2 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
3 | $provide.value("$locale", {"NUMBER_FORMATS":{"DECIMAL_SEP":".","GROUP_SEP":",","PATTERNS":[{"minInt":1,"minFrac":0,"macFrac":0,"posPre":"","posSuf":"","negPre":"-","negSuf":"","gSize":3,"lgSize":3,"maxFrac":3},{"minInt":1,"minFrac":2,"macFrac":0,"posPre":"\u00A4","posSuf":"","negPre":"(\u00A4","negSuf":")","gSize":3,"lgSize":3,"maxFrac":2}],"CURRENCY_SYM":"$"},"pluralCat":function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;},"DATETIME_FORMATS":{"MONTH":["January","February","March","April","May","June","July","August","September","October","November","December"],"SHORTMONTH":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"DAY":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"SHORTDAY":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"AMPMS":["AM","PM"],"medium":"MMM d, y h:mm:ss a","short":"M/d/yy h:mm a","fullDate":"EEEE, MMMM d, y","longDate":"MMMM d, y","mediumDate":"MMM d, y","shortDate":"M/d/yy","mediumTime":"h:mm:ss a","shortTime":"h:mm a"},"id":"en-zz"});
4 | }]);
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/i18n/angular-locale_haw.js:
--------------------------------------------------------------------------------
1 | angular.module("ngLocale", [], ["$provide", function($provide) {
2 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
3 | $provide.value("$locale", {"DATETIME_FORMATS":{"MONTH":["Ianuali","Pepeluali","Malaki","ʻApelila","Mei","Iune","Iulai","ʻAukake","Kepakemapa","ʻOkakopa","Nowemapa","Kekemapa"],"SHORTMONTH":["Ian.","Pep.","Mal.","ʻAp.","Mei","Iun.","Iul.","ʻAu.","Kep.","ʻOk.","Now.","Kek."],"DAY":["Lāpule","Poʻakahi","Poʻalua","Poʻakolu","Poʻahā","Poʻalima","Poʻaono"],"SHORTDAY":["LP","P1","P2","P3","P4","P5","P6"],"AMPMS":["AM","PM"],"medium":"d MMM y h:mm:ss a","short":"d/M/yy h:mm a","fullDate":"EEEE, d MMMM y","longDate":"d MMMM y","mediumDate":"d MMM y","shortDate":"d/M/yy","mediumTime":"h:mm:ss a","shortTime":"h:mm a"},"pluralCat":function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;},"id":"haw"});
4 | }]);
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/i18n/angular-locale_id-id.js:
--------------------------------------------------------------------------------
1 | angular.module("ngLocale", [], ["$provide", function($provide) {
2 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
3 | $provide.value("$locale", {
4 | "DATETIME_FORMATS": {
5 | "AMPMS": [
6 | "AM",
7 | "PM"
8 | ],
9 | "DAY": [
10 | "Minggu",
11 | "Senin",
12 | "Selasa",
13 | "Rabu",
14 | "Kamis",
15 | "Jumat",
16 | "Sabtu"
17 | ],
18 | "MONTH": [
19 | "Januari",
20 | "Februari",
21 | "Maret",
22 | "April",
23 | "Mei",
24 | "Juni",
25 | "Juli",
26 | "Agustus",
27 | "September",
28 | "Oktober",
29 | "November",
30 | "Desember"
31 | ],
32 | "SHORTDAY": [
33 | "Min",
34 | "Sen",
35 | "Sel",
36 | "Rab",
37 | "Kam",
38 | "Jum",
39 | "Sab"
40 | ],
41 | "SHORTMONTH": [
42 | "Jan",
43 | "Feb",
44 | "Mar",
45 | "Apr",
46 | "Mei",
47 | "Jun",
48 | "Jul",
49 | "Agt",
50 | "Sep",
51 | "Okt",
52 | "Nov",
53 | "Des"
54 | ],
55 | "fullDate": "EEEE, dd MMMM yyyy",
56 | "longDate": "d MMMM yyyy",
57 | "medium": "d MMM yyyy HH:mm:ss",
58 | "mediumDate": "d MMM yyyy",
59 | "mediumTime": "HH:mm:ss",
60 | "short": "dd/MM/yy HH:mm",
61 | "shortDate": "dd/MM/yy",
62 | "shortTime": "HH:mm"
63 | },
64 | "NUMBER_FORMATS": {
65 | "CURRENCY_SYM": "Rp",
66 | "DECIMAL_SEP": ",",
67 | "GROUP_SEP": ".",
68 | "PATTERNS": [
69 | {
70 | "gSize": 3,
71 | "lgSize": 3,
72 | "macFrac": 0,
73 | "maxFrac": 3,
74 | "minFrac": 0,
75 | "minInt": 1,
76 | "negPre": "-",
77 | "negSuf": "",
78 | "posPre": "",
79 | "posSuf": ""
80 | },
81 | {
82 | "gSize": 3,
83 | "lgSize": 3,
84 | "macFrac": 0,
85 | "maxFrac": 2,
86 | "minFrac": 2,
87 | "minInt": 1,
88 | "negPre": "\u00a4-",
89 | "negSuf": "",
90 | "posPre": "\u00a4",
91 | "posSuf": ""
92 | }
93 | ]
94 | },
95 | "id": "id-id",
96 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
97 | });
98 | }]);
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/i18n/angular-locale_id.js:
--------------------------------------------------------------------------------
1 | angular.module("ngLocale", [], ["$provide", function($provide) {
2 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
3 | $provide.value("$locale", {
4 | "DATETIME_FORMATS": {
5 | "AMPMS": [
6 | "AM",
7 | "PM"
8 | ],
9 | "DAY": [
10 | "Minggu",
11 | "Senin",
12 | "Selasa",
13 | "Rabu",
14 | "Kamis",
15 | "Jumat",
16 | "Sabtu"
17 | ],
18 | "MONTH": [
19 | "Januari",
20 | "Februari",
21 | "Maret",
22 | "April",
23 | "Mei",
24 | "Juni",
25 | "Juli",
26 | "Agustus",
27 | "September",
28 | "Oktober",
29 | "November",
30 | "Desember"
31 | ],
32 | "SHORTDAY": [
33 | "Min",
34 | "Sen",
35 | "Sel",
36 | "Rab",
37 | "Kam",
38 | "Jum",
39 | "Sab"
40 | ],
41 | "SHORTMONTH": [
42 | "Jan",
43 | "Feb",
44 | "Mar",
45 | "Apr",
46 | "Mei",
47 | "Jun",
48 | "Jul",
49 | "Agt",
50 | "Sep",
51 | "Okt",
52 | "Nov",
53 | "Des"
54 | ],
55 | "fullDate": "EEEE, dd MMMM yyyy",
56 | "longDate": "d MMMM yyyy",
57 | "medium": "d MMM yyyy HH:mm:ss",
58 | "mediumDate": "d MMM yyyy",
59 | "mediumTime": "HH:mm:ss",
60 | "short": "dd/MM/yy HH:mm",
61 | "shortDate": "dd/MM/yy",
62 | "shortTime": "HH:mm"
63 | },
64 | "NUMBER_FORMATS": {
65 | "CURRENCY_SYM": "Rp",
66 | "DECIMAL_SEP": ",",
67 | "GROUP_SEP": ".",
68 | "PATTERNS": [
69 | {
70 | "gSize": 3,
71 | "lgSize": 3,
72 | "macFrac": 0,
73 | "maxFrac": 3,
74 | "minFrac": 0,
75 | "minInt": 1,
76 | "negPre": "-",
77 | "negSuf": "",
78 | "posPre": "",
79 | "posSuf": ""
80 | },
81 | {
82 | "gSize": 3,
83 | "lgSize": 3,
84 | "macFrac": 0,
85 | "maxFrac": 2,
86 | "minFrac": 2,
87 | "minInt": 1,
88 | "negPre": "\u00a4-",
89 | "negSuf": "",
90 | "posPre": "\u00a4",
91 | "posSuf": ""
92 | }
93 | ]
94 | },
95 | "id": "id",
96 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
97 | });
98 | }]);
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/i18n/angular-locale_in.js:
--------------------------------------------------------------------------------
1 | angular.module("ngLocale", [], ["$provide", function($provide) {
2 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
3 | $provide.value("$locale", {
4 | "DATETIME_FORMATS": {
5 | "AMPMS": [
6 | "AM",
7 | "PM"
8 | ],
9 | "DAY": [
10 | "Minggu",
11 | "Senin",
12 | "Selasa",
13 | "Rabu",
14 | "Kamis",
15 | "Jumat",
16 | "Sabtu"
17 | ],
18 | "MONTH": [
19 | "Januari",
20 | "Februari",
21 | "Maret",
22 | "April",
23 | "Mei",
24 | "Juni",
25 | "Juli",
26 | "Agustus",
27 | "September",
28 | "Oktober",
29 | "November",
30 | "Desember"
31 | ],
32 | "SHORTDAY": [
33 | "Min",
34 | "Sen",
35 | "Sel",
36 | "Rab",
37 | "Kam",
38 | "Jum",
39 | "Sab"
40 | ],
41 | "SHORTMONTH": [
42 | "Jan",
43 | "Feb",
44 | "Mar",
45 | "Apr",
46 | "Mei",
47 | "Jun",
48 | "Jul",
49 | "Agt",
50 | "Sep",
51 | "Okt",
52 | "Nov",
53 | "Des"
54 | ],
55 | "fullDate": "EEEE, dd MMMM yyyy",
56 | "longDate": "d MMMM yyyy",
57 | "medium": "d MMM yyyy HH:mm:ss",
58 | "mediumDate": "d MMM yyyy",
59 | "mediumTime": "HH:mm:ss",
60 | "short": "dd/MM/yy HH:mm",
61 | "shortDate": "dd/MM/yy",
62 | "shortTime": "HH:mm"
63 | },
64 | "NUMBER_FORMATS": {
65 | "CURRENCY_SYM": "Rp",
66 | "DECIMAL_SEP": ",",
67 | "GROUP_SEP": ".",
68 | "PATTERNS": [
69 | {
70 | "gSize": 3,
71 | "lgSize": 3,
72 | "macFrac": 0,
73 | "maxFrac": 3,
74 | "minFrac": 0,
75 | "minInt": 1,
76 | "negPre": "-",
77 | "negSuf": "",
78 | "posPre": "",
79 | "posSuf": ""
80 | },
81 | {
82 | "gSize": 3,
83 | "lgSize": 3,
84 | "macFrac": 0,
85 | "maxFrac": 2,
86 | "minFrac": 2,
87 | "minInt": 1,
88 | "negPre": "\u00a4-",
89 | "negSuf": "",
90 | "posPre": "\u00a4",
91 | "posSuf": ""
92 | }
93 | ]
94 | },
95 | "id": "in",
96 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
97 | });
98 | }]);
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/i18n/angular-locale_mo.js:
--------------------------------------------------------------------------------
1 | angular.module("ngLocale", [], ["$provide", function($provide) {
2 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
3 | $provide.value("$locale", {"DATETIME_FORMATS":{"MONTH":["ianuarie","februarie","martie","aprilie","mai","iunie","iulie","august","septembrie","octombrie","noiembrie","decembrie"],"SHORTMONTH":["ian.","feb.","mar.","apr.","mai","iun.","iul.","aug.","sept.","oct.","nov.","dec."],"DAY":["duminică","luni","marți","miercuri","joi","vineri","sâmbătă"],"SHORTDAY":["Du","Lu","Ma","Mi","Jo","Vi","Sâ"],"AMPMS":["AM","PM"],"medium":"dd.MM.yyyy HH:mm:ss","short":"dd.MM.yyyy HH:mm","fullDate":"EEEE, d MMMM y","longDate":"d MMMM y","mediumDate":"dd.MM.yyyy","shortDate":"dd.MM.yyyy","mediumTime":"HH:mm:ss","shortTime":"HH:mm"},"NUMBER_FORMATS":{"DECIMAL_SEP":",","GROUP_SEP":".","PATTERNS":[{"minInt":1,"minFrac":0,"macFrac":0,"posPre":"","posSuf":"","negPre":"-","negSuf":"","gSize":3,"lgSize":3,"maxFrac":3},{"minInt":1,"minFrac":2,"macFrac":0,"posPre":"","posSuf":" \u00A4","negPre":"-","negSuf":" \u00A4","gSize":3,"lgSize":3,"maxFrac":2}],"CURRENCY_SYM":"MDL"},"pluralCat":function (n) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 0 || n != 1 && (n % 100) >= 1 && (n % 100) <= 19 && n == Math.floor(n)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;},"id":"mo"});
4 | }]);
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/i18n/angular-locale_ms-my.js:
--------------------------------------------------------------------------------
1 | angular.module("ngLocale", [], ["$provide", function($provide) {
2 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
3 | $provide.value("$locale", {
4 | "DATETIME_FORMATS": {
5 | "AMPMS": [
6 | "PG",
7 | "PTG"
8 | ],
9 | "DAY": [
10 | "Ahad",
11 | "Isnin",
12 | "Selasa",
13 | "Rabu",
14 | "Khamis",
15 | "Jumaat",
16 | "Sabtu"
17 | ],
18 | "MONTH": [
19 | "Januari",
20 | "Februari",
21 | "Mac",
22 | "April",
23 | "Mei",
24 | "Jun",
25 | "Julai",
26 | "Ogos",
27 | "September",
28 | "Oktober",
29 | "November",
30 | "Disember"
31 | ],
32 | "SHORTDAY": [
33 | "Ahd",
34 | "Isn",
35 | "Sel",
36 | "Rab",
37 | "Kha",
38 | "Jum",
39 | "Sab"
40 | ],
41 | "SHORTMONTH": [
42 | "Jan",
43 | "Feb",
44 | "Mac",
45 | "Apr",
46 | "Mei",
47 | "Jun",
48 | "Jul",
49 | "Ogos",
50 | "Sep",
51 | "Okt",
52 | "Nov",
53 | "Dis"
54 | ],
55 | "fullDate": "EEEE, d MMMM y",
56 | "longDate": "d MMMM y",
57 | "medium": "dd/MM/yyyy h:mm:ss a",
58 | "mediumDate": "dd/MM/yyyy",
59 | "mediumTime": "h:mm:ss a",
60 | "short": "d/MM/yy h:mm a",
61 | "shortDate": "d/MM/yy",
62 | "shortTime": "h:mm a"
63 | },
64 | "NUMBER_FORMATS": {
65 | "CURRENCY_SYM": "RM",
66 | "DECIMAL_SEP": ".",
67 | "GROUP_SEP": ",",
68 | "PATTERNS": [
69 | {
70 | "gSize": 3,
71 | "lgSize": 3,
72 | "macFrac": 0,
73 | "maxFrac": 3,
74 | "minFrac": 0,
75 | "minInt": 1,
76 | "negPre": "-",
77 | "negSuf": "",
78 | "posPre": "",
79 | "posSuf": ""
80 | },
81 | {
82 | "gSize": 3,
83 | "lgSize": 3,
84 | "macFrac": 0,
85 | "maxFrac": 2,
86 | "minFrac": 2,
87 | "minInt": 1,
88 | "negPre": "(\u00a4",
89 | "negSuf": ")",
90 | "posPre": "\u00a4",
91 | "posSuf": ""
92 | }
93 | ]
94 | },
95 | "id": "ms-my",
96 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
97 | });
98 | }]);
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/i18n/angular-locale_ms.js:
--------------------------------------------------------------------------------
1 | angular.module("ngLocale", [], ["$provide", function($provide) {
2 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
3 | $provide.value("$locale", {
4 | "DATETIME_FORMATS": {
5 | "AMPMS": [
6 | "PG",
7 | "PTG"
8 | ],
9 | "DAY": [
10 | "Ahad",
11 | "Isnin",
12 | "Selasa",
13 | "Rabu",
14 | "Khamis",
15 | "Jumaat",
16 | "Sabtu"
17 | ],
18 | "MONTH": [
19 | "Januari",
20 | "Februari",
21 | "Mac",
22 | "April",
23 | "Mei",
24 | "Jun",
25 | "Julai",
26 | "Ogos",
27 | "September",
28 | "Oktober",
29 | "November",
30 | "Disember"
31 | ],
32 | "SHORTDAY": [
33 | "Ahd",
34 | "Isn",
35 | "Sel",
36 | "Rab",
37 | "Kha",
38 | "Jum",
39 | "Sab"
40 | ],
41 | "SHORTMONTH": [
42 | "Jan",
43 | "Feb",
44 | "Mac",
45 | "Apr",
46 | "Mei",
47 | "Jun",
48 | "Jul",
49 | "Ogos",
50 | "Sep",
51 | "Okt",
52 | "Nov",
53 | "Dis"
54 | ],
55 | "fullDate": "EEEE, d MMMM y",
56 | "longDate": "d MMMM y",
57 | "medium": "dd/MM/yyyy h:mm:ss a",
58 | "mediumDate": "dd/MM/yyyy",
59 | "mediumTime": "h:mm:ss a",
60 | "short": "d/MM/yy h:mm a",
61 | "shortDate": "d/MM/yy",
62 | "shortTime": "h:mm a"
63 | },
64 | "NUMBER_FORMATS": {
65 | "CURRENCY_SYM": "RM",
66 | "DECIMAL_SEP": ".",
67 | "GROUP_SEP": ",",
68 | "PATTERNS": [
69 | {
70 | "gSize": 3,
71 | "lgSize": 3,
72 | "macFrac": 0,
73 | "maxFrac": 3,
74 | "minFrac": 0,
75 | "minInt": 1,
76 | "negPre": "-",
77 | "negSuf": "",
78 | "posPre": "",
79 | "posSuf": ""
80 | },
81 | {
82 | "gSize": 3,
83 | "lgSize": 3,
84 | "macFrac": 0,
85 | "maxFrac": 2,
86 | "minFrac": 2,
87 | "minInt": 1,
88 | "negPre": "(\u00a4",
89 | "negSuf": ")",
90 | "posPre": "\u00a4",
91 | "posSuf": ""
92 | }
93 | ]
94 | },
95 | "id": "ms",
96 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
97 | });
98 | }]);
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/i18n/angular-locale_sr-rs.js:
--------------------------------------------------------------------------------
1 | angular.module("ngLocale", [], ["$provide", function($provide) {
2 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
3 | $provide.value("$locale", {"NUMBER_FORMATS":{"DECIMAL_SEP":".","GROUP_SEP":",","PATTERNS":[{"minInt":1,"minFrac":0,"macFrac":0,"posPre":"","posSuf":"","negPre":"-","negSuf":"","gSize":3,"lgSize":3,"maxFrac":3},{"minInt":1,"minFrac":2,"macFrac":0,"posPre":"","posSuf":" \u00A4","negPre":"-","negSuf":" \u00A4","gSize":3,"lgSize":3,"maxFrac":2}],"CURRENCY_SYM":"РСД"},"pluralCat":function (n) { if ((n % 10) == 1 && (n % 100) != 11) { return PLURAL_CATEGORY.ONE; } if ((n % 10) >= 2 && (n % 10) <= 4 && ((n % 100) < 12 || (n % 100) > 14) && n == Math.floor(n)) { return PLURAL_CATEGORY.FEW; } if ((n % 10) == 0 || ((n % 10) >= 5 && (n % 10) <= 9) || ((n % 100) >= 11 && (n % 100) <= 14) && n == Math.floor(n)) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;},"DATETIME_FORMATS":{"MONTH":["јануар","фебруар","март","април","мај","јун","јул","август","септембар","октобар","новембар","децембар"],"SHORTMONTH":["јан","феб","мар","апр","мај","јун","јул","авг","сеп","окт","нов","дец"],"DAY":["недеља","понедељак","уторак","среда","четвртак","петак","субота"],"SHORTDAY":["нед","пон","уто","сре","чет","пет","суб"],"AMPMS":["пре подне","поподне"],"medium":"dd.MM.y. HH.mm.ss","short":"d.M.yy. HH.mm","fullDate":"EEEE, dd. MMMM y.","longDate":"dd. MMMM y.","mediumDate":"dd.MM.y.","shortDate":"d.M.yy.","mediumTime":"HH.mm.ss","shortTime":"HH.mm"},"id":"sr-rs"});
4 | }]);
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Scripts/i18n/angular-locale_tl-ph.js:
--------------------------------------------------------------------------------
1 | angular.module("ngLocale", [], ["$provide", function($provide) {
2 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
3 | $provide.value("$locale", {"NUMBER_FORMATS":{"DECIMAL_SEP":".","GROUP_SEP":",","PATTERNS":[{"minInt":1,"minFrac":0,"macFrac":0,"posPre":"","posSuf":"","negPre":"-","negSuf":"","gSize":3,"lgSize":3,"maxFrac":3},{"minInt":1,"minFrac":2,"macFrac":0,"posPre":"\u00A4 ","posSuf":"","negPre":"\u00A4 -","negSuf":"","gSize":3,"lgSize":3,"maxFrac":2}],"CURRENCY_SYM":"P"},"pluralCat":function (n) { if (n == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;},"DATETIME_FORMATS":{"MONTH":["Enero","Pebrero","Marso","Abril","Mayo","Hunyo","Hulyo","Agosto","Setyembre","Oktubre","Nobyembre","Disyembre"],"SHORTMONTH":["Ene","Peb","Mar","Abr","May","Hun","Hul","Ago","Set","Okt","Nob","Dis"],"DAY":["Linggo","Lunes","Martes","Miyerkules","Huwebes","Biyernes","Sabado"],"SHORTDAY":["Lin","Lun","Mar","Mye","Huw","Bye","Sab"],"AMPMS":["AM","PM"],"medium":"MMM d, y HH:mm:ss","short":"M/d/yy HH:mm","fullDate":"EEEE, MMMM dd y","longDate":"MMMM d, y","mediumDate":"MMM d, y","shortDate":"M/d/yy","mediumTime":"HH:mm:ss","shortTime":"HH:mm"},"id":"tl-ph"});
4 | }]);
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Views/Home/Index.cshtml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | AngularJS CRUD Grid - by Jon Gallant (@@jongallant)
5 | @Styles.Render("~/content/bootstrap/base")
6 | @Styles.Render("~/content/bootstrap/base")
7 | @Styles.Render("~/content/toastr")
8 | @Styles.Render("~/content/css")
9 | @Styles.Render("~/content/angular")
10 |
11 |
12 |
13 |
14 |
People
15 |
30 |
31 |
32 |
36 |
37 | @Scripts.Render("~/bundles/jquery")
38 | @Scripts.Render("~/bundles/angular")
39 | @Scripts.Render("~/bundles/toastr")
40 | @Scripts.Render("~/bundles/bootstrap")
41 |
42 |
43 |
44 |
45 |
46 |
47 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Views/Shared/Error.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = null;
3 | }
4 |
5 |
6 |
7 |
8 |
9 | Error
10 |
11 |
12 |
13 | Error.
14 | An error occurred while processing your request.
15 |
16 |
17 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Views/Shared/_Layout.cshtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Views/_ViewStart.cshtml:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Web.Debug.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
17 |
18 |
29 |
30 |
--------------------------------------------------------------------------------
/AngularJS-WebApi-EF/Web.Release.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
17 |
18 |
19 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | AngularJS-WebApi-EF
2 | ===================
3 |
4 | AngularJS CRUD Grid with WebApi, EF, Bootstrap, Font Awesome & Toastr
5 |
--------------------------------------------------------------------------------
/TextFile1.txt:
--------------------------------------------------------------------------------
1 | Jon Gallant
2 | jongallant.com
3 | @jongallant
4 |
5 | A very simple CRUD grid with...
6 |
7 | AngularJS
8 | WebApi
9 | Entity Framework (Code First)
10 | Bootstrap
11 | Font Awesome
12 | Toastr
--------------------------------------------------------------------------------
/license.md:
--------------------------------------------------------------------------------
1 | The MIT License (MIT)
2 |
3 | Copyright (c) 2016 Jon Gallant
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/packages/Antlr.3.5.0.2/Antlr.3.5.0.2.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Antlr.3.5.0.2/Antlr.3.5.0.2.nupkg
--------------------------------------------------------------------------------
/packages/Antlr.3.5.0.2/Antlr.3.5.0.2.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Antlr
5 | 3.5.0.2
6 | ANTLRv3
7 | Terence Parr
8 | Terence Parr
9 | http://www.antlr3.org/license.html
10 | http://www.antlr3.org/
11 | http://www.antlr.org/images/antlr-link.gif
12 | true
13 | ANother Tool for Language Recognition, is a language tool that provides a framework for constructing recognizers, interpreters, compilers, and translators from grammatical descriptions containing actions in a variety of target languages.
14 | ANother Tool for Language Recognition, is a language tool that provides a framework for constructing recognizers, interpreters, compilers, and translators from grammatical descriptions containing actions in a variety of target languages.
15 | en-US
16 |
17 |
--------------------------------------------------------------------------------
/packages/Antlr.3.5.0.2/lib/Antlr3.Runtime.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Antlr.3.5.0.2/lib/Antlr3.Runtime.dll
--------------------------------------------------------------------------------
/packages/EntityFramework.6.0.1/EntityFramework.6.0.1.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/EntityFramework.6.0.1/EntityFramework.6.0.1.nupkg
--------------------------------------------------------------------------------
/packages/EntityFramework.6.0.1/EntityFramework.6.0.1.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | EntityFramework
5 | 6.0.1
6 | EntityFramework
7 | Microsoft
8 | Microsoft
9 | http://go.microsoft.com/fwlink/?LinkID=320539
10 | http://go.microsoft.com/fwlink/?LinkID=320540
11 | true
12 | Entity Framework is Microsoft's recommended data access technology for new applications.
13 | Entity Framework is Microsoft's recommended data access technology for new applications.
14 | en-US
15 | Microsoft EF Database Data O/RM ADO.NET
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/packages/EntityFramework.6.0.1/content/App.config.transform:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/packages/EntityFramework.6.0.1/content/Web.config.transform:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/packages/EntityFramework.6.0.1/lib/net40/EntityFramework.SqlServer.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/EntityFramework.6.0.1/lib/net40/EntityFramework.SqlServer.dll
--------------------------------------------------------------------------------
/packages/EntityFramework.6.0.1/lib/net40/EntityFramework.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/EntityFramework.6.0.1/lib/net40/EntityFramework.dll
--------------------------------------------------------------------------------
/packages/EntityFramework.6.0.1/lib/net45/EntityFramework.SqlServer.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/EntityFramework.6.0.1/lib/net45/EntityFramework.SqlServer.dll
--------------------------------------------------------------------------------
/packages/EntityFramework.6.0.1/lib/net45/EntityFramework.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/EntityFramework.6.0.1/lib/net45/EntityFramework.dll
--------------------------------------------------------------------------------
/packages/EntityFramework.6.0.1/tools/EntityFramework.PowerShell.Utility.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/EntityFramework.6.0.1/tools/EntityFramework.PowerShell.Utility.dll
--------------------------------------------------------------------------------
/packages/EntityFramework.6.0.1/tools/EntityFramework.PowerShell.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/EntityFramework.6.0.1/tools/EntityFramework.PowerShell.dll
--------------------------------------------------------------------------------
/packages/EntityFramework.6.0.1/tools/EntityFramework.psd1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/EntityFramework.6.0.1/tools/EntityFramework.psd1
--------------------------------------------------------------------------------
/packages/EntityFramework.6.0.1/tools/about_EntityFramework.help.txt:
--------------------------------------------------------------------------------
1 | TOPIC
2 | about_EntityFramework
3 |
4 | SHORT DESCRIPTION
5 | Provides information about Entity Framework commands.
6 |
7 | LONG DESCRIPTION
8 | This topic describes the Entity Framework commands. Entity Framework is
9 | Microsoft's recommended data access technology for new applications.
10 |
11 | The following Entity Framework cmdlets are used with Entity Framework
12 | Migrations.
13 |
14 | Cmdlet Description
15 | ----------------- ---------------------------------------------------
16 | Enable-Migrations Enables Code First Migrations in a project.
17 |
18 | Add-Migration Scaffolds a migration script for any pending model
19 | changes.
20 |
21 | Update-Database Applies any pending migrations to the database.
22 |
23 | Get-Migrations Displays the migrations that have been applied to
24 | the target database.
25 |
26 | The following Entity Framework cmdlets are used by NuGet packages that
27 | install Entity Framework providers. These commands are not usually used as
28 | part of normal application development.
29 |
30 | Cmdlet Description
31 | ------------------------------ ---------------------------------------
32 | Add-EFProvider Adds or updates an Entity Framework
33 | provider entry in the project config
34 | file.
35 |
36 | Add-EFDefaultConnectionFactory Adds or updates an Entity Framework
37 | default connection factory in the
38 | project config file.
39 |
40 | Initialize-EFConfiguration Initializes the Entity Framework
41 | section in the project config file and
42 | sets defaults.
43 |
44 | SEE ALSO
45 | Enable-Migrations
46 | Add-Migration
47 | Update-Database
48 | Get-Migrations
49 |
--------------------------------------------------------------------------------
/packages/EntityFramework.6.0.1/tools/migrate.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/EntityFramework.6.0.1/tools/migrate.exe
--------------------------------------------------------------------------------
/packages/FontAwesome.4.0.0/FontAwesome.4.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/FontAwesome.4.0.0/FontAwesome.4.0.0.nupkg
--------------------------------------------------------------------------------
/packages/FontAwesome.4.0.0/FontAwesome.4.0.0.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | FontAwesome
5 | 4.0.0
6 | Dave Gandy
7 | Dave Gandy
8 | http://fontawesome.io/license/
9 | http://fontawesome.io/
10 | false
11 | Iconic font designed for use with Twitter Bootstrap.
12 | The full suite of pictographic icons, examples, and documentation can be found at: http://fontawesome.io
13 | Font Awesome for Twitter Bootstrap - http://fontawesome.io
14 | Font Awesome 4.0
15 | http://fontawesome.io/whats-new/
16 |
17 | New Naming Conventions in 4.0
18 | -- fa-[name]-[shape]-[o]-[direction]
19 |
20 | Folder Changes:
21 | The following folder changes are in response to issue #1732 https://github.com/FortAwesome/Font-Awesome/issues/1732
22 |
23 | -- Folder containing the fonts has been moved from ~/Content/font to ~/Content/fonts to be more inline with the bootstrap package
24 | -- CSS files now reside in ~/Content/fontawesome instead of ~/Content
25 | FortAwesome FontAwesome Font Awesome Iconic Twitter Bootstrap
26 |
27 |
--------------------------------------------------------------------------------
/packages/FontAwesome.4.0.0/content/Content/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/FontAwesome.4.0.0/content/Content/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/packages/FontAwesome.4.0.0/content/Content/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/FontAwesome.4.0.0/content/Content/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/packages/FontAwesome.4.0.0/content/Content/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/FontAwesome.4.0.0/content/Content/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/packages/FontAwesome.4.0.0/content/Content/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/FontAwesome.4.0.0/content/Content/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/packages/FontAwesome.4.0.0/tools/install.ps1:
--------------------------------------------------------------------------------
1 | param($installPath, $toolsPath, $package, $project)
2 |
3 | foreach ($fontFile in $project.ProjectItems.Item("Content").ProjectItems.Item("fonts").ProjectItems)
4 | {
5 | $fontFile.Properties.Item("BuildAction").Value = 2;
6 | }
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Mvc.5.0.0/Microsoft.AspNet.Mvc.5.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.Mvc.5.0.0/Microsoft.AspNet.Mvc.5.0.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Mvc.5.0.0/Microsoft.AspNet.Mvc.5.0.0.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Microsoft.AspNet.Mvc
5 | 5.0.0
6 | Microsoft ASP.NET MVC
7 | Microsoft
8 | Microsoft
9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm
10 | http://www.asp.net/mvc
11 | true
12 | This package contains the runtime assemblies for ASP.NET MVC. ASP.NET MVC gives you a powerful, patterns-based way to build dynamic websites that enables a clean separation of concerns and that gives you full control over markup.
13 | This package contains the runtime assemblies for ASP.NET MVC.
14 | © Microsoft Corporation. All rights reserved.
15 | en-US
16 | Microsoft AspNet Mvc AspNetMvc
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Mvc.5.0.0/lib/net45/System.Web.Mvc.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.Mvc.5.0.0/lib/net45/System.Web.Mvc.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Mvc.FixedDisplayModes.5.0.0/Microsoft.AspNet.Mvc.FixedDisplayModes.5.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.Mvc.FixedDisplayModes.5.0.0/Microsoft.AspNet.Mvc.FixedDisplayModes.5.0.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Mvc.FixedDisplayModes.5.0.0/Microsoft.AspNet.Mvc.FixedDisplayModes.5.0.0.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Microsoft.AspNet.Mvc.FixedDisplayModes
5 | 5.0.0
6 | Microsoft ASP.NET MVC Fixed DisplayModes (deprecated)
7 | Microsoft
8 | Microsoft
9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm
10 | true
11 | The previous version of this package contained a workaround for a bug affecting mobile view caching in ASP.NET MVC 4. As of ASP.NET MVC 5 this workaround is no longer needed. This package can be safely removed without affecting your application.
12 | en-US
13 | Microsoft AspNet Mvc AspNetMvc
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Mvc.FixedDisplayModes.5.0.0/readme.txt:
--------------------------------------------------------------------------------
1 | The previous version of the Microsoft.AspNet.Mvc.FixedDisplayModes package contained a workaround for a bug affecting mobile view caching in ASP.NET MVC 4. As of ASP.NET MVC 5 this workaround is no longer needed. This package can be safely removed without affecting your application.
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Providers.Core.1.2/Microsoft.AspNet.Providers.Core.1.2.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.Providers.Core.1.2/Microsoft.AspNet.Providers.Core.1.2.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Providers.Core.1.2/Microsoft.AspNet.Providers.Core.1.2.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Microsoft.AspNet.Providers.Core
5 | 1.2
6 | Microsoft ASP.NET Universal Providers Core Libraries
7 | Microsoft
8 | Microsoft
9 | http://www.microsoft.com/web/webpi/eula/providers_1_eula_ENU.htm
10 | true
11 | ASP.NET Universal Providers add provider support in ASP.NET 4 for all editions of SQL Server 2005 and later and to SQL Azure. If you use these providers to develop your application, the application will be ready for cloud environments like Azure. Other than supporting additional storage options, the providers work like the existing SQL-based providers, so that you can easily switch an application to use cloud storage via SQL Azure.
12 | ASP.NET Universal Providers extend SQL support in ASP.NET 4 to all editions of SQL Server 2005 and later and to SQL Azure.
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Providers.Core.1.2/lib/net40/System.Web.Providers.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.Providers.Core.1.2/lib/net40/System.Web.Providers.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Providers.LocalDB.1.1/Microsoft.AspNet.Providers.LocalDB.1.1.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.Providers.LocalDB.1.1/Microsoft.AspNet.Providers.LocalDB.1.1.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Providers.LocalDB.1.1/Microsoft.AspNet.Providers.LocalDB.1.1.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Microsoft.AspNet.Providers.LocalDB
5 | 1.1
6 | Microsoft ASP.NET Universal Providers for LocalDB
7 | Microsoft
8 | Microsoft
9 | http://www.microsoft.com/web/webpi/eula/Providers_1_eula_ENU.htm
10 | true
11 | ASP.NET Universal Providers add provider support in ASP.NET 4 for all editions of SQL Server 2005 and later and to SQL Azure. If you use these providers to develop your application, the application will be ready for cloud environments like Azure. Other than supporting additional storage options, the providers work like the existing SQL-based providers, so that you can easily switch an application to use cloud storage via SQL Azure.
12 | ASP.NET Universal Providers extend SQL support in ASP.NET 4 to all editions of SQL Server 2005 and later and to SQL Azure.
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Razor.3.0.0/Microsoft.AspNet.Razor.3.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.Razor.3.0.0/Microsoft.AspNet.Razor.3.0.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Razor.3.0.0/Microsoft.AspNet.Razor.3.0.0.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Microsoft.AspNet.Razor
5 | 3.0.0
6 | Microsoft ASP.NET Razor
7 | Microsoft
8 | Microsoft
9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm
10 | http://www.asp.net/web-pages
11 | true
12 | This package contains the runtime assemblies for ASP.NET Web Pages. ASP.NET Web Pages and the new Razor syntax provide a fast, terse, clean and lightweight way to combine server code with HTML to create dynamic web content.
13 | This package contains the runtime assemblies for ASP.NET Web Pages.
14 | © Microsoft Corporation. All rights reserved.
15 | en-US
16 | Microsoft AspNet WebPages AspNetWebPages Razor
17 |
18 |
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Razor.3.0.0/lib/net45/System.Web.Razor.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.Razor.3.0.0/lib/net45/System.Web.Razor.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Web.Optimization.1.1.1/Microsoft.AspNet.Web.Optimization.1.1.1.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.Web.Optimization.1.1.1/Microsoft.AspNet.Web.Optimization.1.1.1.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Web.Optimization.1.1.1/Microsoft.AspNet.Web.Optimization.1.1.1.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Microsoft.AspNet.Web.Optimization
5 | 1.1.1
6 | Microsoft ASP.NET Web Optimization Framework
7 | Microsoft
8 | Microsoft
9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_enu.htm
10 | true
11 | ASP.NET Optimization introduces a way to bundle and optimize CSS and JavaScript files.
12 | ASP.NET Optimization introduces a way to bundle and optimize CSS and JavaScript files.
13 | © Microsoft Corporation. All rights reserved.
14 | Microsoft AspNet optimization bundling minification
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.Web.Optimization.1.1.1/lib/net40/System.Web.Optimization.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.Web.Optimization.1.1.1/lib/net40/System.Web.Optimization.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.5.0.0/Microsoft.AspNet.WebApi.5.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.WebApi.5.0.0/Microsoft.AspNet.WebApi.5.0.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.5.0.0/Microsoft.AspNet.WebApi.5.0.0.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Microsoft.AspNet.WebApi
5 | 5.0.0
6 | Microsoft ASP.NET Web API
7 | Microsoft
8 | Microsoft
9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm
10 | http://www.asp.net/web-api
11 | true
12 | This package contains everything you need to host ASP.NET Web API on IIS. ASP.NET Web API is a framework that makes it easy to build HTTP services that reach a broad range of clients, including browsers and mobile devices. ASP.NET Web API is an ideal platform for building RESTful applications on the .NET Framework.
13 | This package contains everything you need to host ASP.NET Web API on IIS.
14 | © Microsoft Corporation. All rights reserved.
15 | en-US
16 | Microsoft AspNet WebApi AspNetWebApi
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.Client.5.0.0/Microsoft.AspNet.WebApi.Client.5.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.WebApi.Client.5.0.0/Microsoft.AspNet.WebApi.Client.5.0.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.Client.5.0.0/Microsoft.AspNet.WebApi.Client.5.0.0.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Microsoft.AspNet.WebApi.Client
5 | 5.0.0
6 | Microsoft ASP.NET Web API Client Libraries
7 | Microsoft
8 | Microsoft
9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm
10 | http://www.asp.net/web-api
11 | true
12 | This package adds support for formatting and content negotiation to System.Net.Http. It includes support for JSON, XML, and form URL encoded data.
13 | This package adds support for formatting and content negotiation to System.Net.Http.
14 | © Microsoft Corporation. All rights reserved.
15 | en-US
16 | Microsoft AspNet WebApi AspNetWebApi HttpClient
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.Client.5.0.0/lib/net45/System.Net.Http.Formatting.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.WebApi.Client.5.0.0/lib/net45/System.Net.Http.Formatting.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.Client.5.0.0/lib/portable-wp8+netcore45+net45/System.Net.Http.Formatting.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.WebApi.Client.5.0.0/lib/portable-wp8+netcore45+net45/System.Net.Http.Formatting.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.Core.5.0.0/Microsoft.AspNet.WebApi.Core.5.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.WebApi.Core.5.0.0/Microsoft.AspNet.WebApi.Core.5.0.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.Core.5.0.0/Microsoft.AspNet.WebApi.Core.5.0.0.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Microsoft.AspNet.WebApi.Core
5 | 5.0.0
6 | Microsoft ASP.NET Web API Core Libraries
7 | Microsoft
8 | Microsoft
9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm
10 | http://www.asp.net/web-api
11 | true
12 | This package contains the core runtime assemblies for ASP.NET Web API. This package is used by hosts of the ASP.NET Web API runtime. To host a Web API in IIS use the Microsoft.AspNet.WebApi.WebHost package. To host a Web API in your own process use the Microsoft.AspNet.WebApi.SelfHost package.
13 | This package contains the core runtime assemblies for ASP.NET Web API.
14 | © Microsoft Corporation. All rights reserved.
15 | en-US
16 | Microsoft AspNet WebApi AspNetWebApi
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.Core.5.0.0/content/web.config.transform:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.Core.5.0.0/lib/net45/System.Web.Http.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.WebApi.Core.5.0.0/lib/net45/System.Web.Http.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.WebHost.5.0.0/Microsoft.AspNet.WebApi.WebHost.5.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.WebApi.WebHost.5.0.0/Microsoft.AspNet.WebApi.WebHost.5.0.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.WebHost.5.0.0/Microsoft.AspNet.WebApi.WebHost.5.0.0.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Microsoft.AspNet.WebApi.WebHost
5 | 5.0.0
6 | Microsoft ASP.NET Web API Web Host
7 | Microsoft
8 | Microsoft
9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm
10 | http://www.asp.net/web-api
11 | true
12 | This package contains everything you need to host ASP.NET Web API on IIS. ASP.NET Web API is a framework that makes it easy to build HTTP services that reach a broad range of clients, including browsers and mobile devices. ASP.NET Web API is an ideal platform for building RESTful applications on the .NET Framework.
13 | This package contains everything you need to host ASP.NET Web API on IIS.
14 | © Microsoft Corporation. All rights reserved.
15 | en-US
16 | Microsoft AspNet WebApi AspNetWebApi WebHost
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebApi.WebHost.5.0.0/lib/net45/System.Web.Http.WebHost.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.WebApi.WebHost.5.0.0/lib/net45/System.Web.Http.WebHost.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebPages.3.0.0/Microsoft.AspNet.WebPages.3.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.WebPages.3.0.0/Microsoft.AspNet.WebPages.3.0.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebPages.3.0.0/Microsoft.AspNet.WebPages.3.0.0.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Microsoft.AspNet.WebPages
5 | 3.0.0
6 | Microsoft ASP.NET Web Pages
7 | Microsoft
8 | Microsoft
9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm
10 | http://www.asp.net/web-pages
11 | true
12 | This package contains core runtime assemblies shared between ASP.NET MVC and ASP.NET Web Pages.
13 | This package contains core runtime assemblies shared between ASP.NET MVC and ASP.NET Web Pages.
14 | © Microsoft Corporation. All rights reserved.
15 | en-US
16 | Microsoft AspNet WebPages AspNetWebPages
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.Helpers.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.Helpers.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Deployment.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Deployment.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Razor.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Razor.dll
--------------------------------------------------------------------------------
/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.dll
--------------------------------------------------------------------------------
/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Microsoft.Web.Infrastructure
5 | 1.0.0.0
6 | Microsoft.Web.Infrastructure
7 | Microsoft
8 | Microsoft
9 | http://go.microsoft.com/fwlink/?LinkID=214339
10 | http://www.asp.net
11 | false
12 | This package contains the Microsoft.Web.Infrastructure assembly that lets you dynamically register HTTP modules at run time.
13 | en-US
14 |
15 |
16 |
--------------------------------------------------------------------------------
/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll
--------------------------------------------------------------------------------
/packages/Microsoft.jQuery.Unobtrusive.Ajax.3.0.0/Microsoft.jQuery.Unobtrusive.Ajax.3.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.jQuery.Unobtrusive.Ajax.3.0.0/Microsoft.jQuery.Unobtrusive.Ajax.3.0.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.jQuery.Unobtrusive.Ajax.3.0.0/Microsoft.jQuery.Unobtrusive.Ajax.3.0.0.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Microsoft.jQuery.Unobtrusive.Ajax
5 | 3.0.0
6 | Microsoft jQuery Unobtrusive Ajax
7 | Microsoft
8 | Microsoft
9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm
10 | true
11 | jQuery plugin that unobtrusively sets up jQuery Ajax.
12 | jQuery plugin that unobtrusively sets up jQuery Ajax.
13 | © Microsoft Corporation. All rights reserved.
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/packages/Microsoft.jQuery.Unobtrusive.Validation.3.0.0/Microsoft.jQuery.Unobtrusive.Validation.3.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Microsoft.jQuery.Unobtrusive.Validation.3.0.0/Microsoft.jQuery.Unobtrusive.Validation.3.0.0.nupkg
--------------------------------------------------------------------------------
/packages/Microsoft.jQuery.Unobtrusive.Validation.3.0.0/Microsoft.jQuery.Unobtrusive.Validation.3.0.0.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Microsoft.jQuery.Unobtrusive.Validation
5 | 3.0.0
6 | Microsoft jQuery Unobtrusive Validation
7 | Microsoft
8 | Microsoft
9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm
10 | true
11 | jQuery plugin that unobtrusively sets up jQuery.Validation.
12 | jQuery plugin that unobtrusively sets up jQuery.Validation.
13 | © Microsoft Corporation. All rights reserved.
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg
--------------------------------------------------------------------------------
/packages/Modernizr.2.6.2/Modernizr.2.6.2.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Modernizr
5 | 2.6.2
6 | Modernizr
7 | Faruk Ateş,Paul Irish,Alex Sexton
8 | Faruk Ateş,Paul Irish,Alex Sexton
9 | http://www.modernizr.com/license/
10 | http://www.modernizr.com/
11 | http://www.modernizr.com/i/logo.png
12 | false
13 | Modernizr adds classes to the <html> element which allow you to target specific browser functionality in your stylesheet. You don't actually need to write any Javascript to use it.
14 | Modernizr is a small and simple JavaScript library that helps you take advantage of emerging web technologies (CSS3, HTML5) while still maintaining a fine level of control over older browsers that may not yet support these new technologies.
15 | NOTE: This package is maintained on behalf of the library owners by the NuGet Community Packages project at http://nugetpackages.codeplex.com/
16 | Modernizr is a small and simple JavaScript library that helps you take advantage of emerging web technologies (CSS3, HTML 5) while still maintaining a fine level of control over older browsers that may not yet support these new technologies.
17 | en-US
18 | JavaScript HTML HTML5 CSS CSS3 SVG
19 |
20 |
21 |
--------------------------------------------------------------------------------
/packages/Modernizr.2.6.2/Tools/install.ps1:
--------------------------------------------------------------------------------
1 | param($installPath, $toolsPath, $package, $project)
2 |
3 | . (Join-Path $toolsPath common.ps1)
4 |
5 | if ($scriptsFolderProjectItem -eq $null) {
6 | # No Scripts folder
7 | Write-Host "No Scripts folder found"
8 | exit
9 | }
10 |
11 | # Update the _references.js file
12 | AddOrUpdate-Reference $scriptsFolderProjectItem $modernizrFileNameRegEx $modernizrFileName
--------------------------------------------------------------------------------
/packages/Modernizr.2.6.2/Tools/uninstall.ps1:
--------------------------------------------------------------------------------
1 | param($installPath, $toolsPath, $package, $project)
2 |
3 | . (Join-Path $toolsPath common.ps1)
4 |
5 | # Update the _references.js file
6 | Remove-Reference $scriptsFolderProjectItem $modernizrFileNameRegEx
--------------------------------------------------------------------------------
/packages/Newtonsoft.Json.5.0.8/Newtonsoft.Json.5.0.8.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Newtonsoft.Json.5.0.8/Newtonsoft.Json.5.0.8.nupkg
--------------------------------------------------------------------------------
/packages/Newtonsoft.Json.5.0.8/Newtonsoft.Json.5.0.8.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Newtonsoft.Json
5 | 5.0.8
6 | Json.NET
7 | James Newton-King
8 | James Newton-King
9 | https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md
10 | http://james.newtonking.com/json
11 | false
12 | Json.NET is a popular high-performance JSON framework for .NET
13 | en-US
14 | json
15 |
16 |
--------------------------------------------------------------------------------
/packages/Newtonsoft.Json.5.0.8/lib/net20/Newtonsoft.Json.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Newtonsoft.Json.5.0.8/lib/net20/Newtonsoft.Json.dll
--------------------------------------------------------------------------------
/packages/Newtonsoft.Json.5.0.8/lib/net35/Newtonsoft.Json.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Newtonsoft.Json.5.0.8/lib/net35/Newtonsoft.Json.dll
--------------------------------------------------------------------------------
/packages/Newtonsoft.Json.5.0.8/lib/net40/Newtonsoft.Json.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Newtonsoft.Json.5.0.8/lib/net40/Newtonsoft.Json.dll
--------------------------------------------------------------------------------
/packages/Newtonsoft.Json.5.0.8/lib/net45/Newtonsoft.Json.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Newtonsoft.Json.5.0.8/lib/net45/Newtonsoft.Json.dll
--------------------------------------------------------------------------------
/packages/Newtonsoft.Json.5.0.8/lib/netcore45/Newtonsoft.Json.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Newtonsoft.Json.5.0.8/lib/netcore45/Newtonsoft.Json.dll
--------------------------------------------------------------------------------
/packages/Newtonsoft.Json.5.0.8/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Newtonsoft.Json.5.0.8/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.dll
--------------------------------------------------------------------------------
/packages/Newtonsoft.Json.5.0.8/lib/portable-net45+wp80+win8/Newtonsoft.Json.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Newtonsoft.Json.5.0.8/lib/portable-net45+wp80+win8/Newtonsoft.Json.dll
--------------------------------------------------------------------------------
/packages/Twitter.Bootstrap.3.0.0/Twitter.Bootstrap.3.0.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Twitter.Bootstrap.3.0.0/Twitter.Bootstrap.3.0.0.nupkg
--------------------------------------------------------------------------------
/packages/Twitter.Bootstrap.3.0.0/Twitter.Bootstrap.3.0.0.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Twitter.Bootstrap
5 | 3.0.0
6 | Bootstrap
7 | Jacob Thornton, Mark Otto
8 | Jacob Thornton, Mark Otto
9 | http://www.apache.org/licenses/LICENSE-2.0
10 | http://getbootstrap.com/
11 | http://blog.getbootstrap.com/public/ico/apple-touch-icon-144-precomposed.png
12 | false
13 | Sleek, intuitive, and powerful mobile-first front-end framework for faster and easier web development. Package issues? Please post them here https://github.com/sirkirby/twitter-bootstrap-nuget/issues
14 | Copyright 2012 Twitter, Inc.
15 |
16 | Licensed under the Apache License, Version 2.0 (the "License");
17 | you may not use this file except in compliance with the License.
18 | http://blog.getbootstrap.com/2013/08/19/bootstrap-3-released/
19 | en-US
20 | twitter css css3 html5 less jquery bootstrap responsive
21 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/packages/Twitter.Bootstrap.3.0.0/content/Content/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Twitter.Bootstrap.3.0.0/content/Content/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/packages/Twitter.Bootstrap.3.0.0/content/Content/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Twitter.Bootstrap.3.0.0/content/Content/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/packages/Twitter.Bootstrap.3.0.0/content/Content/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Twitter.Bootstrap.3.0.0/content/Content/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/packages/Twitter.Bootstrap.MVC.2.1.0/Twitter.Bootstrap.MVC.2.1.0.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/Twitter.Bootstrap.MVC.2.1.0/Twitter.Bootstrap.MVC.2.1.0.nupkg
--------------------------------------------------------------------------------
/packages/Twitter.Bootstrap.MVC.2.1.0/Twitter.Bootstrap.MVC.2.1.0.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Twitter.Bootstrap.MVC
5 | 2.1.0
6 | Bootstrap for MVC 5
7 | Chris Kirby
8 | Chris Kirby
9 | http://www.apache.org/licenses/LICENSE-2.0
10 | https://github.com/sirkirby/twitter-bootstrap-nuget
11 | http://blog.getbootstrap.com/public/ico/apple-touch-icon-144-precomposed.png
12 | false
13 | This package is meant to complement those using the Twitter.Bootstrap library in their MVC 5 application. Upon installation it adds bundling and minification support for easy integration into your shared layouts and views. Issues? Please post them here https://github.com/sirkirby/twitter-bootstrap-nuget/issues
14 | - new release for Bootstrap v3
15 | - updated dependencies for MVC 5
16 | twitter boostrap mvc mvc5 bundles javascript css
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/packages/Twitter.Bootstrap.MVC.2.1.0/content/net40/App_Start/BootstrapBundleConfig.cs.pp:
--------------------------------------------------------------------------------
1 | using System.Web.Optimization;
2 |
3 | [assembly: WebActivatorEx.PostApplicationStartMethod(typeof($rootnamespace$.App_Start.BootstrapBundleConfig), "RegisterBundles")]
4 |
5 | namespace $rootnamespace$.App_Start
6 | {
7 | public class BootstrapBundleConfig
8 | {
9 | public static void RegisterBundles()
10 | {
11 | // Add @Styles.Render("~/Content/bootstrap/base") in the of your _Layout.cshtml view
12 | // For Bootstrap theme add @Styles.Render("~/Content/bootstrap/theme") in the of your _Layout.cshtml view
13 | // Add @Scripts.Render("~/bundles/bootstrap") after jQuery in your _Layout.cshtml view
14 | // When , MVC4 will render the full readable version. When set to , the minified version will be rendered automatically
15 | BundleTable.Bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include("~/Scripts/bootstrap.js"));
16 | BundleTable.Bundles.Add(new StyleBundle("~/Content/bootstrap/base").Include("~/Content/bootstrap/bootstrap.css"));
17 | BundleTable.Bundles.Add(new StyleBundle("~/Content/bootstrap/theme").Include("~/Content/bootstrap/bootstrap-theme.css"));
18 | }
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/packages/WebActivatorEx.2.0.3/WebActivatorEx.2.0.3.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/WebActivatorEx.2.0.3/WebActivatorEx.2.0.3.nupkg
--------------------------------------------------------------------------------
/packages/WebActivatorEx.2.0.3/WebActivatorEx.2.0.3.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | WebActivatorEx
5 | 2.0.3
6 | WebActivator
7 | David Ebbo
8 | David Ebbo
9 | http://www.opensource.org/licenses/ms-pl
10 | https://github.com/davidebbo/WebActivator
11 | false
12 | A package that allows other packages to execute some startup code in web apps. This package should be used over the older WebActivator, which was not strong named.
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/packages/WebActivatorEx.2.0.3/lib/net40/WebActivatorEx.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/WebActivatorEx.2.0.3/lib/net40/WebActivatorEx.dll
--------------------------------------------------------------------------------
/packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg
--------------------------------------------------------------------------------
/packages/WebGrease.1.5.2/WebGrease.1.5.2.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | WebGrease
5 | 1.5.2
6 | webgrease@microsoft.com
7 | webgrease@microsoft.com
8 | http://www.microsoft.com/web/webpi/eula/msn_webgrease_eula.htm
9 | true
10 | Web Grease is a suite of tools for optimizing javascript, css files and images.
11 | en-US
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/packages/WebGrease.1.5.2/lib/WebGrease.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/WebGrease.1.5.2/lib/WebGrease.dll
--------------------------------------------------------------------------------
/packages/WebGrease.1.5.2/tools/WG.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/WebGrease.1.5.2/tools/WG.exe
--------------------------------------------------------------------------------
/packages/WebGrease.1.5.2/tools/uninstall.ps1:
--------------------------------------------------------------------------------
1 | param($installPath, $toolsPath, $package, $project)
2 |
3 | # Visual Studio execution done via NuGet Package Manager
4 | Function VSExecution($toolsPath, $project)
5 | {
6 |
7 |
8 | $project.DTE.ExecuteCommand("File.SaveAll", [system.string]::Empty)
9 |
10 | # Get the msbuild version of the project and add the import
11 | $msbuild = [Microsoft.Build.Evaluation.ProjectCollection]::GlobalProjectCollection.GetLoadedProjects($project.FullName) | Select-Object -First 1
12 |
13 | # now remove our property that points to this package path, "WebGreaseLibPath"
14 | foreach ($property in $msbuild.Properties)
15 | {
16 | if ($property.Name -eq "WebGreaseLibPath")
17 | {
18 | $propertyToRemove = $property
19 | }
20 | }
21 |
22 | if ($propertyToRemove -ne $null)
23 | {
24 | $propertyToRemove.Project.RemoveProperty($propertyToRemove)
25 | $project.Save()
26 | }
27 |
28 | $project.DTE.ExecuteCommand("File.SaveAll", [system.string]::Empty)
29 | }
30 |
31 | # Command line execution done by any external tool (For example, NuGetUpdater)
32 | # $project - parameter value is path to Project file in this case.
33 | Function CommandLineExecution($toolsPath, $project)
34 | {
35 | [Reflection.Assembly]::LoadWithPartialName("System.Xml")
36 | [Reflection.Assembly]::LoadWithPartialName("System.Xml.Linq")
37 |
38 |
39 |
40 | $projXDoc = [System.Xml.Linq.XDocument]::Load($project)
41 | $defaultNameSpace = $projXDoc.Root.GetDefaultNamespace()
42 | $xmlReader = $projXDoc.CreateReader()
43 | $namespaceManager = new-object System.Xml.XmlNamespaceManager($xmlReader.NameTable)
44 | $namespaceManager.AddNamespace("my", $defaultNameSpace.NamespaceName)
45 |
46 | $msnRfPackageElement = [System.Xml.XPath.Extensions]::XPathSelectElement($projXDoc.Root, "//my:WebGreaseLibPath", $namespaceManager)
47 | if($msnRfPackageElement -ne $null)
48 | {
49 | $msnRfPackageElement.Remove()
50 | }
51 |
52 | # save the project
53 | $projXDoc.Save($project)
54 | }
55 |
56 | IF ($project -is [system.string])
57 | {
58 | CommandLineExecution $toolsPath $project
59 | }
60 | ELSE
61 | {
62 | VSExecution $toolsPath $project
63 | }
64 |
--------------------------------------------------------------------------------
/packages/angularjs.1.2.0-RC3/angularjs.1.2.0-RC3.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/angularjs.1.2.0-RC3/angularjs.1.2.0-RC3.nupkg
--------------------------------------------------------------------------------
/packages/angularjs.1.2.0-RC3/angularjs.1.2.0-RC3.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | angularjs
5 | 1.2.0-RC3
6 | Angular JS
7 | Fitzchak Yitzchaki
8 | Fitzchak Yitzchaki
9 | http://angularjs.org/
10 | https://secure.gravatar.com/avatar/6e1b5ab3ef1593413f1bee4e5a6e6ae7?s=140&d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-140.png
11 | false
12 | AngularJS. HTML enhanced for web apps!
13 |
14 | angular angularjs
15 |
16 |
--------------------------------------------------------------------------------
/packages/angularjs.1.2.0-RC3/content/Scripts/angular-cookies.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | AngularJS v1.2.0-rc.3
3 | (c) 2010-2012 Google, Inc. http://angularjs.org
4 | License: MIT
5 | */
6 | (function(p,f,n){'use strict';f.module("ngCookies",["ng"]).factory("$cookies",["$rootScope","$browser",function(d,b){var c={},g={},h,k=!1,l=f.copy,m=f.isUndefined;b.addPollFn(function(){var a=b.cookies();h!=a&&(h=a,l(a,g),l(a,c),k&&d.$apply())})();k=!0;d.$watch(function(){var a,e,d;for(a in g)m(c[a])&&b.cookies(a,n);for(a in c)(e=c[a],f.isString(e))?e!==g[a]&&(b.cookies(a,e),d=!0):f.isDefined(g[a])?c[a]=g[a]:delete c[a];if(d)for(a in e=b.cookies(),c)c[a]!==e[a]&&(m(e[a])?delete c[a]:c[a]=e[a])});
7 | return c}]).factory("$cookieStore",["$cookies",function(d){return{get:function(b){return(b=d[b])?f.fromJson(b):b},put:function(b,c){d[b]=f.toJson(c)},remove:function(b){delete d[b]}}}])})(window,window.angular);
8 | //# sourceMappingURL=angular-cookies.min.js.map
9 |
--------------------------------------------------------------------------------
/packages/angularjs.1.2.0-RC3/content/Scripts/angular-loader.min.js:
--------------------------------------------------------------------------------
1 | /*
2 | AngularJS v1.2.0-rc.3
3 | (c) 2010-2012 Google, Inc. http://angularjs.org
4 | License: MIT
5 | */
6 | (function(k){'use strict';function d(c,b,e){return c[b]||(c[b]=e())}var l=minErr("$injector");return d(d(k,"angular",Object),"module",function(){var c={};return function(b,e,f){assertNotHasOwnProperty(b,"module");e&&c.hasOwnProperty(b)&&(c[b]=null);return d(c,b,function(){function a(a,b,d){return function(){c[d||"push"]([a,b,arguments]);return g}}if(!e)throw l("nomod",b);var c=[],d=[],h=a("$injector","invoke"),g={_invokeQueue:c,_runBlocks:d,requires:e,name:b,provider:a("$provide","provider"),factory:a("$provide",
7 | "factory"),service:a("$provide","service"),value:a("$provide","value"),constant:a("$provide","constant","unshift"),animation:a("$animateProvider","register"),filter:a("$filterProvider","register"),controller:a("$controllerProvider","register"),directive:a("$compileProvider","directive"),config:h,run:function(a){d.push(a);return this}};f&&h(f);return g})}})})(window);
8 | //# sourceMappingURL=angular-loader.min.js.map
9 |
--------------------------------------------------------------------------------
/packages/angularjs.1.2.0-RC3/content/Scripts/angular-loader.min.js.map:
--------------------------------------------------------------------------------
1 | {
2 | "version":3,
3 | "file":"angular-loader.min.js",
4 | "lineCount":7,
5 | "mappings":"A;;;;;aAgBAA,SAA0B,CAACC,CAAD,CAAS,CAIjCC,QAASA,EAAM,CAACC,CAAD,CAAMC,CAAN,CAAYC,CAAZ,CAAqB,CAClC,MAAOF,EAAA,CAAIC,CAAJ,CAAP,GAAqBD,CAAA,CAAIC,CAAJ,CAArB,CAAiCC,CAAA,EAAjC,CADkC,CAFpC,IAAIC,EAAkBC,MAAA,CAAO,WAAP,CAMtB,OAAOL,EAAA,CAAOA,CAAA,CAAOD,CAAP,CAAe,SAAf,CAA0BO,MAA1B,CAAP,CAA0C,QAA1C,CAAoD,QAAQ,EAAG,CAEpE,IAAIC,EAAU,EAmDd,OAAOC,SAAe,CAACN,CAAD,CAAOO,CAAP,CAAiBC,CAAjB,CAA2B,CAC/CC,uBAAA,CAAwBT,CAAxB,CAA8B,QAA9B,CACIO,EAAJ,EAAgBF,CAAAK,eAAA,CAAuBV,CAAvB,CAAhB,GACEK,CAAA,CAAQL,CAAR,CADF,CACkB,IADlB,CAGA,OAAOF,EAAA,CAAOO,CAAP,CAAgBL,CAAhB,CAAsB,QAAQ,EAAG,CA6MtCW,QAASA,EAAW,CAACC,CAAD,CAAWC,CAAX,CAAmBC,CAAnB,CAAiC,CACnD,MAAO,SAAQ,EAAG,CAChBC,CAAA,CAAYD,CAAZ,EAA4B,MAA5B,CAAA,CAAoC,CAACF,CAAD,CAAWC,CAAX,CAAmBG,SAAnB,CAApC,CACA,OAAOC,EAFS,CADiC,CA5MrD,GAAI,CAACV,CAAL,CACE,KAAML,EAAA,CAAgB,OAAhB,CAEWF,CAFX,CAAN,CAMF,IAAIe,EAAc,EAAlB,CAGIG,EAAY,EAHhB,CAKIC,EAASR,CAAA,CAAY,WAAZ,CAAyB,QAAzB,CALb,CAQIM,EAAiB,cAELF,CAFK,YAGPG,CAHO,UAaTX,CAbS,MAsBbP,CAtBa,UAkCTW,CAAA,CAAY,UAAZ,CAAwB,UAAxB,CAlCS,SA6CVA,CAAA,CAAY,UAAZ;AAAwB,SAAxB,CA7CU,SAwDVA,CAAA,CAAY,UAAZ,CAAwB,SAAxB,CAxDU,OAmEZA,CAAA,CAAY,UAAZ,CAAwB,OAAxB,CAnEY,UA+ETA,CAAA,CAAY,UAAZ,CAAwB,UAAxB,CAAoC,SAApC,CA/ES,WAgHRA,CAAA,CAAY,kBAAZ,CAAgC,UAAhC,CAhHQ,QA2HXA,CAAA,CAAY,iBAAZ,CAA+B,UAA/B,CA3HW,YAuIPA,CAAA,CAAY,qBAAZ,CAAmC,UAAnC,CAvIO,WAoJRA,CAAA,CAAY,kBAAZ,CAAgC,WAAhC,CApJQ,QA+JXQ,CA/JW,KA2KdC,QAAQ,CAACC,CAAD,CAAQ,CACnBH,CAAAI,KAAA,CAAeD,CAAf,CACA,OAAO,KAFY,CA3KF,CAiLjBb,EAAJ,EACEW,CAAA,CAAOX,CAAP,CAGF,OAAQS,EArM8B,CAAjC,CALwC,CArDmB,CAA/D,CAR0B,CAAnCrB,CAAA,CA2REC,MA3RF;",
6 | "sources":["angular-loader.js"],
7 | "names":["setupModuleLoader","window","ensure","obj","name","factory","$injectorMinErr","minErr","Object","modules","module","requires","configFn","assertNotHasOwnProperty","hasOwnProperty","invokeLater","provider","method","insertMethod","invokeQueue","arguments","moduleInstance","runBlocks","config","run","block","push"]
8 | }
9 |
--------------------------------------------------------------------------------
/packages/angularjs.1.2.0-RC3/content/Scripts/i18n/angular-locale_id.js:
--------------------------------------------------------------------------------
1 | angular.module("ngLocale", [], ["$provide", function($provide) {
2 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
3 | $provide.value("$locale", {
4 | "DATETIME_FORMATS": {
5 | "AMPMS": [
6 | "AM",
7 | "PM"
8 | ],
9 | "DAY": [
10 | "Minggu",
11 | "Senin",
12 | "Selasa",
13 | "Rabu",
14 | "Kamis",
15 | "Jumat",
16 | "Sabtu"
17 | ],
18 | "MONTH": [
19 | "Januari",
20 | "Februari",
21 | "Maret",
22 | "April",
23 | "Mei",
24 | "Juni",
25 | "Juli",
26 | "Agustus",
27 | "September",
28 | "Oktober",
29 | "November",
30 | "Desember"
31 | ],
32 | "SHORTDAY": [
33 | "Min",
34 | "Sen",
35 | "Sel",
36 | "Rab",
37 | "Kam",
38 | "Jum",
39 | "Sab"
40 | ],
41 | "SHORTMONTH": [
42 | "Jan",
43 | "Feb",
44 | "Mar",
45 | "Apr",
46 | "Mei",
47 | "Jun",
48 | "Jul",
49 | "Agt",
50 | "Sep",
51 | "Okt",
52 | "Nov",
53 | "Des"
54 | ],
55 | "fullDate": "EEEE, dd MMMM yyyy",
56 | "longDate": "d MMMM yyyy",
57 | "medium": "d MMM yyyy HH:mm:ss",
58 | "mediumDate": "d MMM yyyy",
59 | "mediumTime": "HH:mm:ss",
60 | "short": "dd/MM/yy HH:mm",
61 | "shortDate": "dd/MM/yy",
62 | "shortTime": "HH:mm"
63 | },
64 | "NUMBER_FORMATS": {
65 | "CURRENCY_SYM": "Rp",
66 | "DECIMAL_SEP": ",",
67 | "GROUP_SEP": ".",
68 | "PATTERNS": [
69 | {
70 | "gSize": 3,
71 | "lgSize": 3,
72 | "macFrac": 0,
73 | "maxFrac": 3,
74 | "minFrac": 0,
75 | "minInt": 1,
76 | "negPre": "-",
77 | "negSuf": "",
78 | "posPre": "",
79 | "posSuf": ""
80 | },
81 | {
82 | "gSize": 3,
83 | "lgSize": 3,
84 | "macFrac": 0,
85 | "maxFrac": 2,
86 | "minFrac": 2,
87 | "minInt": 1,
88 | "negPre": "\u00a4-",
89 | "negSuf": "",
90 | "posPre": "\u00a4",
91 | "posSuf": ""
92 | }
93 | ]
94 | },
95 | "id": "id",
96 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
97 | });
98 | }]);
--------------------------------------------------------------------------------
/packages/angularjs.1.2.0-RC3/content/Scripts/i18n/angular-locale_in.js:
--------------------------------------------------------------------------------
1 | angular.module("ngLocale", [], ["$provide", function($provide) {
2 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
3 | $provide.value("$locale", {
4 | "DATETIME_FORMATS": {
5 | "AMPMS": [
6 | "AM",
7 | "PM"
8 | ],
9 | "DAY": [
10 | "Minggu",
11 | "Senin",
12 | "Selasa",
13 | "Rabu",
14 | "Kamis",
15 | "Jumat",
16 | "Sabtu"
17 | ],
18 | "MONTH": [
19 | "Januari",
20 | "Februari",
21 | "Maret",
22 | "April",
23 | "Mei",
24 | "Juni",
25 | "Juli",
26 | "Agustus",
27 | "September",
28 | "Oktober",
29 | "November",
30 | "Desember"
31 | ],
32 | "SHORTDAY": [
33 | "Min",
34 | "Sen",
35 | "Sel",
36 | "Rab",
37 | "Kam",
38 | "Jum",
39 | "Sab"
40 | ],
41 | "SHORTMONTH": [
42 | "Jan",
43 | "Feb",
44 | "Mar",
45 | "Apr",
46 | "Mei",
47 | "Jun",
48 | "Jul",
49 | "Agt",
50 | "Sep",
51 | "Okt",
52 | "Nov",
53 | "Des"
54 | ],
55 | "fullDate": "EEEE, dd MMMM yyyy",
56 | "longDate": "d MMMM yyyy",
57 | "medium": "d MMM yyyy HH:mm:ss",
58 | "mediumDate": "d MMM yyyy",
59 | "mediumTime": "HH:mm:ss",
60 | "short": "dd/MM/yy HH:mm",
61 | "shortDate": "dd/MM/yy",
62 | "shortTime": "HH:mm"
63 | },
64 | "NUMBER_FORMATS": {
65 | "CURRENCY_SYM": "Rp",
66 | "DECIMAL_SEP": ",",
67 | "GROUP_SEP": ".",
68 | "PATTERNS": [
69 | {
70 | "gSize": 3,
71 | "lgSize": 3,
72 | "macFrac": 0,
73 | "maxFrac": 3,
74 | "minFrac": 0,
75 | "minInt": 1,
76 | "negPre": "-",
77 | "negSuf": "",
78 | "posPre": "",
79 | "posSuf": ""
80 | },
81 | {
82 | "gSize": 3,
83 | "lgSize": 3,
84 | "macFrac": 0,
85 | "maxFrac": 2,
86 | "minFrac": 2,
87 | "minInt": 1,
88 | "negPre": "\u00a4-",
89 | "negSuf": "",
90 | "posPre": "\u00a4",
91 | "posSuf": ""
92 | }
93 | ]
94 | },
95 | "id": "in",
96 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
97 | });
98 | }]);
--------------------------------------------------------------------------------
/packages/angularjs.1.2.0-RC3/content/Scripts/i18n/angular-locale_ms-my.js:
--------------------------------------------------------------------------------
1 | angular.module("ngLocale", [], ["$provide", function($provide) {
2 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
3 | $provide.value("$locale", {
4 | "DATETIME_FORMATS": {
5 | "AMPMS": [
6 | "PG",
7 | "PTG"
8 | ],
9 | "DAY": [
10 | "Ahad",
11 | "Isnin",
12 | "Selasa",
13 | "Rabu",
14 | "Khamis",
15 | "Jumaat",
16 | "Sabtu"
17 | ],
18 | "MONTH": [
19 | "Januari",
20 | "Februari",
21 | "Mac",
22 | "April",
23 | "Mei",
24 | "Jun",
25 | "Julai",
26 | "Ogos",
27 | "September",
28 | "Oktober",
29 | "November",
30 | "Disember"
31 | ],
32 | "SHORTDAY": [
33 | "Ahd",
34 | "Isn",
35 | "Sel",
36 | "Rab",
37 | "Kha",
38 | "Jum",
39 | "Sab"
40 | ],
41 | "SHORTMONTH": [
42 | "Jan",
43 | "Feb",
44 | "Mac",
45 | "Apr",
46 | "Mei",
47 | "Jun",
48 | "Jul",
49 | "Ogos",
50 | "Sep",
51 | "Okt",
52 | "Nov",
53 | "Dis"
54 | ],
55 | "fullDate": "EEEE, d MMMM y",
56 | "longDate": "d MMMM y",
57 | "medium": "dd/MM/yyyy h:mm:ss a",
58 | "mediumDate": "dd/MM/yyyy",
59 | "mediumTime": "h:mm:ss a",
60 | "short": "d/MM/yy h:mm a",
61 | "shortDate": "d/MM/yy",
62 | "shortTime": "h:mm a"
63 | },
64 | "NUMBER_FORMATS": {
65 | "CURRENCY_SYM": "RM",
66 | "DECIMAL_SEP": ".",
67 | "GROUP_SEP": ",",
68 | "PATTERNS": [
69 | {
70 | "gSize": 3,
71 | "lgSize": 3,
72 | "macFrac": 0,
73 | "maxFrac": 3,
74 | "minFrac": 0,
75 | "minInt": 1,
76 | "negPre": "-",
77 | "negSuf": "",
78 | "posPre": "",
79 | "posSuf": ""
80 | },
81 | {
82 | "gSize": 3,
83 | "lgSize": 3,
84 | "macFrac": 0,
85 | "maxFrac": 2,
86 | "minFrac": 2,
87 | "minInt": 1,
88 | "negPre": "(\u00a4",
89 | "negSuf": ")",
90 | "posPre": "\u00a4",
91 | "posSuf": ""
92 | }
93 | ]
94 | },
95 | "id": "ms-my",
96 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
97 | });
98 | }]);
--------------------------------------------------------------------------------
/packages/angularjs.1.2.0-RC3/content/Scripts/i18n/angular-locale_ms.js:
--------------------------------------------------------------------------------
1 | angular.module("ngLocale", [], ["$provide", function($provide) {
2 | var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
3 | $provide.value("$locale", {
4 | "DATETIME_FORMATS": {
5 | "AMPMS": [
6 | "PG",
7 | "PTG"
8 | ],
9 | "DAY": [
10 | "Ahad",
11 | "Isnin",
12 | "Selasa",
13 | "Rabu",
14 | "Khamis",
15 | "Jumaat",
16 | "Sabtu"
17 | ],
18 | "MONTH": [
19 | "Januari",
20 | "Februari",
21 | "Mac",
22 | "April",
23 | "Mei",
24 | "Jun",
25 | "Julai",
26 | "Ogos",
27 | "September",
28 | "Oktober",
29 | "November",
30 | "Disember"
31 | ],
32 | "SHORTDAY": [
33 | "Ahd",
34 | "Isn",
35 | "Sel",
36 | "Rab",
37 | "Kha",
38 | "Jum",
39 | "Sab"
40 | ],
41 | "SHORTMONTH": [
42 | "Jan",
43 | "Feb",
44 | "Mac",
45 | "Apr",
46 | "Mei",
47 | "Jun",
48 | "Jul",
49 | "Ogos",
50 | "Sep",
51 | "Okt",
52 | "Nov",
53 | "Dis"
54 | ],
55 | "fullDate": "EEEE, d MMMM y",
56 | "longDate": "d MMMM y",
57 | "medium": "dd/MM/yyyy h:mm:ss a",
58 | "mediumDate": "dd/MM/yyyy",
59 | "mediumTime": "h:mm:ss a",
60 | "short": "d/MM/yy h:mm a",
61 | "shortDate": "d/MM/yy",
62 | "shortTime": "h:mm a"
63 | },
64 | "NUMBER_FORMATS": {
65 | "CURRENCY_SYM": "RM",
66 | "DECIMAL_SEP": ".",
67 | "GROUP_SEP": ",",
68 | "PATTERNS": [
69 | {
70 | "gSize": 3,
71 | "lgSize": 3,
72 | "macFrac": 0,
73 | "maxFrac": 3,
74 | "minFrac": 0,
75 | "minInt": 1,
76 | "negPre": "-",
77 | "negSuf": "",
78 | "posPre": "",
79 | "posSuf": ""
80 | },
81 | {
82 | "gSize": 3,
83 | "lgSize": 3,
84 | "macFrac": 0,
85 | "maxFrac": 2,
86 | "minFrac": 2,
87 | "minInt": 1,
88 | "negPre": "(\u00a4",
89 | "negSuf": ")",
90 | "posPre": "\u00a4",
91 | "posSuf": ""
92 | }
93 | ]
94 | },
95 | "id": "ms",
96 | "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
97 | });
98 | }]);
--------------------------------------------------------------------------------
/packages/jQuery.2.0.3/Tools/install.ps1:
--------------------------------------------------------------------------------
1 | param($installPath, $toolsPath, $package, $project)
2 |
3 | . (Join-Path $toolsPath common.ps1)
4 |
5 | # VS 11 and above supports the new intellisense JS files
6 | $vsVersion = [System.Version]::Parse($dte.Version)
7 | $supportsJsIntelliSenseFile = $vsVersion.Major -ge 11
8 |
9 | if (-not $supportsJsIntelliSenseFile) {
10 | $displayVersion = $vsVersion.Major
11 | Write-Host "IntelliSense JS files are not supported by your version of Visual Studio: $displayVersion"
12 | exit
13 | }
14 |
15 | if ($scriptsFolderProjectItem -eq $null) {
16 | # No Scripts folder
17 | Write-Host "No Scripts folder found"
18 | exit
19 | }
20 |
21 | # Delete the vsdoc file from the project
22 | try {
23 | $vsDocProjectItem = $scriptsFolderProjectItem.ProjectItems.Item("jquery-$ver-vsdoc.js")
24 | Delete-ProjectItem $vsDocProjectItem
25 | }
26 | catch {
27 | Write-Host "Error deleting vsdoc file: " + $_.Exception -ForegroundColor Red
28 | exit
29 | }
30 |
31 | # Copy the intellisense file to the project from the tools folder
32 | $intelliSenseFileSourcePath = Join-Path $toolsPath $intelliSenseFileName
33 | try {
34 | $scriptsFolderProjectItem.ProjectItems.AddFromFileCopy($intelliSenseFileSourcePath)
35 | }
36 | catch {
37 | # This will throw if the file already exists, so we need to catch here
38 | }
39 |
40 | # Update the _references.js file
41 | AddOrUpdate-Reference $scriptsFolderProjectItem $jqueryFileNameRegEx $jqueryFileName
--------------------------------------------------------------------------------
/packages/jQuery.2.0.3/Tools/uninstall.ps1:
--------------------------------------------------------------------------------
1 | param($installPath, $toolsPath, $package, $project)
2 |
3 | . (Join-Path $toolsPath common.ps1)
4 |
5 | # Determine the file paths
6 | $projectIntelliSenseFilePath = Join-Path $projectScriptsFolderPath $intelliSenseFileName
7 | $origIntelliSenseFilePath = Join-Path $toolsPath $intelliSenseFileName
8 |
9 | if (Test-Path $projectIntelliSenseFilePath) {
10 | if ((Get-Checksum $projectIntelliSenseFilePath) -eq (Get-Checksum $origIntelliSenseFilePath)) {
11 | # The intellisense file in the project matches the file in the tools folder, delete it
12 |
13 | if ($scriptsFolderProjectItem -eq $null) {
14 | # No Scripts folder
15 | exit
16 | }
17 |
18 | try {
19 | # Get the project item for the intellisense file
20 | $intelliSenseFileProjectItem = $scriptsFolderProjectItem.ProjectItems.Item($intelliSenseFileName)
21 | }
22 | catch {
23 | # The item wasn't found
24 | exit
25 | }
26 |
27 | # Delete the project item
28 | Delete-ProjectItem $intelliSenseFileProjectItem
29 | }
30 | else {
31 | $projectScriptsFolderLeaf = Split-Path $projectScriptsFolderPath -Leaf
32 | Write-Host "Skipping '$projectScriptsFolderLeaf\$intelliSenseFileName' because it was modified." -ForegroundColor Magenta
33 | }
34 | }
35 | else {
36 | # The intellisense file was not found in project
37 | Write-Host "The intellisense file was not found in project at path $projectIntelliSenseFilePath"
38 | }
39 |
40 | # Update the _references.js file
41 | Remove-Reference $scriptsFolderProjectItem $jqueryFileNameRegEx
--------------------------------------------------------------------------------
/packages/jQuery.2.0.3/jQuery.2.0.3.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.2.0.3/jQuery.2.0.3.nupkg
--------------------------------------------------------------------------------
/packages/jQuery.2.0.3/jQuery.2.0.3.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | jQuery
5 | 2.0.3
6 | jQuery
7 | jQuery Foundation, Inc.
8 | jQuery Foundation, Inc.
9 | http://jquery.org/license
10 | http://jquery.com/
11 | false
12 | jQuery is a new kind of JavaScript Library.
13 | jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript.
14 | NOTE: This package is maintained on behalf of the library owners by the NuGet Community Packages project at http://nugetpackages.codeplex.com/
15 | en-US
16 | jQuery
17 |
18 |
19 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/animated-overlay.gif
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-icons_888888_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-icons_888888_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/jquery.ui.accordion.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Accordion 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 {
12 | display: block;
13 | cursor: pointer;
14 | position: relative;
15 | margin-top: 2px;
16 | padding: .5em .5em .5em .7em;
17 | min-height: 0; /* support: IE7 */
18 | }
19 | .ui-accordion .ui-accordion-icons {
20 | padding-left: 2.2em;
21 | }
22 | .ui-accordion .ui-accordion-noicons {
23 | padding-left: .7em;
24 | }
25 | .ui-accordion .ui-accordion-icons .ui-accordion-icons {
26 | padding-left: 2.2em;
27 | }
28 | .ui-accordion .ui-accordion-header .ui-accordion-header-icon {
29 | position: absolute;
30 | left: .5em;
31 | top: 50%;
32 | margin-top: -8px;
33 | }
34 | .ui-accordion .ui-accordion-content {
35 | padding: 1em 2.2em;
36 | border-top: 0;
37 | overflow: auto;
38 | }
39 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/jquery.ui.all.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI CSS Framework 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/jquery.ui.autocomplete.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Autocomplete 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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;
14 | left: 0;
15 | cursor: default;
16 | }
17 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/jquery.ui.base.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI CSS Framework 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/jquery.ui.core.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI CSS Framework 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Theming/API
10 | */
11 |
12 | /* Layout helpers
13 | ----------------------------------*/
14 | .ui-helper-hidden {
15 | display: none;
16 | }
17 | .ui-helper-hidden-accessible {
18 | border: 0;
19 | clip: rect(0 0 0 0);
20 | height: 1px;
21 | margin: -1px;
22 | overflow: hidden;
23 | padding: 0;
24 | position: absolute;
25 | width: 1px;
26 | }
27 | .ui-helper-reset {
28 | margin: 0;
29 | padding: 0;
30 | border: 0;
31 | outline: 0;
32 | line-height: 1.3;
33 | text-decoration: none;
34 | font-size: 100%;
35 | list-style: none;
36 | }
37 | .ui-helper-clearfix:before,
38 | .ui-helper-clearfix:after {
39 | content: "";
40 | display: table;
41 | border-collapse: collapse;
42 | }
43 | .ui-helper-clearfix:after {
44 | clear: both;
45 | }
46 | .ui-helper-clearfix {
47 | min-height: 0; /* support: IE7 */
48 | }
49 | .ui-helper-zfix {
50 | width: 100%;
51 | height: 100%;
52 | top: 0;
53 | left: 0;
54 | position: absolute;
55 | opacity: 0;
56 | filter:Alpha(Opacity=0);
57 | }
58 |
59 | .ui-front {
60 | z-index: 100;
61 | }
62 |
63 |
64 | /* Interaction Cues
65 | ----------------------------------*/
66 | .ui-state-disabled {
67 | cursor: default !important;
68 | }
69 |
70 |
71 | /* Icons
72 | ----------------------------------*/
73 |
74 | /* states and images */
75 | .ui-icon {
76 | display: block;
77 | text-indent: -99999px;
78 | overflow: hidden;
79 | background-repeat: no-repeat;
80 | }
81 |
82 |
83 | /* Misc visuals
84 | ----------------------------------*/
85 |
86 | /* Overlays */
87 | .ui-widget-overlay {
88 | position: fixed;
89 | top: 0;
90 | left: 0;
91 | width: 100%;
92 | height: 100%;
93 | }
94 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/jquery.ui.dialog.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Dialog 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Dialog#theming
10 | */
11 | .ui-dialog {
12 | position: absolute;
13 | top: 0;
14 | left: 0;
15 | padding: .2em;
16 | outline: 0;
17 | }
18 | .ui-dialog .ui-dialog-titlebar {
19 | padding: .4em 1em;
20 | position: relative;
21 | }
22 | .ui-dialog .ui-dialog-title {
23 | float: left;
24 | margin: .1em 0;
25 | white-space: nowrap;
26 | width: 90%;
27 | overflow: hidden;
28 | text-overflow: ellipsis;
29 | }
30 | .ui-dialog .ui-dialog-titlebar-close {
31 | position: absolute;
32 | right: .3em;
33 | top: 50%;
34 | width: 21px;
35 | margin: -10px 0 0 0;
36 | padding: 1px;
37 | height: 20px;
38 | }
39 | .ui-dialog .ui-dialog-content {
40 | position: relative;
41 | border: 0;
42 | padding: .5em 1em;
43 | background: none;
44 | overflow: auto;
45 | }
46 | .ui-dialog .ui-dialog-buttonpane {
47 | text-align: left;
48 | border-width: 1px 0 0 0;
49 | background-image: none;
50 | margin-top: .5em;
51 | padding: .3em 1em .5em .4em;
52 | }
53 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
54 | float: right;
55 | }
56 | .ui-dialog .ui-dialog-buttonpane button {
57 | margin: .5em .4em .5em 0;
58 | cursor: pointer;
59 | }
60 | .ui-dialog .ui-resizable-se {
61 | width: 12px;
62 | height: 12px;
63 | right: -5px;
64 | bottom: -5px;
65 | background-position: 16px 16px;
66 | }
67 | .ui-draggable .ui-dialog-titlebar {
68 | cursor: move;
69 | }
70 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/jquery.ui.menu.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Menu 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Menu#theming
10 | */
11 | .ui-menu {
12 | list-style: none;
13 | padding: 2px;
14 | margin: 0;
15 | display: block;
16 | outline: none;
17 | }
18 | .ui-menu .ui-menu {
19 | margin-top: -3px;
20 | position: absolute;
21 | }
22 | .ui-menu .ui-menu-item {
23 | margin: 0;
24 | padding: 0;
25 | width: 100%;
26 | /* support: IE10, see #8844 */
27 | list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
28 | }
29 | .ui-menu .ui-menu-divider {
30 | margin: 5px -2px 5px -2px;
31 | height: 0;
32 | font-size: 0;
33 | line-height: 0;
34 | border-width: 1px 0 0 0;
35 | }
36 | .ui-menu .ui-menu-item a {
37 | text-decoration: none;
38 | display: block;
39 | padding: 2px .4em;
40 | line-height: 1.5;
41 | min-height: 0; /* support: IE7 */
42 | font-weight: normal;
43 | }
44 | .ui-menu .ui-menu-item a.ui-state-focus,
45 | .ui-menu .ui-menu-item a.ui-state-active {
46 | font-weight: normal;
47 | margin: -1px;
48 | }
49 |
50 | .ui-menu .ui-state-disabled {
51 | font-weight: normal;
52 | margin: .4em 0 .2em;
53 | line-height: 1.5;
54 | }
55 | .ui-menu .ui-state-disabled a {
56 | cursor: default;
57 | }
58 |
59 | /* icon support */
60 | .ui-menu-icons {
61 | position: relative;
62 | }
63 | .ui-menu-icons .ui-menu-item a {
64 | position: relative;
65 | padding-left: 2em;
66 | }
67 |
68 | /* left-aligned */
69 | .ui-menu .ui-icon {
70 | position: absolute;
71 | top: .2em;
72 | left: .2em;
73 | }
74 |
75 | /* right-aligned */
76 | .ui-menu .ui-menu-icon {
77 | position: static;
78 | float: right;
79 | }
80 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/jquery.ui.progressbar.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Progressbar 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 {
12 | height: 2em;
13 | text-align: left;
14 | overflow: hidden;
15 | }
16 | .ui-progressbar .ui-progressbar-value {
17 | margin: -1px;
18 | height: 100%;
19 | }
20 | .ui-progressbar .ui-progressbar-overlay {
21 | background: url("images/animated-overlay.gif");
22 | height: 100%;
23 | filter: alpha(opacity=25);
24 | opacity: 0.25;
25 | }
26 | .ui-progressbar-indeterminate .ui-progressbar-value {
27 | background-image: none;
28 | }
29 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/jquery.ui.resizable.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Resizable 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Resizable#theming
10 | */
11 | .ui-resizable {
12 | position: relative;
13 | }
14 | .ui-resizable-handle {
15 | position: absolute;
16 | font-size: 0.1px;
17 | display: block;
18 | }
19 | .ui-resizable-disabled .ui-resizable-handle,
20 | .ui-resizable-autohide .ui-resizable-handle {
21 | display: none;
22 | }
23 | .ui-resizable-n {
24 | cursor: n-resize;
25 | height: 7px;
26 | width: 100%;
27 | top: -5px;
28 | left: 0;
29 | }
30 | .ui-resizable-s {
31 | cursor: s-resize;
32 | height: 7px;
33 | width: 100%;
34 | bottom: -5px;
35 | left: 0;
36 | }
37 | .ui-resizable-e {
38 | cursor: e-resize;
39 | width: 7px;
40 | right: -5px;
41 | top: 0;
42 | height: 100%;
43 | }
44 | .ui-resizable-w {
45 | cursor: w-resize;
46 | width: 7px;
47 | left: -5px;
48 | top: 0;
49 | height: 100%;
50 | }
51 | .ui-resizable-se {
52 | cursor: se-resize;
53 | width: 12px;
54 | height: 12px;
55 | right: 1px;
56 | bottom: 1px;
57 | }
58 | .ui-resizable-sw {
59 | cursor: sw-resize;
60 | width: 9px;
61 | height: 9px;
62 | left: -5px;
63 | bottom: -5px;
64 | }
65 | .ui-resizable-nw {
66 | cursor: nw-resize;
67 | width: 9px;
68 | height: 9px;
69 | left: -5px;
70 | top: -5px;
71 | }
72 | .ui-resizable-ne {
73 | cursor: ne-resize;
74 | width: 9px;
75 | height: 9px;
76 | right: -5px;
77 | top: -5px;
78 | }
79 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/jquery.ui.selectable.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Selectable 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 {
12 | position: absolute;
13 | z-index: 100;
14 | border: 1px dotted black;
15 | }
16 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/jquery.ui.slider.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Slider 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Slider#theming
10 | */
11 | .ui-slider {
12 | position: relative;
13 | text-align: left;
14 | }
15 | .ui-slider .ui-slider-handle {
16 | position: absolute;
17 | z-index: 2;
18 | width: 1.2em;
19 | height: 1.2em;
20 | cursor: default;
21 | }
22 | .ui-slider .ui-slider-range {
23 | position: absolute;
24 | z-index: 1;
25 | font-size: .7em;
26 | display: block;
27 | border: 0;
28 | background-position: 0 0;
29 | }
30 |
31 | /* For IE8 - See #6727 */
32 | .ui-slider.ui-state-disabled .ui-slider-handle,
33 | .ui-slider.ui-state-disabled .ui-slider-range {
34 | filter: inherit;
35 | }
36 |
37 | .ui-slider-horizontal {
38 | height: .8em;
39 | }
40 | .ui-slider-horizontal .ui-slider-handle {
41 | top: -.3em;
42 | margin-left: -.6em;
43 | }
44 | .ui-slider-horizontal .ui-slider-range {
45 | top: 0;
46 | height: 100%;
47 | }
48 | .ui-slider-horizontal .ui-slider-range-min {
49 | left: 0;
50 | }
51 | .ui-slider-horizontal .ui-slider-range-max {
52 | right: 0;
53 | }
54 |
55 | .ui-slider-vertical {
56 | width: .8em;
57 | height: 100px;
58 | }
59 | .ui-slider-vertical .ui-slider-handle {
60 | left: -.3em;
61 | margin-left: 0;
62 | margin-bottom: -.6em;
63 | }
64 | .ui-slider-vertical .ui-slider-range {
65 | left: 0;
66 | width: 100%;
67 | }
68 | .ui-slider-vertical .ui-slider-range-min {
69 | bottom: 0;
70 | }
71 | .ui-slider-vertical .ui-slider-range-max {
72 | top: 0;
73 | }
74 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/jquery.ui.spinner.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Spinner 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Spinner#theming
10 | */
11 | .ui-spinner {
12 | position: relative;
13 | display: inline-block;
14 | overflow: hidden;
15 | padding: 0;
16 | vertical-align: middle;
17 | }
18 | .ui-spinner-input {
19 | border: none;
20 | background: none;
21 | color: inherit;
22 | padding: 0;
23 | margin: .2em 0;
24 | vertical-align: middle;
25 | margin-left: .4em;
26 | margin-right: 22px;
27 | }
28 | .ui-spinner-button {
29 | width: 16px;
30 | height: 50%;
31 | font-size: .5em;
32 | padding: 0;
33 | margin: 0;
34 | text-align: center;
35 | position: absolute;
36 | cursor: default;
37 | display: block;
38 | overflow: hidden;
39 | right: 0;
40 | }
41 | /* more specificity required here to overide default borders */
42 | .ui-spinner a.ui-spinner-button {
43 | border-top: none;
44 | border-bottom: none;
45 | border-right: none;
46 | }
47 | /* vertical centre icon */
48 | .ui-spinner .ui-icon {
49 | position: absolute;
50 | margin-top: -8px;
51 | top: 50%;
52 | left: 0;
53 | }
54 | .ui-spinner-up {
55 | top: 0;
56 | }
57 | .ui-spinner-down {
58 | bottom: 0;
59 | }
60 |
61 | /* TR overrides */
62 | .ui-spinner .ui-icon-triangle-1-s {
63 | /* need to fix icons sprite */
64 | background-position: -65px -16px;
65 | }
66 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/jquery.ui.tabs.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Tabs 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 jQuery Foundation and other contributors
6 | * Released under the MIT license.
7 | * http://jquery.org/license
8 | *
9 | * http://docs.jquery.com/UI/Tabs#theming
10 | */
11 | .ui-tabs {
12 | position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
13 | padding: .2em;
14 | }
15 | .ui-tabs .ui-tabs-nav {
16 | margin: 0;
17 | padding: .2em .2em 0;
18 | }
19 | .ui-tabs .ui-tabs-nav li {
20 | list-style: none;
21 | float: left;
22 | position: relative;
23 | top: 0;
24 | margin: 1px .2em 0 0;
25 | border-bottom-width: 0;
26 | padding: 0;
27 | white-space: nowrap;
28 | }
29 | .ui-tabs .ui-tabs-nav li a {
30 | float: left;
31 | padding: .5em 1em;
32 | text-decoration: none;
33 | }
34 | .ui-tabs .ui-tabs-nav li.ui-tabs-active {
35 | margin-bottom: -1px;
36 | padding-bottom: 1px;
37 | }
38 | .ui-tabs .ui-tabs-nav li.ui-tabs-active a,
39 | .ui-tabs .ui-tabs-nav li.ui-state-disabled a,
40 | .ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
41 | cursor: text;
42 | }
43 | .ui-tabs .ui-tabs-nav li a, /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
44 | .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
45 | cursor: pointer;
46 | }
47 | .ui-tabs .ui-tabs-panel {
48 | display: block;
49 | border-width: 0;
50 | padding: 1em 1.4em;
51 | background: none;
52 | }
53 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/jquery.ui.tooltip.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * jQuery UI Tooltip 1.10.3
3 | * http://jqueryui.com
4 | *
5 | * Copyright 2013 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 | body .ui-tooltip {
18 | border-width: 2px;
19 | }
20 |
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/animated-overlay.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/animated-overlay.gif
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-icons_222222_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-icons_222222_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-icons_454545_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-icons_454545_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-icons_888888_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-icons_888888_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/jquery.ui.accordion.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin-top:2px;padding:.5em .5em .5em .7em;min-height:0}.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}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/jquery.ui.autocomplete.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-autocomplete{position:absolute;top:0;left:0;cursor:default}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/jquery.ui.button.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-button{display:inline-block;position:relative;padding:0;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:normal}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/jquery.ui.core.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width: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;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/jquery.ui.dialog.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:21px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:0;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:12px;height:12px;right:-5px;bottom:-5px;background-position:16px 16px}.ui-draggable .ui-dialog-titlebar{cursor:move}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/jquery.ui.menu.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-menu{list-style:none;padding:2px;margin:0;display:block;outline:0}.ui-menu .ui-menu{margin-top:-3px;position:absolute}.ui-menu .ui-menu-item{margin:0;padding:0;width:100%;list-style-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)}.ui-menu .ui-menu-divider{margin:5px -2px 5px -2px;height:0;font-size:0;line-height:0;border-width:1px 0 0}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:2px .4em;line-height:1.5;min-height:0;font-weight:400}.ui-menu .ui-menu-item a.ui-state-focus,.ui-menu .ui-menu-item a.ui-state-active{font-weight:400;margin:-1px}.ui-menu .ui-state-disabled{font-weight:400;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}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/jquery.ui.progressbar.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url(images/animated-overlay.gif);height:100%;filter:alpha(opacity=25);opacity:.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/jquery.ui.resizable.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.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}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/jquery.ui.selectable.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted #000}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/jquery.ui.slider.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
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.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.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}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/jquery.ui.spinner.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:0;background:0;color:inherit;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:0;border-bottom:0;border-right:0}.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}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/jquery.ui.tabs.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
5 | .ui-tabs{position:relative;padding:.2em}.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-width: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:0}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Content/Content/themes/base/minified/jquery.ui.tooltip.min.css:
--------------------------------------------------------------------------------
1 | /*! jQuery UI - v1.10.3 - 2013-05-03
2 | * http://jqueryui.com
3 | * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4 |
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}body .ui-tooltip{border-width:2px}
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Tools/install.ps1:
--------------------------------------------------------------------------------
1 | param($installPath, $toolsPath, $package, $project)
2 |
3 | . (Join-Path $toolsPath common.ps1)
4 |
5 | if ($scriptsFolderProjectItem -eq $null) {
6 | # No Scripts folder
7 | Write-Host "No Scripts folder found"
8 | exit
9 | }
10 |
11 | # Update the _references.js file
12 | AddOrUpdate-Reference $scriptsFolderProjectItem $juiFileNameRegEx $juiFileName
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/Tools/uninstall.ps1:
--------------------------------------------------------------------------------
1 | param($installPath, $toolsPath, $package, $project)
2 |
3 | . (Join-Path $toolsPath common.ps1)
4 |
5 | # Update the _references.js file
6 | Remove-Reference $scriptsFolderProjectItem $juiFileNameRegEx
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/jQuery.UI.Combined.1.10.3.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.UI.Combined.1.10.3/jQuery.UI.Combined.1.10.3.nupkg
--------------------------------------------------------------------------------
/packages/jQuery.UI.Combined.1.10.3/jQuery.UI.Combined.1.10.3.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | jQuery.UI.Combined
5 | 1.10.3
6 | jQuery UI (Combined Library)
7 | jQuery UI Team
8 | jQuery UI Team
9 | http://jquery.org/license
10 | http://jqueryui.com/
11 | http://nuget.org/Media/Default/Packages/jQuery.UI.Combined/1.8.9/jQueryUILogo.png
12 | false
13 | jQuery UI is an open source library of interface components — interactions, full-featured widgets, and animation effects — based on the stellar jQuery javascript library . Each component is built according to jQuery's event-driven architecture (find something, manipulate it) and is themeable, making it easy for developers of any skill level to integrate and extend into their own code.
14 | NOTE: This package is maintained on behalf of the library owners by the NuGet Community Packages project at http://nugetpackages.codeplex.com/
15 | The full jQuery UI library as a single combined file. Includes the base theme.
16 | en-US
17 | jQuery jQueryUI plugins
18 |
19 |
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/packages/jQuery.Validation.1.11.1/jQuery.Validation.1.11.1.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/jQuery.Validation.1.11.1/jQuery.Validation.1.11.1.nupkg
--------------------------------------------------------------------------------
/packages/jQuery.Validation.1.11.1/jQuery.Validation.1.11.1.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | jQuery.Validation
5 | 1.11.1
6 | jQuery Validation
7 | Jörn Zaefferer
8 | Jörn Zaefferer
9 | http://bassistance.de/jquery-plugins/jquery-plugin-validation/
10 | false
11 | This jQuery plugin makes simple clientside form validation trivial, while offering lots of option for customization. That makes a good choice if you’re building something new from scratch, but also when you’re trying to integrate it into an existing application with lots of existing markup. The plugin comes bundled with a useful set of validation methods, including URL and email validation, while providing an API to write your own methods. All bundled methods come with default error messages in english and translations into 32 languages.
12 | NOTE: This package is maintained on behalf of the library owners by the NuGet Community Packages project at http://nugetpackages.codeplex.com/
13 | en-US
14 | jQuery plugins
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/packages/repositories.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/packages/toastr.2.0.1/toastr.2.0.1.nupkg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jongio/AngularJS-WebApi-EF/c581757771930bcc6fd8901b254405680fdd923d/packages/toastr.2.0.1/toastr.2.0.1.nupkg
--------------------------------------------------------------------------------
/packages/toastr.2.0.1/toastr.2.0.1.nuspec:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | toastr
5 | 2.0.1
6 | toastr
7 | John Papa, Hans Fjällemark
8 | John Papa, Hans Fjällemark
9 | http://www.opensource.org/licenses/mit-license.php
10 | http://toastrjs.com/
11 | http://johnpapa.net/wp-content/images/toastr-icon.png
12 | false
13 | 3 Easy Steps:
14 |
15 | (1) Link to toastr.css
16 | (2) Link to toastr.js
17 | (3) Use toastr to display a toast for info, success, warning or error
18 |
19 | // Display an info toast with no title
20 | toastr.info('Are you the 6 fingered man?')
21 |
22 | *** For other API calls, see the demo
23 | Toastr is a JavaScript library for non-blocking notifications. jQuery is required. The goal is to create a simple core library that can be customized and extended.
24 | The following animations options have been deprecated and should be replaced:
25 |
26 | Replace options.fadeIn with options.showDuration
27 | Replace options.onFadeIn with options.onShown
28 | Replace options.fadeOut with options.hideDuration
29 | Replace options.onFadeOut with options.onHidden
30 |
31 | Optional 'close' button, bug fixes, and improved responsive design.
32 |
33 | For other changes, see http://toastrjs.com
34 | Copyright © 2012 Hans Fjällemark & John Papa.
35 | en-US
36 | toastr toast notification dialog jquery
37 |
38 |
39 |
40 |
41 |
--------------------------------------------------------------------------------