├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── Cik.MagazineWeb.Application ├── App.config ├── ApplicationBase.cs ├── Cik.MagazineWeb.Application.csproj ├── DtoBase.cs ├── Dtos │ ├── CategoryDetailsDto.cs │ ├── CategorySummaryDto.cs │ ├── ItemDetailsDto.cs │ └── ItemSummaryDto.cs ├── IMagazineApplication.cs ├── MagazineApplication.cs ├── MagazineClientApplication.cs ├── Profiles │ └── CategoryProfile.cs ├── Properties │ └── AssemblyInfo.cs ├── Services │ ├── ICategoryService.cs │ ├── IItemSummaryService.cs │ └── Impl │ │ ├── CategoryService.cs │ │ └── ItemSummaryService.cs ├── ViewModels │ ├── CategoryMenuViewModel.cs │ ├── CategoryPageViewModel.cs │ ├── CategorySummaryViewModel.cs │ ├── FrontPageViewModelBase.cs │ ├── HomePageViewModel.cs │ ├── ItemDetailsViewModel.cs │ └── ItemSummaryViewModel.cs └── packages.config ├── Cik.MagazineWeb.Domain ├── App.config ├── Category.cs ├── Cik.MagazineWeb.DomainModel.csproj ├── IMagazineWebRepository.cs ├── Item.cs ├── ItemContent.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── Cik.MagazineWeb.SchemaAndDataCreation ├── App.config ├── Cik.MagazineWeb.SchemaAndDataCreation.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── Cik.MagazineWeb.WebApp ├── App_Data │ ├── MWDB.mdf │ └── MWDB_log.ldf ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── GlobalConfig.cs │ ├── RouteConfig.cs │ ├── Startup.Auth.cs │ └── WebApiConfig.cs ├── Areas │ └── Admin │ │ ├── AdminAreaRegistration.cs │ │ ├── Controllers │ │ └── DashboardController.cs │ │ └── Views │ │ ├── Dashboard │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ └── web.config ├── Cik.MagazineWeb.WebApp.csproj ├── Content │ ├── Site.css │ ├── andia-agency │ │ └── assets │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ ├── img │ │ │ │ ├── Thumbs.db │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ └── glyphicons-halflings.png │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ │ ├── css │ │ │ ├── flexslider.css │ │ │ ├── font-awesome.css │ │ │ └── style.css │ │ │ ├── font-awesome │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ │ ├── ico │ │ │ ├── Thumbs.db │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ ├── apple-touch-icon-72-precomposed.png │ │ │ └── favicon.ico │ │ │ ├── img │ │ │ ├── Thumbs.db │ │ │ ├── line.png │ │ │ ├── line1.jpg │ │ │ ├── logo.png │ │ │ ├── pattern.jpg │ │ │ ├── portfolio │ │ │ │ ├── Thumbs.db │ │ │ │ ├── work1.jpg │ │ │ │ ├── work10.jpg │ │ │ │ ├── work11.jpg │ │ │ │ ├── work12.jpg │ │ │ │ ├── work2.jpg │ │ │ │ ├── work3.jpg │ │ │ │ ├── work4.jpg │ │ │ │ ├── work5.jpg │ │ │ │ ├── work6.jpg │ │ │ │ ├── work7.jpg │ │ │ │ ├── work8.jpg │ │ │ │ └── work9.jpg │ │ │ ├── slider-nav.png │ │ │ ├── slider │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── 6.jpg │ │ │ │ └── Thumbs.db │ │ │ ├── social-icons │ │ │ │ ├── Thumbs.db │ │ │ │ ├── behance.png │ │ │ │ ├── dribbble.png │ │ │ │ ├── email.png │ │ │ │ ├── facebook.png │ │ │ │ ├── flickr.png │ │ │ │ ├── forrst.png │ │ │ │ ├── github.png │ │ │ │ ├── googleplus.png │ │ │ │ ├── linkedin.png │ │ │ │ ├── pinterest.png │ │ │ │ ├── rss.png │ │ │ │ ├── skype.png │ │ │ │ ├── tumblr.png │ │ │ │ ├── twitter.png │ │ │ │ ├── vimeo.png │ │ │ │ └── youtube.png │ │ │ ├── team │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ └── Thumbs.db │ │ │ └── testimonials │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ └── Thumbs.db │ │ │ ├── js │ │ │ ├── jflickrfeed.js │ │ │ ├── jquery-1.8.2.min.js │ │ │ ├── jquery.flexslider.js │ │ │ ├── jquery.quicksand.js │ │ │ ├── jquery.tweet.js │ │ │ ├── jquery.ui.map.min.js │ │ │ └── scripts.js │ │ │ └── prettyPhoto │ │ │ ├── css │ │ │ └── prettyPhoto.css │ │ │ ├── images │ │ │ └── prettyPhoto │ │ │ │ ├── dark_rounded │ │ │ │ ├── Thumbs.db │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── contentPattern.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ │ ├── dark_square │ │ │ │ ├── Thumbs.db │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── contentPattern.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ │ ├── default │ │ │ │ ├── Thumbs.db │ │ │ │ ├── default_thumb.png │ │ │ │ ├── loader.gif │ │ │ │ ├── sprite.png │ │ │ │ ├── sprite_next.png │ │ │ │ ├── sprite_prev.png │ │ │ │ ├── sprite_x.png │ │ │ │ └── sprite_y.png │ │ │ │ ├── facebook │ │ │ │ ├── Thumbs.db │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── contentPatternBottom.png │ │ │ │ ├── contentPatternLeft.png │ │ │ │ ├── contentPatternRight.png │ │ │ │ ├── contentPatternTop.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ │ ├── light_rounded │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ │ └── light_square │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ └── js │ │ │ └── jquery.prettyPhoto.js │ ├── app.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ ├── docs.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── pygments-manni.css │ └── style.css ├── Controllers │ ├── AccountController.cs │ └── HomeController.cs ├── Global.asax ├── Global.asax.cs ├── Models │ ├── AccountViewModels.cs │ └── IdentityModels.cs ├── Project_Readme.html ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── _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_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 │ ├── jqPlot │ │ ├── MIT-LICENSE.txt │ │ ├── README.txt │ │ ├── changes.txt │ │ ├── copyright.txt │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── gpl-2.0.txt │ │ ├── jqPlotCssStyling.txt │ │ ├── jqPlotOptions.txt │ │ ├── jquery.jqplot.css │ │ ├── jquery.jqplot.js │ │ ├── jquery.jqplot.min.css │ │ ├── jquery.jqplot.min.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── optionsTutorial.txt │ │ ├── plugins │ │ │ ├── jqplot.BezierCurveRenderer.js │ │ │ ├── jqplot.BezierCurveRenderer.min.js │ │ │ ├── jqplot.barRenderer.js │ │ │ ├── jqplot.barRenderer.min.js │ │ │ ├── jqplot.blockRenderer.js │ │ │ ├── jqplot.blockRenderer.min.js │ │ │ ├── jqplot.bubbleRenderer.js │ │ │ ├── jqplot.bubbleRenderer.min.js │ │ │ ├── jqplot.canvasAxisLabelRenderer.js │ │ │ ├── jqplot.canvasAxisLabelRenderer.min.js │ │ │ ├── jqplot.canvasAxisTickRenderer.js │ │ │ ├── jqplot.canvasAxisTickRenderer.min.js │ │ │ ├── jqplot.canvasOverlay.js │ │ │ ├── jqplot.canvasOverlay.min.js │ │ │ ├── jqplot.canvasTextRenderer.js │ │ │ ├── jqplot.canvasTextRenderer.min.js │ │ │ ├── jqplot.categoryAxisRenderer.js │ │ │ ├── jqplot.categoryAxisRenderer.min.js │ │ │ ├── jqplot.ciParser.js │ │ │ ├── jqplot.ciParser.min.js │ │ │ ├── jqplot.cursor.js │ │ │ ├── jqplot.cursor.min.js │ │ │ ├── jqplot.dateAxisRenderer.js │ │ │ ├── jqplot.dateAxisRenderer.min.js │ │ │ ├── jqplot.donutRenderer.js │ │ │ ├── jqplot.donutRenderer.min.js │ │ │ ├── jqplot.dragable.js │ │ │ ├── jqplot.dragable.min.js │ │ │ ├── jqplot.enhancedLegendRenderer.js │ │ │ ├── jqplot.enhancedLegendRenderer.min.js │ │ │ ├── jqplot.funnelRenderer.js │ │ │ ├── jqplot.funnelRenderer.min.js │ │ │ ├── jqplot.highlighter.js │ │ │ ├── jqplot.highlighter.min.js │ │ │ ├── jqplot.json2.js │ │ │ ├── jqplot.json2.min.js │ │ │ ├── jqplot.logAxisRenderer.js │ │ │ ├── jqplot.logAxisRenderer.min.js │ │ │ ├── jqplot.mekkoAxisRenderer.js │ │ │ ├── jqplot.mekkoAxisRenderer.min.js │ │ │ ├── jqplot.mekkoRenderer.js │ │ │ ├── jqplot.mekkoRenderer.min.js │ │ │ ├── jqplot.meterGaugeRenderer.js │ │ │ ├── jqplot.meterGaugeRenderer.min.js │ │ │ ├── jqplot.mobile.js │ │ │ ├── jqplot.mobile.min.js │ │ │ ├── jqplot.ohlcRenderer.js │ │ │ ├── jqplot.ohlcRenderer.min.js │ │ │ ├── jqplot.pieRenderer.js │ │ │ ├── jqplot.pieRenderer.min.js │ │ │ ├── jqplot.pointLabels.js │ │ │ ├── jqplot.pointLabels.min.js │ │ │ ├── jqplot.pyramidAxisRenderer.js │ │ │ ├── jqplot.pyramidAxisRenderer.min.js │ │ │ ├── jqplot.pyramidGridRenderer.js │ │ │ ├── jqplot.pyramidGridRenderer.min.js │ │ │ ├── jqplot.pyramidRenderer.js │ │ │ ├── jqplot.pyramidRenderer.min.js │ │ │ ├── jqplot.trendline.js │ │ │ └── jqplot.trendline.min.js │ │ └── usage.txt │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── 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 │ ├── q.js │ ├── q.min.js │ ├── respond.js │ ├── respond.min.js │ ├── to$q.js │ ├── version.json │ └── version.txt ├── Startup.cs ├── Upload │ └── img │ │ └── sample.png ├── Views │ ├── Account │ │ ├── ExternalLoginConfirmation.cshtml │ │ ├── ExternalLoginFailure.cshtml │ │ ├── Login.cshtml │ │ ├── Manage.cshtml │ │ ├── Register.cshtml │ │ ├── _ChangePasswordPartial.cshtml │ │ ├── _ExternalLoginsListPartial.cshtml │ │ ├── _RemoveAccountPartial.cshtml │ │ └── _SetPasswordPartial.cshtml │ ├── Home │ │ ├── Category.cshtml │ │ ├── Details.cshtml │ │ ├── Index.cshtml │ │ └── _TopMenu.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _LoginPartial.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── app │ ├── app.js │ ├── controllers │ │ ├── category │ │ │ └── categoriesController.js │ │ ├── dashboardController.js │ │ ├── item │ │ │ └── itemsController.js │ │ └── navbarController.js │ ├── directives │ │ └── chart.js │ ├── services │ │ ├── config.js │ │ ├── logger.js │ │ └── routeResolver.js │ └── views │ │ ├── category │ │ └── categories.html │ │ ├── dashboard.html │ │ └── item │ │ └── items.html ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── packages.config ├── Framework └── Cik.Web.Utilities │ ├── ApiControllerBase.cs │ ├── App.config │ ├── Cik.Web.Utilities.csproj │ ├── Configurations │ ├── IConfigurationManager.cs │ └── Impl │ │ └── ConfigurationManager.cs │ ├── ControllerBase.cs │ ├── DateTime │ └── DatetimeRegion.cs │ ├── Encyption │ ├── IEncrypting.cs │ └── Impl │ │ └── SimpleEncryptor.cs │ ├── Extensions │ ├── AutoMapperExtensions.cs │ ├── AutofacExtensions.cs │ └── ConvertExtensions.cs │ ├── Guard.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── packages.config ├── Infrastructure ├── Cik.MagazineWeb.EntityFrameworkProvider │ ├── App.config │ ├── Cik.MagazineWeb.EntityFrameworkProvider.csproj │ ├── MagazineWebContext.cs │ ├── MagazineWebMigrationsConfiguration.cs │ ├── MagazineWebRepository.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config └── Cik.MagazineWeb.Init │ ├── App.config │ ├── Cik.MagazineWeb.Init.csproj │ ├── CoreModule.cs │ ├── DependencyResolverInitializer.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── packages.config ├── LICENSE ├── MagazineWebSolution.sln ├── README.md ├── _oldprojects ├── clipone │ ├── assets │ │ ├── css │ │ │ ├── main-responsive.css │ │ │ ├── main.css │ │ │ ├── theme_black_and_white.css │ │ │ ├── theme_dark.css │ │ │ ├── theme_green.css │ │ │ ├── theme_light.css │ │ │ └── theme_navy.css │ │ ├── fonts │ │ │ ├── fonts │ │ │ │ ├── Descr.WD3 │ │ │ │ ├── clip-font.eot │ │ │ │ ├── clip-font.eot@ │ │ │ │ ├── clip-font.svg │ │ │ │ ├── clip-font.ttf │ │ │ │ ├── clip-font.woff │ │ │ │ └── clip-fontd41d.eot │ │ │ └── style.css │ │ ├── images │ │ │ ├── Descr.WD3 │ │ │ ├── avatar-1-small.jpg │ │ │ ├── avatar-1-xl.jpg │ │ │ ├── avatar-1.jpg │ │ │ ├── avatar-2.jpg │ │ │ ├── avatar-3.jpg │ │ │ ├── avatar-4.jpg │ │ │ ├── avatar-5.jpg │ │ │ ├── back-error-page.jpg │ │ │ ├── bg.png │ │ │ ├── bg_2.png │ │ │ ├── bg_3.png │ │ │ ├── bg_4.png │ │ │ ├── bg_5.png │ │ │ ├── blackandwhite.png │ │ │ ├── darkgrey.png │ │ │ ├── green.png │ │ │ ├── lightgrey.png │ │ │ ├── loading.gif │ │ │ ├── menu-white-arrow.png │ │ │ ├── navy.png │ │ │ └── timer-piece.png │ │ ├── js │ │ │ ├── charts.js │ │ │ ├── form-calendar.js │ │ │ ├── form-dropzone.js │ │ │ ├── form-elements.js │ │ │ ├── form-image-cropping.js │ │ │ ├── form-validation.js │ │ │ ├── form-wizard.js │ │ │ ├── index.js │ │ │ ├── jquery.min.js │ │ │ ├── login.js │ │ │ ├── main.js │ │ │ ├── maps.js │ │ │ ├── table-data.js │ │ │ ├── ui-buttons.js │ │ │ ├── ui-elements.js │ │ │ ├── ui-modals.js │ │ │ ├── ui-nestable.js │ │ │ ├── ui-sliders.js │ │ │ ├── ui-treeview.js │ │ │ ├── utility-coming-soon.js │ │ │ └── utility-error404.js │ │ └── plugins │ │ │ ├── DataTables │ │ │ └── media │ │ │ │ ├── css │ │ │ │ ├── DT_bootstrap.css │ │ │ │ └── images │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ └── js │ │ │ │ ├── DT_bootstrap.js │ │ │ │ └── jquery.dataTables.min.js │ │ │ ├── Jcrop │ │ │ ├── css │ │ │ │ ├── Jcrop.gif │ │ │ │ └── jquery.Jcrop.min.css │ │ │ ├── demos │ │ │ │ └── demo_files │ │ │ │ │ ├── pool.jpg │ │ │ │ │ └── sago.jpg │ │ │ └── js │ │ │ │ ├── jquery.Jcrop.min.js │ │ │ │ └── jquery.color.js │ │ │ ├── autosize │ │ │ └── jquery.autosize.min.js │ │ │ ├── blockUI │ │ │ └── jquery.blockUI.js │ │ │ ├── bootstrap-colorpicker │ │ │ ├── css │ │ │ │ └── bootstrap-colorpicker.css │ │ │ ├── img │ │ │ │ └── bootstrap-colorpicker │ │ │ │ │ ├── alpha.png │ │ │ │ │ ├── hue.png │ │ │ │ │ └── saturation.png │ │ │ └── js │ │ │ │ ├── bootstrap-colorpicker.js │ │ │ │ └── commits.js │ │ │ ├── bootstrap-datepicker │ │ │ └── js │ │ │ │ └── bootstrap-datepicker.js │ │ │ ├── bootstrap-daterangepicker │ │ │ ├── daterangepicker-bs3.css │ │ │ ├── daterangepicker.js │ │ │ └── moment.min.js │ │ │ ├── bootstrap-fileupload │ │ │ ├── bootstrap-fileupload.min.css │ │ │ └── bootstrap-fileupload.min.js │ │ │ ├── bootstrap-modal │ │ │ ├── css │ │ │ │ ├── bootstrap-modal-bs3patch.css │ │ │ │ └── bootstrap-modal.css │ │ │ └── js │ │ │ │ ├── bootstrap-modal.js │ │ │ │ └── bootstrap-modalmanager.js │ │ │ ├── bootstrap-paginator │ │ │ └── src │ │ │ │ └── bootstrap-paginator.js │ │ │ ├── bootstrap-social-buttons │ │ │ └── social-buttons-3.css │ │ │ ├── bootstrap-switch │ │ │ └── static │ │ │ │ ├── js │ │ │ │ └── bootstrap-switch.min.js │ │ │ │ └── stylesheets │ │ │ │ └── bootstrap-switch.css │ │ │ ├── bootstrap-timepicker │ │ │ ├── css │ │ │ │ └── bootstrap-timepicker.min.css │ │ │ └── js │ │ │ │ └── bootstrap-timepicker.min.js │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regulard41d.eot │ │ │ └── js │ │ │ │ └── bootstrap.min.js │ │ │ ├── ckeditor │ │ │ ├── adapters │ │ │ │ └── jquery.js │ │ │ ├── ckeditor.js │ │ │ └── contents.css │ │ │ ├── datepicker │ │ │ └── css │ │ │ │ └── datepicker.css │ │ │ ├── dropzone │ │ │ └── downloads │ │ │ │ ├── css │ │ │ │ └── dropzone.css │ │ │ │ ├── dropzone.min.js │ │ │ │ └── images │ │ │ │ ├── spritemap.png │ │ │ │ └── spritemap@2x.png │ │ │ ├── dynatree │ │ │ └── src │ │ │ │ ├── jquery.dynatree.js │ │ │ │ └── skin-vista │ │ │ │ ├── icons.gif │ │ │ │ ├── loading.gif │ │ │ │ └── ui.dynatree.css │ │ │ ├── flot │ │ │ ├── jquery.flot.categories.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.pie.js │ │ │ ├── jquery.flot.resize.js │ │ │ └── jquery.flot.resize.min.js │ │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ └── font-awesome.min.css │ │ │ └── font │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfontd41d.eot │ │ │ │ ├── fontawesome-webfontf77b.eot │ │ │ │ ├── fontawesome-webfontf77b.ttf │ │ │ │ └── fontawesome-webfontf77b.woff │ │ │ ├── fullcalendar │ │ │ └── fullcalendar │ │ │ │ ├── fullcalendar.css │ │ │ │ └── fullcalendar.js │ │ │ ├── gmaps │ │ │ └── gmaps.js │ │ │ ├── gritter │ │ │ ├── css │ │ │ │ └── jquery.gritter.css │ │ │ ├── images │ │ │ │ ├── gritter-light.png │ │ │ │ ├── gritter.png │ │ │ │ └── ie-spacer.gif │ │ │ └── js │ │ │ │ └── jquery.gritter.min.js │ │ │ ├── iCheck │ │ │ ├── jquery.icheck.min.js │ │ │ └── skins │ │ │ │ ├── all.css │ │ │ │ ├── flat │ │ │ │ ├── _all.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── flat.png │ │ │ │ ├── flat@2x.png │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ │ ├── futurico │ │ │ │ ├── futurico.css │ │ │ │ ├── futurico.png │ │ │ │ └── futurico@2x.png │ │ │ │ ├── line │ │ │ │ ├── _all.css │ │ │ │ ├── line.png │ │ │ │ └── line@2x.png │ │ │ │ ├── minimal │ │ │ │ ├── _all.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── minimal.png │ │ │ │ ├── minimal@2x.png │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ │ ├── polaris │ │ │ │ ├── polaris.css │ │ │ │ ├── polaris.png │ │ │ │ └── polaris@2x.png │ │ │ │ └── square │ │ │ │ ├── _all.css │ │ │ │ ├── aero.png │ │ │ │ ├── aero@2x.png │ │ │ │ ├── blue.png │ │ │ │ ├── blue@2x.png │ │ │ │ ├── green.png │ │ │ │ ├── green@2x.png │ │ │ │ ├── grey.png │ │ │ │ ├── grey@2x.png │ │ │ │ ├── orange.png │ │ │ │ ├── orange@2x.png │ │ │ │ ├── pink.png │ │ │ │ ├── pink@2x.png │ │ │ │ ├── purple.png │ │ │ │ ├── purple@2x.png │ │ │ │ ├── red.png │ │ │ │ ├── red@2x.png │ │ │ │ ├── square.png │ │ │ │ ├── square@2x.png │ │ │ │ ├── yellow.png │ │ │ │ └── yellow@2x.png │ │ │ ├── jQRangeSlider │ │ │ ├── css │ │ │ │ ├── classic-min.css │ │ │ │ └── icons-classic │ │ │ │ │ ├── label.png │ │ │ │ │ ├── resultset_next.png │ │ │ │ │ └── resultset_previous.png │ │ │ └── jQAllRangeSliders-min.js │ │ │ ├── jQuery-File-Upload │ │ │ ├── css │ │ │ │ ├── jquery.fileupload-ui-noscript.css │ │ │ │ └── jquery.fileupload-ui.css │ │ │ ├── img │ │ │ │ ├── loading.gif │ │ │ │ └── progressbar.gif │ │ │ └── js │ │ │ │ ├── jquery.fileupload-audio.js │ │ │ │ ├── jquery.fileupload-image.js │ │ │ │ ├── jquery.fileupload-process.js │ │ │ │ ├── jquery.fileupload-ui.js │ │ │ │ ├── jquery.fileupload-validate.js │ │ │ │ ├── jquery.fileupload-video.js │ │ │ │ ├── jquery.fileupload.js │ │ │ │ ├── jquery.iframe-transport.js │ │ │ │ ├── main.js │ │ │ │ └── vendor │ │ │ │ └── jquery.ui.widget.js │ │ │ ├── jQuery-Knob │ │ │ └── js │ │ │ │ └── jquery.knob.js │ │ │ ├── jQuery-Smart-Wizard │ │ │ └── js │ │ │ │ └── jquery.smartWizard.js │ │ │ ├── jQuery-Tags-Input │ │ │ ├── jquery.tagsinput.css │ │ │ └── jquery.tagsinput.js │ │ │ ├── jquery-easy-pie-chart │ │ │ └── jquery.easy-pie-chart.js │ │ │ ├── jquery-inputlimiter │ │ │ └── jquery.inputlimiter.1.3.1.min.js │ │ │ ├── jquery-ui-touch-punch │ │ │ └── jquery.ui.touch-punch.min.js │ │ │ ├── jquery-ui │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── jquery-ui-1.10.1.custom.min.css │ │ │ ├── jquery-ui-1.10.1.custom.min.js │ │ │ └── jquery-ui-1.10.2.custom.min.js │ │ │ ├── jquery-validation │ │ │ └── dist │ │ │ │ └── jquery.validate.min.js │ │ │ ├── jquery.maskedinput │ │ │ └── src │ │ │ │ └── jquery.maskedinput.js │ │ │ ├── jquery.pulsate │ │ │ └── jquery.pulsate.min.js │ │ │ ├── jquery.sparkline │ │ │ └── jquery.sparkline.js │ │ │ ├── ladda-bootstrap │ │ │ └── dist │ │ │ │ ├── ladda-themeless.min.css │ │ │ │ ├── ladda.min.js │ │ │ │ └── spin.min.js │ │ │ ├── nestable │ │ │ └── jquery.nestable.js │ │ │ ├── perfect-scrollbar │ │ │ └── src │ │ │ │ ├── jquery.mousewheel.js │ │ │ │ ├── perfect-scrollbar.css │ │ │ │ └── perfect-scrollbar.js │ │ │ ├── rainyday │ │ │ └── rainyday.js │ │ │ ├── select2 │ │ │ ├── select2-spinner.gif │ │ │ ├── select2.css │ │ │ ├── select2.min.js │ │ │ ├── select2.png │ │ │ └── select2x2.png │ │ │ └── summernote │ │ │ └── build │ │ │ ├── summernote.css │ │ │ └── summernote.min.js │ ├── charts.html │ ├── favicon.ico │ ├── form_dropzone.html │ ├── form_elements.html │ ├── form_image_cropping.html │ ├── form_inline.html │ ├── form_multiple_upload.html │ ├── form_validation.html │ ├── form_wizard.html │ ├── index.html │ ├── login_example1.html │ ├── login_example2.html │ ├── maps.html │ ├── pages_blank_page.html │ ├── pages_calendar.html │ ├── pages_messages.html │ ├── pages_timeline.html │ ├── pages_user_profile.html │ ├── table_data.html │ ├── table_responsive.html │ ├── table_static.html │ ├── ui_buttons.html │ ├── ui_elements.html │ ├── ui_modals.html │ ├── ui_nestable.html │ ├── ui_sliders.html │ ├── ui_tabs_accordions.html │ ├── ui_tabs_accordions132b.html │ ├── ui_tabs_accordionsb06d.html │ ├── ui_treeview.html │ ├── ui_typography.html │ ├── utility_404_example1.html │ ├── utility_404_example2.html │ ├── utility_404_example3.html │ ├── utility_500_example1.html │ ├── utility_500_example2.html │ ├── utility_coming_soon.html │ ├── utility_faq.html │ ├── utility_lock_screen.html │ └── utility_pricing_table.html ├── football-scores-lite │ ├── .nuget │ │ ├── NuGet.Config │ │ ├── NuGet.exe │ │ └── NuGet.targets │ ├── FootballManagementContext │ │ ├── Cik.FS.FootballManagement.Application │ │ │ ├── Cik.FS.FootballManagement.Application.csproj │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Cik.FS.FootballManagement.Domain │ │ │ ├── Cik.FS.FootballManagement.Domain.csproj │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ └── Cik.FS.FootballManagement.Infrastructure │ │ │ ├── Cik.FS.FootballManagement.Infrastructure.csproj │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── IdentityAccessContext │ │ ├── Cik.FS.IdentityAccess.Application │ │ │ ├── Cik.FS.IdentityAccess.Application.csproj │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Cik.FS.IdentityAccess.Domain │ │ │ ├── Cik.FS.IdentityAccess.Domain.csproj │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ └── Cik.FS.IdentityAccess.Infrastructure │ │ │ ├── Cik.FS.IdentityAccess.Infrastructure.csproj │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── MainSolution.sln │ ├── UnitTestings │ │ └── Cik.FS.WebApp.Tests │ │ │ ├── App.config │ │ │ ├── Cik.FS.WebApp.Tests.csproj │ │ │ ├── Controllers │ │ │ └── HomeControllerTest.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ └── packages.config │ ├── WebApp │ │ └── Cik.FS.WebApp │ │ │ ├── App_Start │ │ │ ├── BundleConfig.cs │ │ │ ├── FilterConfig.cs │ │ │ ├── IdentityConfig.cs │ │ │ ├── RouteConfig.cs │ │ │ ├── Startup.Auth.cs │ │ │ └── WebApiConfig.cs │ │ │ ├── Cik.FS.WebApp.csproj │ │ │ ├── Content │ │ │ ├── Site.css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── docs.css │ │ │ ├── pygments-manni.css │ │ │ └── themes │ │ │ │ └── base │ │ │ │ ├── images │ │ │ │ ├── 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.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ └── minified │ │ │ │ ├── images │ │ │ │ ├── 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.progressbar.min.css │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ ├── jquery.ui.slider.min.css │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ └── jquery.ui.theme.min.css │ │ │ ├── Controllers │ │ │ ├── AccountController.cs │ │ │ └── HomeController.cs │ │ │ ├── Global.asax │ │ │ ├── Global.asax.cs │ │ │ ├── Models │ │ │ ├── AccountViewModels.cs │ │ │ └── IdentityModels.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Scripts │ │ │ ├── _references.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery-1.8.2.intellisense.js │ │ │ ├── jquery-1.8.2.js │ │ │ ├── jquery-1.8.2.min.js │ │ │ ├── jquery-ui-1.8.24.js │ │ │ ├── jquery-ui-1.8.24.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 │ │ │ ├── Startup.cs │ │ │ ├── Views │ │ │ ├── Account │ │ │ │ ├── ExternalLoginConfirmation.cshtml │ │ │ │ ├── ExternalLoginFailure.cshtml │ │ │ │ ├── Login.cshtml │ │ │ │ ├── Manage.cshtml │ │ │ │ ├── Register.cshtml │ │ │ │ ├── _ChangePasswordPartial.cshtml │ │ │ │ ├── _ExternalLoginsListPartial.cshtml │ │ │ │ ├── _RemoveAccountPartial.cshtml │ │ │ │ └── _SetPasswordPartial.cshtml │ │ │ ├── Home │ │ │ │ ├── About.cshtml │ │ │ │ ├── Contact.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _LoginPartial.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ │ ├── Web.Debug.config │ │ │ ├── Web.Release.config │ │ │ ├── Web.config │ │ │ ├── favicon.ico │ │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ └── packages.config │ ├── _Framework │ │ ├── Cik.Framework.Domain │ │ │ ├── AssertionConcern.cs │ │ │ ├── Cik.Framework.Domain.csproj │ │ │ ├── ComparableObject.cs │ │ │ ├── ComparableValueObject.cs │ │ │ ├── DataInterfaces │ │ │ │ ├── IDbContext.cs │ │ │ │ ├── IEntityDuplicateChecker.cs │ │ │ │ └── IRepository.cs │ │ │ ├── DomainEventPublisher.cs │ │ │ ├── DomainSignatureAttribute.cs │ │ │ ├── Entity.cs │ │ │ ├── EventSourcedRootEntity.cs │ │ │ ├── IDomainEvent.cs │ │ │ ├── IDomainEventSubscriber.cs │ │ │ ├── IEntityWithTypedId.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Validators │ │ │ │ └── HasUniqueDomainSignatureAttribute.cs │ │ │ └── ValueObject.cs │ │ ├── Cik.Framework.EntityFrameworkProvider │ │ │ ├── Cik.Framework.EntityFrameworkProvider.csproj │ │ │ ├── EntityDuplicateChecker.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ └── Cik.Framework.Web │ │ │ ├── Cik.Framework.Web.csproj │ │ │ ├── Mvc │ │ │ └── ModelBinder │ │ │ │ ├── EntityCollectionValueBinder.cs │ │ │ │ ├── EntityRetriever.cs │ │ │ │ ├── EntityValueBinder.cs │ │ │ │ └── SharpModelBinder.cs │ │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── _Infrastructure │ │ ├── Cik.FS.EntityFrameworkProvider │ │ ├── Cik.FS.EntityFrameworkProvider.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Cik.FS.Init │ │ ├── Cik.FS.Init.csproj │ │ └── Properties │ │ └── AssemblyInfo.cs ├── new-admin-layout │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap.min.css │ │ ├── docs.css │ │ ├── font-awesome.css │ │ ├── font-awesome.min.css │ │ ├── pygments-manni.css │ │ └── site.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── images │ │ └── sample.png │ ├── index.html │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.js │ │ ├── contents.css │ │ ├── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── fakeobjects │ │ │ │ └── images │ │ │ │ │ └── spacer.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ └── link │ │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ ├── samples │ │ │ ├── ajax.html │ │ │ ├── api.html │ │ │ ├── appendto.html │ │ │ ├── assets │ │ │ │ ├── inlineall │ │ │ │ │ └── logo.png │ │ │ │ ├── outputxhtml │ │ │ │ │ └── outputxhtml.css │ │ │ │ ├── posteddata.php │ │ │ │ ├── sample.css │ │ │ │ ├── sample.jpg │ │ │ │ └── uilanguages │ │ │ │ │ └── languages.js │ │ │ ├── datafiltering.html │ │ │ ├── divreplace.html │ │ │ ├── index.html │ │ │ ├── inlineall.html │ │ │ ├── inlinebycode.html │ │ │ ├── inlinetextarea.html │ │ │ ├── jquery.html │ │ │ ├── plugins │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ └── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ ├── readonly.html │ │ │ ├── replacebyclass.html │ │ │ ├── replacebycode.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── sample_posteddata.php │ │ │ ├── tabindex.html │ │ │ ├── uicolor.html │ │ │ ├── uilanguages.html │ │ │ └── xhtmlstyle.html │ │ ├── skins │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── dialog_opera.css │ │ │ │ ├── editor.css │ │ │ │ ├── editor_gecko.css │ │ │ │ ├── editor_ie.css │ │ │ │ ├── editor_ie7.css │ │ │ │ ├── editor_ie8.css │ │ │ │ ├── editor_iequirks.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ │ └── readme.md │ │ └── styles.js │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ └── modernizr-2.6.2.js └── planning-poker │ ├── Cik.PlanningPoker.WebSolution │ ├── Cik.PP.Web │ │ ├── App_Start │ │ │ ├── BundleConfig.cs │ │ │ ├── DependencyResolverInitializer.cs │ │ │ ├── FilterConfig.cs │ │ │ ├── GlobalConfig.cs │ │ │ ├── IdentityConfig.cs │ │ │ ├── RouteConfig.cs │ │ │ ├── Startup.Auth.cs │ │ │ └── WebApiConfig.cs │ │ ├── Areas │ │ │ └── HelpPage │ │ │ │ ├── ApiDescriptionExtensions.cs │ │ │ │ ├── App_Start │ │ │ │ └── HelpPageConfig.cs │ │ │ │ ├── Controllers │ │ │ │ └── HelpController.cs │ │ │ │ ├── HelpPage.css │ │ │ │ ├── HelpPageAreaRegistration.cs │ │ │ │ ├── HelpPageConfigurationExtensions.cs │ │ │ │ ├── Models │ │ │ │ └── HelpPageApiModel.cs │ │ │ │ ├── SampleGeneration │ │ │ │ ├── HelpPageSampleGenerator.cs │ │ │ │ ├── HelpPageSampleKey.cs │ │ │ │ ├── ImageSample.cs │ │ │ │ ├── InvalidSample.cs │ │ │ │ ├── ObjectGenerator.cs │ │ │ │ ├── SampleDirection.cs │ │ │ │ └── TextSample.cs │ │ │ │ ├── Views │ │ │ │ ├── Help │ │ │ │ │ ├── Api.cshtml │ │ │ │ │ ├── DisplayTemplates │ │ │ │ │ │ ├── ApiGroup.cshtml │ │ │ │ │ │ ├── HelpPageApiModel.cshtml │ │ │ │ │ │ ├── ImageSample.cshtml │ │ │ │ │ │ ├── InvalidSample.cshtml │ │ │ │ │ │ ├── Parameters.cshtml │ │ │ │ │ │ ├── Samples.cshtml │ │ │ │ │ │ └── TextSample.cshtml │ │ │ │ │ └── Index.cshtml │ │ │ │ ├── Shared │ │ │ │ │ └── _Layout.cshtml │ │ │ │ ├── Web.config │ │ │ │ └── _ViewStart.cshtml │ │ │ │ └── XmlDocumentationProvider.cs │ │ ├── Cik.PP.Web.csproj │ │ ├── Content │ │ │ ├── DT_bootstrap.css │ │ │ ├── DT_bootstrap.js │ │ │ ├── Site.css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── scripts.js │ │ │ └── themes │ │ │ │ └── base │ │ │ │ ├── images │ │ │ │ ├── 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.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ └── minified │ │ │ │ ├── images │ │ │ │ ├── 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.progressbar.min.css │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ ├── jquery.ui.slider.min.css │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ └── jquery.ui.theme.min.css │ │ ├── Controllers │ │ │ ├── AccountController.cs │ │ │ ├── GamesController.cs │ │ │ ├── HomeController.cs │ │ │ └── StoriesController.cs │ │ ├── CoreModule.cs │ │ ├── Data │ │ │ ├── Game.cs │ │ │ ├── GameRuntime.cs │ │ │ ├── IPlanningPokerRepository.cs │ │ │ ├── Participant.cs │ │ │ ├── PlanningPokerContext.cs │ │ │ ├── PlanningPokerDiagram.cd │ │ │ ├── PlanningPokerMigrationsConfiguration.cs │ │ │ ├── Point.cs │ │ │ ├── Repository │ │ │ │ └── PlanningPokerRepository.cs │ │ │ ├── Story.cs │ │ │ └── StoryRuntime.cs │ │ ├── Global.asax │ │ ├── Global.asax.cs │ │ ├── Models │ │ │ ├── AccountViewModels.cs │ │ │ └── IdentityModels.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Scripts │ │ │ ├── _references.js │ │ │ ├── angular-bootstrap-prettify.js │ │ │ ├── angular-bootstrap-prettify.min.js │ │ │ ├── angular-bootstrap.js │ │ │ ├── angular-bootstrap.min.js │ │ │ ├── angular-cookies.js │ │ │ ├── angular-cookies.min.js │ │ │ ├── angular-loader.js │ │ │ ├── angular-loader.min.js │ │ │ ├── angular-mocks.js │ │ │ ├── angular-resource.js │ │ │ ├── angular-resource.min.js │ │ │ ├── angular-sanitize.js │ │ │ ├── angular-sanitize.min.js │ │ │ ├── angular-scenario.js │ │ │ ├── angular.js │ │ │ ├── angular.min.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── 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-1.8.2.intellisense.js │ │ │ ├── jquery-1.8.2.js │ │ │ ├── jquery-1.8.2.min.js │ │ │ ├── jquery-ui-1.8.24.js │ │ │ ├── jquery-ui-1.8.24.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 │ │ │ └── vendors │ │ │ │ ├── bootstrap-datepicker.js │ │ │ │ ├── bootstrap-wysihtml5 │ │ │ │ ├── .gitignore │ │ │ │ ├── .settings │ │ │ │ │ └── .gitignore │ │ │ │ ├── Gemfile │ │ │ │ ├── Gemfile.lock │ │ │ │ ├── LICENCE │ │ │ │ ├── Rakefile │ │ │ │ ├── VERSION │ │ │ │ ├── component.json │ │ │ │ ├── dist │ │ │ │ │ ├── bootstrap-wysihtml5-0.0.2.css │ │ │ │ │ ├── bootstrap-wysihtml5-0.0.2.js │ │ │ │ │ └── bootstrap-wysihtml5-0.0.2.min.js │ │ │ │ ├── index.html │ │ │ │ ├── lib │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ │ │ ├── bootstrap-responsive.min.css │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ └── wysiwyg-color.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── glyphicons-halflings-white.png │ │ │ │ │ │ └── glyphicons-halflings.png │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap-button.js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ ├── jquery-1.7.2.min.js │ │ │ │ │ │ ├── prettify.js │ │ │ │ │ │ ├── wysihtml5-0.3.0.js │ │ │ │ │ │ └── wysihtml5-0.3.0.min.js │ │ │ │ ├── readme.textile │ │ │ │ ├── src │ │ │ │ │ ├── bootstrap-wysihtml5.css │ │ │ │ │ ├── bootstrap-wysihtml5.js │ │ │ │ │ ├── locales │ │ │ │ │ │ ├── bootstrap-wysihtml5.ar-AR.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.bg-BG.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.ca-CT.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.cs-CZ.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.da-DK.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.de-DE.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.el-GR.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.es-AR.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.es-ES.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.fr-FR.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.hr-HR.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.it-IT.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.ja-JP.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.ko-KR.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.lt-LT.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.mo-MD.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.nb-NB.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.nl-NL.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.pl-PL.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.pt-BR.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.ru-RU.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.sk-SK.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.sv-SE.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.tr-TR.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.ua-UA.js │ │ │ │ │ │ ├── bootstrap-wysihtml5.zh-CN.js │ │ │ │ │ │ └── bootstrap-wysihtml5.zh-TW.js │ │ │ │ │ └── wysiwyg-color.css │ │ │ │ └── test │ │ │ │ │ ├── README │ │ │ │ │ ├── bootstrap_wysihtml5 │ │ │ │ │ └── parserRules_test.js │ │ │ │ │ ├── browser_test.js │ │ │ │ │ ├── editor_test.js │ │ │ │ │ ├── incompatible_test.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lib │ │ │ │ │ ├── support │ │ │ │ │ └── html_equal.js │ │ │ │ │ └── undo_manager_test.js │ │ │ │ ├── chosen-sprite.png │ │ │ │ ├── chosen-sprite@2x.png │ │ │ │ ├── chosen.jquery.min.js │ │ │ │ ├── chosen.min.css │ │ │ │ ├── ckeditor │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── adapters │ │ │ │ │ └── jquery.js │ │ │ │ ├── build-config.js │ │ │ │ ├── ckeditor.js │ │ │ │ ├── config.js │ │ │ │ ├── contents.css │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugins │ │ │ │ │ ├── a11yhelp │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ │ └── lang │ │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ └── zh-cn.js │ │ │ │ │ ├── about │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ ├── clipboard │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── paste.js │ │ │ │ │ ├── colordialog │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── colordialog.js │ │ │ │ │ ├── dialog │ │ │ │ │ │ └── dialogDefinition.js │ │ │ │ │ ├── div │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── div.js │ │ │ │ │ ├── fakeobjects │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── spacer.gif │ │ │ │ │ ├── find │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── find.js │ │ │ │ │ ├── flash │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ └── flash.js │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── placeholder.png │ │ │ │ │ ├── forms │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ ├── button.js │ │ │ │ │ │ │ ├── checkbox.js │ │ │ │ │ │ │ ├── form.js │ │ │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ │ │ ├── radio.js │ │ │ │ │ │ │ ├── select.js │ │ │ │ │ │ │ ├── textarea.js │ │ │ │ │ │ │ └── textfield.js │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── hiddenfield.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── iframe │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ └── iframe.js │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── placeholder.png │ │ │ │ │ ├── image │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ └── image.js │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── noimage.png │ │ │ │ │ ├── link │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ │ └── link.js │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ └── anchor.png │ │ │ │ │ ├── liststyle │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── liststyle.js │ │ │ │ │ ├── magicline │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ ├── pagebreak │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── pagebreak.gif │ │ │ │ │ ├── pastefromword │ │ │ │ │ │ └── filter │ │ │ │ │ │ │ └── default.js │ │ │ │ │ ├── preview │ │ │ │ │ │ └── preview.html │ │ │ │ │ ├── scayt │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ │ └── toolbar.css │ │ │ │ │ ├── showblocks │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── block_address.png │ │ │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ │ │ ├── block_div.png │ │ │ │ │ │ │ ├── block_h1.png │ │ │ │ │ │ │ ├── block_h2.png │ │ │ │ │ │ │ ├── block_h3.png │ │ │ │ │ │ │ ├── block_h4.png │ │ │ │ │ │ │ ├── block_h5.png │ │ │ │ │ │ │ ├── block_h6.png │ │ │ │ │ │ │ ├── block_p.png │ │ │ │ │ │ │ └── block_pre.png │ │ │ │ │ ├── smiley │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ └── smiley.js │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ │ │ ├── envelope.gif │ │ │ │ │ │ │ ├── heart.gif │ │ │ │ │ │ │ ├── kiss.gif │ │ │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ │ │ └── wink_smile.gif │ │ │ │ │ ├── specialchar │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── lang │ │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ └── zh-cn.js │ │ │ │ │ │ │ └── specialchar.js │ │ │ │ │ ├── table │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── table.js │ │ │ │ │ ├── tabletools │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── tableCell.js │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ ├── templates.css │ │ │ │ │ │ │ └── templates.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── template1.gif │ │ │ │ │ │ │ ├── template2.gif │ │ │ │ │ │ │ └── template3.gif │ │ │ │ │ └── wsc │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── ciframe.html │ │ │ │ │ │ ├── tmp.html │ │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ │ ├── wsc.css │ │ │ │ │ │ ├── wsc.js │ │ │ │ │ │ └── wsc_ie.js │ │ │ │ ├── samples │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── api.html │ │ │ │ │ ├── appendto.html │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── inlineall │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ │ ├── posteddata.php │ │ │ │ │ │ ├── sample.css │ │ │ │ │ │ ├── sample.jpg │ │ │ │ │ │ └── uilanguages │ │ │ │ │ │ │ └── languages.js │ │ │ │ │ ├── datafiltering.html │ │ │ │ │ ├── divreplace.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── inlineall.html │ │ │ │ │ ├── inlinebycode.html │ │ │ │ │ ├── inlinetextarea.html │ │ │ │ │ ├── jquery.html │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ │ │ └── dialog.html │ │ │ │ │ │ ├── enterkey │ │ │ │ │ │ │ └── enterkey.html │ │ │ │ │ │ ├── htmlwriter │ │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ │ │ └── outputhtml.html │ │ │ │ │ │ ├── magicline │ │ │ │ │ │ │ └── magicline.html │ │ │ │ │ │ ├── toolbar │ │ │ │ │ │ │ └── toolbar.html │ │ │ │ │ │ └── wysiwygarea │ │ │ │ │ │ │ └── fullpage.html │ │ │ │ │ ├── readonly.html │ │ │ │ │ ├── replacebyclass.html │ │ │ │ │ ├── replacebycode.html │ │ │ │ │ ├── sample.css │ │ │ │ │ ├── sample.js │ │ │ │ │ ├── sample_posteddata.php │ │ │ │ │ ├── tabindex.html │ │ │ │ │ ├── uicolor.html │ │ │ │ │ ├── uilanguages.html │ │ │ │ │ └── xhtmlstyle.html │ │ │ │ ├── skins │ │ │ │ │ └── moono │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ │ ├── dialog_opera.css │ │ │ │ │ │ ├── editor.css │ │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ │ └── refresh.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ │ └── readme.md │ │ │ │ └── styles.js │ │ │ │ ├── datatables │ │ │ │ ├── css │ │ │ │ │ ├── demo_page.css │ │ │ │ │ ├── demo_table.css │ │ │ │ │ ├── demo_table_jui.css │ │ │ │ │ ├── jquery.dataTables.css │ │ │ │ │ └── jquery.dataTables_themeroller.css │ │ │ │ ├── images │ │ │ │ │ ├── Sorting icons.psd │ │ │ │ │ ├── back_disabled.png │ │ │ │ │ ├── back_enabled.png │ │ │ │ │ ├── back_enabled_hover.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── forward_disabled.png │ │ │ │ │ ├── forward_enabled.png │ │ │ │ │ ├── forward_enabled_hover.png │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ ├── js │ │ │ │ │ ├── jquery.dataTables.js │ │ │ │ │ ├── jquery.dataTables.min.js │ │ │ │ │ └── jquery.js │ │ │ │ ├── src │ │ │ │ │ ├── DataTables.js │ │ │ │ │ ├── api │ │ │ │ │ │ ├── api.internal.js │ │ │ │ │ │ ├── api.methods.js │ │ │ │ │ │ └── api.static.js │ │ │ │ │ ├── core │ │ │ │ │ │ ├── core.ajax.js │ │ │ │ │ │ ├── core.columns.js │ │ │ │ │ │ ├── core.constructor.js │ │ │ │ │ │ ├── core.data.js │ │ │ │ │ │ ├── core.draw.js │ │ │ │ │ │ ├── core.filter.js │ │ │ │ │ │ ├── core.info.js │ │ │ │ │ │ ├── core.init.js │ │ │ │ │ │ ├── core.length.js │ │ │ │ │ │ ├── core.page.js │ │ │ │ │ │ ├── core.processing.js │ │ │ │ │ │ ├── core.scrolling.js │ │ │ │ │ │ ├── core.sizing.js │ │ │ │ │ │ ├── core.sort.js │ │ │ │ │ │ ├── core.state.js │ │ │ │ │ │ └── core.support.js │ │ │ │ │ ├── ext │ │ │ │ │ │ ├── ext.classes.js │ │ │ │ │ │ ├── ext.paging.js │ │ │ │ │ │ ├── ext.sorting.js │ │ │ │ │ │ └── ext.types.js │ │ │ │ │ └── model │ │ │ │ │ │ ├── model.column.js │ │ │ │ │ │ ├── model.defaults.columns.js │ │ │ │ │ │ ├── model.defaults.js │ │ │ │ │ │ ├── model.ext.js │ │ │ │ │ │ ├── model.row.js │ │ │ │ │ │ ├── model.search.js │ │ │ │ │ │ └── model.settings.js │ │ │ │ └── unit_testing │ │ │ │ │ ├── controller.js │ │ │ │ │ ├── controller.php │ │ │ │ │ ├── index.html │ │ │ │ │ ├── performance │ │ │ │ │ ├── draw.html │ │ │ │ │ ├── large.php │ │ │ │ │ ├── page.html │ │ │ │ │ └── sort.html │ │ │ │ │ ├── templates │ │ │ │ │ ├── -complex_header.php │ │ │ │ │ ├── 2512.php │ │ │ │ │ ├── 6776.php │ │ │ │ │ ├── complex_header_2.php │ │ │ │ │ ├── deferred_table.php │ │ │ │ │ ├── dom_data.php │ │ │ │ │ ├── dom_data_th.php │ │ │ │ │ ├── dom_data_two_headers.php │ │ │ │ │ ├── dymanic_table.php │ │ │ │ │ ├── empty_table.php │ │ │ │ │ ├── html_table.php │ │ │ │ │ ├── js_data.php │ │ │ │ │ ├── js_data_mixed_types.php │ │ │ │ │ └── two_tables.php │ │ │ │ │ ├── tests │ │ │ │ │ └── 1_dom │ │ │ │ │ │ └── _zero_config.js │ │ │ │ │ ├── tests_onhold │ │ │ │ │ ├── 1_dom │ │ │ │ │ │ ├── -complex_header.js │ │ │ │ │ │ ├── -iDraw.js │ │ │ │ │ │ ├── 2512.js │ │ │ │ │ │ ├── 2530-2.js │ │ │ │ │ │ ├── 2530.js │ │ │ │ │ │ ├── 2569.js │ │ │ │ │ │ ├── 2600.js │ │ │ │ │ │ ├── 2608.js │ │ │ │ │ │ ├── 2635.js │ │ │ │ │ │ ├── 2746-stable-sort.js │ │ │ │ │ │ ├── 2799.js │ │ │ │ │ │ ├── 2840-restore-table-width.js │ │ │ │ │ │ ├── 2914-state-save-sort.js │ │ │ │ │ │ ├── 5396-fnUpdate-arrays-mData.js │ │ │ │ │ │ ├── 5396-fnUpdate-arrays.js │ │ │ │ │ │ ├── 5508-xscroll-zero-content.js │ │ │ │ │ │ ├── 6776-scrolling-table-grows.js │ │ │ │ │ │ ├── _getDataFunctions.js │ │ │ │ │ │ ├── _setDataFunctions.js │ │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ │ ├── aoColumns.bVisible2.js │ │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ │ ├── bFilter.js │ │ │ │ │ │ ├── bInfiniteScroll.js │ │ │ │ │ │ ├── bInfo.js │ │ │ │ │ │ ├── bJQueryUI.js │ │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ │ ├── bSort.js │ │ │ │ │ │ ├── bSortCellsTop.js │ │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ │ ├── fnCookieCallback.js │ │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ │ ├── fnDeleteRow.js │ │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ │ ├── fnFilter.js │ │ │ │ │ │ ├── fnFooterCallback.js │ │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ │ ├── fnInfoCallback.js │ │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ │ ├── fnSetColumnVis.js │ │ │ │ │ │ ├── fnSetColumnVis2.js │ │ │ │ │ │ ├── html-autodetect-sort.js │ │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ │ ├── oSearch.js │ │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ │ ├── sDom.js │ │ │ │ │ │ ├── sPaginationType.js │ │ │ │ │ │ ├── sScrollXY.js │ │ │ │ │ │ └── th_in_body.js │ │ │ │ │ ├── 2_js │ │ │ │ │ │ ├── 39-nested-null.js │ │ │ │ │ │ ├── 6872-default-content-missing-props.js │ │ │ │ │ │ ├── 8549--string-sorting-nonstrings.js │ │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ │ ├── bFilter.js │ │ │ │ │ │ ├── bInfo.js │ │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ │ ├── bSort.js │ │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ │ ├── fnFooterCallback.js │ │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ │ ├── js_data_mixed_types.js │ │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ │ ├── oSearch.js │ │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ │ ├── sDom.js │ │ │ │ │ │ └── sPaginationType.js │ │ │ │ │ ├── 3_ajax │ │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ │ ├── bFilter.js │ │ │ │ │ │ ├── bInfo.js │ │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ │ ├── bSort.js │ │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ │ ├── oLanguage.sLoadingRecords.js │ │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ │ ├── oSearch.js │ │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ │ ├── sAjaxDataProp2.js │ │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ │ ├── sDom.js │ │ │ │ │ │ └── sPaginationType.js │ │ │ │ │ ├── 4_server-side │ │ │ │ │ │ ├── -iDraw.js │ │ │ │ │ │ ├── 2440.js │ │ │ │ │ │ ├── 2569.js │ │ │ │ │ │ ├── 2600.js │ │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ │ ├── bFilter.js │ │ │ │ │ │ ├── bInfiniteScroll.js │ │ │ │ │ │ ├── bInfo.js │ │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ │ ├── bSort.js │ │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ │ ├── fnCreatedCell.js │ │ │ │ │ │ ├── fnCreatedRow.js │ │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ │ ├── iDeferLoading.js │ │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ │ ├── oSearch.js │ │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ │ ├── sDom.js │ │ │ │ │ │ └── sPaginationType.js │ │ │ │ │ ├── 5_ajax_objects │ │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ │ ├── _zero_config_arrays_subobjects.js │ │ │ │ │ │ ├── _zero_config_deep.js │ │ │ │ │ │ ├── _zero_config_mDataProp.js │ │ │ │ │ │ ├── _zero_config_null_source.js │ │ │ │ │ │ ├── _zero_config_objects.js │ │ │ │ │ │ ├── _zero_config_objects_subarrays.js │ │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ │ ├── bFilter.js │ │ │ │ │ │ ├── bInfo.js │ │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ │ ├── bSort.js │ │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ │ ├── oSearch.js │ │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ │ ├── sDom.js │ │ │ │ │ │ └── sPaginationType.js │ │ │ │ │ └── 6_delayed_rendering │ │ │ │ │ │ ├── _zero_config.js │ │ │ │ │ │ ├── aaSorting.js │ │ │ │ │ │ ├── aaSortingFixed.js │ │ │ │ │ │ ├── aoColumns.bSearchable.js │ │ │ │ │ │ ├── aoColumns.bSortable.js │ │ │ │ │ │ ├── aoColumns.bUseRendered.js │ │ │ │ │ │ ├── aoColumns.bVisible.js │ │ │ │ │ │ ├── aoColumns.fnRender.js │ │ │ │ │ │ ├── aoColumns.iDataSort.js │ │ │ │ │ │ ├── aoColumns.sClass.js │ │ │ │ │ │ ├── aoColumns.sName.js │ │ │ │ │ │ ├── aoColumns.sTitle.js │ │ │ │ │ │ ├── aoColumns.sWidth.js │ │ │ │ │ │ ├── aoSearchCols.js │ │ │ │ │ │ ├── asStripClasses.js │ │ │ │ │ │ ├── bAutoWidth.js │ │ │ │ │ │ ├── bFilter.js │ │ │ │ │ │ ├── bInfo.js │ │ │ │ │ │ ├── bLengthChange.js │ │ │ │ │ │ ├── bPaginate.js │ │ │ │ │ │ ├── bProcessing.js │ │ │ │ │ │ ├── bServerSide.js │ │ │ │ │ │ ├── bSort.js │ │ │ │ │ │ ├── bSortClasses.js │ │ │ │ │ │ ├── fnDrawCallback.js │ │ │ │ │ │ ├── fnHeaderCallback.js │ │ │ │ │ │ ├── fnInitComplete.js │ │ │ │ │ │ ├── fnRowCallback.js │ │ │ │ │ │ ├── fnServerData.js │ │ │ │ │ │ ├── iDisplayLength.js │ │ │ │ │ │ ├── oLanguage.oPaginate.js │ │ │ │ │ │ ├── oLanguage.sInfo.js │ │ │ │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ │ │ │ ├── oLanguage.sProcessing.js │ │ │ │ │ │ ├── oLanguage.sSearch.js │ │ │ │ │ │ ├── oLanguage.sUrl.js │ │ │ │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ │ │ │ ├── oSearch.js │ │ │ │ │ │ ├── sAjaxDataProp.js │ │ │ │ │ │ ├── sAjaxDataProp2.js │ │ │ │ │ │ ├── sAjaxSource.js │ │ │ │ │ │ ├── sDom.js │ │ │ │ │ │ └── sPaginationType.js │ │ │ │ │ └── unit_test.js │ │ │ │ ├── datepicker.css │ │ │ │ ├── easypiechart │ │ │ │ ├── examples │ │ │ │ │ ├── excanvas.js │ │ │ │ │ ├── index.html │ │ │ │ │ └── style.css │ │ │ │ ├── jquery.easy-pie-chart.css │ │ │ │ └── jquery.easy-pie-chart.js │ │ │ │ ├── flot │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── API.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── FAQ.md │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile │ │ │ │ ├── NEWS.md │ │ │ │ ├── PLUGINS.md │ │ │ │ ├── README.md │ │ │ │ ├── component.json │ │ │ │ ├── examples │ │ │ │ │ ├── ajax │ │ │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ │ │ │ ├── data-eu-gdp-growth.json │ │ │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── annotating │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── axes-interacting │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── axes-multiple │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── axes-time-zones │ │ │ │ │ │ ├── date.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── tz │ │ │ │ │ │ │ ├── africa │ │ │ │ │ │ │ ├── antarctica │ │ │ │ │ │ │ ├── asia │ │ │ │ │ │ │ ├── australasia │ │ │ │ │ │ │ ├── backward │ │ │ │ │ │ │ ├── etcetera │ │ │ │ │ │ │ ├── europe │ │ │ │ │ │ │ ├── factory │ │ │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ │ │ ├── leapseconds │ │ │ │ │ │ │ ├── northamerica │ │ │ │ │ │ │ ├── pacificnew │ │ │ │ │ │ │ ├── solar87 │ │ │ │ │ │ │ ├── solar88 │ │ │ │ │ │ │ ├── solar89 │ │ │ │ │ │ │ ├── southamerica │ │ │ │ │ │ │ ├── systemv │ │ │ │ │ │ │ ├── yearistype.sh │ │ │ │ │ │ │ └── zone.tab │ │ │ │ │ ├── axes-time │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── background.png │ │ │ │ │ ├── basic-canvas.html │ │ │ │ │ ├── basic-options │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── basic-usage │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── canvas │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── categories │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── examples.css │ │ │ │ │ ├── image │ │ │ │ │ │ ├── hs-2004-27-a-large-web.jpg │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── interacting │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── navigate │ │ │ │ │ │ ├── arrow-down.gif │ │ │ │ │ │ ├── arrow-left.gif │ │ │ │ │ │ ├── arrow-right.gif │ │ │ │ │ │ ├── arrow-up.gif │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── percentiles │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── realtime │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── resize │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── selection │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── series-errorbars │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── series-pie │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── series-toggle │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── series-types │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── shared │ │ │ │ │ │ └── jquery-ui │ │ │ │ │ │ │ └── jquery-ui.min.css │ │ │ │ │ ├── stacking │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── symbols │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── threshold │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── tracking │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── visitors │ │ │ │ │ │ └── index.html │ │ │ │ │ └── zooming │ │ │ │ │ │ └── index.html │ │ │ │ ├── excanvas.js │ │ │ │ ├── excanvas.min.js │ │ │ │ ├── flot.jquery.json │ │ │ │ ├── jquery.colorhelpers.js │ │ │ │ ├── jquery.flot.canvas.js │ │ │ │ ├── jquery.flot.categories.js │ │ │ │ ├── jquery.flot.crosshair.js │ │ │ │ ├── jquery.flot.errorbars.js │ │ │ │ ├── jquery.flot.fillbetween.js │ │ │ │ ├── jquery.flot.image.js │ │ │ │ ├── jquery.flot.js │ │ │ │ ├── jquery.flot.navigate.js │ │ │ │ ├── jquery.flot.pie.js │ │ │ │ ├── jquery.flot.resize.js │ │ │ │ ├── jquery.flot.selection.js │ │ │ │ ├── jquery.flot.stack.js │ │ │ │ ├── jquery.flot.symbol.js │ │ │ │ ├── jquery.flot.threshold.js │ │ │ │ ├── jquery.flot.time.js │ │ │ │ ├── jquery.js │ │ │ │ └── package.json │ │ │ │ ├── fullcalendar │ │ │ │ ├── fullcalendar.css │ │ │ │ ├── fullcalendar.js │ │ │ │ ├── fullcalendar.min.js │ │ │ │ ├── fullcalendar.print.css │ │ │ │ └── gcal.js │ │ │ │ ├── jGrowl │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── examples │ │ │ │ │ ├── iphone.png │ │ │ │ │ ├── jgrowl-pool.html │ │ │ │ │ ├── jgrowl.html │ │ │ │ │ ├── multiple-containers.html │ │ │ │ │ ├── sideways.html │ │ │ │ │ └── smoke.png │ │ │ │ ├── jgrowl.jquery.json │ │ │ │ ├── jquery.jgrowl.css │ │ │ │ └── jquery.jgrowl.js │ │ │ │ ├── jquery-1.9.1.js │ │ │ │ ├── jquery-1.9.1.min.js │ │ │ │ ├── jquery-ui-1.10.3.js │ │ │ │ ├── jquery.knob.js │ │ │ │ ├── jquery.uniform.min.js │ │ │ │ ├── modernizr-2.6.2-respond-1.1.0.min.js │ │ │ │ ├── morris │ │ │ │ ├── morris.css │ │ │ │ ├── morris.js │ │ │ │ └── morris.min.js │ │ │ │ ├── raphael-min.js │ │ │ │ ├── tinymce │ │ │ │ ├── LICENSE.TXT │ │ │ │ ├── changelog.txt │ │ │ │ └── js │ │ │ │ │ └── tinymce │ │ │ │ │ ├── jquery.tinymce.min.js │ │ │ │ │ ├── langs │ │ │ │ │ └── readme.md │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── plugins │ │ │ │ │ ├── advlist │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── anchor │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── autolink │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── autoresize │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── autosave │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── bbcode │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── charmap │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── code │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── compat3x │ │ │ │ │ │ ├── editable_selects.js │ │ │ │ │ │ ├── form_utils.js │ │ │ │ │ │ ├── mctabs.js │ │ │ │ │ │ ├── tiny_mce_popup.js │ │ │ │ │ │ └── validate.js │ │ │ │ │ ├── contextmenu │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── directionality │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── emoticons │ │ │ │ │ │ ├── img │ │ │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ │ │ └── smiley-yell.gif │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── example │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── example_dependency │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── fullpage │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── fullscreen │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── hr │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── image │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── importcss │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── insertdatetime │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── layer │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── legacyoutput │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── link │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── lists │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── media │ │ │ │ │ │ ├── moxieplayer.swf │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── nonbreaking │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── noneditable │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── pagebreak │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── paste │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── preview │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── print │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── save │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── searchreplace │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── spellchecker │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── tabfocus │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── table │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── template │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── textcolor │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── visualblocks │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── visualblocks.css │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── visualchars │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ └── wordcount │ │ │ │ │ │ └── plugin.min.js │ │ │ │ │ ├── skins │ │ │ │ │ └── lightgray │ │ │ │ │ │ ├── content.inline.min.css │ │ │ │ │ │ ├── content.min.css │ │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── icomoon-small.eot │ │ │ │ │ │ ├── icomoon-small.svg │ │ │ │ │ │ ├── icomoon-small.ttf │ │ │ │ │ │ ├── icomoon-small.woff │ │ │ │ │ │ ├── icomoon.eot │ │ │ │ │ │ ├── icomoon.svg │ │ │ │ │ │ ├── icomoon.ttf │ │ │ │ │ │ ├── icomoon.woff │ │ │ │ │ │ └── readme.md │ │ │ │ │ │ ├── img │ │ │ │ │ │ ├── anchor.gif │ │ │ │ │ │ ├── loader.gif │ │ │ │ │ │ ├── object.gif │ │ │ │ │ │ ├── trans.gif │ │ │ │ │ │ └── wline.gif │ │ │ │ │ │ ├── skin.ie7.min.css │ │ │ │ │ │ └── skin.min.css │ │ │ │ │ ├── themes │ │ │ │ │ └── modern │ │ │ │ │ │ └── theme.min.js │ │ │ │ │ └── tinymce.min.js │ │ │ │ ├── uniform.default.css │ │ │ │ ├── wizard │ │ │ │ ├── jquery.bootstrap.wizard.js │ │ │ │ └── jquery.bootstrap.wizard.min.js │ │ │ │ └── wysiwyg │ │ │ │ ├── bootstrap-wysihtml5.css │ │ │ │ ├── bootstrap-wysihtml5.js │ │ │ │ └── wysihtml5-0.3.0.js │ │ ├── Startup.cs │ │ ├── Views │ │ │ ├── Account │ │ │ │ ├── ExternalLoginConfirmation.cshtml │ │ │ │ ├── ExternalLoginFailure.cshtml │ │ │ │ ├── Login.cshtml │ │ │ │ ├── Manage.cshtml │ │ │ │ ├── Register.cshtml │ │ │ │ ├── _ChangePasswordPartial.cshtml │ │ │ │ ├── _ExternalLoginsListPartial.cshtml │ │ │ │ ├── _RemoveAccountPartial.cshtml │ │ │ │ └── _SetPasswordPartial.cshtml │ │ │ ├── Home │ │ │ │ ├── Backup.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _LoginPartial.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ ├── Web.Debug.config │ │ ├── Web.Release.config │ │ ├── Web.config │ │ ├── favicon.ico │ │ ├── img │ │ │ ├── bg-input-focus.png │ │ │ ├── bg-input.png │ │ │ ├── glyphicons-halflings-white.png │ │ │ ├── glyphicons-halflings.png │ │ │ └── sprite.png │ │ ├── js │ │ │ └── main-page.js │ │ ├── packages.config │ │ └── templates │ │ │ ├── gameDetailsView.html │ │ │ └── gamesView.html │ └── Cik.PlanningPoker.WebSolution.sln │ ├── PlanningPoker │ ├── 1- change account.png │ ├── 1- register.png │ ├── 3 - new board.png │ ├── 4 - create new game.png │ ├── 5 - list of games.png │ ├── 6- create new story and play.png │ ├── 7 - starting the game.png │ └── 8 - accept and play again.png │ └── templates │ └── Bootstrap-Admin-Theme-master │ ├── .gitignore │ ├── .travis.yml │ ├── MIT-LICENSE.txt │ ├── assets │ ├── DT_bootstrap.css │ ├── DT_bootstrap.js │ ├── scripts.js │ └── styles.css │ ├── bootstrap │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ ├── buttons.html │ ├── calendar.html │ ├── editors.html │ ├── form.html │ ├── images │ ├── bg-input-focus.png │ ├── bg-input.png │ └── sprite.png │ ├── index.html │ ├── interface.html │ ├── login.html │ ├── package.json │ ├── readme.md │ ├── stats.html │ ├── tables.html │ └── vendors │ ├── bootstrap-datepicker.js │ ├── bootstrap-wysihtml5 │ ├── .gitignore │ ├── .settings │ │ └── .gitignore │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENCE │ ├── Rakefile │ ├── VERSION │ ├── component.json │ ├── dist │ │ ├── bootstrap-wysihtml5-0.0.2.css │ │ ├── bootstrap-wysihtml5-0.0.2.js │ │ └── bootstrap-wysihtml5-0.0.2.min.js │ ├── index.html │ ├── lib │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── prettify.css │ │ │ └── wysiwyg-color.css │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ ├── bootstrap-button.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery-1.7.2.min.js │ │ │ ├── prettify.js │ │ │ ├── wysihtml5-0.3.0.js │ │ │ └── wysihtml5-0.3.0.min.js │ ├── readme.textile │ ├── src │ │ ├── bootstrap-wysihtml5.css │ │ ├── bootstrap-wysihtml5.js │ │ ├── locales │ │ │ ├── bootstrap-wysihtml5.ar-AR.js │ │ │ ├── bootstrap-wysihtml5.bg-BG.js │ │ │ ├── bootstrap-wysihtml5.ca-CT.js │ │ │ ├── bootstrap-wysihtml5.cs-CZ.js │ │ │ ├── bootstrap-wysihtml5.da-DK.js │ │ │ ├── bootstrap-wysihtml5.de-DE.js │ │ │ ├── bootstrap-wysihtml5.el-GR.js │ │ │ ├── bootstrap-wysihtml5.es-AR.js │ │ │ ├── bootstrap-wysihtml5.es-ES.js │ │ │ ├── bootstrap-wysihtml5.fr-FR.js │ │ │ ├── bootstrap-wysihtml5.hr-HR.js │ │ │ ├── bootstrap-wysihtml5.it-IT.js │ │ │ ├── bootstrap-wysihtml5.ja-JP.js │ │ │ ├── bootstrap-wysihtml5.ko-KR.js │ │ │ ├── bootstrap-wysihtml5.lt-LT.js │ │ │ ├── bootstrap-wysihtml5.mo-MD.js │ │ │ ├── bootstrap-wysihtml5.nb-NB.js │ │ │ ├── bootstrap-wysihtml5.nl-NL.js │ │ │ ├── bootstrap-wysihtml5.pl-PL.js │ │ │ ├── bootstrap-wysihtml5.pt-BR.js │ │ │ ├── bootstrap-wysihtml5.ru-RU.js │ │ │ ├── bootstrap-wysihtml5.sk-SK.js │ │ │ ├── bootstrap-wysihtml5.sv-SE.js │ │ │ ├── bootstrap-wysihtml5.tr-TR.js │ │ │ ├── bootstrap-wysihtml5.ua-UA.js │ │ │ ├── bootstrap-wysihtml5.zh-CN.js │ │ │ └── bootstrap-wysihtml5.zh-TW.js │ │ └── wysiwyg-color.css │ └── test │ │ ├── README │ │ ├── bootstrap_wysihtml5 │ │ └── parserRules_test.js │ │ ├── browser_test.js │ │ ├── editor_test.js │ │ ├── incompatible_test.js │ │ ├── index.html │ │ ├── lib │ │ ├── support │ │ └── html_equal.js │ │ └── undo_manager_test.js │ ├── chosen-sprite.png │ ├── chosen-sprite@2x.png │ ├── chosen.jquery.min.js │ ├── chosen.min.css │ ├── ckeditor │ ├── CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── adapters │ │ └── jquery.js │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── contents.css │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugins │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ ├── a11yhelp.js │ │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ └── zh-cn.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── logo_ckeditor.png │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── colordialog │ │ │ └── dialogs │ │ │ │ └── colordialog.js │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── div │ │ │ └── dialogs │ │ │ │ └── div.js │ │ ├── fakeobjects │ │ │ └── images │ │ │ │ └── spacer.gif │ │ ├── find │ │ │ └── dialogs │ │ │ │ └── find.js │ │ ├── flash │ │ │ ├── dialogs │ │ │ │ └── flash.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── forms │ │ │ ├── dialogs │ │ │ │ ├── button.js │ │ │ │ ├── checkbox.js │ │ │ │ ├── form.js │ │ │ │ ├── hiddenfield.js │ │ │ │ ├── radio.js │ │ │ │ ├── select.js │ │ │ │ ├── textarea.js │ │ │ │ └── textfield.js │ │ │ └── images │ │ │ │ └── hiddenfield.gif │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── iframe │ │ │ ├── dialogs │ │ │ │ └── iframe.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ ├── liststyle │ │ │ └── dialogs │ │ │ │ └── liststyle.js │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── hidpi │ │ │ │ └── icon.png │ │ │ │ └── icon.png │ │ ├── pagebreak │ │ │ └── images │ │ │ │ └── pagebreak.gif │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── preview │ │ │ └── preview.html │ │ ├── scayt │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ │ ├── options.js │ │ │ │ └── toolbar.css │ │ ├── showblocks │ │ │ └── images │ │ │ │ ├── block_address.png │ │ │ │ ├── block_blockquote.png │ │ │ │ ├── block_div.png │ │ │ │ ├── block_h1.png │ │ │ │ ├── block_h2.png │ │ │ │ ├── block_h3.png │ │ │ │ ├── block_h4.png │ │ │ │ ├── block_h5.png │ │ │ │ ├── block_h6.png │ │ │ │ ├── block_p.png │ │ │ │ └── block_pre.png │ │ ├── smiley │ │ │ ├── dialogs │ │ │ │ └── smiley.js │ │ │ └── images │ │ │ │ ├── angel_smile.gif │ │ │ │ ├── angry_smile.gif │ │ │ │ ├── broken_heart.gif │ │ │ │ ├── confused_smile.gif │ │ │ │ ├── cry_smile.gif │ │ │ │ ├── devil_smile.gif │ │ │ │ ├── embaressed_smile.gif │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ ├── envelope.gif │ │ │ │ ├── heart.gif │ │ │ │ ├── kiss.gif │ │ │ │ ├── lightbulb.gif │ │ │ │ ├── omg_smile.gif │ │ │ │ ├── regular_smile.gif │ │ │ │ ├── sad_smile.gif │ │ │ │ ├── shades_smile.gif │ │ │ │ ├── teeth_smile.gif │ │ │ │ ├── thumbs_down.gif │ │ │ │ ├── thumbs_up.gif │ │ │ │ ├── tongue_smile.gif │ │ │ │ ├── tounge_smile.gif │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ └── wink_smile.gif │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ku.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ └── zh-cn.js │ │ │ │ └── specialchar.js │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ ├── tabletools │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ ├── templates │ │ │ ├── dialogs │ │ │ │ ├── templates.css │ │ │ │ └── templates.js │ │ │ └── templates │ │ │ │ ├── default.js │ │ │ │ └── images │ │ │ │ ├── template1.gif │ │ │ │ ├── template2.gif │ │ │ │ └── template3.gif │ │ └── wsc │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ ├── ciframe.html │ │ │ ├── tmp.html │ │ │ ├── tmpFrameset.html │ │ │ ├── wsc.css │ │ │ ├── wsc.js │ │ │ └── wsc_ie.js │ ├── samples │ │ ├── ajax.html │ │ ├── api.html │ │ ├── appendto.html │ │ ├── assets │ │ │ ├── inlineall │ │ │ │ └── logo.png │ │ │ ├── outputxhtml │ │ │ │ └── outputxhtml.css │ │ │ ├── posteddata.php │ │ │ ├── sample.css │ │ │ ├── sample.jpg │ │ │ └── uilanguages │ │ │ │ └── languages.js │ │ ├── datafiltering.html │ │ ├── divreplace.html │ │ ├── index.html │ │ ├── inlineall.html │ │ ├── inlinebycode.html │ │ ├── inlinetextarea.html │ │ ├── jquery.html │ │ ├── plugins │ │ │ ├── dialog │ │ │ │ ├── assets │ │ │ │ │ └── my_dialog.js │ │ │ │ └── dialog.html │ │ │ ├── enterkey │ │ │ │ └── enterkey.html │ │ │ ├── htmlwriter │ │ │ │ ├── assets │ │ │ │ │ └── outputforflash │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ └── swfobject.js │ │ │ │ ├── outputforflash.html │ │ │ │ └── outputhtml.html │ │ │ ├── magicline │ │ │ │ └── magicline.html │ │ │ ├── toolbar │ │ │ │ └── toolbar.html │ │ │ └── wysiwygarea │ │ │ │ └── fullpage.html │ │ ├── readonly.html │ │ ├── replacebyclass.html │ │ ├── replacebycode.html │ │ ├── sample.css │ │ ├── sample.js │ │ ├── sample_posteddata.php │ │ ├── tabindex.html │ │ ├── uicolor.html │ │ ├── uilanguages.html │ │ └── xhtmlstyle.html │ ├── skins │ │ └── moono │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie7.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── dialog_opera.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie7.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ └── refresh.png │ │ │ └── readme.md │ └── styles.js │ ├── datatables │ ├── css │ │ ├── demo_page.css │ │ ├── demo_table.css │ │ ├── demo_table_jui.css │ │ ├── jquery.dataTables.css │ │ └── jquery.dataTables_themeroller.css │ ├── images │ │ ├── Sorting icons.psd │ │ ├── back_disabled.png │ │ ├── back_enabled.png │ │ ├── back_enabled_hover.png │ │ ├── favicon.ico │ │ ├── forward_disabled.png │ │ ├── forward_enabled.png │ │ ├── forward_enabled_hover.png │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ └── sort_desc_disabled.png │ ├── js │ │ ├── jquery.dataTables.js │ │ ├── jquery.dataTables.min.js │ │ └── jquery.js │ ├── src │ │ ├── DataTables.js │ │ ├── api │ │ │ ├── api.internal.js │ │ │ ├── api.methods.js │ │ │ └── api.static.js │ │ ├── core │ │ │ ├── core.ajax.js │ │ │ ├── core.columns.js │ │ │ ├── core.constructor.js │ │ │ ├── core.data.js │ │ │ ├── core.draw.js │ │ │ ├── core.filter.js │ │ │ ├── core.info.js │ │ │ ├── core.init.js │ │ │ ├── core.length.js │ │ │ ├── core.page.js │ │ │ ├── core.processing.js │ │ │ ├── core.scrolling.js │ │ │ ├── core.sizing.js │ │ │ ├── core.sort.js │ │ │ ├── core.state.js │ │ │ └── core.support.js │ │ ├── ext │ │ │ ├── ext.classes.js │ │ │ ├── ext.paging.js │ │ │ ├── ext.sorting.js │ │ │ └── ext.types.js │ │ └── model │ │ │ ├── model.column.js │ │ │ ├── model.defaults.columns.js │ │ │ ├── model.defaults.js │ │ │ ├── model.ext.js │ │ │ ├── model.row.js │ │ │ ├── model.search.js │ │ │ └── model.settings.js │ └── unit_testing │ │ ├── controller.js │ │ ├── controller.php │ │ ├── index.html │ │ ├── performance │ │ ├── draw.html │ │ ├── large.php │ │ ├── page.html │ │ └── sort.html │ │ ├── templates │ │ ├── -complex_header.php │ │ ├── 2512.php │ │ ├── 6776.php │ │ ├── complex_header_2.php │ │ ├── deferred_table.php │ │ ├── dom_data.php │ │ ├── dom_data_th.php │ │ ├── dom_data_two_headers.php │ │ ├── dymanic_table.php │ │ ├── empty_table.php │ │ ├── html_table.php │ │ ├── js_data.php │ │ ├── js_data_mixed_types.php │ │ └── two_tables.php │ │ ├── tests │ │ └── 1_dom │ │ │ └── _zero_config.js │ │ ├── tests_onhold │ │ ├── 1_dom │ │ │ ├── -complex_header.js │ │ │ ├── -iDraw.js │ │ │ ├── 2512.js │ │ │ ├── 2530-2.js │ │ │ ├── 2530.js │ │ │ ├── 2569.js │ │ │ ├── 2600.js │ │ │ ├── 2608.js │ │ │ ├── 2635.js │ │ │ ├── 2746-stable-sort.js │ │ │ ├── 2799.js │ │ │ ├── 2840-restore-table-width.js │ │ │ ├── 2914-state-save-sort.js │ │ │ ├── 5396-fnUpdate-arrays-mData.js │ │ │ ├── 5396-fnUpdate-arrays.js │ │ │ ├── 5508-xscroll-zero-content.js │ │ │ ├── 6776-scrolling-table-grows.js │ │ │ ├── _getDataFunctions.js │ │ │ ├── _setDataFunctions.js │ │ │ ├── _zero_config.js │ │ │ ├── aaSorting.js │ │ │ ├── aaSortingFixed.js │ │ │ ├── aoColumns.bSearchable.js │ │ │ ├── aoColumns.bSortable.js │ │ │ ├── aoColumns.bUseRendered.js │ │ │ ├── aoColumns.bVisible.js │ │ │ ├── aoColumns.bVisible2.js │ │ │ ├── aoColumns.fnRender.js │ │ │ ├── aoColumns.iDataSort.js │ │ │ ├── aoColumns.sClass.js │ │ │ ├── aoColumns.sName.js │ │ │ ├── aoColumns.sTitle.js │ │ │ ├── aoColumns.sWidth.js │ │ │ ├── aoSearchCols.js │ │ │ ├── asStripClasses.js │ │ │ ├── bAutoWidth.js │ │ │ ├── bFilter.js │ │ │ ├── bInfiniteScroll.js │ │ │ ├── bInfo.js │ │ │ ├── bJQueryUI.js │ │ │ ├── bLengthChange.js │ │ │ ├── bPaginate.js │ │ │ ├── bProcessing.js │ │ │ ├── bServerSide.js │ │ │ ├── bSort.js │ │ │ ├── bSortCellsTop.js │ │ │ ├── bSortClasses.js │ │ │ ├── fnCookieCallback.js │ │ │ ├── fnCreatedCell.js │ │ │ ├── fnCreatedRow.js │ │ │ ├── fnDeleteRow.js │ │ │ ├── fnDrawCallback.js │ │ │ ├── fnFilter.js │ │ │ ├── fnFooterCallback.js │ │ │ ├── fnHeaderCallback.js │ │ │ ├── fnInfoCallback.js │ │ │ ├── fnInitComplete.js │ │ │ ├── fnRowCallback.js │ │ │ ├── fnSetColumnVis.js │ │ │ ├── fnSetColumnVis2.js │ │ │ ├── html-autodetect-sort.js │ │ │ ├── iDisplayLength.js │ │ │ ├── oLanguage.oPaginate.js │ │ │ ├── oLanguage.sInfo.js │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ ├── oLanguage.sProcessing.js │ │ │ ├── oLanguage.sSearch.js │ │ │ ├── oLanguage.sUrl.js │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ ├── oSearch.js │ │ │ ├── sAjaxSource.js │ │ │ ├── sDom.js │ │ │ ├── sPaginationType.js │ │ │ ├── sScrollXY.js │ │ │ └── th_in_body.js │ │ ├── 2_js │ │ │ ├── 39-nested-null.js │ │ │ ├── 6872-default-content-missing-props.js │ │ │ ├── 8549--string-sorting-nonstrings.js │ │ │ ├── _zero_config.js │ │ │ ├── aaSorting.js │ │ │ ├── aaSortingFixed.js │ │ │ ├── aoColumns.bSearchable.js │ │ │ ├── aoColumns.bSortable.js │ │ │ ├── aoColumns.bUseRendered.js │ │ │ ├── aoColumns.bVisible.js │ │ │ ├── aoColumns.fnRender.js │ │ │ ├── aoColumns.iDataSort.js │ │ │ ├── aoColumns.sClass.js │ │ │ ├── aoColumns.sName.js │ │ │ ├── aoColumns.sTitle.js │ │ │ ├── aoColumns.sWidth.js │ │ │ ├── aoSearchCols.js │ │ │ ├── asStripClasses.js │ │ │ ├── bAutoWidth.js │ │ │ ├── bFilter.js │ │ │ ├── bInfo.js │ │ │ ├── bLengthChange.js │ │ │ ├── bPaginate.js │ │ │ ├── bProcessing.js │ │ │ ├── bServerSide.js │ │ │ ├── bSort.js │ │ │ ├── bSortClasses.js │ │ │ ├── fnCreatedCell.js │ │ │ ├── fnCreatedRow.js │ │ │ ├── fnDrawCallback.js │ │ │ ├── fnFooterCallback.js │ │ │ ├── fnHeaderCallback.js │ │ │ ├── fnInitComplete.js │ │ │ ├── fnRowCallback.js │ │ │ ├── iDisplayLength.js │ │ │ ├── js_data_mixed_types.js │ │ │ ├── oLanguage.oPaginate.js │ │ │ ├── oLanguage.sInfo.js │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ ├── oLanguage.sProcessing.js │ │ │ ├── oLanguage.sSearch.js │ │ │ ├── oLanguage.sUrl.js │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ ├── oSearch.js │ │ │ ├── sAjaxSource.js │ │ │ ├── sDom.js │ │ │ └── sPaginationType.js │ │ ├── 3_ajax │ │ │ ├── _zero_config.js │ │ │ ├── aaSorting.js │ │ │ ├── aaSortingFixed.js │ │ │ ├── aoColumns.bSearchable.js │ │ │ ├── aoColumns.bSortable.js │ │ │ ├── aoColumns.bUseRendered.js │ │ │ ├── aoColumns.bVisible.js │ │ │ ├── aoColumns.fnRender.js │ │ │ ├── aoColumns.iDataSort.js │ │ │ ├── aoColumns.sClass.js │ │ │ ├── aoColumns.sName.js │ │ │ ├── aoColumns.sTitle.js │ │ │ ├── aoColumns.sWidth.js │ │ │ ├── aoSearchCols.js │ │ │ ├── asStripClasses.js │ │ │ ├── bAutoWidth.js │ │ │ ├── bFilter.js │ │ │ ├── bInfo.js │ │ │ ├── bLengthChange.js │ │ │ ├── bPaginate.js │ │ │ ├── bProcessing.js │ │ │ ├── bServerSide.js │ │ │ ├── bSort.js │ │ │ ├── bSortClasses.js │ │ │ ├── fnCreatedCell.js │ │ │ ├── fnCreatedRow.js │ │ │ ├── fnDrawCallback.js │ │ │ ├── fnHeaderCallback.js │ │ │ ├── fnInitComplete.js │ │ │ ├── fnRowCallback.js │ │ │ ├── fnServerData.js │ │ │ ├── iDisplayLength.js │ │ │ ├── oLanguage.oPaginate.js │ │ │ ├── oLanguage.sInfo.js │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ ├── oLanguage.sLoadingRecords.js │ │ │ ├── oLanguage.sProcessing.js │ │ │ ├── oLanguage.sSearch.js │ │ │ ├── oLanguage.sUrl.js │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ ├── oSearch.js │ │ │ ├── sAjaxDataProp.js │ │ │ ├── sAjaxDataProp2.js │ │ │ ├── sAjaxSource.js │ │ │ ├── sDom.js │ │ │ └── sPaginationType.js │ │ ├── 4_server-side │ │ │ ├── -iDraw.js │ │ │ ├── 2440.js │ │ │ ├── 2569.js │ │ │ ├── 2600.js │ │ │ ├── _zero_config.js │ │ │ ├── aaSorting.js │ │ │ ├── aaSortingFixed.js │ │ │ ├── aoColumns.bSearchable.js │ │ │ ├── aoColumns.bSortable.js │ │ │ ├── aoColumns.bUseRendered.js │ │ │ ├── aoColumns.bVisible.js │ │ │ ├── aoColumns.fnRender.js │ │ │ ├── aoColumns.sClass.js │ │ │ ├── aoColumns.sName.js │ │ │ ├── aoColumns.sTitle.js │ │ │ ├── aoColumns.sWidth.js │ │ │ ├── aoSearchCols.js │ │ │ ├── asStripClasses.js │ │ │ ├── bAutoWidth.js │ │ │ ├── bFilter.js │ │ │ ├── bInfiniteScroll.js │ │ │ ├── bInfo.js │ │ │ ├── bLengthChange.js │ │ │ ├── bPaginate.js │ │ │ ├── bProcessing.js │ │ │ ├── bServerSide.js │ │ │ ├── bSort.js │ │ │ ├── bSortClasses.js │ │ │ ├── fnCreatedCell.js │ │ │ ├── fnCreatedRow.js │ │ │ ├── fnDrawCallback.js │ │ │ ├── fnHeaderCallback.js │ │ │ ├── fnInitComplete.js │ │ │ ├── fnRowCallback.js │ │ │ ├── iDeferLoading.js │ │ │ ├── iDisplayLength.js │ │ │ ├── oLanguage.oPaginate.js │ │ │ ├── oLanguage.sInfo.js │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ ├── oLanguage.sProcessing.js │ │ │ ├── oLanguage.sSearch.js │ │ │ ├── oLanguage.sUrl.js │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ ├── oSearch.js │ │ │ ├── sAjaxDataProp.js │ │ │ ├── sAjaxSource.js │ │ │ ├── sDom.js │ │ │ └── sPaginationType.js │ │ ├── 5_ajax_objects │ │ │ ├── _zero_config.js │ │ │ ├── _zero_config_arrays_subobjects.js │ │ │ ├── _zero_config_deep.js │ │ │ ├── _zero_config_mDataProp.js │ │ │ ├── _zero_config_null_source.js │ │ │ ├── _zero_config_objects.js │ │ │ ├── _zero_config_objects_subarrays.js │ │ │ ├── aaSorting.js │ │ │ ├── aaSortingFixed.js │ │ │ ├── aoColumns.bSearchable.js │ │ │ ├── aoColumns.bSortable.js │ │ │ ├── aoColumns.bUseRendered.js │ │ │ ├── aoColumns.bVisible.js │ │ │ ├── aoColumns.fnRender.js │ │ │ ├── aoColumns.iDataSort.js │ │ │ ├── aoColumns.sClass.js │ │ │ ├── aoColumns.sName.js │ │ │ ├── aoColumns.sTitle.js │ │ │ ├── aoColumns.sWidth.js │ │ │ ├── aoSearchCols.js │ │ │ ├── asStripClasses.js │ │ │ ├── bAutoWidth.js │ │ │ ├── bFilter.js │ │ │ ├── bInfo.js │ │ │ ├── bLengthChange.js │ │ │ ├── bPaginate.js │ │ │ ├── bProcessing.js │ │ │ ├── bServerSide.js │ │ │ ├── bSort.js │ │ │ ├── bSortClasses.js │ │ │ ├── fnDrawCallback.js │ │ │ ├── fnHeaderCallback.js │ │ │ ├── fnInitComplete.js │ │ │ ├── fnRowCallback.js │ │ │ ├── fnServerData.js │ │ │ ├── iDisplayLength.js │ │ │ ├── oLanguage.oPaginate.js │ │ │ ├── oLanguage.sInfo.js │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ ├── oLanguage.sProcessing.js │ │ │ ├── oLanguage.sSearch.js │ │ │ ├── oLanguage.sUrl.js │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ ├── oSearch.js │ │ │ ├── sAjaxSource.js │ │ │ ├── sDom.js │ │ │ └── sPaginationType.js │ │ └── 6_delayed_rendering │ │ │ ├── _zero_config.js │ │ │ ├── aaSorting.js │ │ │ ├── aaSortingFixed.js │ │ │ ├── aoColumns.bSearchable.js │ │ │ ├── aoColumns.bSortable.js │ │ │ ├── aoColumns.bUseRendered.js │ │ │ ├── aoColumns.bVisible.js │ │ │ ├── aoColumns.fnRender.js │ │ │ ├── aoColumns.iDataSort.js │ │ │ ├── aoColumns.sClass.js │ │ │ ├── aoColumns.sName.js │ │ │ ├── aoColumns.sTitle.js │ │ │ ├── aoColumns.sWidth.js │ │ │ ├── aoSearchCols.js │ │ │ ├── asStripClasses.js │ │ │ ├── bAutoWidth.js │ │ │ ├── bFilter.js │ │ │ ├── bInfo.js │ │ │ ├── bLengthChange.js │ │ │ ├── bPaginate.js │ │ │ ├── bProcessing.js │ │ │ ├── bServerSide.js │ │ │ ├── bSort.js │ │ │ ├── bSortClasses.js │ │ │ ├── fnDrawCallback.js │ │ │ ├── fnHeaderCallback.js │ │ │ ├── fnInitComplete.js │ │ │ ├── fnRowCallback.js │ │ │ ├── fnServerData.js │ │ │ ├── iDisplayLength.js │ │ │ ├── oLanguage.oPaginate.js │ │ │ ├── oLanguage.sInfo.js │ │ │ ├── oLanguage.sInfoEmpty.js │ │ │ ├── oLanguage.sInfoPostFix.js │ │ │ ├── oLanguage.sLengthMenu.js │ │ │ ├── oLanguage.sProcessing.js │ │ │ ├── oLanguage.sSearch.js │ │ │ ├── oLanguage.sUrl.js │ │ │ ├── oLanguage.sZeroRecords.js │ │ │ ├── oSearch.js │ │ │ ├── sAjaxDataProp.js │ │ │ ├── sAjaxDataProp2.js │ │ │ ├── sAjaxSource.js │ │ │ ├── sDom.js │ │ │ └── sPaginationType.js │ │ └── unit_test.js │ ├── datepicker.css │ ├── easypiechart │ ├── examples │ │ ├── excanvas.js │ │ ├── index.html │ │ └── style.css │ ├── jquery.easy-pie-chart.css │ └── jquery.easy-pie-chart.js │ ├── flot │ ├── .gitignore │ ├── .travis.yml │ ├── API.md │ ├── CONTRIBUTING.md │ ├── FAQ.md │ ├── LICENSE.txt │ ├── Makefile │ ├── NEWS.md │ ├── PLUGINS.md │ ├── README.md │ ├── component.json │ ├── examples │ │ ├── ajax │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ ├── data-eu-gdp-growth.json │ │ │ ├── data-japan-gdp-growth.json │ │ │ ├── data-usa-gdp-growth.json │ │ │ └── index.html │ │ ├── annotating │ │ │ └── index.html │ │ ├── axes-interacting │ │ │ └── index.html │ │ ├── axes-multiple │ │ │ └── index.html │ │ ├── axes-time-zones │ │ │ ├── date.js │ │ │ ├── index.html │ │ │ └── tz │ │ │ │ ├── africa │ │ │ │ ├── antarctica │ │ │ │ ├── asia │ │ │ │ ├── australasia │ │ │ │ ├── backward │ │ │ │ ├── etcetera │ │ │ │ ├── europe │ │ │ │ ├── factory │ │ │ │ ├── iso3166.tab │ │ │ │ ├── leapseconds │ │ │ │ ├── northamerica │ │ │ │ ├── pacificnew │ │ │ │ ├── solar87 │ │ │ │ ├── solar88 │ │ │ │ ├── solar89 │ │ │ │ ├── southamerica │ │ │ │ ├── systemv │ │ │ │ ├── yearistype.sh │ │ │ │ └── zone.tab │ │ ├── axes-time │ │ │ └── index.html │ │ ├── background.png │ │ ├── basic-canvas.html │ │ ├── basic-options │ │ │ └── index.html │ │ ├── basic-usage │ │ │ └── index.html │ │ ├── canvas │ │ │ └── index.html │ │ ├── categories │ │ │ └── index.html │ │ ├── examples.css │ │ ├── image │ │ │ ├── hs-2004-27-a-large-web.jpg │ │ │ └── index.html │ │ ├── index.html │ │ ├── interacting │ │ │ └── index.html │ │ ├── navigate │ │ │ ├── arrow-down.gif │ │ │ ├── arrow-left.gif │ │ │ ├── arrow-right.gif │ │ │ ├── arrow-up.gif │ │ │ └── index.html │ │ ├── percentiles │ │ │ └── index.html │ │ ├── realtime │ │ │ └── index.html │ │ ├── resize │ │ │ └── index.html │ │ ├── selection │ │ │ └── index.html │ │ ├── series-errorbars │ │ │ └── index.html │ │ ├── series-pie │ │ │ └── index.html │ │ ├── series-toggle │ │ │ └── index.html │ │ ├── series-types │ │ │ └── index.html │ │ ├── shared │ │ │ └── jquery-ui │ │ │ │ └── jquery-ui.min.css │ │ ├── stacking │ │ │ └── index.html │ │ ├── symbols │ │ │ └── index.html │ │ ├── threshold │ │ │ └── index.html │ │ ├── tracking │ │ │ └── index.html │ │ ├── visitors │ │ │ └── index.html │ │ └── zooming │ │ │ └── index.html │ ├── excanvas.js │ ├── excanvas.min.js │ ├── flot.jquery.json │ ├── jquery.colorhelpers.js │ ├── jquery.flot.canvas.js │ ├── jquery.flot.categories.js │ ├── jquery.flot.crosshair.js │ ├── jquery.flot.errorbars.js │ ├── jquery.flot.fillbetween.js │ ├── jquery.flot.image.js │ ├── jquery.flot.js │ ├── jquery.flot.navigate.js │ ├── jquery.flot.pie.js │ ├── jquery.flot.resize.js │ ├── jquery.flot.selection.js │ ├── jquery.flot.stack.js │ ├── jquery.flot.symbol.js │ ├── jquery.flot.threshold.js │ ├── jquery.flot.time.js │ ├── jquery.js │ └── package.json │ ├── fullcalendar │ ├── fullcalendar.css │ ├── fullcalendar.js │ ├── fullcalendar.min.js │ ├── fullcalendar.print.css │ └── gcal.js │ ├── jGrowl │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── examples │ │ ├── iphone.png │ │ ├── jgrowl-pool.html │ │ ├── jgrowl.html │ │ ├── multiple-containers.html │ │ ├── sideways.html │ │ └── smoke.png │ ├── jgrowl.jquery.json │ ├── jquery.jgrowl.css │ └── jquery.jgrowl.js │ ├── jquery-1.9.1.js │ ├── jquery-1.9.1.min.js │ ├── jquery-ui-1.10.3.js │ ├── jquery.knob.js │ ├── jquery.uniform.min.js │ ├── modernizr-2.6.2-respond-1.1.0.min.js │ ├── morris │ ├── morris.css │ ├── morris.js │ └── morris.min.js │ ├── raphael-min.js │ ├── tinymce │ ├── LICENSE.TXT │ ├── changelog.txt │ └── js │ │ └── tinymce │ │ ├── jquery.tinymce.min.js │ │ ├── langs │ │ └── readme.md │ │ ├── license.txt │ │ ├── plugins │ │ ├── advlist │ │ │ └── plugin.min.js │ │ ├── anchor │ │ │ └── plugin.min.js │ │ ├── autolink │ │ │ └── plugin.min.js │ │ ├── autoresize │ │ │ └── plugin.min.js │ │ ├── autosave │ │ │ └── plugin.min.js │ │ ├── bbcode │ │ │ └── plugin.min.js │ │ ├── charmap │ │ │ └── plugin.min.js │ │ ├── code │ │ │ └── plugin.min.js │ │ ├── compat3x │ │ │ ├── editable_selects.js │ │ │ ├── form_utils.js │ │ │ ├── mctabs.js │ │ │ ├── tiny_mce_popup.js │ │ │ └── validate.js │ │ ├── contextmenu │ │ │ └── plugin.min.js │ │ ├── directionality │ │ │ └── plugin.min.js │ │ ├── emoticons │ │ │ ├── img │ │ │ │ ├── smiley-cool.gif │ │ │ │ ├── smiley-cry.gif │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ ├── smiley-frown.gif │ │ │ │ ├── smiley-innocent.gif │ │ │ │ ├── smiley-kiss.gif │ │ │ │ ├── smiley-laughing.gif │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ ├── smiley-sealed.gif │ │ │ │ ├── smiley-smile.gif │ │ │ │ ├── smiley-surprised.gif │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ ├── smiley-undecided.gif │ │ │ │ ├── smiley-wink.gif │ │ │ │ └── smiley-yell.gif │ │ │ └── plugin.min.js │ │ ├── example │ │ │ └── plugin.min.js │ │ ├── example_dependency │ │ │ └── plugin.min.js │ │ ├── fullpage │ │ │ └── plugin.min.js │ │ ├── fullscreen │ │ │ └── plugin.min.js │ │ ├── hr │ │ │ └── plugin.min.js │ │ ├── image │ │ │ └── plugin.min.js │ │ ├── importcss │ │ │ └── plugin.min.js │ │ ├── insertdatetime │ │ │ └── plugin.min.js │ │ ├── layer │ │ │ └── plugin.min.js │ │ ├── legacyoutput │ │ │ └── plugin.min.js │ │ ├── link │ │ │ └── plugin.min.js │ │ ├── lists │ │ │ └── plugin.min.js │ │ ├── media │ │ │ ├── moxieplayer.swf │ │ │ └── plugin.min.js │ │ ├── nonbreaking │ │ │ └── plugin.min.js │ │ ├── noneditable │ │ │ └── plugin.min.js │ │ ├── pagebreak │ │ │ └── plugin.min.js │ │ ├── paste │ │ │ └── plugin.min.js │ │ ├── preview │ │ │ └── plugin.min.js │ │ ├── print │ │ │ └── plugin.min.js │ │ ├── save │ │ │ └── plugin.min.js │ │ ├── searchreplace │ │ │ └── plugin.min.js │ │ ├── spellchecker │ │ │ └── plugin.min.js │ │ ├── tabfocus │ │ │ └── plugin.min.js │ │ ├── table │ │ │ └── plugin.min.js │ │ ├── template │ │ │ └── plugin.min.js │ │ ├── textcolor │ │ │ └── plugin.min.js │ │ ├── visualblocks │ │ │ ├── css │ │ │ │ └── visualblocks.css │ │ │ └── plugin.min.js │ │ ├── visualchars │ │ │ └── plugin.min.js │ │ └── wordcount │ │ │ └── plugin.min.js │ │ ├── skins │ │ └── lightgray │ │ │ ├── content.inline.min.css │ │ │ ├── content.min.css │ │ │ ├── fonts │ │ │ ├── icomoon-small.eot │ │ │ ├── icomoon-small.svg │ │ │ ├── icomoon-small.ttf │ │ │ ├── icomoon-small.woff │ │ │ ├── icomoon.eot │ │ │ ├── icomoon.svg │ │ │ ├── icomoon.ttf │ │ │ ├── icomoon.woff │ │ │ └── readme.md │ │ │ ├── img │ │ │ ├── anchor.gif │ │ │ ├── loader.gif │ │ │ ├── object.gif │ │ │ ├── trans.gif │ │ │ └── wline.gif │ │ │ ├── skin.ie7.min.css │ │ │ └── skin.min.css │ │ ├── themes │ │ └── modern │ │ │ └── theme.min.js │ │ └── tinymce.min.js │ ├── uniform.default.css │ ├── wizard │ ├── jquery.bootstrap.wizard.js │ └── jquery.bootstrap.wizard.min.js │ └── wysiwyg │ ├── bootstrap-wysihtml5.css │ ├── bootstrap-wysihtml5.js │ └── wysihtml5-0.3.0.js └── test.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/App.config -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/ApplicationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/ApplicationBase.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/Cik.MagazineWeb.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/Cik.MagazineWeb.Application.csproj -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/DtoBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/DtoBase.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/Dtos/CategoryDetailsDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/Dtos/CategoryDetailsDto.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/Dtos/CategorySummaryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/Dtos/CategorySummaryDto.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/Dtos/ItemDetailsDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/Dtos/ItemDetailsDto.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/Dtos/ItemSummaryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/Dtos/ItemSummaryDto.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/IMagazineApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/IMagazineApplication.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/MagazineApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/MagazineApplication.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/MagazineClientApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/MagazineClientApplication.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/Profiles/CategoryProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/Profiles/CategoryProfile.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/Services/ICategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/Services/ICategoryService.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/Services/IItemSummaryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/Services/IItemSummaryService.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/Services/Impl/CategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/Services/Impl/CategoryService.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/Services/Impl/ItemSummaryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/Services/Impl/ItemSummaryService.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/ViewModels/CategoryMenuViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/ViewModels/CategoryMenuViewModel.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/ViewModels/CategoryPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/ViewModels/CategoryPageViewModel.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/ViewModels/FrontPageViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/ViewModels/FrontPageViewModelBase.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/ViewModels/HomePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/ViewModels/HomePageViewModel.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/ViewModels/ItemDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/ViewModels/ItemDetailsViewModel.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/ViewModels/ItemSummaryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/ViewModels/ItemSummaryViewModel.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Application/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Application/packages.config -------------------------------------------------------------------------------- /Cik.MagazineWeb.Domain/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Domain/App.config -------------------------------------------------------------------------------- /Cik.MagazineWeb.Domain/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Domain/Category.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Domain/Cik.MagazineWeb.DomainModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Domain/Cik.MagazineWeb.DomainModel.csproj -------------------------------------------------------------------------------- /Cik.MagazineWeb.Domain/IMagazineWebRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Domain/IMagazineWebRepository.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Domain/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Domain/Item.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Domain/ItemContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Domain/ItemContent.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Domain/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Domain/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.Domain/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.Domain/packages.config -------------------------------------------------------------------------------- /Cik.MagazineWeb.SchemaAndDataCreation/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.SchemaAndDataCreation/App.config -------------------------------------------------------------------------------- /Cik.MagazineWeb.SchemaAndDataCreation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.SchemaAndDataCreation/Program.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.SchemaAndDataCreation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.SchemaAndDataCreation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.SchemaAndDataCreation/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.SchemaAndDataCreation/packages.config -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/App_Data/MWDB.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/App_Data/MWDB.mdf -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/App_Data/MWDB_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/App_Data/MWDB_log.ldf -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/App_Start/GlobalConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/App_Start/GlobalConfig.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Areas/Admin/AdminAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Areas/Admin/AdminAreaRegistration.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Areas/Admin/Views/Dashboard/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Areas/Admin/Views/Dashboard/Index.cshtml -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Areas/Admin/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Areas/Admin/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Areas/Admin/Views/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Areas/Admin/Views/web.config -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Cik.MagazineWeb.WebApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Cik.MagazineWeb.WebApp.csproj -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/Site.css -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/andia-agency/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/andia-agency/assets/css/style.css -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/andia-agency/assets/ico/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/andia-agency/assets/ico/Thumbs.db -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/andia-agency/assets/img/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/andia-agency/assets/img/Thumbs.db -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/andia-agency/assets/img/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/andia-agency/assets/img/line.png -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/andia-agency/assets/img/line1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/andia-agency/assets/img/line1.jpg -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/andia-agency/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/andia-agency/assets/img/logo.png -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/andia-agency/assets/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/andia-agency/assets/js/scripts.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/app.css -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/bootstrap.css -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/bootstrap.min.css -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/css/font-awesome.css -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/css/font-awesome.min.css -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/docs.css -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/pygments-manni.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/pygments-manni.css -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Content/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Content/style.css -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Controllers/AccountController.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Global.asax -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Global.asax.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Models/AccountViewModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Models/AccountViewModels.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Models/IdentityModels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Models/IdentityModels.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Project_Readme.html -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/_references.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-animate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-animate.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-animate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-animate.min.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-animate.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-animate.min.js.map -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-cookies.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-cookies.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-cookies.min.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-cookies.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-cookies.min.js.map -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-loader.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-loader.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-loader.min.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-loader.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-loader.min.js.map -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-mocks.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-resource.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-resource.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-resource.min.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-resource.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-resource.min.js.map -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-route.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-route.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-route.min.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-route.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-route.min.js.map -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-sanitize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-sanitize.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-sanitize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-sanitize.min.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-sanitize.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-sanitize.min.js.map -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-scenario.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-scenario.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-touch.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-touch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-touch.min.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular-touch.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular-touch.min.js.map -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular.min.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/angular.min.js.map -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/bootstrap.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/errors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/errors.json -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_af-na.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_af-na.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_af-za.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_af-za.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_af.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_am-et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_am-et.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_am.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-001.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-001.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-ae.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-ae.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-bh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-bh.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-dz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-dz.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-eg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-eg.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-iq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-iq.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-jo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-jo.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-kw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-kw.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-lb.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-ly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-ly.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-ma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-ma.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-om.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-om.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-qa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-qa.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-sa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-sa.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-sd.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-sy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-sy.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-tn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-tn.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-ye.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar-ye.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ar.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_bg-bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_bg-bg.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_bg.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_bn-bd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_bn-bd.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_bn-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_bn-in.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_bn.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ca-ad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ca-ad.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ca-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ca-es.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ca.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_cs-cz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_cs-cz.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_cs.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_da-dk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_da-dk.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_da.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_de-at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_de-at.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_de-be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_de-be.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_de-ch.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_de-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_de-de.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_de-li.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_de-li.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_de-lu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_de-lu.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_de.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_el-cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_el-cy.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_el-gr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_el-gr.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_el.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-as.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-as.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-au.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-bb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-bb.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-be.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-bm.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-bw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-bw.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-bz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-bz.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-ca.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-dsrt-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-dsrt-us.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-dsrt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-dsrt.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-fm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-fm.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-gb.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-gu.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-gy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-gy.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-hk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-hk.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-ie.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-in.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-iso.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-iso.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-jm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-jm.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-mh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-mh.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-mp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-mp.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-mt.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-mu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-mu.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-na.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-na.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-nz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-nz.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-ph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-ph.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-pk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-pk.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-pr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-pr.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-pw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-pw.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-sg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-sg.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-tc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-tc.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-tt.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-um.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-um.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-us.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-vg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-vg.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-vi.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-za.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-za.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-zw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en-zw.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_en.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-419.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-419.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-ar.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-bo.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-cl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-cl.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-co.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-co.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-cr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-cr.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-do.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-do.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-ea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-ea.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-ec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-ec.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-es.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-gq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-gq.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-gt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-gt.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-hn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-hn.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-ic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-ic.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-mx.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-ni.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-ni.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-pa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-pa.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-pe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-pe.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-pr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-pr.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-py.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-py.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-sv.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-us.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-uy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-uy.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-ve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es-ve.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_es.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_et-ee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_et-ee.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_et.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_eu-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_eu-es.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_eu.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fa-af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fa-af.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fa-ir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fa-ir.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fa.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fi-fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fi-fi.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fi.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fil-ph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fil-ph.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fil.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-be.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-bf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-bf.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-bi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-bi.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-bj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-bj.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-bl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-bl.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-ca.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-cd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-cd.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-cf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-cf.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-cg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-cg.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-ch.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-ci.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-cm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-cm.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-dj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-dj.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-fr.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-ga.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-gf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-gf.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-gn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-gn.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-gp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-gp.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-gq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-gq.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-km.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-lu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-lu.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-mc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-mc.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-mf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-mf.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-mg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-mg.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-ml.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-mq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-mq.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-ne.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-re.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-re.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-yt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr-yt.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_fr.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_gl-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_gl-es.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_gl.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_gsw-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_gsw-ch.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_gsw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_gsw.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_gu-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_gu-in.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_gu.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_he-il.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_he-il.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_he.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_hi-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_hi-in.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_hi.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_hr-hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_hr-hr.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_hr.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_hu-hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_hu-hu.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_hu.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_id-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_id-id.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_id.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_in.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_is-is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_is-is.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_is.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_it-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_it-it.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_it-sm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_it-sm.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_it.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_iw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_iw.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ja-jp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ja-jp.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ja.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_kn-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_kn-in.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_kn.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ko-kr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ko-kr.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ko.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ln-cd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ln-cd.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ln.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ln.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_lt-lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_lt-lt.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_lt.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_lv-lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_lv-lv.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_lv.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ml-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ml-in.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ml.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_mr-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_mr-in.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_mr.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ms-my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ms-my.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ms.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_mt-mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_mt-mt.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_mt.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_nl-cw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_nl-cw.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_nl-nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_nl-nl.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_nl-sx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_nl-sx.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_nl.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_no.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_or-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_or-in.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_or.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_or.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_pl-pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_pl-pl.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_pl.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_pt-br.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_pt-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_pt-pt.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_pt.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ro-ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ro-ro.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ro.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ru-ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ru-ru.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ru.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sk-sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sk-sk.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sk.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sl-si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sl-si.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sl.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sq-al.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sq-al.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sq.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sr-cyrl-rs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sr-cyrl-rs.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sr-latn-rs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sr-latn-rs.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sr.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sv-se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sv-se.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sv.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sw-tz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sw-tz.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_sw.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ta-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ta-in.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ta.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_te-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_te-in.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_te.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_te.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_th-th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_th-th.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_th.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_tl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_tl.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_tr-tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_tr-tr.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_tr.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_uk-ua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_uk-ua.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_uk.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ur-pk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ur-pk.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_ur.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_vi-vn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_vi-vn.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_vi.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_zh-cn.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_zh-hans-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_zh-hans-cn.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_zh-hk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_zh-hk.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_zh-tw.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_zh.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_zu-za.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_zu-za.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_zu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/i18n/angular-locale_zu.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/MIT-LICENSE.txt -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/README.txt -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/changes.txt -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/copyright.txt -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/excanvas.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/excanvas.min.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/gpl-2.0.txt -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/jqPlotCssStyling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/jqPlotCssStyling.txt -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/jqPlotOptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/jqPlotOptions.txt -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/jquery.jqplot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/jquery.jqplot.css -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/jquery.jqplot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/jquery.jqplot.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/jquery.jqplot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/jquery.jqplot.min.css -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/jquery.jqplot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/jquery.jqplot.min.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/jquery.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/jquery.min.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/optionsTutorial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/optionsTutorial.txt -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/plugins/jqplot.ciParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/plugins/jqplot.ciParser.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/plugins/jqplot.cursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/plugins/jqplot.cursor.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/plugins/jqplot.dragable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/plugins/jqplot.dragable.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/plugins/jqplot.json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/plugins/jqplot.json2.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/plugins/jqplot.mobile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/plugins/jqplot.mobile.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jqPlot/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jqPlot/usage.txt -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/q.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/q.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/q.min.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/respond.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/respond.min.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/to$q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/to$q.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Scripts/version.json -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Scripts/version.txt: -------------------------------------------------------------------------------- 1 | 1.2.0-rc.2 -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Startup.cs -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Upload/img/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Upload/img/sample.png -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Views/Account/ExternalLoginFailure.cshtml -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Views/Account/Manage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Views/Account/Manage.cshtml -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Views/Account/_SetPasswordPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Views/Account/_SetPasswordPartial.cshtml -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Views/Home/Category.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Views/Home/Category.cshtml -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Views/Home/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Views/Home/Details.cshtml -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Views/Home/_TopMenu.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Views/Home/_TopMenu.cshtml -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Views/Web.config -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Web.Debug.config -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Web.Release.config -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/Web.config -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/app/app.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/app/controllers/dashboardController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/app/controllers/dashboardController.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/app/controllers/item/itemsController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/app/controllers/item/itemsController.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/app/controllers/navbarController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/app/controllers/navbarController.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/app/directives/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/app/directives/chart.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/app/services/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/app/services/config.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/app/services/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/app/services/logger.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/app/services/routeResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/app/services/routeResolver.js -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/app/views/category/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/app/views/category/categories.html -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/app/views/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/app/views/dashboard.html -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/app/views/item/items.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/app/views/item/items.html -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/favicon.ico -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Cik.MagazineWeb.WebApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Cik.MagazineWeb.WebApp/packages.config -------------------------------------------------------------------------------- /Framework/Cik.Web.Utilities/ApiControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Framework/Cik.Web.Utilities/ApiControllerBase.cs -------------------------------------------------------------------------------- /Framework/Cik.Web.Utilities/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Framework/Cik.Web.Utilities/App.config -------------------------------------------------------------------------------- /Framework/Cik.Web.Utilities/Cik.Web.Utilities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Framework/Cik.Web.Utilities/Cik.Web.Utilities.csproj -------------------------------------------------------------------------------- /Framework/Cik.Web.Utilities/ControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Framework/Cik.Web.Utilities/ControllerBase.cs -------------------------------------------------------------------------------- /Framework/Cik.Web.Utilities/DateTime/DatetimeRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Framework/Cik.Web.Utilities/DateTime/DatetimeRegion.cs -------------------------------------------------------------------------------- /Framework/Cik.Web.Utilities/Encyption/IEncrypting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Framework/Cik.Web.Utilities/Encyption/IEncrypting.cs -------------------------------------------------------------------------------- /Framework/Cik.Web.Utilities/Encyption/Impl/SimpleEncryptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Framework/Cik.Web.Utilities/Encyption/Impl/SimpleEncryptor.cs -------------------------------------------------------------------------------- /Framework/Cik.Web.Utilities/Extensions/AutoMapperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Framework/Cik.Web.Utilities/Extensions/AutoMapperExtensions.cs -------------------------------------------------------------------------------- /Framework/Cik.Web.Utilities/Extensions/AutofacExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Framework/Cik.Web.Utilities/Extensions/AutofacExtensions.cs -------------------------------------------------------------------------------- /Framework/Cik.Web.Utilities/Extensions/ConvertExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Framework/Cik.Web.Utilities/Extensions/ConvertExtensions.cs -------------------------------------------------------------------------------- /Framework/Cik.Web.Utilities/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Framework/Cik.Web.Utilities/Guard.cs -------------------------------------------------------------------------------- /Framework/Cik.Web.Utilities/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Framework/Cik.Web.Utilities/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Framework/Cik.Web.Utilities/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Framework/Cik.Web.Utilities/packages.config -------------------------------------------------------------------------------- /Infrastructure/Cik.MagazineWeb.Init/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Infrastructure/Cik.MagazineWeb.Init/App.config -------------------------------------------------------------------------------- /Infrastructure/Cik.MagazineWeb.Init/Cik.MagazineWeb.Init.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Infrastructure/Cik.MagazineWeb.Init/Cik.MagazineWeb.Init.csproj -------------------------------------------------------------------------------- /Infrastructure/Cik.MagazineWeb.Init/CoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Infrastructure/Cik.MagazineWeb.Init/CoreModule.cs -------------------------------------------------------------------------------- /Infrastructure/Cik.MagazineWeb.Init/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Infrastructure/Cik.MagazineWeb.Init/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Infrastructure/Cik.MagazineWeb.Init/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/Infrastructure/Cik.MagazineWeb.Init/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/LICENSE -------------------------------------------------------------------------------- /MagazineWebSolution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/MagazineWebSolution.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/README.md -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/css/main-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/css/main-responsive.css -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/css/main.css -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/css/theme_black_and_white.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/css/theme_black_and_white.css -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/css/theme_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/css/theme_dark.css -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/css/theme_green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/css/theme_green.css -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/css/theme_light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/css/theme_light.css -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/css/theme_navy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/css/theme_navy.css -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/fonts/fonts/Descr.WD3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/fonts/fonts/Descr.WD3 -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/fonts/fonts/clip-font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/fonts/fonts/clip-font.eot -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/fonts/fonts/clip-font.eot@: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/fonts/fonts/clip-font.eot@ -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/fonts/fonts/clip-font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/fonts/fonts/clip-font.svg -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/fonts/fonts/clip-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/fonts/fonts/clip-font.ttf -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/fonts/fonts/clip-font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/fonts/fonts/clip-font.woff -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/fonts/fonts/clip-fontd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/fonts/fonts/clip-fontd41d.eot -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/fonts/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/fonts/style.css -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/Descr.WD3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/Descr.WD3 -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/avatar-1-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/avatar-1-small.jpg -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/avatar-1-xl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/avatar-1-xl.jpg -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/avatar-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/avatar-1.jpg -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/avatar-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/avatar-2.jpg -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/avatar-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/avatar-3.jpg -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/avatar-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/avatar-4.jpg -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/avatar-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/avatar-5.jpg -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/back-error-page.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/back-error-page.jpg -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/bg.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/bg_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/bg_2.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/bg_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/bg_3.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/bg_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/bg_4.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/bg_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/bg_5.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/blackandwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/blackandwhite.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/darkgrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/darkgrey.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/green.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/lightgrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/lightgrey.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/loading.gif -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/menu-white-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/menu-white-arrow.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/navy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/navy.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/images/timer-piece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/images/timer-piece.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/charts.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/form-calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/form-calendar.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/form-dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/form-dropzone.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/form-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/form-elements.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/form-image-cropping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/form-image-cropping.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/form-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/form-validation.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/form-wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/form-wizard.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/index.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/jquery.min.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/login.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/main.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/maps.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/table-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/table-data.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/ui-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/ui-buttons.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/ui-elements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/ui-elements.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/ui-modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/ui-modals.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/ui-nestable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/ui-nestable.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/ui-sliders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/ui-sliders.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/ui-treeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/ui-treeview.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/utility-coming-soon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/utility-coming-soon.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/js/utility-error404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/js/utility-error404.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/Jcrop/css/Jcrop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/Jcrop/css/Jcrop.gif -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/Jcrop/js/jquery.Jcrop.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/Jcrop/js/jquery.Jcrop.min.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/Jcrop/js/jquery.color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/Jcrop/js/jquery.color.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/blockUI/jquery.blockUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/blockUI/jquery.blockUI.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/ckeditor/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/ckeditor/adapters/jquery.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/ckeditor/contents.css -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/flot/jquery.flot.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/flot/jquery.flot.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/flot/jquery.flot.pie.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/flot/jquery.flot.resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/flot/jquery.flot.resize.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/gmaps/gmaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/gmaps/gmaps.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/gritter/images/gritter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/gritter/images/gritter.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/gritter/images/ie-spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/gritter/images/ie-spacer.gif -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/jquery.icheck.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/jquery.icheck.min.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/all.css -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/flat/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/flat/_all.css -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/flat/aero.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/flat/blue.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/flat/flat.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/flat/green.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/flat/grey.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/flat/orange.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/flat/pink.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/flat/purple.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/flat/red.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/flat/red@2x.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/flat/yellow.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/line/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/line/_all.css -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/line/line.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/minimal/red.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/square/_all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/square/_all.css -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/square/aero.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/square/blue.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/square/grey.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/square/pink.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/iCheck/skins/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/iCheck/skins/square/red.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/nestable/jquery.nestable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/nestable/jquery.nestable.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/rainyday/rainyday.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/rainyday/rainyday.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/select2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/select2/select2-spinner.gif -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/select2/select2.css -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/select2/select2.min.js -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/select2/select2.png -------------------------------------------------------------------------------- /_oldprojects/clipone/assets/plugins/select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/assets/plugins/select2/select2x2.png -------------------------------------------------------------------------------- /_oldprojects/clipone/charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/charts.html -------------------------------------------------------------------------------- /_oldprojects/clipone/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/favicon.ico -------------------------------------------------------------------------------- /_oldprojects/clipone/form_dropzone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/form_dropzone.html -------------------------------------------------------------------------------- /_oldprojects/clipone/form_elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/form_elements.html -------------------------------------------------------------------------------- /_oldprojects/clipone/form_image_cropping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/form_image_cropping.html -------------------------------------------------------------------------------- /_oldprojects/clipone/form_inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/form_inline.html -------------------------------------------------------------------------------- /_oldprojects/clipone/form_multiple_upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/form_multiple_upload.html -------------------------------------------------------------------------------- /_oldprojects/clipone/form_validation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/form_validation.html -------------------------------------------------------------------------------- /_oldprojects/clipone/form_wizard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/form_wizard.html -------------------------------------------------------------------------------- /_oldprojects/clipone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/index.html -------------------------------------------------------------------------------- /_oldprojects/clipone/login_example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/login_example1.html -------------------------------------------------------------------------------- /_oldprojects/clipone/login_example2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/login_example2.html -------------------------------------------------------------------------------- /_oldprojects/clipone/maps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/maps.html -------------------------------------------------------------------------------- /_oldprojects/clipone/pages_blank_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/pages_blank_page.html -------------------------------------------------------------------------------- /_oldprojects/clipone/pages_calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/pages_calendar.html -------------------------------------------------------------------------------- /_oldprojects/clipone/pages_messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/pages_messages.html -------------------------------------------------------------------------------- /_oldprojects/clipone/pages_timeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/pages_timeline.html -------------------------------------------------------------------------------- /_oldprojects/clipone/pages_user_profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/pages_user_profile.html -------------------------------------------------------------------------------- /_oldprojects/clipone/table_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/table_data.html -------------------------------------------------------------------------------- /_oldprojects/clipone/table_responsive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/table_responsive.html -------------------------------------------------------------------------------- /_oldprojects/clipone/table_static.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/table_static.html -------------------------------------------------------------------------------- /_oldprojects/clipone/ui_buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/ui_buttons.html -------------------------------------------------------------------------------- /_oldprojects/clipone/ui_elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/ui_elements.html -------------------------------------------------------------------------------- /_oldprojects/clipone/ui_modals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/ui_modals.html -------------------------------------------------------------------------------- /_oldprojects/clipone/ui_nestable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/ui_nestable.html -------------------------------------------------------------------------------- /_oldprojects/clipone/ui_sliders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/ui_sliders.html -------------------------------------------------------------------------------- /_oldprojects/clipone/ui_tabs_accordions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/ui_tabs_accordions.html -------------------------------------------------------------------------------- /_oldprojects/clipone/ui_tabs_accordions132b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/ui_tabs_accordions132b.html -------------------------------------------------------------------------------- /_oldprojects/clipone/ui_tabs_accordionsb06d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/ui_tabs_accordionsb06d.html -------------------------------------------------------------------------------- /_oldprojects/clipone/ui_treeview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/ui_treeview.html -------------------------------------------------------------------------------- /_oldprojects/clipone/ui_typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/ui_typography.html -------------------------------------------------------------------------------- /_oldprojects/clipone/utility_404_example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/utility_404_example1.html -------------------------------------------------------------------------------- /_oldprojects/clipone/utility_404_example2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/utility_404_example2.html -------------------------------------------------------------------------------- /_oldprojects/clipone/utility_404_example3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/utility_404_example3.html -------------------------------------------------------------------------------- /_oldprojects/clipone/utility_500_example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/utility_500_example1.html -------------------------------------------------------------------------------- /_oldprojects/clipone/utility_500_example2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/utility_500_example2.html -------------------------------------------------------------------------------- /_oldprojects/clipone/utility_coming_soon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/utility_coming_soon.html -------------------------------------------------------------------------------- /_oldprojects/clipone/utility_faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/utility_faq.html -------------------------------------------------------------------------------- /_oldprojects/clipone/utility_lock_screen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/utility_lock_screen.html -------------------------------------------------------------------------------- /_oldprojects/clipone/utility_pricing_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/clipone/utility_pricing_table.html -------------------------------------------------------------------------------- /_oldprojects/football-scores-lite/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/football-scores-lite/.nuget/NuGet.Config -------------------------------------------------------------------------------- /_oldprojects/football-scores-lite/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/football-scores-lite/.nuget/NuGet.exe -------------------------------------------------------------------------------- /_oldprojects/football-scores-lite/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/football-scores-lite/.nuget/NuGet.targets -------------------------------------------------------------------------------- /_oldprojects/football-scores-lite/MainSolution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/football-scores-lite/MainSolution.sln -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/css/bootstrap.css -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/css/bootstrap.min.css -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/css/docs.css -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/css/font-awesome.css -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/css/font-awesome.min.css -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/css/pygments-manni.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/css/pygments-manni.css -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/css/site.css -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/images/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/images/sample.png -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/index.html -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/bootstrap.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/bootstrap.min.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/README.md -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/adapters/jquery.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/build-config.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/config.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/contents.css -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/af.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/da.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/de.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/el.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/en-au.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/en-ca.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/en-gb.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/en.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/es.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/et.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/fr-ca.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/he.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/id.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/is.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/it.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/km.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/no.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/pt-br.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/si.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/sr-latn.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/th.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/samples/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/samples/ajax.html -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/samples/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/samples/api.html -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/samples/appendto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/samples/appendto.html -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/samples/index.html -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/samples/inlineall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/samples/inlineall.html -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/samples/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/samples/jquery.html -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/samples/readonly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/samples/readonly.html -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/samples/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/samples/sample.css -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/samples/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/samples/sample.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/samples/uicolor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/samples/uicolor.html -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/ckeditor/styles.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/jquery-1.10.2.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /_oldprojects/new-admin-layout/js/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/new-admin-layout/js/modernizr-2.6.2.js -------------------------------------------------------------------------------- /_oldprojects/planning-poker/Cik.PlanningPoker.WebSolution/Cik.PP.Web/Scripts/vendors/bootstrap-wysihtml5/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .c9revisions 3 | /*.project 4 | -------------------------------------------------------------------------------- /_oldprojects/planning-poker/Cik.PlanningPoker.WebSolution/Cik.PP.Web/Scripts/vendors/bootstrap-wysihtml5/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.2 -------------------------------------------------------------------------------- /_oldprojects/planning-poker/Cik.PlanningPoker.WebSolution/Cik.PP.Web/Scripts/vendors/bootstrap-wysihtml5/test/lib: -------------------------------------------------------------------------------- 1 | ../lib/ -------------------------------------------------------------------------------- /_oldprojects/planning-poker/Cik.PlanningPoker.WebSolution/Cik.PP.Web/Scripts/vendors/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /_oldprojects/planning-poker/Cik.PlanningPoker.WebSolution/Cik.PP.Web/Scripts/vendors/jGrowl/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /_oldprojects/planning-poker/PlanningPoker/1- register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/planning-poker/PlanningPoker/1- register.png -------------------------------------------------------------------------------- /_oldprojects/planning-poker/PlanningPoker/3 - new board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thangchung/magazine-website-mvc-5/HEAD/_oldprojects/planning-poker/PlanningPoker/3 - new board.png -------------------------------------------------------------------------------- /_oldprojects/planning-poker/templates/Bootstrap-Admin-Theme-master/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /_oldprojects/planning-poker/templates/Bootstrap-Admin-Theme-master/vendors/bootstrap-wysihtml5/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .c9revisions 3 | /*.project 4 | -------------------------------------------------------------------------------- /_oldprojects/planning-poker/templates/Bootstrap-Admin-Theme-master/vendors/bootstrap-wysihtml5/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.2 -------------------------------------------------------------------------------- /_oldprojects/planning-poker/templates/Bootstrap-Admin-Theme-master/vendors/bootstrap-wysihtml5/test/lib: -------------------------------------------------------------------------------- 1 | ../lib/ -------------------------------------------------------------------------------- /_oldprojects/planning-poker/templates/Bootstrap-Admin-Theme-master/vendors/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /_oldprojects/planning-poker/templates/Bootstrap-Admin-Theme-master/vendors/jGrowl/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- 1 | test committed only --------------------------------------------------------------------------------