├── .gitignore ├── .gitmodules ├── .hgignore ├── Build ├── TermKit.zip └── build.sh ├── Cocoa └── TermKit │ ├── English.lproj │ ├── InfoPlist.strings │ ├── MainMenu.xib │ ├── Preferences.xib │ ├── Terminal.xib │ └── Window.xib │ ├── NSImageQuickLook │ ├── NSImage+QuickLook.h │ ├── NSImage+QuickLook.m │ ├── README.rtf │ └── Source Code License.rtf │ ├── TermKit-Info.plist │ ├── TermKit.icns │ ├── TermKit.xcodeproj │ └── project.pbxproj │ ├── TermKitAppDelegate.h │ ├── TermKitAppDelegate.m │ ├── TermKitIconLoadDelegate.h │ ├── TermKitIconLoadDelegate.m │ ├── TermKitIconProtocol.h │ ├── TermKitIconProtocol.m │ ├── TermKitPrefsController.h │ ├── TermKitPrefsController.m │ ├── TermKitTerminalController.h │ ├── TermKitTerminalController.m │ ├── TermKitWebView.h │ ├── TermKitWebView.m │ ├── TermKitWindowController.h │ ├── TermKitWindowController.m │ ├── TermKit_Prefix.pch │ ├── WebInspector.h │ └── main.m ├── HTML ├── Images │ ├── command.png │ ├── command.psd │ ├── fail.png │ ├── file.png │ ├── file_big.png │ ├── files.png │ ├── folder.png │ ├── loading-black.gif │ ├── okay.png │ └── wait.png ├── Shared │ └── protocol.js ├── TermKit HTML.pnproj ├── TermKit HTML.pnps ├── TermKit HTML.ppg ├── client │ ├── client.js │ └── shell.js ├── commandview │ ├── command.js │ ├── commandcontext.js │ ├── commandview.js │ └── iknowthis.js ├── config.js ├── container.js ├── external │ ├── jquery-ui │ │ ├── css │ │ │ └── ui-darkness │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ │ ├── ui-bg_glass_20_555555_1x400.png │ │ │ │ ├── ui-bg_glass_40_0078a3_1x400.png │ │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ │ ├── ui-bg_inset-soft_25_000000_1x100.png │ │ │ │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ └── jquery-ui-1.8.12.custom.css │ │ ├── development-bundle │ │ │ ├── AUTHORS.txt │ │ │ ├── GPL-LICENSE.txt │ │ │ ├── MIT-LICENSE.txt │ │ │ ├── demos │ │ │ │ ├── accordion │ │ │ │ │ ├── collapsible.html │ │ │ │ │ ├── custom-icons.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── fillspace.html │ │ │ │ │ ├── hoverintent.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mouseover.html │ │ │ │ │ ├── no-auto-height.html │ │ │ │ │ └── sortable.html │ │ │ │ ├── addClass │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── animate │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── autocomplete │ │ │ │ │ ├── categories.html │ │ │ │ │ ├── combobox.html │ │ │ │ │ ├── custom-data.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── folding.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── jquery_32x32.png │ │ │ │ │ │ ├── jqueryui_32x32.png │ │ │ │ │ │ ├── sizzlejs_32x32.png │ │ │ │ │ │ ├── transparent_1x1.png │ │ │ │ │ │ └── ui-anim_basic_16x16.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── london.xml │ │ │ │ │ ├── maxheight.html │ │ │ │ │ ├── multiple-remote.html │ │ │ │ │ ├── multiple.html │ │ │ │ │ ├── remote-jsonp.html │ │ │ │ │ ├── remote-with-cache.html │ │ │ │ │ ├── remote.html │ │ │ │ │ ├── search.php │ │ │ │ │ └── xml.html │ │ │ │ ├── button │ │ │ │ │ ├── checkbox.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── icons.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── radio.html │ │ │ │ │ ├── splitbutton.html │ │ │ │ │ └── toolbar.html │ │ │ │ ├── datepicker │ │ │ │ │ ├── alt-field.html │ │ │ │ │ ├── animation.html │ │ │ │ │ ├── buttonbar.html │ │ │ │ │ ├── date-formats.html │ │ │ │ │ ├── date-range.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── dropdown-month-year.html │ │ │ │ │ ├── icon-trigger.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── calendar.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── inline.html │ │ │ │ │ ├── localization.html │ │ │ │ │ ├── min-max.html │ │ │ │ │ ├── multiple-calendars.html │ │ │ │ │ ├── other-months.html │ │ │ │ │ └── show-week.html │ │ │ │ ├── demos.css │ │ │ │ ├── dialog │ │ │ │ │ ├── animated.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── modal-confirmation.html │ │ │ │ │ ├── modal-form.html │ │ │ │ │ ├── modal-message.html │ │ │ │ │ └── modal.html │ │ │ │ ├── draggable │ │ │ │ │ ├── constrain-movement.html │ │ │ │ │ ├── cursor-style.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── delay-start.html │ │ │ │ │ ├── events.html │ │ │ │ │ ├── handle.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── revert.html │ │ │ │ │ ├── scroll.html │ │ │ │ │ ├── snap-to.html │ │ │ │ │ ├── sortable.html │ │ │ │ │ └── visual-feedback.html │ │ │ │ ├── droppable │ │ │ │ │ ├── accepted-elements.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── high_tatras.jpg │ │ │ │ │ │ ├── high_tatras2.jpg │ │ │ │ │ │ ├── high_tatras2_min.jpg │ │ │ │ │ │ ├── high_tatras3.jpg │ │ │ │ │ │ ├── high_tatras3_min.jpg │ │ │ │ │ │ ├── high_tatras4.jpg │ │ │ │ │ │ ├── high_tatras4_min.jpg │ │ │ │ │ │ └── high_tatras_min.jpg │ │ │ │ │ ├── index.html │ │ │ │ │ ├── photo-manager.html │ │ │ │ │ ├── propagation.html │ │ │ │ │ ├── revert.html │ │ │ │ │ ├── shopping-cart.html │ │ │ │ │ └── visual-feedback.html │ │ │ │ ├── effect │ │ │ │ │ ├── default.html │ │ │ │ │ ├── easing.html │ │ │ │ │ └── index.html │ │ │ │ ├── hide │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── images │ │ │ │ │ ├── calendar.gif │ │ │ │ │ ├── demo-config-on-tile.gif │ │ │ │ │ ├── demo-config-on.gif │ │ │ │ │ ├── demo-spindown-closed.gif │ │ │ │ │ ├── demo-spindown-open.gif │ │ │ │ │ ├── icon-docs-info.gif │ │ │ │ │ └── pbar-ani.gif │ │ │ │ ├── index.html │ │ │ │ ├── position │ │ │ │ │ ├── cycler.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── images │ │ │ │ │ │ ├── earth.jpg │ │ │ │ │ │ ├── flight.jpg │ │ │ │ │ │ └── rocket.jpg │ │ │ │ │ └── index.html │ │ │ │ ├── progressbar │ │ │ │ │ ├── animated.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── images │ │ │ │ │ │ └── pbar-ani.gif │ │ │ │ │ ├── index.html │ │ │ │ │ └── resize.html │ │ │ │ ├── removeClass │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── resizable │ │ │ │ │ ├── animate.html │ │ │ │ │ ├── aspect-ratio.html │ │ │ │ │ ├── constrain-area.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── delay-start.html │ │ │ │ │ ├── helper.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── max-min.html │ │ │ │ │ ├── snap-to-grid.html │ │ │ │ │ ├── synchronous-resize.html │ │ │ │ │ ├── textarea.html │ │ │ │ │ └── visual-feedback.html │ │ │ │ ├── selectable │ │ │ │ │ ├── default.html │ │ │ │ │ ├── display-grid.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── serialize.html │ │ │ │ ├── show │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── slider │ │ │ │ │ ├── colorpicker.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── hotelrooms.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── multiple-vertical.html │ │ │ │ │ ├── range-vertical.html │ │ │ │ │ ├── range.html │ │ │ │ │ ├── rangemax.html │ │ │ │ │ ├── rangemin.html │ │ │ │ │ ├── side-scroll.html │ │ │ │ │ ├── slider-vertical.html │ │ │ │ │ ├── steps.html │ │ │ │ │ └── tabs.html │ │ │ │ ├── sortable │ │ │ │ │ ├── connect-lists-through-tabs.html │ │ │ │ │ ├── connect-lists.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── delay-start.html │ │ │ │ │ ├── display-grid.html │ │ │ │ │ ├── empty-lists.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── items.html │ │ │ │ │ ├── placeholder.html │ │ │ │ │ └── portlets.html │ │ │ │ ├── switchClass │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ ├── tabs │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── ajax │ │ │ │ │ │ ├── content1.html │ │ │ │ │ │ ├── content2.html │ │ │ │ │ │ ├── content3-slow.php │ │ │ │ │ │ └── content4-broken.php │ │ │ │ │ ├── bottom.html │ │ │ │ │ ├── collapsible.html │ │ │ │ │ ├── cookie.html │ │ │ │ │ ├── default.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── manipulation.html │ │ │ │ │ ├── mouseover.html │ │ │ │ │ ├── sortable.html │ │ │ │ │ └── vertical.html │ │ │ │ ├── toggle │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ │ └── toggleClass │ │ │ │ │ ├── default.html │ │ │ │ │ └── index.html │ │ │ ├── docs │ │ │ │ ├── accordion.html │ │ │ │ ├── addClass.html │ │ │ │ ├── animate.html │ │ │ │ ├── autocomplete.html │ │ │ │ ├── button.html │ │ │ │ ├── datepicker.html │ │ │ │ ├── dialog.html │ │ │ │ ├── draggable.html │ │ │ │ ├── droppable.html │ │ │ │ ├── effect.html │ │ │ │ ├── hide.html │ │ │ │ ├── position.html │ │ │ │ ├── progressbar.html │ │ │ │ ├── removeClass.html │ │ │ │ ├── resizable.html │ │ │ │ ├── selectable.html │ │ │ │ ├── show.html │ │ │ │ ├── slider.html │ │ │ │ ├── sortable.html │ │ │ │ ├── switchClass.html │ │ │ │ ├── tabs.html │ │ │ │ ├── toggle.html │ │ │ │ └── toggleClass.html │ │ │ ├── external │ │ │ │ ├── jquery.bgiframe-2.1.2.js │ │ │ │ ├── jquery.cookie.js │ │ │ │ ├── jquery.metadata.js │ │ │ │ ├── qunit.css │ │ │ │ └── qunit.js │ │ │ ├── jquery-1.5.1.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.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 │ │ │ │ └── ui-darkness │ │ │ │ │ ├── images │ │ │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ │ │ ├── ui-bg_glass_20_555555_1x400.png │ │ │ │ │ ├── ui-bg_glass_40_0078a3_1x400.png │ │ │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_25_000000_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── jquery-ui-1.8.12.custom.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 │ │ │ ├── ui │ │ │ │ ├── i18n │ │ │ │ │ ├── jquery-ui-i18n.js │ │ │ │ │ ├── jquery.ui.datepicker-af.js │ │ │ │ │ ├── jquery.ui.datepicker-ar-DZ.js │ │ │ │ │ ├── jquery.ui.datepicker-ar.js │ │ │ │ │ ├── jquery.ui.datepicker-az.js │ │ │ │ │ ├── jquery.ui.datepicker-bg.js │ │ │ │ │ ├── jquery.ui.datepicker-bs.js │ │ │ │ │ ├── jquery.ui.datepicker-ca.js │ │ │ │ │ ├── jquery.ui.datepicker-cs.js │ │ │ │ │ ├── jquery.ui.datepicker-da.js │ │ │ │ │ ├── jquery.ui.datepicker-de.js │ │ │ │ │ ├── jquery.ui.datepicker-el.js │ │ │ │ │ ├── jquery.ui.datepicker-en-AU.js │ │ │ │ │ ├── jquery.ui.datepicker-en-GB.js │ │ │ │ │ ├── jquery.ui.datepicker-en-NZ.js │ │ │ │ │ ├── jquery.ui.datepicker-eo.js │ │ │ │ │ ├── jquery.ui.datepicker-es.js │ │ │ │ │ ├── jquery.ui.datepicker-et.js │ │ │ │ │ ├── jquery.ui.datepicker-eu.js │ │ │ │ │ ├── jquery.ui.datepicker-fa.js │ │ │ │ │ ├── jquery.ui.datepicker-fi.js │ │ │ │ │ ├── jquery.ui.datepicker-fo.js │ │ │ │ │ ├── jquery.ui.datepicker-fr-CH.js │ │ │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ │ │ ├── jquery.ui.datepicker-gl.js │ │ │ │ │ ├── jquery.ui.datepicker-he.js │ │ │ │ │ ├── jquery.ui.datepicker-hr.js │ │ │ │ │ ├── jquery.ui.datepicker-hu.js │ │ │ │ │ ├── jquery.ui.datepicker-hy.js │ │ │ │ │ ├── jquery.ui.datepicker-id.js │ │ │ │ │ ├── jquery.ui.datepicker-is.js │ │ │ │ │ ├── jquery.ui.datepicker-it.js │ │ │ │ │ ├── jquery.ui.datepicker-ja.js │ │ │ │ │ ├── jquery.ui.datepicker-ko.js │ │ │ │ │ ├── jquery.ui.datepicker-kz.js │ │ │ │ │ ├── jquery.ui.datepicker-lt.js │ │ │ │ │ ├── jquery.ui.datepicker-lv.js │ │ │ │ │ ├── jquery.ui.datepicker-ml.js │ │ │ │ │ ├── jquery.ui.datepicker-ms.js │ │ │ │ │ ├── jquery.ui.datepicker-nl.js │ │ │ │ │ ├── jquery.ui.datepicker-no.js │ │ │ │ │ ├── jquery.ui.datepicker-pl.js │ │ │ │ │ ├── jquery.ui.datepicker-pt-BR.js │ │ │ │ │ ├── jquery.ui.datepicker-pt.js │ │ │ │ │ ├── jquery.ui.datepicker-rm.js │ │ │ │ │ ├── jquery.ui.datepicker-ro.js │ │ │ │ │ ├── jquery.ui.datepicker-ru.js │ │ │ │ │ ├── jquery.ui.datepicker-sk.js │ │ │ │ │ ├── jquery.ui.datepicker-sl.js │ │ │ │ │ ├── jquery.ui.datepicker-sq.js │ │ │ │ │ ├── jquery.ui.datepicker-sr-SR.js │ │ │ │ │ ├── jquery.ui.datepicker-sr.js │ │ │ │ │ ├── jquery.ui.datepicker-sv.js │ │ │ │ │ ├── jquery.ui.datepicker-ta.js │ │ │ │ │ ├── jquery.ui.datepicker-th.js │ │ │ │ │ ├── jquery.ui.datepicker-tj.js │ │ │ │ │ ├── jquery.ui.datepicker-tr.js │ │ │ │ │ ├── jquery.ui.datepicker-uk.js │ │ │ │ │ ├── jquery.ui.datepicker-vi.js │ │ │ │ │ ├── jquery.ui.datepicker-zh-CN.js │ │ │ │ │ ├── jquery.ui.datepicker-zh-HK.js │ │ │ │ │ └── jquery.ui.datepicker-zh-TW.js │ │ │ │ ├── jquery-ui-1.8.12.custom.js │ │ │ │ ├── jquery.effects.blind.js │ │ │ │ ├── jquery.effects.bounce.js │ │ │ │ ├── jquery.effects.clip.js │ │ │ │ ├── jquery.effects.core.js │ │ │ │ ├── jquery.effects.drop.js │ │ │ │ ├── jquery.effects.explode.js │ │ │ │ ├── jquery.effects.fade.js │ │ │ │ ├── jquery.effects.fold.js │ │ │ │ ├── jquery.effects.highlight.js │ │ │ │ ├── jquery.effects.pulsate.js │ │ │ │ ├── jquery.effects.scale.js │ │ │ │ ├── jquery.effects.shake.js │ │ │ │ ├── jquery.effects.slide.js │ │ │ │ ├── jquery.effects.transfer.js │ │ │ │ ├── jquery.ui.accordion.js │ │ │ │ ├── jquery.ui.autocomplete.js │ │ │ │ ├── jquery.ui.button.js │ │ │ │ ├── jquery.ui.core.js │ │ │ │ ├── jquery.ui.datepicker.js │ │ │ │ ├── jquery.ui.dialog.js │ │ │ │ ├── jquery.ui.draggable.js │ │ │ │ ├── jquery.ui.droppable.js │ │ │ │ ├── jquery.ui.mouse.js │ │ │ │ ├── jquery.ui.position.js │ │ │ │ ├── jquery.ui.progressbar.js │ │ │ │ ├── jquery.ui.resizable.js │ │ │ │ ├── jquery.ui.selectable.js │ │ │ │ ├── jquery.ui.slider.js │ │ │ │ ├── jquery.ui.sortable.js │ │ │ │ ├── jquery.ui.tabs.js │ │ │ │ ├── jquery.ui.widget.js │ │ │ │ └── minified │ │ │ │ │ ├── jquery.effects.blind.min.js │ │ │ │ │ ├── jquery.effects.bounce.min.js │ │ │ │ │ ├── jquery.effects.clip.min.js │ │ │ │ │ ├── jquery.effects.core.min.js │ │ │ │ │ ├── jquery.effects.drop.min.js │ │ │ │ │ ├── jquery.effects.explode.min.js │ │ │ │ │ ├── jquery.effects.fade.min.js │ │ │ │ │ ├── jquery.effects.fold.min.js │ │ │ │ │ ├── jquery.effects.highlight.min.js │ │ │ │ │ ├── jquery.effects.pulsate.min.js │ │ │ │ │ ├── jquery.effects.scale.min.js │ │ │ │ │ ├── jquery.effects.shake.min.js │ │ │ │ │ ├── jquery.effects.slide.min.js │ │ │ │ │ ├── jquery.effects.transfer.min.js │ │ │ │ │ ├── jquery.ui.accordion.min.js │ │ │ │ │ ├── jquery.ui.autocomplete.min.js │ │ │ │ │ ├── jquery.ui.button.min.js │ │ │ │ │ ├── jquery.ui.core.min.js │ │ │ │ │ ├── jquery.ui.datepicker.min.js │ │ │ │ │ ├── jquery.ui.dialog.min.js │ │ │ │ │ ├── jquery.ui.draggable.min.js │ │ │ │ │ ├── jquery.ui.droppable.min.js │ │ │ │ │ ├── jquery.ui.mouse.min.js │ │ │ │ │ ├── jquery.ui.position.min.js │ │ │ │ │ ├── jquery.ui.progressbar.min.js │ │ │ │ │ ├── jquery.ui.resizable.min.js │ │ │ │ │ ├── jquery.ui.selectable.min.js │ │ │ │ │ ├── jquery.ui.slider.min.js │ │ │ │ │ ├── jquery.ui.sortable.min.js │ │ │ │ │ ├── jquery.ui.tabs.min.js │ │ │ │ │ └── jquery.ui.widget.min.js │ │ │ └── version.txt │ │ ├── index.html │ │ └── js │ │ │ ├── jquery-1.5.1.min.js │ │ │ └── jquery-ui-1.8.12.custom.min.js │ └── syntaxhighlighter_3.0.83 │ │ ├── LGPL-LICENSE │ │ ├── MIT-LICENSE │ │ ├── compass │ │ ├── _theme_template.scss │ │ ├── config.rb │ │ ├── shCore.scss │ │ ├── shCoreDefault.scss │ │ ├── shCoreDjango.scss │ │ ├── shCoreEclipse.scss │ │ ├── shCoreEmacs.scss │ │ ├── shCoreFadeToGrey.scss │ │ ├── shCoreMDUltra.scss │ │ ├── shCoreMidnight.scss │ │ ├── shCoreRDark.scss │ │ ├── shThemeDefault.scss │ │ ├── shThemeDjango.scss │ │ ├── shThemeEclipse.scss │ │ ├── shThemeEmacs.scss │ │ ├── shThemeFadeToGrey.scss │ │ ├── shThemeMDUltra.scss │ │ ├── shThemeMidnight.scss │ │ └── shThemeRDark.scss │ │ ├── index.html │ │ ├── scripts │ │ ├── shAutoloader.js │ │ ├── shBrushAS3.js │ │ ├── shBrushAppleScript.js │ │ ├── shBrushBash.js │ │ ├── shBrushCSharp.js │ │ ├── shBrushColdFusion.js │ │ ├── shBrushCpp.js │ │ ├── shBrushCss.js │ │ ├── shBrushDelphi.js │ │ ├── shBrushDiff.js │ │ ├── shBrushErlang.js │ │ ├── shBrushGroovy.js │ │ ├── shBrushJScript.js │ │ ├── shBrushJava.js │ │ ├── shBrushJavaFX.js │ │ ├── shBrushPerl.js │ │ ├── shBrushPhp.js │ │ ├── shBrushPlain.js │ │ ├── shBrushPowerShell.js │ │ ├── shBrushPython.js │ │ ├── shBrushRuby.js │ │ ├── shBrushSass.js │ │ ├── shBrushScala.js │ │ ├── shBrushSql.js │ │ ├── shBrushVb.js │ │ ├── shBrushXml.js │ │ ├── shCore.js │ │ └── shLegacy.js │ │ ├── src │ │ ├── shAutoloader.js │ │ ├── shCore.js │ │ ├── shLegacy.js │ │ └── shXRE.js │ │ ├── styles │ │ ├── shCore.css │ │ ├── shCoreDefault.css │ │ ├── shCoreDjango.css │ │ ├── shCoreEclipse.css │ │ ├── shCoreEmacs.css │ │ ├── shCoreFadeToGrey.css │ │ ├── shCoreMDUltra.css │ │ ├── shCoreMidnight.css │ │ ├── shCoreRDark.css │ │ ├── shThemeDefault.css │ │ ├── shThemeDjango.css │ │ ├── shThemeEclipse.css │ │ ├── shThemeEmacs.css │ │ ├── shThemeFadeToGrey.css │ │ ├── shThemeMDUltra.css │ │ ├── shThemeMidnight.css │ │ └── shThemeRDark.css │ │ └── tests │ │ ├── .rvmrc │ │ ├── brushes │ │ └── sass.html │ │ ├── brushes_tests.html │ │ ├── cases │ │ ├── 001_basic.html │ │ ├── 002_brushes.html │ │ ├── 003_script_tag.html │ │ ├── 004_url_parsing.html │ │ ├── 005_no_gutter.html │ │ ├── 006_pad_line_numbers.html │ │ ├── 007_collapse.html │ │ ├── 007_collapse_interaction.html │ │ ├── 008_first_line.html │ │ ├── 009_class_name.html │ │ ├── 010_highlight.html │ │ ├── 011_smart_tabs.html │ │ ├── 012_server_side.html │ │ ├── 013_html_script.html │ │ └── 014_legacy.html │ │ ├── commonjs_tests.js │ │ ├── js │ │ ├── jquery-1.4.2.js │ │ ├── qunit.css │ │ └── qunit.js │ │ ├── syntaxhighlighter_tests.html │ │ ├── theme_tests.html │ │ ├── webrick.rb │ │ └── webrick.sh ├── index.html ├── indicators │ ├── progress.js │ └── spinner.js ├── jquery.js ├── outputview │ ├── outputfactory.js │ ├── outputframe.js │ ├── outputnode.js │ └── outputview.js ├── socket.io │ ├── lib │ │ ├── io.js │ │ ├── socket.js │ │ ├── transport.js │ │ ├── transports │ │ │ ├── flashsocket.js │ │ │ ├── htmlfile.js │ │ │ ├── jsonp-polling.js │ │ │ ├── websocket.js │ │ │ ├── xhr-multipart.js │ │ │ ├── xhr-polling.js │ │ │ └── xhr.js │ │ ├── util.js │ │ └── vendor │ │ │ ├── uglifyjs │ │ │ ├── bin │ │ │ │ └── uglifyjs │ │ │ ├── docstyle.css │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── parse-js.js │ │ │ │ ├── process.js │ │ │ │ └── squeeze-more.js │ │ │ └── package.json │ │ │ └── web-socket-js │ │ │ ├── WebSocketMain.swf │ │ │ ├── WebSocketMainInsecure.zip │ │ │ ├── swfobject.js │ │ │ └── web_socket.js │ └── socket.io.js ├── syntax.js ├── termkit.css ├── termkit.js ├── tokenfield │ ├── autocomplete.js │ ├── caret.js │ ├── selection.js │ ├── token.js │ └── tokenfield.js ├── typography.css └── usage.html ├── Illustrator ├── TermKit Icon 128 Windows.png ├── TermKit Icon 128.ai ├── TermKit Icon 128.png ├── TermKit Icon 512.ai ├── TermKit Icon 512.png ├── Token Icons.ai ├── brushed-metal.psd └── files-icon.psd ├── License.txt ├── Mockups ├── Architecture.graffle ├── Architecture.pdf ├── Process-Model.graffle ├── Process-Model.pdf ├── Shot-0.2.png ├── Shot-0.3.png ├── Shot-Highlight.png ├── Shot-Self-Commit.png ├── TermKit.graffle ├── TermKit.pdf └── WindowsConfiguration.png ├── Node-API.md ├── Node ├── config.js ├── misc.js ├── nettest.js ├── nodekit.js ├── router.js ├── shell │ ├── autocomplete.js │ ├── builtin │ │ ├── builtin.js │ │ ├── cat.js │ │ ├── cd.js │ │ ├── clear.js │ │ ├── echo.js │ │ ├── get.js │ │ ├── grep.js │ │ ├── ls.js │ │ ├── null.js │ │ └── pwd.js │ ├── command.js │ ├── formatter.js │ ├── meta.js │ ├── processor.js │ ├── reader.js │ ├── shell.js │ └── worker.js ├── test.js ├── test.txt └── view │ └── view.js ├── Readme.md ├── Shared └── protocol.js ├── Site ├── coming-soon.png └── index.html ├── Win32 ├── CefSharp.snk ├── CefSharp │ ├── AssemblyInfo.cpp │ ├── BindingHandler.cpp │ ├── BindingHandler.h │ ├── BrowserSettings.h │ ├── CefSharp.cpp │ ├── CefSharp.h │ ├── CefSharp.vcproj │ ├── CefSharp.vcproj.BLUELIZARD.rathbonet.user │ ├── CefSharp.vcproj.REDPOINT.jrhodes.user │ ├── CefSharp.vcxproj.user │ ├── CefWebBrowser.cpp │ ├── CefWebBrowser.h │ ├── ConsoleMessageEventArgs.h │ ├── HandlerAdapter.cpp │ ├── HandlerAdapter.h │ ├── IBeforeResourceLoad.h │ ├── JsResultHandler.cpp │ ├── JsResultHandler.h │ ├── ManagedCefRefPtr.h │ ├── ReadMe.txt │ ├── Request.cpp │ ├── Request.h │ ├── RequestResponse.cpp │ ├── RequestResponse.h │ ├── ReturnValue.h │ ├── RtzCountdownEvent.cpp │ ├── RtzCountdownEvent.h │ ├── SchemeHandler.cpp │ ├── SchemeHandler.h │ ├── ScriptException.cpp │ ├── ScriptException.h │ ├── Settings.h │ ├── Stdafx.cpp │ ├── Stdafx.h │ ├── StreamAdapter.cpp │ ├── StreamAdapter.h │ ├── Utils.cpp │ ├── Utils.h │ ├── app.ico │ ├── app.rc │ ├── include │ │ ├── cef.h │ │ ├── cef_capi.h │ │ ├── cef_export.h │ │ ├── cef_nplugin.h │ │ ├── cef_nplugin_capi.h │ │ ├── cef_ptr.h │ │ ├── cef_string.h │ │ ├── cef_string_list.h │ │ ├── cef_string_map.h │ │ ├── cef_string_types.h │ │ ├── cef_string_wrappers.h │ │ ├── cef_types.h │ │ ├── cef_types_win.h │ │ ├── cef_win.h │ │ ├── cef_wrapper.h │ │ └── npapi │ │ │ ├── NPAPI-README.txt │ │ │ ├── basictypes.h │ │ │ ├── build_config.h │ │ │ ├── npapi.h │ │ │ ├── npapi_extensions.h │ │ │ ├── npfunctions.h │ │ │ ├── nphostapi.h │ │ │ ├── npruntime.h │ │ │ ├── nptypes.h │ │ │ └── port.h │ ├── libs │ │ ├── Debug │ │ │ ├── libcef.lib │ │ │ └── libcef_dll_wrapper.lib │ │ ├── General │ │ │ ├── CFLite.dll │ │ │ ├── JavaScriptCore.dll │ │ │ ├── SQLite3.dll │ │ │ ├── WebKit.dll │ │ │ ├── avcodec-52.dll │ │ │ ├── avformat-52.dll │ │ │ ├── avutil-50.dll │ │ │ ├── icudt40.dll │ │ │ ├── icudt42.dll │ │ │ ├── icuin40.dll │ │ │ ├── icuuc40.dll │ │ │ ├── libcef.dll │ │ │ ├── libcurl.dll │ │ │ ├── libeay32.dll │ │ │ ├── libexslt.dll │ │ │ ├── libxml2.dll │ │ │ ├── libxslt.dll │ │ │ ├── objc.dll │ │ │ ├── pthreadVC2.dll │ │ │ └── ssleay32.dll │ │ ├── LICENSE │ │ ├── Release │ │ │ ├── libcef.lib │ │ │ └── libcef_dll_wrapper.lib │ │ └── nunit.framework.dll │ ├── resource.h │ └── tools │ │ ├── nunit-console-runner.dll │ │ ├── nunit-console-x86.exe │ │ ├── nunit-console-x86.exe.config │ │ ├── nunit.core.dll │ │ ├── nunit.core.interfaces.dll │ │ ├── nunit.framework.dll │ │ └── nunit.util.dll ├── Node.net │ ├── AutoWrapObject.cs │ ├── EventManager.cs │ ├── HostEngine.cs │ ├── HostModule.cs │ ├── LICENSE.txt │ ├── Modules │ │ ├── AssertModule.cs │ │ ├── Buffers │ │ │ └── NodeBuffer.cs │ │ ├── ChildProcessesModule.cs │ │ ├── CryptoModule.cs │ │ ├── DgramModule.cs │ │ ├── DnsModule.cs │ │ ├── EventsModule.cs │ │ ├── FsModule.cs │ │ ├── HttpModule.cs │ │ ├── HttpsModule.cs │ │ ├── NetModule.cs │ │ ├── OsModule.cs │ │ ├── PathModule.cs │ │ ├── ProcessModule.cs │ │ ├── Streams │ │ │ ├── Base64Encoding.cs │ │ │ ├── NodeReadableStream.cs │ │ │ ├── NodeStream.cs │ │ │ └── NodeWritableStream.cs │ │ ├── TlsModule.cs │ │ ├── TtyModule.cs │ │ ├── UrlModule.cs │ │ ├── UtilModule.cs │ │ └── VmModule.cs │ ├── Node.net.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── ScheduledBuild.bat ├── TermKit Console │ ├── ClientIcons.cs │ ├── ClientResources.cs │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── HTML.zip │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Protocols │ │ ├── ApplicationProtocol.cs │ │ ├── ApplicationProtocolFactory.cs │ │ ├── TermKitIconDefaultProtocol.cs │ │ ├── TermKitIconDefaultProtocolFactory.cs │ │ ├── TermKitIconPreviewProtocol.cs │ │ └── TermKitIconPreviewProtocolFactory.cs │ ├── References │ │ └── ICSharpCode.SharpZipLib.dll │ ├── TermKit Console.csproj │ ├── icon.ico │ └── icon.png ├── TermKit Local Server │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── TermKit Local Server.csproj ├── TermKit Service │ ├── NodeManager.Designer.cs │ ├── NodeManager.cs │ ├── NodeManager.resx │ ├── Program.cs │ ├── ProjectInstaller.Designer.cs │ ├── ProjectInstaller.cs │ ├── ProjectInstaller.resx │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TermKit Service.csproj │ ├── TermKitService.Designer.cs │ └── TermKitService.cs ├── TermKit.sln ├── Where is IronJS.txt └── tools │ └── ScheduledUpload │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Resources │ ├── TrayIcon.ico │ └── icon.ico │ ├── ScheduledUpload.csproj │ └── ScheduledUpload.sln ├── sloc.sh ├── termkit.txt └── todo.txt /.gitignore: -------------------------------------------------------------------------------- 1 | # the build 2 | build 3 | TermKit.app 4 | 5 | # temp nibs and swap files 6 | *~.nib 7 | *.swp 8 | 9 | # OS X folder attributes 10 | .DS_Store 11 | 12 | # user-specific XCode stuff 13 | *.mode1v3 14 | *.mode2v3 15 | *.pbxuser 16 | *.perspectivev3 17 | 18 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "Node/socket.io-node"] 2 | path = Node/socket.io-node 3 | url = https://github.com/LearnBoost/Socket.IO-node.git 4 | -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- 1 | syntax: glob 2 | */bin/* 3 | */obj/* 4 | *.ncb 5 | *.suo 6 | *.git* 7 | Win32/CefSharp/Debug/* 8 | Win32/CefSharp/Release/* 9 | -------------------------------------------------------------------------------- /Build/TermKit.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Build/TermKit.zip -------------------------------------------------------------------------------- /Build/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm -rf TermKit.* 3 | cp -R ../Cocoa/TermKit/Build/Release/TermKit.app . 4 | zip -r TermKit.zip TermKit.app 5 | -------------------------------------------------------------------------------- /Cocoa/TermKit/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Cocoa/TermKit/NSImageQuickLook/NSImage+QuickLook.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSImage+QuickLook.h 3 | // QuickLookTest 4 | // 5 | // Created by Matt Gemmell on 29/10/2007. 6 | // Modified by Steven Wittens (asGeneric) 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface NSImage (QuickLook) 13 | 14 | 15 | + (NSImage *)imageWithPreviewOfFileAtPath:(NSString *)path ofSize:(NSSize)size asIcon:(BOOL)icon; 16 | 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Cocoa/TermKit/TermKit-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIconFile 10 | TermKit.icns 11 | CFBundleIdentifier 12 | net.acko.${PRODUCT_NAME:rfc1034identifier} 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleSignature 20 | ???? 21 | CFBundleShortVersionString 22 | 0.3.3-alpha 23 | LSMinimumSystemVersion 24 | ${MACOSX_DEPLOYMENT_TARGET} 25 | CFBundleVersion 26 | 0.3.3 27 | NSMainNibFile 28 | MainMenu 29 | NSPrincipalClass 30 | NSApplication 31 | 32 | 33 | -------------------------------------------------------------------------------- /Cocoa/TermKit/TermKit.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Cocoa/TermKit/TermKit.icns -------------------------------------------------------------------------------- /Cocoa/TermKit/TermKitAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // TermKitAppDelegate.h 3 | // TermKit 4 | // 5 | // Created by Steven Wittens on 30/06/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TermKitAppDelegate : NSObject { 12 | } 13 | 14 | - (IBAction) openPreferences: sender; 15 | - (IBAction) newWindow: sender; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Cocoa/TermKit/TermKitIconLoadDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // TermKitWebResourceLoadDelegate.h 3 | // TermKit 4 | // 5 | // Created by Steven Wittens on 15/10/10. 6 | // Parts copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | // Based on: SpecialPictureProtocol example by Apple 9 | // 10 | 11 | #import 12 | #import 13 | 14 | #import "TermKitIconProtocol.h" 15 | 16 | @interface TermKitIconLoadDelegate : NSObject { 17 | IBOutlet WebView *webView; 18 | } 19 | + (NSString*) callerKey; 20 | - (void)callbackFromIconRequest:(NSURLRequest *)request; 21 | @end 22 | -------------------------------------------------------------------------------- /Cocoa/TermKit/TermKitPrefsController.h: -------------------------------------------------------------------------------- 1 | // 2 | // TermKitPrefsController.h 3 | // TermKit 4 | // 5 | // Created by Steven Wittens on 29/10/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface TermKitPrefsController : NSWindowController { 13 | } 14 | 15 | - (id) init; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Cocoa/TermKit/TermKitPrefsController.m: -------------------------------------------------------------------------------- 1 | // 2 | // TermKitPrefsController.m 3 | // TermKit 4 | // 5 | // Created by Steven Wittens on 29/10/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import "TermKitPrefsController.h" 10 | 11 | 12 | @implementation TermKitPrefsController { 13 | } 14 | 15 | - (id) init { 16 | self = [super initWithWindowNibName:@"Preferences"]; 17 | if (self != nil) { 18 | // Yay. 19 | } 20 | return self; 21 | } 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /Cocoa/TermKit/TermKitTerminalController.h: -------------------------------------------------------------------------------- 1 | // 2 | // TermKitTerminalController.h 3 | // TermKit 4 | // 5 | // Created by Steven Wittens on 05/07/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface TermKitTerminalController : NSViewController { 13 | id webInspector; 14 | } 15 | 16 | - (id)init; 17 | - (void)loadView; 18 | - (void)showConsole; 19 | - (void)hideConsole; 20 | - (void)toggleConsole:(bool)show; 21 | 22 | @end 23 | -------------------------------------------------------------------------------- /Cocoa/TermKit/TermKitWebView.h: -------------------------------------------------------------------------------- 1 | // 2 | // TermKitWebView.h 3 | // TermKit 4 | // 5 | // Created by Steven Wittens on 30/06/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | #import "TermKitIconLoadDelegate.h" 13 | 14 | @interface TermKitWebView : WebView { 15 | id delegate; 16 | id config; 17 | } 18 | 19 | - (void)awakeFromNib; 20 | - (void)webView:(WebView*)webView windowScriptObjectAvailable:(WebScriptObject*)windowScriptObject; 21 | - (void)dealloc; 22 | 23 | + (NSString *)webScriptNameForSelector:(SEL)selector; 24 | + (BOOL)isSelectorExcludedFromWebScript:(SEL)selector; 25 | - (id)get:(NSString*)key; 26 | 27 | @end 28 | -------------------------------------------------------------------------------- /Cocoa/TermKit/TermKitWindowController.h: -------------------------------------------------------------------------------- 1 | // 2 | // TermKitWindowController.h 3 | // TermKit 4 | // 5 | // Created by Steven Wittens on 29/10/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface TermKitWindowController : NSWindowController { 13 | id terminalController; 14 | } 15 | 16 | - (id) init; 17 | - (IBAction) showConsole: sender; 18 | - (IBAction) newTerminal: sender; 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /Cocoa/TermKit/TermKit_Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TermKit' target in the 'TermKit' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /Cocoa/TermKit/WebInspector.h: -------------------------------------------------------------------------------- 1 | // 2 | // WebInspector.h 3 | // TermKit 4 | // 5 | // Created by Steven Wittens on 29/04/11. 6 | // Copyright 2011 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface WebInspector : NSObject 12 | { 13 | WebView *_webView; 14 | } 15 | - (id)initWithWebView:(WebView *)webView; 16 | - (void)detach:(id)sender; 17 | - (void)show:(id)sender; 18 | - (void)showConsole:(id)sender; 19 | @end 20 | -------------------------------------------------------------------------------- /Cocoa/TermKit/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // TermKit 4 | // 5 | // Created by Steven Wittens on 30/06/10. 6 | // Copyright 2010 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **) argv); 14 | } 15 | -------------------------------------------------------------------------------- /HTML/Images/command.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/Images/command.png -------------------------------------------------------------------------------- /HTML/Images/command.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/Images/command.psd -------------------------------------------------------------------------------- /HTML/Images/fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/Images/fail.png -------------------------------------------------------------------------------- /HTML/Images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/Images/file.png -------------------------------------------------------------------------------- /HTML/Images/file_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/Images/file_big.png -------------------------------------------------------------------------------- /HTML/Images/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/Images/files.png -------------------------------------------------------------------------------- /HTML/Images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/Images/folder.png -------------------------------------------------------------------------------- /HTML/Images/loading-black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/Images/loading-black.gif -------------------------------------------------------------------------------- /HTML/Images/okay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/Images/okay.png -------------------------------------------------------------------------------- /HTML/Images/wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/Images/wait.png -------------------------------------------------------------------------------- /HTML/TermKit HTML.pnps: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTML/TermKit HTML.ppg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTML/config.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | 3 | var cf = termkit.config = function () { 4 | 5 | }; 6 | 7 | })(jQuery); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/css/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/css/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/css/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/css/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/css/ui-darkness/images/ui-bg_glass_20_555555_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/css/ui-darkness/images/ui-bg_glass_20_555555_1x400.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/css/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/css/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/css/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/css/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/css/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/css/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/css/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/css/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/css/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/css/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/css/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/css/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/css/ui-darkness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/css/ui-darkness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/css/ui-darkness/images/ui-icons_4b8e0b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/css/ui-darkness/images/ui-icons_4b8e0b_256x240.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/css/ui-darkness/images/ui-icons_a83300_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/css/ui-darkness/images/ui-icons_a83300_256x240.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/css/ui-darkness/images/ui-icons_cccccc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/css/ui-darkness/images/ui-icons_cccccc_256x240.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/css/ui-darkness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/css/ui-darkness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/AUTHORS.txt: -------------------------------------------------------------------------------- 1 | jQuery UI Authors (http://jqueryui.com/about) 2 | 3 | This software consists of voluntary contributions made by many 4 | individuals. For exact contribution history, see the revision history 5 | and logs, available at http://github.com/jquery/jquery-ui 6 | 7 | Brandon Aaron 8 | Paul Bakaus (paulbakaus.com) 9 | David Bolter 10 | Rich Caloggero 11 | Chi Cheng (cloudream@gmail.com) 12 | Colin Clark (http://colin.atrc.utoronto.ca/) 13 | Michelle D'Souza 14 | Aaron Eisenberger (aaronchi@gmail.com) 15 | Ariel Flesler 16 | Bohdan Ganicky 17 | Scott González 18 | Marc Grabanski (m@marcgrabanski.com) 19 | Klaus Hartl (stilbuero.de) 20 | Scott Jehl 21 | Cody Lindley 22 | Eduardo Lundgren (eduardolundgren@gmail.com) 23 | Todd Parker 24 | John Resig 25 | Patty Toland 26 | Ca-Phun Ung (yelotofu.com) 27 | Keith Wood (kbwood@virginbroadband.com.au) 28 | Maggie Costello Wachs 29 | Richard D. Worth (rdworth.org) 30 | Jörn Zaefferer (bassistance.de) 31 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/accordion/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Accordion Demos 6 | 7 | 8 | 9 | 10 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/addClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/animate/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/autocomplete/images/jquery_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/autocomplete/images/jquery_32x32.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/autocomplete/images/jqueryui_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/autocomplete/images/jqueryui_32x32.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/autocomplete/images/sizzlejs_32x32.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/autocomplete/images/transparent_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/autocomplete/images/transparent_1x1.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/autocomplete/images/ui-anim_basic_16x16.gif -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/autocomplete/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Autocomplete Demos 6 | 7 | 8 | 9 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/button/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Button Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/datepicker/images/calendar.gif -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/datepicker/inline.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker - Display inline 6 | 7 | 8 | 9 | 10 | 11 | 12 | 17 | 18 | 19 | 20 |
21 | 22 | Date:
23 | 24 |
25 | 26 | 27 | 28 |
29 |

Display the datepicker embedded in the page instead of in an overlay. Simply call .datepicker() on a div instead of an input.

30 |
31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/datepicker/multiple-calendars.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker - Display multiple months 6 | 7 | 8 | 9 | 10 | 11 | 12 | 20 | 21 | 22 | 23 |
24 | 25 |

Date:

26 | 27 |
28 | 29 | 30 | 31 |
32 |

Set the numberOfMonths option to an integer of 2 or more to show multiple months in a single datepicker.

33 |
34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/datepicker/other-months.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Datepicker - Dates in other months 6 | 7 | 8 | 9 | 10 | 11 | 12 | 20 | 21 | 22 | 23 |
24 | 25 |

Date:

26 | 27 |
28 | 29 | 30 | 31 |
32 |

The datepicker can show dates that come from other than the main month 33 | being displayed. These other dates can also be made selectable.

34 |
35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/dialog/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Dialog Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/draggable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Draggable Demos 6 | 7 | 8 | 9 | 10 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/droppable/images/high_tatras.jpg -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/droppable/images/high_tatras2.jpg -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/droppable/images/high_tatras2_min.jpg -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/droppable/images/high_tatras3.jpg -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/droppable/images/high_tatras3_min.jpg -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/droppable/images/high_tatras4.jpg -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/droppable/images/high_tatras4_min.jpg -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/droppable/images/high_tatras_min.jpg -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/droppable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Droppable Demos 6 | 7 | 8 | 9 | 10 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/effect/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 16 |
17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/hide/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/images/calendar.gif -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/images/demo-config-on-tile.gif -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/images/demo-config-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/images/demo-config-on.gif -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/images/demo-spindown-closed.gif -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/images/demo-spindown-open.gif -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/images/icon-docs-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/images/icon-docs-info.gif -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/images/pbar-ani.gif -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/position/images/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/position/images/earth.jpg -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/position/images/flight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/position/images/flight.jpg -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/position/images/rocket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/position/images/rocket.jpg -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/position/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Position Demo 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 16 |
17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/progressbar/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Progressbar - Default functionality 6 | 7 | 8 | 9 | 10 | 11 | 12 | 19 | 20 | 21 | 22 |
23 | 24 |
25 | 26 |
27 | 28 | 29 | 30 |
31 |

Default determinate progress bar.

32 |
33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/progressbar/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/demos/progressbar/images/pbar-ani.gif -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/progressbar/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Progressbar Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/removeClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/resizable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Resizable Demos 6 | 7 | 8 | 9 | 10 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/selectable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Selectable Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/show/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/slider/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Slider - Default functionality 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 16 | 21 | 22 | 23 | 24 |
25 | 26 |
27 | 28 |
29 | 30 | 31 | 32 |
33 |

The basic slider is horizontal and has a single handle that can be moved with the mouse or by using the arrow keys.

34 |
35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/slider/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Slider Demos 6 | 7 | 8 | 9 | 10 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/sortable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Sortable Demos 6 | 7 | 8 | 9 | 10 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/switchClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/tabs/ajax/content4-broken.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/tabs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Tabs Demos 6 | 7 | 8 | 9 | 10 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/toggle/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/demos/toggleClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.12 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | @import url("jquery.ui.core.css"); 2 | @import url("jquery.ui.resizable.css"); 3 | @import url("jquery.ui.selectable.css"); 4 | @import url("jquery.ui.accordion.css"); 5 | @import url("jquery.ui.autocomplete.css"); 6 | @import url("jquery.ui.button.css"); 7 | @import url("jquery.ui.dialog.css"); 8 | @import url("jquery.ui.slider.css"); 9 | @import url("jquery.ui.tabs.css"); 10 | @import url("jquery.ui.datepicker.css"); 11 | @import url("jquery.ui.progressbar.css"); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Progressbar 1.8.12 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Selectable 1.8.12 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 11 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-bg_glass_20_555555_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-bg_glass_20_555555_1x400.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-icons_4b8e0b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-icons_4b8e0b_256x240.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-icons_a83300_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-icons_a83300_256x240.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-icons_cccccc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-icons_cccccc_256x240.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/external/jquery-ui/development-bundle/themes/ui-darkness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/ui-darkness/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI CSS Framework 1.8.12 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Theming 9 | */ 10 | @import "jquery.ui.base.css"; 11 | @import "jquery.ui.theme.css"; 12 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/ui-darkness/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | @import url("jquery.ui.core.css"); 2 | @import url("jquery.ui.resizable.css"); 3 | @import url("jquery.ui.selectable.css"); 4 | @import url("jquery.ui.accordion.css"); 5 | @import url("jquery.ui.autocomplete.css"); 6 | @import url("jquery.ui.button.css"); 7 | @import url("jquery.ui.dialog.css"); 8 | @import url("jquery.ui.slider.css"); 9 | @import url("jquery.ui.tabs.css"); 10 | @import url("jquery.ui.datepicker.css"); 11 | @import url("jquery.ui.progressbar.css"); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/ui-darkness/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Progressbar 1.8.12 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Progressbar#theming 9 | */ 10 | .ui-progressbar { height:2em; text-align: left; } 11 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/themes/ui-darkness/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Selectable 1.8.12 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Selectable#theming 9 | */ 10 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 11 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-af.js: -------------------------------------------------------------------------------- 1 | /* Afrikaans initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Renier Pretorius. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['af'] = { 5 | closeText: 'Selekteer', 6 | prevText: 'Vorige', 7 | nextText: 'Volgende', 8 | currentText: 'Vandag', 9 | monthNames: ['Januarie','Februarie','Maart','April','Mei','Junie', 10 | 'Julie','Augustus','September','Oktober','November','Desember'], 11 | monthNamesShort: ['Jan', 'Feb', 'Mrt', 'Apr', 'Mei', 'Jun', 12 | 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Des'], 13 | dayNames: ['Sondag', 'Maandag', 'Dinsdag', 'Woensdag', 'Donderdag', 'Vrydag', 'Saterdag'], 14 | dayNamesShort: ['Son', 'Maa', 'Din', 'Woe', 'Don', 'Vry', 'Sat'], 15 | dayNamesMin: ['So','Ma','Di','Wo','Do','Vr','Sa'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['af']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ar-DZ.js: -------------------------------------------------------------------------------- 1 | /* Algerian Arabic Translation for jQuery UI date picker plugin. (can be used for Tunisia)*/ 2 | /* Mohamed Cherif BOUCHELAGHEM -- cherifbouchelaghem@yahoo.fr */ 3 | 4 | jQuery(function($){ 5 | $.datepicker.regional['ar-DZ'] = { 6 | closeText: 'إغلاق', 7 | prevText: '<السابق', 8 | nextText: 'التالي>', 9 | currentText: 'اليوم', 10 | monthNames: ['جانفي', 'فيفري', 'مارس', 'أفريل', 'ماي', 'جوان', 11 | 'جويلية', 'أوت', 'سبتمبر','أكتوبر', 'نوفمبر', 'ديسمبر'], 12 | monthNamesShort: ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12'], 13 | dayNames: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], 14 | dayNamesShort: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], 15 | dayNamesMin: ['الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة', 'السبت'], 16 | weekHeader: 'أسبوع', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 6, 19 | isRTL: true, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ar-DZ']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-az.js: -------------------------------------------------------------------------------- 1 | /* Azerbaijani (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Jamil Najafov (necefov33@gmail.com). */ 3 | jQuery(function($) { 4 | $.datepicker.regional['az'] = { 5 | closeText: 'Bağla', 6 | prevText: '<Geri', 7 | nextText: 'İrəli>', 8 | currentText: 'Bugün', 9 | monthNames: ['Yanvar','Fevral','Mart','Aprel','May','İyun', 10 | 'İyul','Avqust','Sentyabr','Oktyabr','Noyabr','Dekabr'], 11 | monthNamesShort: ['Yan','Fev','Mar','Apr','May','İyun', 12 | 'İyul','Avq','Sen','Okt','Noy','Dek'], 13 | dayNames: ['Bazar','Bazar ertəsi','Çərşənbə axşamı','Çərşənbə','Cümə axşamı','Cümə','Şənbə'], 14 | dayNamesShort: ['B','Be','Ça','Ç','Ca','C','Ş'], 15 | dayNamesMin: ['B','B','Ç','С','Ç','C','Ş'], 16 | weekHeader: 'Hf', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['az']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bg.js: -------------------------------------------------------------------------------- 1 | /* Bulgarian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Stoyan Kyosev (http://svest.org). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['bg'] = { 5 | closeText: 'затвори', 6 | prevText: '<назад', 7 | nextText: 'напред>', 8 | nextBigText: '>>', 9 | currentText: 'днес', 10 | monthNames: ['Януари','Февруари','Март','Април','Май','Юни', 11 | 'Юли','Август','Септември','Октомври','Ноември','Декември'], 12 | monthNamesShort: ['Яну','Фев','Мар','Апр','Май','Юни', 13 | 'Юли','Авг','Сеп','Окт','Нов','Дек'], 14 | dayNames: ['Неделя','Понеделник','Вторник','Сряда','Четвъртък','Петък','Събота'], 15 | dayNamesShort: ['Нед','Пон','Вто','Сря','Чет','Пет','Съб'], 16 | dayNamesMin: ['Не','По','Вт','Ср','Че','Пе','Съ'], 17 | weekHeader: 'Wk', 18 | dateFormat: 'dd.mm.yy', 19 | firstDay: 1, 20 | isRTL: false, 21 | showMonthAfterYear: false, 22 | yearSuffix: ''}; 23 | $.datepicker.setDefaults($.datepicker.regional['bg']); 24 | }); 25 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-bs.js: -------------------------------------------------------------------------------- 1 | /* Bosnian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Kenan Konjo. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['bs'] = { 5 | closeText: 'Zatvori', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Danas', 9 | monthNames: ['Januar','Februar','Mart','April','Maj','Juni', 10 | 'Juli','August','Septembar','Oktobar','Novembar','Decembar'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Nedelja','Ponedeljak','Utorak','Srijeda','Četvrtak','Petak','Subota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Sri','Čet','Pet','Sub'], 15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['bs']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ca.js: -------------------------------------------------------------------------------- 1 | /* Inicialització en català per a l'extenció 'calendar' per jQuery. */ 2 | /* Writers: (joan.leon@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ca'] = { 5 | closeText: 'Tancar', 6 | prevText: '<Ant', 7 | nextText: 'Seg>', 8 | currentText: 'Avui', 9 | monthNames: ['Gener','Febrer','Març','Abril','Maig','Juny', 10 | 'Juliol','Agost','Setembre','Octubre','Novembre','Desembre'], 11 | monthNamesShort: ['Gen','Feb','Mar','Abr','Mai','Jun', 12 | 'Jul','Ago','Set','Oct','Nov','Des'], 13 | dayNames: ['Diumenge','Dilluns','Dimarts','Dimecres','Dijous','Divendres','Dissabte'], 14 | dayNamesShort: ['Dug','Dln','Dmt','Dmc','Djs','Dvn','Dsb'], 15 | dayNamesMin: ['Dg','Dl','Dt','Dc','Dj','Dv','Ds'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ca']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-cs.js: -------------------------------------------------------------------------------- 1 | /* Czech initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Tomas Muller (tomas@tomas-muller.net). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['cs'] = { 5 | closeText: 'Zavřít', 6 | prevText: '<Dříve', 7 | nextText: 'Později>', 8 | currentText: 'Nyní', 9 | monthNames: ['leden','únor','březen','duben','květen','červen', 10 | 'červenec','srpen','září','říjen','listopad','prosinec'], 11 | monthNamesShort: ['led','úno','bře','dub','kvě','čer', 12 | 'čvc','srp','zář','říj','lis','pro'], 13 | dayNames: ['neděle', 'pondělí', 'úterý', 'středa', 'čtvrtek', 'pátek', 'sobota'], 14 | dayNamesShort: ['ne', 'po', 'út', 'st', 'čt', 'pá', 'so'], 15 | dayNamesMin: ['ne','po','út','st','čt','pá','so'], 16 | weekHeader: 'Týd', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['cs']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-da.js: -------------------------------------------------------------------------------- 1 | /* Danish initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Jan Christensen ( deletestuff@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['da'] = { 5 | closeText: 'Luk', 6 | prevText: '<Forrige', 7 | nextText: 'Næste>', 8 | currentText: 'Idag', 9 | monthNames: ['Januar','Februar','Marts','April','Maj','Juni', 10 | 'Juli','August','September','Oktober','November','December'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'], 14 | dayNamesShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'], 15 | dayNamesMin: ['Sø','Ma','Ti','On','To','Fr','Lø'], 16 | weekHeader: 'Uge', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['da']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-de.js: -------------------------------------------------------------------------------- 1 | /* German initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Milian Wolff (mail@milianw.de). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['de'] = { 5 | closeText: 'schließen', 6 | prevText: '<zurück', 7 | nextText: 'Vor>', 8 | currentText: 'heute', 9 | monthNames: ['Januar','Februar','März','April','Mai','Juni', 10 | 'Juli','August','September','Oktober','November','Dezember'], 11 | monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Dez'], 13 | dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'], 14 | dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'], 15 | dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'], 16 | weekHeader: 'Wo', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['de']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-el.js: -------------------------------------------------------------------------------- 1 | /* Greek (el) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Alex Cicovic (http://www.alexcicovic.com) */ 3 | jQuery(function($){ 4 | $.datepicker.regional['el'] = { 5 | closeText: 'Κλείσιμο', 6 | prevText: 'Προηγούμενος', 7 | nextText: 'Επόμενος', 8 | currentText: 'Τρέχων Μήνας', 9 | monthNames: ['Ιανουάριος','Φεβρουάριος','Μάρτιος','Απρίλιος','Μάιος','Ιούνιος', 10 | 'Ιούλιος','Αύγουστος','Σεπτέμβριος','Οκτώβριος','Νοέμβριος','Δεκέμβριος'], 11 | monthNamesShort: ['Ιαν','Φεβ','Μαρ','Απρ','Μαι','Ιουν', 12 | 'Ιουλ','Αυγ','Σεπ','Οκτ','Νοε','Δεκ'], 13 | dayNames: ['Κυριακή','Δευτέρα','Τρίτη','Τετάρτη','Πέμπτη','Παρασκευή','Σάββατο'], 14 | dayNamesShort: ['Κυρ','Δευ','Τρι','Τετ','Πεμ','Παρ','Σαβ'], 15 | dayNamesMin: ['Κυ','Δε','Τρ','Τε','Πε','Πα','Σα'], 16 | weekHeader: 'Εβδ', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['el']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-AU.js: -------------------------------------------------------------------------------- 1 | /* English/Australia initialisation for the jQuery UI date picker plugin. */ 2 | /* Based on the en-GB initialisation. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['en-AU'] = { 5 | closeText: 'Done', 6 | prevText: 'Prev', 7 | nextText: 'Next', 8 | currentText: 'Today', 9 | monthNames: ['January','February','March','April','May','June', 10 | 'July','August','September','October','November','December'], 11 | monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 12 | 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 13 | dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], 14 | dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 15 | dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['en-AU']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js: -------------------------------------------------------------------------------- 1 | /* English/UK initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Stuart. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['en-GB'] = { 5 | closeText: 'Done', 6 | prevText: 'Prev', 7 | nextText: 'Next', 8 | currentText: 'Today', 9 | monthNames: ['January','February','March','April','May','June', 10 | 'July','August','September','October','November','December'], 11 | monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 12 | 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 13 | dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], 14 | dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 15 | dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['en-GB']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-en-NZ.js: -------------------------------------------------------------------------------- 1 | /* English/New Zealand initialisation for the jQuery UI date picker plugin. */ 2 | /* Based on the en-GB initialisation. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['en-NZ'] = { 5 | closeText: 'Done', 6 | prevText: 'Prev', 7 | nextText: 'Next', 8 | currentText: 'Today', 9 | monthNames: ['January','February','March','April','May','June', 10 | 'July','August','September','October','November','December'], 11 | monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 12 | 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 13 | dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], 14 | dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 15 | dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['en-NZ']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eo.js: -------------------------------------------------------------------------------- 1 | /* Esperanto initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Olivier M. (olivierweb@ifrance.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['eo'] = { 5 | closeText: 'Fermi', 6 | prevText: '<Anta', 7 | nextText: 'Sekv>', 8 | currentText: 'Nuna', 9 | monthNames: ['Januaro','Februaro','Marto','Aprilo','Majo','Junio', 10 | 'Julio','Aŭgusto','Septembro','Oktobro','Novembro','Decembro'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Aŭg','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Dimanĉo','Lundo','Mardo','Merkredo','Ĵaŭdo','Vendredo','Sabato'], 14 | dayNamesShort: ['Dim','Lun','Mar','Mer','Ĵaŭ','Ven','Sab'], 15 | dayNamesMin: ['Di','Lu','Ma','Me','Ĵa','Ve','Sa'], 16 | weekHeader: 'Sb', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['eo']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-es.js: -------------------------------------------------------------------------------- 1 | /* Inicialización en español para la extensión 'UI date picker' para jQuery. */ 2 | /* Traducido por Vester (xvester@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['es'] = { 5 | closeText: 'Cerrar', 6 | prevText: '<Ant', 7 | nextText: 'Sig>', 8 | currentText: 'Hoy', 9 | monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio', 10 | 'Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'], 11 | monthNamesShort: ['Ene','Feb','Mar','Abr','May','Jun', 12 | 'Jul','Ago','Sep','Oct','Nov','Dic'], 13 | dayNames: ['Domingo','Lunes','Martes','Miércoles','Jueves','Viernes','Sábado'], 14 | dayNamesShort: ['Dom','Lun','Mar','Mié','Juv','Vie','Sáb'], 15 | dayNamesMin: ['Do','Lu','Ma','Mi','Ju','Vi','Sá'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['es']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-et.js: -------------------------------------------------------------------------------- 1 | /* Estonian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Mart Sõmermaa (mrts.pydev at gmail com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['et'] = { 5 | closeText: 'Sulge', 6 | prevText: 'Eelnev', 7 | nextText: 'Järgnev', 8 | currentText: 'Täna', 9 | monthNames: ['Jaanuar','Veebruar','Märts','Aprill','Mai','Juuni', 10 | 'Juuli','August','September','Oktoober','November','Detsember'], 11 | monthNamesShort: ['Jaan', 'Veebr', 'Märts', 'Apr', 'Mai', 'Juuni', 12 | 'Juuli', 'Aug', 'Sept', 'Okt', 'Nov', 'Dets'], 13 | dayNames: ['Pühapäev', 'Esmaspäev', 'Teisipäev', 'Kolmapäev', 'Neljapäev', 'Reede', 'Laupäev'], 14 | dayNamesShort: ['Pühap', 'Esmasp', 'Teisip', 'Kolmap', 'Neljap', 'Reede', 'Laup'], 15 | dayNamesMin: ['P','E','T','K','N','R','L'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['et']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-eu.js: -------------------------------------------------------------------------------- 1 | /* Euskarako oinarria 'UI date picker' jquery-ko extentsioarentzat */ 2 | /* Karrikas-ek itzulia (karrikas@karrikas.com) */ 3 | jQuery(function($){ 4 | $.datepicker.regional['eu'] = { 5 | closeText: 'Egina', 6 | prevText: '<Aur', 7 | nextText: 'Hur>', 8 | currentText: 'Gaur', 9 | monthNames: ['Urtarrila','Otsaila','Martxoa','Apirila','Maiatza','Ekaina', 10 | 'Uztaila','Abuztua','Iraila','Urria','Azaroa','Abendua'], 11 | monthNamesShort: ['Urt','Ots','Mar','Api','Mai','Eka', 12 | 'Uzt','Abu','Ira','Urr','Aza','Abe'], 13 | dayNames: ['Igandea','Astelehena','Asteartea','Asteazkena','Osteguna','Ostirala','Larunbata'], 14 | dayNamesShort: ['Iga','Ast','Ast','Ast','Ost','Ost','Lar'], 15 | dayNamesMin: ['Ig','As','As','As','Os','Os','La'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'yy/mm/dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['eu']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fa.js: -------------------------------------------------------------------------------- 1 | /* Persian (Farsi) Translation for the jQuery UI date picker plugin. */ 2 | /* Javad Mowlanezhad -- jmowla@gmail.com */ 3 | /* Jalali calendar should supported soon! (Its implemented but I have to test it) */ 4 | jQuery(function($) { 5 | $.datepicker.regional['fa'] = { 6 | closeText: 'بستن', 7 | prevText: '<قبلي', 8 | nextText: 'بعدي>', 9 | currentText: 'امروز', 10 | monthNames: ['فروردين','ارديبهشت','خرداد','تير','مرداد','شهريور', 11 | 'مهر','آبان','آذر','دي','بهمن','اسفند'], 12 | monthNamesShort: ['1','2','3','4','5','6','7','8','9','10','11','12'], 13 | dayNames: ['يکشنبه','دوشنبه','سه‌شنبه','چهارشنبه','پنجشنبه','جمعه','شنبه'], 14 | dayNamesShort: ['ي','د','س','چ','پ','ج', 'ش'], 15 | dayNamesMin: ['ي','د','س','چ','پ','ج', 'ش'], 16 | weekHeader: 'هف', 17 | dateFormat: 'yy/mm/dd', 18 | firstDay: 6, 19 | isRTL: true, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['fa']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fi.js: -------------------------------------------------------------------------------- 1 | /* Finnish initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Harri Kilpi� (harrikilpio@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['fi'] = { 5 | closeText: 'Sulje', 6 | prevText: '«Edellinen', 7 | nextText: 'Seuraava»', 8 | currentText: 'Tänään', 9 | monthNames: ['Tammikuu','Helmikuu','Maaliskuu','Huhtikuu','Toukokuu','Kesäkuu', 10 | 'Heinäkuu','Elokuu','Syyskuu','Lokakuu','Marraskuu','Joulukuu'], 11 | monthNamesShort: ['Tammi','Helmi','Maalis','Huhti','Touko','Kesä', 12 | 'Heinä','Elo','Syys','Loka','Marras','Joulu'], 13 | dayNamesShort: ['Su','Ma','Ti','Ke','To','Pe','Su'], 14 | dayNames: ['Sunnuntai','Maanantai','Tiistai','Keskiviikko','Torstai','Perjantai','Lauantai'], 15 | dayNamesMin: ['Su','Ma','Ti','Ke','To','Pe','La'], 16 | weekHeader: 'Vk', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['fi']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fo.js: -------------------------------------------------------------------------------- 1 | /* Faroese initialisation for the jQuery UI date picker plugin */ 2 | /* Written by Sverri Mohr Olsen, sverrimo@gmail.com */ 3 | jQuery(function($){ 4 | $.datepicker.regional['fo'] = { 5 | closeText: 'Lat aftur', 6 | prevText: '<Fyrra', 7 | nextText: 'Næsta>', 8 | currentText: 'Í dag', 9 | monthNames: ['Januar','Februar','Mars','Apríl','Mei','Juni', 10 | 'Juli','August','September','Oktober','November','Desember'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Mei','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Des'], 13 | dayNames: ['Sunnudagur','Mánadagur','Týsdagur','Mikudagur','Hósdagur','Fríggjadagur','Leyardagur'], 14 | dayNamesShort: ['Sun','Mán','Týs','Mik','Hós','Frí','Ley'], 15 | dayNamesMin: ['Su','Má','Tý','Mi','Hó','Fr','Le'], 16 | weekHeader: 'Vk', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['fo']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js: -------------------------------------------------------------------------------- 1 | /* Swiss-French initialisation for the jQuery UI date picker plugin. */ 2 | /* Written Martin Voelkle (martin.voelkle@e-tc.ch). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['fr-CH'] = { 5 | closeText: 'Fermer', 6 | prevText: '<Préc', 7 | nextText: 'Suiv>', 8 | currentText: 'Courant', 9 | monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin', 10 | 'Juillet','Août','Septembre','Octobre','Novembre','Décembre'], 11 | monthNamesShort: ['Jan','Fév','Mar','Avr','Mai','Jun', 12 | 'Jul','Aoû','Sep','Oct','Nov','Déc'], 13 | dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'], 14 | dayNamesShort: ['Dim','Lun','Mar','Mer','Jeu','Ven','Sam'], 15 | dayNamesMin: ['Di','Lu','Ma','Me','Je','Ve','Sa'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['fr-CH']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-gl.js: -------------------------------------------------------------------------------- 1 | /* Galician localization for 'UI date picker' jQuery extension. */ 2 | /* Translated by Jorge Barreiro . */ 3 | jQuery(function($){ 4 | $.datepicker.regional['gl'] = { 5 | closeText: 'Pechar', 6 | prevText: '<Ant', 7 | nextText: 'Seg>', 8 | currentText: 'Hoxe', 9 | monthNames: ['Xaneiro','Febreiro','Marzo','Abril','Maio','Xuño', 10 | 'Xullo','Agosto','Setembro','Outubro','Novembro','Decembro'], 11 | monthNamesShort: ['Xan','Feb','Mar','Abr','Mai','Xuñ', 12 | 'Xul','Ago','Set','Out','Nov','Dec'], 13 | dayNames: ['Domingo','Luns','Martes','Mércores','Xoves','Venres','Sábado'], 14 | dayNamesShort: ['Dom','Lun','Mar','Mér','Xov','Ven','Sáb'], 15 | dayNamesMin: ['Do','Lu','Ma','Mé','Xo','Ve','Sá'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['gl']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-he.js: -------------------------------------------------------------------------------- 1 | /* Hebrew initialisation for the UI Datepicker extension. */ 2 | /* Written by Amir Hardon (ahardon at gmail dot com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['he'] = { 5 | closeText: 'סגור', 6 | prevText: '<הקודם', 7 | nextText: 'הבא>', 8 | currentText: 'היום', 9 | monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני', 10 | 'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'], 11 | monthNamesShort: ['1','2','3','4','5','6', 12 | '7','8','9','10','11','12'], 13 | dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'], 14 | dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], 15 | dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: true, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['he']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hr.js: -------------------------------------------------------------------------------- 1 | /* Croatian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Vjekoslav Nesek. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['hr'] = { 5 | closeText: 'Zatvori', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Danas', 9 | monthNames: ['Siječanj','Veljača','Ožujak','Travanj','Svibanj','Lipanj', 10 | 'Srpanj','Kolovoz','Rujan','Listopad','Studeni','Prosinac'], 11 | monthNamesShort: ['Sij','Velj','Ožu','Tra','Svi','Lip', 12 | 'Srp','Kol','Ruj','Lis','Stu','Pro'], 13 | dayNames: ['Nedjelja','Ponedjeljak','Utorak','Srijeda','Četvrtak','Petak','Subota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Sri','Čet','Pet','Sub'], 15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], 16 | weekHeader: 'Tje', 17 | dateFormat: 'dd.mm.yy.', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['hr']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hu.js: -------------------------------------------------------------------------------- 1 | /* Hungarian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Istvan Karaszi (jquery@spam.raszi.hu). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['hu'] = { 5 | closeText: 'bezárás', 6 | prevText: '« vissza', 7 | nextText: 'előre »', 8 | currentText: 'ma', 9 | monthNames: ['Január', 'Február', 'Március', 'Április', 'Május', 'Június', 10 | 'Július', 'Augusztus', 'Szeptember', 'Október', 'November', 'December'], 11 | monthNamesShort: ['Jan', 'Feb', 'Már', 'Ápr', 'Máj', 'Jún', 12 | 'Júl', 'Aug', 'Szep', 'Okt', 'Nov', 'Dec'], 13 | dayNames: ['Vasárnap', 'Hétfö', 'Kedd', 'Szerda', 'Csütörtök', 'Péntek', 'Szombat'], 14 | dayNamesShort: ['Vas', 'Hét', 'Ked', 'Sze', 'Csü', 'Pén', 'Szo'], 15 | dayNamesMin: ['V', 'H', 'K', 'Sze', 'Cs', 'P', 'Szo'], 16 | weekHeader: 'Hé', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['hu']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-hy.js: -------------------------------------------------------------------------------- 1 | /* Armenian(UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Levon Zakaryan (levon.zakaryan@gmail.com)*/ 3 | jQuery(function($){ 4 | $.datepicker.regional['hy'] = { 5 | closeText: 'Փակել', 6 | prevText: '<Նախ.', 7 | nextText: 'Հաջ.>', 8 | currentText: 'Այսօր', 9 | monthNames: ['Հունվար','Փետրվար','Մարտ','Ապրիլ','Մայիս','Հունիս', 10 | 'Հուլիս','Օգոստոս','Սեպտեմբեր','Հոկտեմբեր','Նոյեմբեր','Դեկտեմբեր'], 11 | monthNamesShort: ['Հունվ','Փետր','Մարտ','Ապր','Մայիս','Հունիս', 12 | 'Հուլ','Օգս','Սեպ','Հոկ','Նոյ','Դեկ'], 13 | dayNames: ['կիրակի','եկուշաբթի','երեքշաբթի','չորեքշաբթի','հինգշաբթի','ուրբաթ','շաբաթ'], 14 | dayNamesShort: ['կիր','երկ','երք','չրք','հնգ','ուրբ','շբթ'], 15 | dayNamesMin: ['կիր','երկ','երք','չրք','հնգ','ուրբ','շբթ'], 16 | weekHeader: 'ՇԲՏ', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['hy']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-id.js: -------------------------------------------------------------------------------- 1 | /* Indonesian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Deden Fathurahman (dedenf@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['id'] = { 5 | closeText: 'Tutup', 6 | prevText: '<mundur', 7 | nextText: 'maju>', 8 | currentText: 'hari ini', 9 | monthNames: ['Januari','Februari','Maret','April','Mei','Juni', 10 | 'Juli','Agustus','September','Oktober','Nopember','Desember'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Mei','Jun', 12 | 'Jul','Agus','Sep','Okt','Nop','Des'], 13 | dayNames: ['Minggu','Senin','Selasa','Rabu','Kamis','Jumat','Sabtu'], 14 | dayNamesShort: ['Min','Sen','Sel','Rab','kam','Jum','Sab'], 15 | dayNamesMin: ['Mg','Sn','Sl','Rb','Km','jm','Sb'], 16 | weekHeader: 'Mg', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['id']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-it.js: -------------------------------------------------------------------------------- 1 | /* Italian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Antonello Pasella (antonello.pasella@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['it'] = { 5 | closeText: 'Chiudi', 6 | prevText: '<Prec', 7 | nextText: 'Succ>', 8 | currentText: 'Oggi', 9 | monthNames: ['Gennaio','Febbraio','Marzo','Aprile','Maggio','Giugno', 10 | 'Luglio','Agosto','Settembre','Ottobre','Novembre','Dicembre'], 11 | monthNamesShort: ['Gen','Feb','Mar','Apr','Mag','Giu', 12 | 'Lug','Ago','Set','Ott','Nov','Dic'], 13 | dayNames: ['Domenica','Lunedì','Martedì','Mercoledì','Giovedì','Venerdì','Sabato'], 14 | dayNamesShort: ['Dom','Lun','Mar','Mer','Gio','Ven','Sab'], 15 | dayNamesMin: ['Do','Lu','Ma','Me','Gi','Ve','Sa'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['it']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ja.js: -------------------------------------------------------------------------------- 1 | /* Japanese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Kentaro SATO (kentaro@ranvis.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ja'] = { 5 | closeText: '閉じる', 6 | prevText: '<前', 7 | nextText: '次>', 8 | currentText: '今日', 9 | monthNames: ['1月','2月','3月','4月','5月','6月', 10 | '7月','8月','9月','10月','11月','12月'], 11 | monthNamesShort: ['1月','2月','3月','4月','5月','6月', 12 | '7月','8月','9月','10月','11月','12月'], 13 | dayNames: ['日曜日','月曜日','火曜日','水曜日','木曜日','金曜日','土曜日'], 14 | dayNamesShort: ['日','月','火','水','木','金','土'], 15 | dayNamesMin: ['日','月','火','水','木','金','土'], 16 | weekHeader: '週', 17 | dateFormat: 'yy/mm/dd', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['ja']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ko.js: -------------------------------------------------------------------------------- 1 | /* Korean initialisation for the jQuery calendar extension. */ 2 | /* Written by DaeKwon Kang (ncrash.dk@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ko'] = { 5 | closeText: '닫기', 6 | prevText: '이전달', 7 | nextText: '다음달', 8 | currentText: '오늘', 9 | monthNames: ['1월(JAN)','2월(FEB)','3월(MAR)','4월(APR)','5월(MAY)','6월(JUN)', 10 | '7월(JUL)','8월(AUG)','9월(SEP)','10월(OCT)','11월(NOV)','12월(DEC)'], 11 | monthNamesShort: ['1월(JAN)','2월(FEB)','3월(MAR)','4월(APR)','5월(MAY)','6월(JUN)', 12 | '7월(JUL)','8월(AUG)','9월(SEP)','10월(OCT)','11월(NOV)','12월(DEC)'], 13 | dayNames: ['일','월','화','수','목','금','토'], 14 | dayNamesShort: ['일','월','화','수','목','금','토'], 15 | dayNamesMin: ['일','월','화','수','목','금','토'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: '년'}; 22 | $.datepicker.setDefaults($.datepicker.regional['ko']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-kz.js: -------------------------------------------------------------------------------- 1 | /* Kazakh (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Dmitriy Karasyov (dmitriy.karasyov@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['kz'] = { 5 | closeText: 'Жабу', 6 | prevText: '<Алдыңғы', 7 | nextText: 'Келесі>', 8 | currentText: 'Бүгін', 9 | monthNames: ['Қаңтар','Ақпан','Наурыз','Сәуір','Мамыр','Маусым', 10 | 'Шілде','Тамыз','Қыркүйек','Қазан','Қараша','Желтоқсан'], 11 | monthNamesShort: ['Қаң','Ақп','Нау','Сәу','Мам','Мау', 12 | 'Шіл','Там','Қыр','Қаз','Қар','Жел'], 13 | dayNames: ['Жексенбі','Дүйсенбі','Сейсенбі','Сәрсенбі','Бейсенбі','Жұма','Сенбі'], 14 | dayNamesShort: ['жкс','дсн','ссн','срс','бсн','жма','снб'], 15 | dayNamesMin: ['Жк','Дс','Сс','Ср','Бс','Жм','Сн'], 16 | weekHeader: 'Не', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['kz']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lt.js: -------------------------------------------------------------------------------- 1 | /* Lithuanian (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* @author Arturas Paleicikas */ 3 | jQuery(function($){ 4 | $.datepicker.regional['lt'] = { 5 | closeText: 'Uždaryti', 6 | prevText: '<Atgal', 7 | nextText: 'Pirmyn>', 8 | currentText: 'Šiandien', 9 | monthNames: ['Sausis','Vasaris','Kovas','Balandis','Gegužė','Birželis', 10 | 'Liepa','Rugpjūtis','Rugsėjis','Spalis','Lapkritis','Gruodis'], 11 | monthNamesShort: ['Sau','Vas','Kov','Bal','Geg','Bir', 12 | 'Lie','Rugp','Rugs','Spa','Lap','Gru'], 13 | dayNames: ['sekmadienis','pirmadienis','antradienis','trečiadienis','ketvirtadienis','penktadienis','šeštadienis'], 14 | dayNamesShort: ['sek','pir','ant','tre','ket','pen','šeš'], 15 | dayNamesMin: ['Se','Pr','An','Tr','Ke','Pe','Še'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['lt']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-lv.js: -------------------------------------------------------------------------------- 1 | /* Latvian (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* @author Arturas Paleicikas */ 3 | jQuery(function($){ 4 | $.datepicker.regional['lv'] = { 5 | closeText: 'Aizvērt', 6 | prevText: 'Iepr', 7 | nextText: 'Nāka', 8 | currentText: 'Šodien', 9 | monthNames: ['Janvāris','Februāris','Marts','Aprīlis','Maijs','Jūnijs', 10 | 'Jūlijs','Augusts','Septembris','Oktobris','Novembris','Decembris'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Mai','Jūn', 12 | 'Jūl','Aug','Sep','Okt','Nov','Dec'], 13 | dayNames: ['svētdiena','pirmdiena','otrdiena','trešdiena','ceturtdiena','piektdiena','sestdiena'], 14 | dayNamesShort: ['svt','prm','otr','tre','ctr','pkt','sst'], 15 | dayNamesMin: ['Sv','Pr','Ot','Tr','Ct','Pk','Ss'], 16 | weekHeader: 'Nav', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['lv']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ml.js: -------------------------------------------------------------------------------- 1 | /* Malayalam (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Saji Nediyanchath (saji89@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ml'] = { 5 | closeText: 'ശരി', 6 | prevText: 'മുന്നത്തെ', 7 | nextText: 'അടുത്തത് ', 8 | currentText: 'ഇന്ന്', 9 | monthNames: ['ജനുവരി','ഫെബ്രുവരി','മാര്‍ച്ച്','ഏപ്രില്‍','മേയ്','ജൂണ്‍', 10 | 'ജൂലൈ','ആഗസ്റ്റ്','സെപ്റ്റംബര്‍','ഒക്ടോബര്‍','നവംബര്‍','ഡിസംബര്‍'], 11 | monthNamesShort: ['ജനു', 'ഫെബ്', 'മാര്‍', 'ഏപ്രി', 'മേയ്', 'ജൂണ്‍', 12 | 'ജൂലാ', 'ആഗ', 'സെപ്', 'ഒക്ടോ', 'നവം', 'ഡിസ'], 13 | dayNames: ['ഞായര്‍', 'തിങ്കള്‍', 'ചൊവ്വ', 'ബുധന്‍', 'വ്യാഴം', 'വെള്ളി', 'ശനി'], 14 | dayNamesShort: ['ഞായ', 'തിങ്ക', 'ചൊവ്വ', 'ബുധ', 'വ്യാഴം', 'വെള്ളി', 'ശനി'], 15 | dayNamesMin: ['ഞാ','തി','ചൊ','ബു','വ്യാ','വെ','ശ'], 16 | weekHeader: 'ആ', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ml']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ms.js: -------------------------------------------------------------------------------- 1 | /* Malaysian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Mohd Nawawi Mohamad Jamili (nawawi@ronggeng.net). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ms'] = { 5 | closeText: 'Tutup', 6 | prevText: '<Sebelum', 7 | nextText: 'Selepas>', 8 | currentText: 'hari ini', 9 | monthNames: ['Januari','Februari','Mac','April','Mei','Jun', 10 | 'Julai','Ogos','September','Oktober','November','Disember'], 11 | monthNamesShort: ['Jan','Feb','Mac','Apr','Mei','Jun', 12 | 'Jul','Ogo','Sep','Okt','Nov','Dis'], 13 | dayNames: ['Ahad','Isnin','Selasa','Rabu','Khamis','Jumaat','Sabtu'], 14 | dayNamesShort: ['Aha','Isn','Sel','Rab','kha','Jum','Sab'], 15 | dayNamesMin: ['Ah','Is','Se','Ra','Kh','Ju','Sa'], 16 | weekHeader: 'Mg', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ms']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-nl.js: -------------------------------------------------------------------------------- 1 | /* Dutch (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Mathias Bynens */ 3 | jQuery(function($){ 4 | $.datepicker.regional.nl = { 5 | closeText: 'Sluiten', 6 | prevText: '←', 7 | nextText: '→', 8 | currentText: 'Vandaag', 9 | monthNames: ['januari', 'februari', 'maart', 'april', 'mei', 'juni', 10 | 'juli', 'augustus', 'september', 'oktober', 'november', 'december'], 11 | monthNamesShort: ['jan', 'feb', 'maa', 'apr', 'mei', 'jun', 12 | 'jul', 'aug', 'sep', 'okt', 'nov', 'dec'], 13 | dayNames: ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'], 14 | dayNamesShort: ['zon', 'maa', 'din', 'woe', 'don', 'vri', 'zat'], 15 | dayNamesMin: ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional.nl); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-no.js: -------------------------------------------------------------------------------- 1 | /* Norwegian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Naimdjon Takhirov (naimdjon@gmail.com). */ 3 | 4 | jQuery(function($){ 5 | $.datepicker.regional['no'] = { 6 | closeText: 'Lukk', 7 | prevText: '«Forrige', 8 | nextText: 'Neste»', 9 | currentText: 'I dag', 10 | monthNames: ['januar','februar','mars','april','mai','juni','juli','august','september','oktober','november','desember'], 11 | monthNamesShort: ['jan','feb','mar','apr','mai','jun','jul','aug','sep','okt','nov','des'], 12 | dayNamesShort: ['søn','man','tir','ons','tor','fre','lør'], 13 | dayNames: ['søndag','mandag','tirsdag','onsdag','torsdag','fredag','lørdag'], 14 | dayNamesMin: ['sø','ma','ti','on','to','fr','lø'], 15 | weekHeader: 'Uke', 16 | dateFormat: 'dd.mm.yy', 17 | firstDay: 1, 18 | isRTL: false, 19 | showMonthAfterYear: false, 20 | yearSuffix: '' 21 | }; 22 | $.datepicker.setDefaults($.datepicker.regional['no']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pl.js: -------------------------------------------------------------------------------- 1 | /* Polish initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Jacek Wysocki (jacek.wysocki@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['pl'] = { 5 | closeText: 'Zamknij', 6 | prevText: '<Poprzedni', 7 | nextText: 'Następny>', 8 | currentText: 'Dziś', 9 | monthNames: ['Styczeń','Luty','Marzec','Kwiecień','Maj','Czerwiec', 10 | 'Lipiec','Sierpień','Wrzesień','Październik','Listopad','Grudzień'], 11 | monthNamesShort: ['Sty','Lu','Mar','Kw','Maj','Cze', 12 | 'Lip','Sie','Wrz','Pa','Lis','Gru'], 13 | dayNames: ['Niedziela','Poniedziałek','Wtorek','Środa','Czwartek','Piątek','Sobota'], 14 | dayNamesShort: ['Nie','Pn','Wt','Śr','Czw','Pt','So'], 15 | dayNamesMin: ['N','Pn','Wt','Śr','Cz','Pt','So'], 16 | weekHeader: 'Tydz', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['pl']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt-BR.js: -------------------------------------------------------------------------------- 1 | /* Brazilian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Leonildo Costa Silva (leocsilva@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['pt-BR'] = { 5 | closeText: 'Fechar', 6 | prevText: '<Anterior', 7 | nextText: 'Próximo>', 8 | currentText: 'Hoje', 9 | monthNames: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho', 10 | 'Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'], 11 | monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun', 12 | 'Jul','Ago','Set','Out','Nov','Dez'], 13 | dayNames: ['Domingo','Segunda-feira','Terça-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sábado'], 14 | dayNamesShort: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'], 15 | dayNamesMin: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['pt-BR']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-pt.js: -------------------------------------------------------------------------------- 1 | /* Portuguese initialisation for the jQuery UI date picker plugin. */ 2 | jQuery(function($){ 3 | $.datepicker.regional['pt'] = { 4 | closeText: 'Fechar', 5 | prevText: '<Anterior', 6 | nextText: 'Seguinte', 7 | currentText: 'Hoje', 8 | monthNames: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho', 9 | 'Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'], 10 | monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun', 11 | 'Jul','Ago','Set','Out','Nov','Dez'], 12 | dayNames: ['Domingo','Segunda-feira','Terça-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sábado'], 13 | dayNamesShort: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'], 14 | dayNamesMin: ['Dom','Seg','Ter','Qua','Qui','Sex','Sáb'], 15 | weekHeader: 'Sem', 16 | dateFormat: 'dd/mm/yy', 17 | firstDay: 0, 18 | isRTL: false, 19 | showMonthAfterYear: false, 20 | yearSuffix: ''}; 21 | $.datepicker.setDefaults($.datepicker.regional['pt']); 22 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-rm.js: -------------------------------------------------------------------------------- 1 | /* Romansh initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Yvonne Gienal (yvonne.gienal@educa.ch). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['rm'] = { 5 | closeText: 'Serrar', 6 | prevText: '<Suandant', 7 | nextText: 'Precedent>', 8 | currentText: 'Actual', 9 | monthNames: ['Schaner','Favrer','Mars','Avrigl','Matg','Zercladur', 'Fanadur','Avust','Settember','October','November','December'], 10 | monthNamesShort: ['Scha','Fev','Mar','Avr','Matg','Zer', 'Fan','Avu','Sett','Oct','Nov','Dec'], 11 | dayNames: ['Dumengia','Glindesdi','Mardi','Mesemna','Gievgia','Venderdi','Sonda'], 12 | dayNamesShort: ['Dum','Gli','Mar','Mes','Gie','Ven','Som'], 13 | dayNamesMin: ['Du','Gl','Ma','Me','Gi','Ve','So'], 14 | weekHeader: 'emna', 15 | dateFormat: 'dd/mm/yy', 16 | firstDay: 1, 17 | isRTL: false, 18 | showMonthAfterYear: false, 19 | yearSuffix: ''}; 20 | $.datepicker.setDefaults($.datepicker.regional['rm']); 21 | }); 22 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ro.js: -------------------------------------------------------------------------------- 1 | /* Romanian initialisation for the jQuery UI date picker plugin. 2 | * 3 | * Written by Edmond L. (ll_edmond@walla.com) 4 | * and Ionut G. Stan (ionut.g.stan@gmail.com) 5 | */ 6 | jQuery(function($){ 7 | $.datepicker.regional['ro'] = { 8 | closeText: 'Închide', 9 | prevText: '« Luna precedentă', 10 | nextText: 'Luna următoare »', 11 | currentText: 'Azi', 12 | monthNames: ['Ianuarie','Februarie','Martie','Aprilie','Mai','Iunie', 13 | 'Iulie','August','Septembrie','Octombrie','Noiembrie','Decembrie'], 14 | monthNamesShort: ['Ian', 'Feb', 'Mar', 'Apr', 'Mai', 'Iun', 15 | 'Iul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 16 | dayNames: ['Duminică', 'Luni', 'Marţi', 'Miercuri', 'Joi', 'Vineri', 'Sâmbătă'], 17 | dayNamesShort: ['Dum', 'Lun', 'Mar', 'Mie', 'Joi', 'Vin', 'Sâm'], 18 | dayNamesMin: ['Du','Lu','Ma','Mi','Jo','Vi','Sâ'], 19 | weekHeader: 'Săpt', 20 | dateFormat: 'dd.mm.yy', 21 | firstDay: 1, 22 | isRTL: false, 23 | showMonthAfterYear: false, 24 | yearSuffix: ''}; 25 | $.datepicker.setDefaults($.datepicker.regional['ro']); 26 | }); 27 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ru.js: -------------------------------------------------------------------------------- 1 | /* Russian (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Andrew Stromnov (stromnov@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ru'] = { 5 | closeText: 'Закрыть', 6 | prevText: '<Пред', 7 | nextText: 'След>', 8 | currentText: 'Сегодня', 9 | monthNames: ['Январь','Февраль','Март','Апрель','Май','Июнь', 10 | 'Июль','Август','Сентябрь','Октябрь','Ноябрь','Декабрь'], 11 | monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн', 12 | 'Июл','Авг','Сен','Окт','Ноя','Дек'], 13 | dayNames: ['воскресенье','понедельник','вторник','среда','четверг','пятница','суббота'], 14 | dayNamesShort: ['вск','пнд','втр','срд','чтв','птн','сбт'], 15 | dayNamesMin: ['Вс','Пн','Вт','Ср','Чт','Пт','Сб'], 16 | weekHeader: 'Нед', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ru']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sk.js: -------------------------------------------------------------------------------- 1 | /* Slovak initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Vojtech Rinik (vojto@hmm.sk). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sk'] = { 5 | closeText: 'Zavrieť', 6 | prevText: '<Predchádzajúci', 7 | nextText: 'Nasledujúci>', 8 | currentText: 'Dnes', 9 | monthNames: ['Január','Február','Marec','Apríl','Máj','Jún', 10 | 'Júl','August','September','Október','November','December'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Máj','Jún', 12 | 'Júl','Aug','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Nedel\'a','Pondelok','Utorok','Streda','Štvrtok','Piatok','Sobota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Str','Štv','Pia','Sob'], 15 | dayNamesMin: ['Ne','Po','Ut','St','Št','Pia','So'], 16 | weekHeader: 'Ty', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sk']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sl.js: -------------------------------------------------------------------------------- 1 | /* Slovenian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Jaka Jancar (jaka@kubje.org). */ 3 | /* c = č, s = š z = ž C = Č S = Š Z = Ž */ 4 | jQuery(function($){ 5 | $.datepicker.regional['sl'] = { 6 | closeText: 'Zapri', 7 | prevText: '<Prejšnji', 8 | nextText: 'Naslednji>', 9 | currentText: 'Trenutni', 10 | monthNames: ['Januar','Februar','Marec','April','Maj','Junij', 11 | 'Julij','Avgust','September','Oktober','November','December'], 12 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 13 | 'Jul','Avg','Sep','Okt','Nov','Dec'], 14 | dayNames: ['Nedelja','Ponedeljek','Torek','Sreda','Četrtek','Petek','Sobota'], 15 | dayNamesShort: ['Ned','Pon','Tor','Sre','Čet','Pet','Sob'], 16 | dayNamesMin: ['Ne','Po','To','Sr','Če','Pe','So'], 17 | weekHeader: 'Teden', 18 | dateFormat: 'dd.mm.yy', 19 | firstDay: 1, 20 | isRTL: false, 21 | showMonthAfterYear: false, 22 | yearSuffix: ''}; 23 | $.datepicker.setDefaults($.datepicker.regional['sl']); 24 | }); 25 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sq.js: -------------------------------------------------------------------------------- 1 | /* Albanian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Flakron Bytyqi (flakron@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sq'] = { 5 | closeText: 'mbylle', 6 | prevText: '<mbrapa', 7 | nextText: 'Përpara>', 8 | currentText: 'sot', 9 | monthNames: ['Janar','Shkurt','Mars','Prill','Maj','Qershor', 10 | 'Korrik','Gusht','Shtator','Tetor','Nëntor','Dhjetor'], 11 | monthNamesShort: ['Jan','Shk','Mar','Pri','Maj','Qer', 12 | 'Kor','Gus','Sht','Tet','Nën','Dhj'], 13 | dayNames: ['E Diel','E Hënë','E Martë','E Mërkurë','E Enjte','E Premte','E Shtune'], 14 | dayNamesShort: ['Di','Hë','Ma','Më','En','Pr','Sh'], 15 | dayNamesMin: ['Di','Hë','Ma','Më','En','Pr','Sh'], 16 | weekHeader: 'Ja', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sq']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js: -------------------------------------------------------------------------------- 1 | /* Serbian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Dejan Dimić. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sr-SR'] = { 5 | closeText: 'Zatvori', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Danas', 9 | monthNames: ['Januar','Februar','Mart','April','Maj','Jun', 10 | 'Jul','Avgust','Septembar','Oktobar','Novembar','Decembar'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Avg','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Nedelja','Ponedeljak','Utorak','Sreda','Četvrtak','Petak','Subota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Sre','Čet','Pet','Sub'], 15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], 16 | weekHeader: 'Sed', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sr-SR']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sr.js: -------------------------------------------------------------------------------- 1 | /* Serbian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Dejan Dimić. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sr'] = { 5 | closeText: 'Затвори', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Данас', 9 | monthNames: ['Јануар','Фебруар','Март','Април','Мај','Јун', 10 | 'Јул','Август','Септембар','Октобар','Новембар','Децембар'], 11 | monthNamesShort: ['Јан','Феб','Мар','Апр','Мај','Јун', 12 | 'Јул','Авг','Сеп','Окт','Нов','Дец'], 13 | dayNames: ['Недеља','Понедељак','Уторак','Среда','Четвртак','Петак','Субота'], 14 | dayNamesShort: ['Нед','Пон','Уто','Сре','Чет','Пет','Суб'], 15 | dayNamesMin: ['Не','По','Ут','Ср','Че','Пе','Су'], 16 | weekHeader: 'Сед', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sr']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-sv.js: -------------------------------------------------------------------------------- 1 | /* Swedish initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Anders Ekdahl ( anders@nomadiz.se). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sv'] = { 5 | closeText: 'Stäng', 6 | prevText: '«Förra', 7 | nextText: 'Nästa»', 8 | currentText: 'Idag', 9 | monthNames: ['Januari','Februari','Mars','April','Maj','Juni', 10 | 'Juli','Augusti','September','Oktober','November','December'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Dec'], 13 | dayNamesShort: ['Sön','Mån','Tis','Ons','Tor','Fre','Lör'], 14 | dayNames: ['Söndag','Måndag','Tisdag','Onsdag','Torsdag','Fredag','Lördag'], 15 | dayNamesMin: ['Sö','Må','Ti','On','To','Fr','Lö'], 16 | weekHeader: 'Ve', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sv']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-ta.js: -------------------------------------------------------------------------------- 1 | /* Tamil (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by S A Sureshkumar (saskumar@live.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ta'] = { 5 | closeText: 'மூடு', 6 | prevText: 'முன்னையது', 7 | nextText: 'அடுத்தது', 8 | currentText: 'இன்று', 9 | monthNames: ['தை','மாசி','பங்குனி','சித்திரை','வைகாசி','ஆனி', 10 | 'ஆடி','ஆவணி','புரட்டாசி','ஐப்பசி','கார்த்திகை','மார்கழி'], 11 | monthNamesShort: ['தை','மாசி','பங்','சித்','வைகா','ஆனி', 12 | 'ஆடி','ஆவ','புர','ஐப்','கார்','மார்'], 13 | dayNames: ['ஞாயிற்றுக்கிழமை','திங்கட்கிழமை','செவ்வாய்க்கிழமை','புதன்கிழமை','வியாழக்கிழமை','வெள்ளிக்கிழமை','சனிக்கிழமை'], 14 | dayNamesShort: ['ஞாயிறு','திங்கள்','செவ்வாய்','புதன்','வியாழன்','வெள்ளி','சனி'], 15 | dayNamesMin: ['ஞா','தி','செ','பு','வி','வெ','ச'], 16 | weekHeader: 'Не', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ta']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-th.js: -------------------------------------------------------------------------------- 1 | /* Thai initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by pipo (pipo@sixhead.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['th'] = { 5 | closeText: 'ปิด', 6 | prevText: '« ย้อน', 7 | nextText: 'ถัดไป »', 8 | currentText: 'วันนี้', 9 | monthNames: ['มกราคม','กุมภาพันธ์','มีนาคม','เมษายน','พฤษภาคม','มิถุนายน', 10 | 'กรกฎาคม','สิงหาคม','กันยายน','ตุลาคม','พฤศจิกายน','ธันวาคม'], 11 | monthNamesShort: ['ม.ค.','ก.พ.','มี.ค.','เม.ย.','พ.ค.','มิ.ย.', 12 | 'ก.ค.','ส.ค.','ก.ย.','ต.ค.','พ.ย.','ธ.ค.'], 13 | dayNames: ['อาทิตย์','จันทร์','อังคาร','พุธ','พฤหัสบดี','ศุกร์','เสาร์'], 14 | dayNamesShort: ['อา.','จ.','อ.','พ.','พฤ.','ศ.','ส.'], 15 | dayNamesMin: ['อา.','จ.','อ.','พ.','พฤ.','ศ.','ส.'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['th']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tj.js: -------------------------------------------------------------------------------- 1 | /* Tajiki (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Abdurahmon Saidov (saidovab@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['tj'] = { 5 | closeText: 'Идома', 6 | prevText: '<Қафо', 7 | nextText: 'Пеш>', 8 | currentText: 'Имрӯз', 9 | monthNames: ['Январ','Феврал','Март','Апрел','Май','Июн', 10 | 'Июл','Август','Сентябр','Октябр','Ноябр','Декабр'], 11 | monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн', 12 | 'Июл','Авг','Сен','Окт','Ноя','Дек'], 13 | dayNames: ['якшанбе','душанбе','сешанбе','чоршанбе','панҷшанбе','ҷумъа','шанбе'], 14 | dayNamesShort: ['якш','душ','сеш','чор','пан','ҷум','шан'], 15 | dayNamesMin: ['Як','Дш','Сш','Чш','Пш','Ҷм','Шн'], 16 | weekHeader: 'Хф', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['tj']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-tr.js: -------------------------------------------------------------------------------- 1 | /* Turkish initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Izzet Emre Erkan (kara@karalamalar.net). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['tr'] = { 5 | closeText: 'kapat', 6 | prevText: '<geri', 7 | nextText: 'ileri>', 8 | currentText: 'bugün', 9 | monthNames: ['Ocak','Şubat','Mart','Nisan','Mayıs','Haziran', 10 | 'Temmuz','Ağustos','Eylül','Ekim','Kasım','Aralık'], 11 | monthNamesShort: ['Oca','Şub','Mar','Nis','May','Haz', 12 | 'Tem','Ağu','Eyl','Eki','Kas','Ara'], 13 | dayNames: ['Pazar','Pazartesi','Salı','Çarşamba','Perşembe','Cuma','Cumartesi'], 14 | dayNamesShort: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'], 15 | dayNamesMin: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'], 16 | weekHeader: 'Hf', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['tr']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-uk.js: -------------------------------------------------------------------------------- 1 | /* Ukrainian (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Maxim Drogobitskiy (maxdao@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['uk'] = { 5 | closeText: 'Закрити', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Сьогодні', 9 | monthNames: ['Січень','Лютий','Березень','Квітень','Травень','Червень', 10 | 'Липень','Серпень','Вересень','Жовтень','Листопад','Грудень'], 11 | monthNamesShort: ['Січ','Лют','Бер','Кві','Тра','Чер', 12 | 'Лип','Сер','Вер','Жов','Лис','Гру'], 13 | dayNames: ['неділя','понеділок','вівторок','середа','четвер','п’ятниця','субота'], 14 | dayNamesShort: ['нед','пнд','вів','срд','чтв','птн','сбт'], 15 | dayNamesMin: ['Нд','Пн','Вт','Ср','Чт','Пт','Сб'], 16 | weekHeader: 'Не', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['uk']); 23 | }); -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Cloudream (cloudream@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-CN'] = { 5 | closeText: '关闭', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一','二','三','四','五','六', 12 | '七','八','九','十','十一','十二'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-CN']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by SCCY (samuelcychan@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-HK'] = { 5 | closeText: '關閉', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一','二','三','四','五','六', 12 | '七','八','九','十','十一','十二'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-HK']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Ressol (ressol@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-TW'] = { 5 | closeText: '關閉', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一','二','三','四','五','六', 12 | '七','八','九','十','十一','十二'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'yy/mm/dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-TW']); 23 | }); 24 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/jquery.effects.fade.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Fade 1.8.12 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Effects/Fade 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */ 13 | (function( $, undefined ) { 14 | 15 | $.effects.fade = function(o) { 16 | return this.queue(function() { 17 | var elem = $(this), 18 | mode = $.effects.setMode(elem, o.options.mode || 'hide'); 19 | 20 | elem.animate({ opacity: mode }, { 21 | queue: false, 22 | duration: o.duration, 23 | easing: o.options.easing, 24 | complete: function() { 25 | (o.callback && o.callback.apply(this, arguments)); 26 | elem.dequeue(); 27 | } 28 | }); 29 | }); 30 | }; 31 | 32 | })(jQuery); 33 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/minified/jquery.effects.blind.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Blind 1.8.12 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Effects/Blind 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */ 13 | (function(b){b.effects.blind=function(c){return this.queue(function(){var a=b(this),g=["position","top","bottom","left","right"],f=b.effects.setMode(a,c.options.mode||"hide"),d=c.options.direction||"vertical";b.effects.save(a,g);a.show();var e=b.effects.createWrapper(a).css({overflow:"hidden"}),h=d=="vertical"?"height":"width";d=d=="vertical"?e.height():e.width();f=="show"&&e.css(h,0);var i={};i[h]=f=="show"?d:0;e.animate(i,c.duration,c.options.easing,function(){f=="hide"&&a.hide();b.effects.restore(a, 14 | g);b.effects.removeWrapper(a);c.callback&&c.callback.apply(a[0],arguments);a.dequeue()})})}})(jQuery); 15 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/minified/jquery.effects.fade.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Fade 1.8.12 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Effects/Fade 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */ 13 | (function(b){b.effects.fade=function(a){return this.queue(function(){var c=b(this),d=b.effects.setMode(c,a.options.mode||"hide");c.animate({opacity:d},{queue:false,duration:a.duration,easing:a.options.easing,complete:function(){a.callback&&a.callback.apply(this,arguments);c.dequeue()}})})}})(jQuery); 14 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/minified/jquery.effects.highlight.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Highlight 1.8.12 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Effects/Highlight 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */ 13 | (function(b){b.effects.highlight=function(c){return this.queue(function(){var a=b(this),e=["backgroundImage","backgroundColor","opacity"],d=b.effects.setMode(a,c.options.mode||"show"),f={backgroundColor:a.css("backgroundColor")};if(d=="hide")f.opacity=0;b.effects.save(a,e);a.show().css({backgroundImage:"none",backgroundColor:c.options.color||"#ffff99"}).animate(f,{queue:false,duration:c.duration,easing:c.options.easing,complete:function(){d=="hide"&&a.hide();b.effects.restore(a,e);d=="show"&&!b.support.opacity&& 14 | this.style.removeAttribute("filter");c.callback&&c.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery); 15 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/ui/minified/jquery.effects.pulsate.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Pulsate 1.8.12 3 | * 4 | * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * http://jquery.org/license 7 | * 8 | * http://docs.jquery.com/UI/Effects/Pulsate 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */ 13 | (function(d){d.effects.pulsate=function(a){return this.queue(function(){var b=d(this),c=d.effects.setMode(b,a.options.mode||"show");times=(a.options.times||5)*2-1;duration=a.duration?a.duration/2:d.fx.speeds._default/2;isVisible=b.is(":visible");animateTo=0;if(!isVisible){b.css("opacity",0).show();animateTo=1}if(c=="hide"&&isVisible||c=="show"&&!isVisible)times--;for(c=0;c').appendTo(document.body).addClass(a.options.className).css({top:d.top,left:d.left,height:b.innerHeight(),width:b.innerWidth(),position:"absolute"}).animate(c,a.duration,a.options.easing,function(){f.remove();a.callback&&a.callback.apply(b[0],arguments); 14 | b.dequeue()})})}})(jQuery); 15 | -------------------------------------------------------------------------------- /HTML/external/jquery-ui/development-bundle/version.txt: -------------------------------------------------------------------------------- 1 | 1.8.12 2 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/compass/config.rb: -------------------------------------------------------------------------------- 1 | environment = :production 2 | project_type = :stand_alone 3 | http_path = "/" 4 | css_dir = "../styles" 5 | sass_dir = "." 6 | images_dir = "images" 7 | sass_options = { 8 | :line_numbers => false, 9 | :debug_info => false 10 | } 11 | 12 | # output_style = :compressed 13 | # output_style = :compact 14 | output_style = :expanded 15 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/compass/shCoreDefault.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeDefault.scss"; 3 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/compass/shCoreDjango.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeDjango.scss"; 3 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/compass/shCoreEclipse.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeEclipse.scss"; 3 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/compass/shCoreEmacs.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeEmacs.scss"; 3 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/compass/shCoreFadeToGrey.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeFadeToGrey.scss"; 3 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/compass/shCoreMDUltra.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeMDUltra.scss"; 3 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/compass/shCoreMidnight.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeMidnight.scss"; 3 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/compass/shCoreRDark.scss: -------------------------------------------------------------------------------- 1 | @import "shCore.scss"; 2 | @import "shThemeRDark.scss"; 3 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/compass/shThemeDefault.scss: -------------------------------------------------------------------------------- 1 | // Default Syntax Highlighter theme. 2 | 3 | @import "_theme_template.scss"; 4 | 5 | .syntaxhighlighter { 6 | .keyword { font-weight: bold !important; } 7 | } 8 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/compass/shThemeEmacs.scss: -------------------------------------------------------------------------------- 1 | // Emacs SyntaxHighlighter theme based on theme by Joshua Emmons 2 | // http://www.skia.net/ 3 | 4 | $background: black !default; 5 | 6 | $line_highlighted_background: #2A3133 !default; 7 | $line_highlighted_number: white !default; 8 | 9 | $gutter_text: #d3d3d3 !default; 10 | $gutter_border_color: #990000 !default; 11 | 12 | $toolbar_collapsed_a: #ebdb8d !default; 13 | $toolbar_collapsed_a_hover: #ff7d27 !default; 14 | $toolbar_collapsed_background: black !default; 15 | 16 | $toolbar_a: #fff !default; 17 | $toolbar_a_hover: #9ccff4 !default; 18 | 19 | $code_plain: #d3d3d3 !default; 20 | $code_comments: #ff7d27 !default; 21 | $code_string: #ff9e7b !default; 22 | $code_keyword: aqua !default; 23 | $code_preprocessor: #aec4de !default; 24 | $code_variable: #ffaa3e !default; 25 | $code_value: #009900 !default; 26 | $code_functions: #81cef9 !default; 27 | $code_constants: #ff9e7b !default; 28 | $code_color1: #ebdb8d !default; 29 | $code_color2: #ff7d27 !default; 30 | $code_color3: #aec4de !default; 31 | 32 | @import "_theme_template.scss"; 33 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/compass/shThemeMDUltra.scss: -------------------------------------------------------------------------------- 1 | // MDUltra SyntaxHighlighter theme based on Midnight Theme 2 | // http://www.mddev.co.uk/ 3 | 4 | $background: #222222 !default; 5 | 6 | $line_highlighted_background: #253e5a !default; 7 | $line_highlighted_number: white !default; 8 | 9 | $gutter_text: #38566f !default; 10 | $gutter_border_color: #435a5f !default; 11 | 12 | $toolbar_collapsed_a: #428bdd !default; 13 | $toolbar_collapsed_a_hover: lime !default; 14 | $toolbar_collapsed_background: black !default; 15 | 16 | $toolbar_a: #aaaaff !default; 17 | $toolbar_a_hover: #9ccff4 !default; 18 | 19 | $code_plain: lime !default; 20 | $code_comments: #428bdd !default; 21 | $code_string: lime !default; 22 | $code_keyword: #aaaaff !default; 23 | $code_preprocessor: #8aa6c1 !default; 24 | $code_variable: aqua !default; 25 | $code_value: #f7e741 !default; 26 | $code_functions: #ff8000 !default; 27 | $code_constants: yellow !default; 28 | $code_color1: red !default; 29 | $code_color2: yellow !default; 30 | $code_color3: #ffaa3e !default; 31 | 32 | @import "_theme_template.scss"; 33 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Hello SyntaxHighlighter 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |

Hello SyntaxHighlighter

15 |
16 | function helloSyntaxHighlighter()
17 | {
18 | 	return "hi!";
19 | }
20 | 
21 | 22 | 23 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/scripts/shBrushPlain.js: -------------------------------------------------------------------------------- 1 | /** 2 | * SyntaxHighlighter 3 | * http://alexgorbatchev.com/SyntaxHighlighter 4 | * 5 | * SyntaxHighlighter is donationware. If you are using it, please donate. 6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html 7 | * 8 | * @version 9 | * 3.0.83 (July 02 2010) 10 | * 11 | * @copyright 12 | * Copyright (C) 2004-2010 Alex Gorbatchev. 13 | * 14 | * @license 15 | * Dual licensed under the MIT and GPL licenses. 16 | */ 17 | ;(function() 18 | { 19 | // CommonJS 20 | typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null; 21 | 22 | function Brush() 23 | { 24 | }; 25 | 26 | Brush.prototype = new SyntaxHighlighter.Highlighter(); 27 | Brush.aliases = ['text', 'plain']; 28 | 29 | SyntaxHighlighter.brushes.Plain = Brush; 30 | 31 | // CommonJS 32 | typeof(exports) != 'undefined' ? exports.Brush = Brush : null; 33 | })(); 34 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/tests/.rvmrc: -------------------------------------------------------------------------------- 1 | rvm 1.8.7-p249@copydeca -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/tests/cases/001_basic.html: -------------------------------------------------------------------------------- 1 |
 2 | 	/**
 3 | 	 * multiline comment 
 4 | 	 */
 5 | 	
 6 | 	text
 7 | 	
 8 | 	// single line comment
 9 | 	
10 | 	text
11 | 	
12 | 	"string" text 'string' text "string"
13 | 	"string with \" escape" text 'string with \' escape' text "string with \" escape"
14 | 	
15 | 	var code = '\
16 | 		function helloWorld()\
17 | 		{\
18 | 			// this is great!\
19 | 			for(var i = 0; i <= 1; i++)\
20 | 				alert("yay");\
21 | 		}\
22 | 		';
23 | 
24 | 25 | 43 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/tests/cases/003_script_tag.html: -------------------------------------------------------------------------------- 1 |
2 | 22 |
23 | 24 | 43 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/tests/cases/005_no_gutter.html: -------------------------------------------------------------------------------- 1 |
 2 | 			public Image getImage(URL url, String name) {
 3 | 				try {
 4 | 					/*
 5 | 					   Regular multiline comment.
 6 | 					*/
 7 | 				    return getImage(new URL(url, name));
 8 | 				} catch (MalformedURLException e) {
 9 | 				    return null;
10 | 				}
11 | 			}
12 | 
13 | 14 | 34 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/tests/cases/007_collapse_interaction.html: -------------------------------------------------------------------------------- 1 | 45 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/tests/cases/008_first_line.html: -------------------------------------------------------------------------------- 1 |
 2 | 	partial class Foo
 3 | 	{
 4 | 		function test()
 5 | 		{
 6 | 			yield return;
 7 | 		}
 8 | 	}
 9 | 
10 | 11 | 30 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/tests/cases/009_class_name.html: -------------------------------------------------------------------------------- 1 |
 2 | 	public Image getImage(URL url, String name) {
 3 | 		try {
 4 | 			/*
 5 | 			   Regular multiline comment.
 6 | 			*/
 7 | 		    return getImage(new URL(url, name));
 8 | 		} catch (MalformedURLException e) {
 9 | 		    return null;
10 | 		}
11 | 	}
12 | 
13 | 14 | 33 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/tests/cases/012_server_side.html: -------------------------------------------------------------------------------- 1 | 9 | 10 |
11 |
12 | 13 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/tests/cases/013_html_script.html: -------------------------------------------------------------------------------- 1 |
 2 | <hello>
 3 | 	<%
 4 | 		package free.cafekiwi.gotapi;
 5 | 	%>
 6 | </hello>
 7 | 
 8 | 
11 | <%= print(); %>
12 | 
13 | 14 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/tests/commonjs_tests.js: -------------------------------------------------------------------------------- 1 | /** 2 | * This is a CommonJS compatibility test. You can run this file with node. 3 | */ 4 | require.paths.unshift(__dirname + '/../scripts'); 5 | 6 | var sys = require('sys'), 7 | shSyntaxHighlighter = require('shCore').SyntaxHighlighter, 8 | code = 'test', 9 | brushes = [ 10 | 'AS3', 11 | 'AppleScript', 12 | 'Bash', 13 | 'CSharp', 14 | 'ColdFusion', 15 | 'Cpp', 16 | 'Css', 17 | 'Delphi', 18 | 'Diff', 19 | 'Erlang', 20 | 'Groovy', 21 | 'JScript', 22 | 'Java', 23 | 'JavaFX', 24 | 'Perl', 25 | 'Php', 26 | 'Plain', 27 | 'PowerShell', 28 | 'Python', 29 | 'Ruby', 30 | 'Sass', 31 | 'Scala', 32 | 'Sql', 33 | 'Vb', 34 | 'Xml' 35 | ] 36 | ; 37 | 38 | brushes.sort(); 39 | 40 | for (var i = 0; i < brushes.length; i++) 41 | { 42 | var name = brushes[i], 43 | brush = require('shBrush' + name).Brush 44 | ; 45 | 46 | brush = new brush(); 47 | brush.init({ toolbar: false }); 48 | 49 | var result = brush.getHtml(code); 50 | 51 | sys.puts(name + (result != null ? ': ok' : ': NOT OK')); 52 | } 53 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/tests/webrick.rb: -------------------------------------------------------------------------------- 1 | require 'webrick' 2 | include WEBrick 3 | 4 | s = HTTPServer.new( 5 | :Port => 2010, 6 | :DocumentRoot => Dir::pwd 7 | ) 8 | s.mount('/sh/scripts', WEBrick::HTTPServlet::FileHandler, '../scripts') 9 | s.mount('/sh/styles', WEBrick::HTTPServlet::FileHandler, '../styles') 10 | trap('INT') { s.stop } 11 | s.start 12 | -------------------------------------------------------------------------------- /HTML/external/syntaxhighlighter_3.0.83/tests/webrick.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ruby webrick.rb 3 | -------------------------------------------------------------------------------- /HTML/indicators/progress.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | 3 | /** 4 | * Controller for progress bar. 5 | */ 6 | var pi = termkit.progress = function () { 7 | var that = this; 8 | 9 | this.$element = this.$markup(); 10 | this._value = 0; 11 | this.min = 0; 12 | this.max = 100; 13 | }; 14 | 15 | pi.prototype = { 16 | 17 | // Return active markup for this field. 18 | $markup: function () { 19 | var $progress = $('
').data('controller', this); 20 | var that = this; 21 | return $progress; 22 | }, 23 | 24 | set value(value) { 25 | this._value = Math.max(this.min, Math.min(this.max, value)); 26 | }, 27 | get value() { 28 | return this._value; 29 | }, 30 | 31 | updateElement: function () { 32 | this.value = this.value; 33 | this.$element.progressbar({ value: (this._value - this.min) / (this.max - this.min) * 100 }); 34 | }, 35 | 36 | }; 37 | 38 | /////////////////////////////////////////////////////////////////////////////// 39 | 40 | })(jQuery); 41 | -------------------------------------------------------------------------------- /HTML/indicators/spinner.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | 3 | /** 4 | * Controller for spinner. 5 | */ 6 | var pi = termkit.spinner = function () { 7 | var that = this; 8 | 9 | this.$element = this.$markup(); 10 | }; 11 | 12 | pi.prototype = { 13 | 14 | // Return active markup for this field. 15 | $markup: function () { 16 | var $spinner = $('
').data('controller', this); 17 | var that = this; 18 | return $spinner; 19 | }, 20 | 21 | }; 22 | 23 | /////////////////////////////////////////////////////////////////////////////// 24 | 25 | })(jQuery); 26 | -------------------------------------------------------------------------------- /HTML/socket.io/lib/vendor/uglifyjs/index.js: -------------------------------------------------------------------------------- 1 | exports.parser = require("./lib/parse-js"); 2 | exports.uglify = require("./lib/process"); 3 | -------------------------------------------------------------------------------- /HTML/socket.io/lib/vendor/uglifyjs/lib/squeeze-more.js: -------------------------------------------------------------------------------- 1 | var jsp = require("./parse-js"), 2 | pro = require("./process"), 3 | slice = jsp.slice, 4 | member = jsp.member, 5 | PRECEDENCE = jsp.PRECEDENCE, 6 | OPERATORS = jsp.OPERATORS; 7 | 8 | function ast_squeeze_more(ast) { 9 | var w = pro.ast_walker(), walk = w.walk; 10 | return w.with_walkers({ 11 | "call": function(expr, args) { 12 | if (expr[0] == "dot" && expr[2] == "toString" && args.length == 0) { 13 | // foo.toString() ==> foo+"" 14 | return [ "binary", "+", expr[1], [ "string", "" ]]; 15 | } 16 | } 17 | }, function() { 18 | return walk(ast); 19 | }); 20 | }; 21 | 22 | exports.ast_squeeze_more = ast_squeeze_more; 23 | -------------------------------------------------------------------------------- /HTML/socket.io/lib/vendor/uglifyjs/package.json: -------------------------------------------------------------------------------- 1 | {"name" : "uglify-js", 2 | "author" : "Mihai Bazon - http://github.com/mishoo", 3 | "version" : "0.0.1", 4 | "main" : "index.js", 5 | "bin" : { "uglifyjs" : "./bin/uglifyjs" }, 6 | } 7 | -------------------------------------------------------------------------------- /HTML/socket.io/lib/vendor/web-socket-js/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/socket.io/lib/vendor/web-socket-js/WebSocketMain.swf -------------------------------------------------------------------------------- /HTML/socket.io/lib/vendor/web-socket-js/WebSocketMainInsecure.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/HTML/socket.io/lib/vendor/web-socket-js/WebSocketMainInsecure.zip -------------------------------------------------------------------------------- /HTML/typography.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-size: 100%; 3 | } 4 | 5 | 6 | .termkitCommandView { 7 | font-family: "BitStream Vera Sans", "Lucida Grande", "Helvetica", Arial, sans-serif; 8 | font-size: 70%; 9 | } 10 | 11 | .termkitCommandView pre { 12 | font-family: "BitStream Vera Sans Mono", "Lucida Console", monospace; 13 | font-size: inherit; 14 | font-size: 87.5%; 15 | } 16 | 17 | .termkitOutputView .widgetFile .name { 18 | /* font-weight: bold; */ 19 | font-size: 1em; 20 | line-height: 1.6; 21 | color: #fff; 22 | } 23 | 24 | .termkitOutputView .widgetFile .meta { 25 | font-size: 0.8em; 26 | color: #777; 27 | } 28 | -------------------------------------------------------------------------------- /Illustrator/TermKit Icon 128 Windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Illustrator/TermKit Icon 128 Windows.png -------------------------------------------------------------------------------- /Illustrator/TermKit Icon 128.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Illustrator/TermKit Icon 128.ai -------------------------------------------------------------------------------- /Illustrator/TermKit Icon 128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Illustrator/TermKit Icon 128.png -------------------------------------------------------------------------------- /Illustrator/TermKit Icon 512.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Illustrator/TermKit Icon 512.ai -------------------------------------------------------------------------------- /Illustrator/TermKit Icon 512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Illustrator/TermKit Icon 512.png -------------------------------------------------------------------------------- /Illustrator/Token Icons.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Illustrator/Token Icons.ai -------------------------------------------------------------------------------- /Illustrator/brushed-metal.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Illustrator/brushed-metal.psd -------------------------------------------------------------------------------- /Illustrator/files-icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Illustrator/files-icon.psd -------------------------------------------------------------------------------- /Mockups/Architecture.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Mockups/Architecture.pdf -------------------------------------------------------------------------------- /Mockups/Process-Model.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Mockups/Process-Model.pdf -------------------------------------------------------------------------------- /Mockups/Shot-0.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Mockups/Shot-0.2.png -------------------------------------------------------------------------------- /Mockups/Shot-0.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Mockups/Shot-0.3.png -------------------------------------------------------------------------------- /Mockups/Shot-Highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Mockups/Shot-Highlight.png -------------------------------------------------------------------------------- /Mockups/Shot-Self-Commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Mockups/Shot-Self-Commit.png -------------------------------------------------------------------------------- /Mockups/TermKit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Mockups/TermKit.pdf -------------------------------------------------------------------------------- /Mockups/WindowsConfiguration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Mockups/WindowsConfiguration.png -------------------------------------------------------------------------------- /Node/nettest.js: -------------------------------------------------------------------------------- 1 | var termkit = { 2 | version: 1, 3 | }; 4 | print(typeof require, require); 5 | print(typeof require.paths, require.paths); 6 | print(typeof require.paths.unshift, require.paths.unshift); 7 | 8 | //require.paths.unshift('./socket.io-node/lib'); 9 | //require.paths.unshift('.'); 10 | //require.paths.unshift('../Shared/'); 11 | var util = require('util'); 12 | print(typeof util, util); 13 | print(typeof util.log, util.log); 14 | print(typeof util.debug, util.debug); 15 | util.log("It works!"); 16 | util.debug("something"); 17 | util.debug(4.5); 18 | util.debug("something"); 19 | 20 | var fs = require('fs'); 21 | file = fs.open("test.txt"); 22 | util.log(fs.readable); 23 | util.log(fs.writable); 24 | file.on('data', function(msg) { 25 | util.log(msg); 26 | }); 27 | file.on('close', function() { 28 | util.log("File closed."); 29 | }); 30 | -------------------------------------------------------------------------------- /Node/nodekit.js: -------------------------------------------------------------------------------- 1 | var termkit = { 2 | version: 1, 3 | }; 4 | require.paths.unshift('./socket.io-node/lib'); 5 | require.paths.unshift('.'); 6 | require.paths.unshift('../Shared/'); 7 | 8 | // Load requirements. 9 | var http = require('http'), 10 | io = require('socket.io') 11 | router = require("router"); 12 | 13 | // Load config file. 14 | var config = require('config').getConfig(); 15 | 16 | // Set up http server. 17 | var server = http.createServer(function (request, result) { 18 | // result.writeHeader(200, {'Content-Type': 'text/html'}); 19 | // result.writeBody('

TermKit

'); 20 | // result.finish(); 21 | }); 22 | 23 | server.listen(2222); 24 | 25 | // Set up WebSocket and handlers. 26 | var socket = io.listen(server); 27 | socket.on('connection', function (client) { 28 | var p = new router.router(client); 29 | }); 30 | -------------------------------------------------------------------------------- /Node/shell/builtin/builtin.js: -------------------------------------------------------------------------------- 1 | exports.commands = { 2 | cat: true, 3 | cd: true, 4 | clear: true, 5 | echo: true, 6 | get: true, 7 | grep: true, 8 | ls: true, 9 | pwd: true, 10 | }; 11 | -------------------------------------------------------------------------------- /Node/shell/builtin/clear.js: -------------------------------------------------------------------------------- 1 | var view = require('view/view'); 2 | 3 | exports.main = function (tokens, pipes, exit, environment) { 4 | 5 | pipes.viewOut('view.clear'); 6 | 7 | exit(true); 8 | }; 9 | -------------------------------------------------------------------------------- /Node/shell/builtin/echo.js: -------------------------------------------------------------------------------- 1 | var meta = require('shell/meta'); 2 | 3 | exports.main = function (tokens, pipes, exit, environment) { 4 | 5 | // Prepare text. 6 | tokens.shift(); 7 | var data = tokens.join(' '); 8 | 9 | // Write headers. 10 | var headers = new meta.headers(); 11 | headers.set({ 12 | 'Content-Type': [ 'text/plain', { charset: 'utf-8' } ], 13 | 'Content-Length': data.length, 14 | }); 15 | pipes.dataOut.write(headers.generate()); 16 | 17 | // Write data. 18 | pipes.dataOut.write(data); 19 | 20 | exit(true); 21 | }; 22 | 23 | -------------------------------------------------------------------------------- /Node/shell/builtin/null.js: -------------------------------------------------------------------------------- 1 | var view = require('view/view'); 2 | 3 | exports.main = function (tokens, pipes, exit, environment) { 4 | var out = new view.bridge(pipes.viewOut); 5 | out.print('Unknown command "' + tokens[0] + '"'); 6 | return exit(false); 7 | } 8 | -------------------------------------------------------------------------------- /Node/shell/builtin/pwd.js: -------------------------------------------------------------------------------- 1 | var view = require('view/view'); 2 | 3 | exports.main = function (tokens, pipes, exit, environment) { 4 | var out = new view.bridge(pipes.viewOut); 5 | 6 | var cwd = process.cwd(); 7 | out.print('Working Directory: ' + cwd); 8 | 9 | exit(true); 10 | }; -------------------------------------------------------------------------------- /Node/shell/worker.js: -------------------------------------------------------------------------------- 1 | require.paths.unshift('.'); 2 | require.paths.unshift('..'); 3 | require.paths.unshift(__dirname); 4 | require.paths.unshift(__dirname + '/..'); 5 | 6 | var processor = require('processor'); 7 | 8 | // Change to home directory. 9 | if (/* TODO: Check if /cygdrive/ exists */ true) 10 | process.chdir("/cygdrive/c"); 11 | else 12 | process.chdir(process.env.HOME); 13 | 14 | // Set up processor. 15 | var p = new processor.processor(process.openStdin(), process.stdout); 16 | -------------------------------------------------------------------------------- /Node/test.txt: -------------------------------------------------------------------------------- 1 | it's a line 2 | another line -------------------------------------------------------------------------------- /Site/coming-soon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Site/coming-soon.png -------------------------------------------------------------------------------- /Win32/CefSharp.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp.snk -------------------------------------------------------------------------------- /Win32/CefSharp/CefSharp.cpp: -------------------------------------------------------------------------------- 1 | // This is the main DLL file. 2 | 3 | #include "stdafx.h" 4 | 5 | #include "Settings.h" 6 | #include "BrowserSettings.h" 7 | #include "ReturnValue.h" 8 | #include "CefSharp.h" 9 | #include "HandlerAdapter.h" 10 | #include "CefWebBrowser.h" 11 | 12 | namespace CefSharp 13 | { 14 | 15 | /* 16 | public ref class WindowInfo 17 | { 18 | internal: 19 | CAutoNativePtr _windowInfo; 20 | 21 | public: 22 | WindowInfo(IntPtr handle) 23 | { 24 | _windowInfo = new CefWindowInfo(); 25 | 26 | HWND hWnd = static_cast(handle.ToPointer()); 27 | RECT rect; 28 | GetClientRect(hWnd, &rect); 29 | _windowInfo->SetAsChild(hWnd, rect); 30 | } 31 | };*/ 32 | 33 | ///////////////////////////////// END OF NAMESPACE 34 | } 35 | 36 | __declspec(dllexport ) int FakeExportedMethodToCauseLibFileToBeCreated() 37 | { 38 | return 0; 39 | } -------------------------------------------------------------------------------- /Win32/CefSharp/CefSharp.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /Win32/CefSharp/ConsoleMessageEventArgs.h: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | #pragma once 4 | 5 | using namespace System; 6 | 7 | namespace CefSharp 8 | { 9 | 10 | public ref class ConsoleMessageEventArgs : EventArgs 11 | { 12 | String^ _message; 13 | String^ _source; 14 | int _line; 15 | 16 | public: 17 | ConsoleMessageEventArgs(String^ message, String^ source, int line) 18 | : _message(message), _source(source), _line(line) {} 19 | 20 | property String^ Message { String^ get() { return _message; } } 21 | property String^ Source { String^ get() { return _source; } } 22 | property int Line { int get() { return _line; } } 23 | }; 24 | 25 | public delegate void ConsoleMessageEventHandler(Object^ sender, ConsoleMessageEventArgs^ e); 26 | 27 | } -------------------------------------------------------------------------------- /Win32/CefSharp/IBeforeResourceLoad.h: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | #pragma once 3 | 4 | #include "CefWebBrowser.h" 5 | #include "Request.h" 6 | #include "RequestResponse.h" 7 | 8 | using namespace System; 9 | using namespace System::IO; 10 | 11 | namespace CefSharp 12 | { 13 | public interface class IBeforeResourceLoad 14 | { 15 | public: 16 | 17 | /// called before all resource loads. 18 | /// allows the Request to be manipulated or an alternate response to be provided 19 | void HandleBeforeResourceLoad(CefWebBrowser^ browserControl, IRequestResponse^ requestResponse); 20 | }; 21 | } -------------------------------------------------------------------------------- /Win32/CefSharp/JsResultHandler.h: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | #pragma once 3 | 4 | namespace CefSharp 5 | { 6 | ref class CefWebBrowser; 7 | 8 | class JsResultHandler : public CefThreadSafeBase 9 | { 10 | const static char* DONE_FUNC_NAME; 11 | const static char* ERR_FUNC_NAME; 12 | 13 | gcroot _browserControl; 14 | 15 | JsResultHandler(CefWebBrowser^ browserControl) : _browserControl(browserControl) {} 16 | 17 | public: 18 | virtual bool Execute(const CefString& name, CefRefPtr object, const CefV8ValueList& arguments, CefRefPtr& retval, CefString& exception); 19 | 20 | static void Bind(CefWebBrowser^ browserControl, CefRefPtr domWindow); 21 | }; 22 | } -------------------------------------------------------------------------------- /Win32/CefSharp/Request.h: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | #pragma once 3 | 4 | using namespace System; 5 | using namespace System::Collections::Generic; 6 | 7 | namespace CefSharp 8 | { 9 | 10 | public interface class IRequest 11 | { 12 | property String^ Url { String^ get(); void set(String^ url); } 13 | property String^ Method { String^ get(); } 14 | IDictionary^ GetHeaders(); 15 | void SetHeaders(IDictionary^ headers); 16 | }; 17 | 18 | ref class CefRequestWrapper : public IRequest 19 | { 20 | MCefRefPtr _wrappedRequest; 21 | internal: 22 | CefRequestWrapper(CefRefPtr cefRequest) : _wrappedRequest(cefRequest) {} 23 | 24 | public: 25 | virtual property String^ Url { String^ get(); void set(String^ url); } 26 | virtual property String^ Method { String^ get(); } 27 | virtual IDictionary^ GetHeaders(); 28 | virtual void SetHeaders(IDictionary^ headers); 29 | 30 | }; 31 | 32 | } -------------------------------------------------------------------------------- /Win32/CefSharp/RequestResponse.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | #include "RequestResponse.h" 3 | 4 | namespace CefSharp 5 | { 6 | void RequestResponse::Cancel() 7 | { 8 | _action = ResponseAction::Cancel; 9 | } 10 | 11 | void RequestResponse::Redirect(String^ url) 12 | { 13 | _redirectUrl = url; 14 | _action = ResponseAction::Redirect; 15 | } 16 | 17 | void RequestResponse::RespondWith(Stream^ stream, String^ mimeType) 18 | { 19 | if(String::IsNullOrEmpty(mimeType)) 20 | { 21 | throw gcnew ArgumentException("must provide a mime type", "mimeType"); 22 | } 23 | 24 | if(stream == nullptr) 25 | { 26 | throw gcnew ArgumentNullException("stream"); 27 | } 28 | 29 | _responseStream = stream; 30 | _mimeType = mimeType; 31 | _action = ResponseAction::Respond; 32 | } 33 | 34 | } -------------------------------------------------------------------------------- /Win32/CefSharp/ReturnValue.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | namespace CefSharp 4 | { 5 | public enum class ReturnValue 6 | { 7 | Handled = 0, 8 | Continue 9 | }; 10 | } -------------------------------------------------------------------------------- /Win32/CefSharp/ScriptException.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | namespace CefSharp 4 | { 5 | } -------------------------------------------------------------------------------- /Win32/CefSharp/ScriptException.h: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | #pragma once 3 | 4 | using namespace System; 5 | using namespace System::Runtime::Serialization; 6 | 7 | namespace CefSharp 8 | { 9 | public ref class ScriptException : public Exception 10 | { 11 | public: ScriptException() 12 | : Exception() 13 | {} 14 | 15 | public: ScriptException(String^ message) 16 | : Exception(message) 17 | {} 18 | 19 | public: ScriptException(String^ message, Exception^ innerException) 20 | : Exception(message, innerException) 21 | {} 22 | 23 | public: ScriptException(SerializationInfo^ info, StreamingContext context) 24 | : Exception(info, context) 25 | {} 26 | }; 27 | 28 | } -------------------------------------------------------------------------------- /Win32/CefSharp/Stdafx.cpp: -------------------------------------------------------------------------------- 1 | // stdafx.cpp : source file that includes just the standard includes 2 | // CefSharp.pch will be the pre-compiled header 3 | // stdafx.obj will contain the pre-compiled type information 4 | 5 | #include "stdafx.h" 6 | -------------------------------------------------------------------------------- /Win32/CefSharp/Stdafx.h: -------------------------------------------------------------------------------- 1 | // stdafx.h : include file for standard system include files, 2 | // or project specific include files that are used frequently, 3 | // but are changed infrequently 4 | 5 | #pragma once 6 | 7 | #include 8 | #include 9 | #include "cef.h" 10 | #include "ManagedCefRefPtr.h" 11 | #include "Utils.h" 12 | -------------------------------------------------------------------------------- /Win32/CefSharp/StreamAdapter.h: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | #pragma once 3 | 4 | using namespace System; 5 | using namespace System::IO; 6 | 7 | namespace CefSharp 8 | { 9 | class StreamAdapter : public CefThreadSafeBase 10 | { 11 | gcroot _stream; 12 | 13 | public: 14 | virtual ~StreamAdapter(); 15 | StreamAdapter(Stream^ stream) : _stream(stream) { } 16 | 17 | virtual size_t Read(void* ptr, size_t size, size_t n); 18 | virtual int Seek(long offset, int whence); 19 | virtual long Tell(); 20 | virtual int Eof(); 21 | }; 22 | } -------------------------------------------------------------------------------- /Win32/CefSharp/Utils.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | namespace CefSharp 4 | { 5 | String^ convertToString(const cef_string_t& cefStr) 6 | { 7 | return gcnew String(cefStr.str); 8 | } 9 | 10 | String^ convertToString(const CefString& cefStr) 11 | { 12 | return gcnew String(cefStr.c_str()); 13 | } 14 | 15 | CefString convertFromString(String^ str) 16 | { 17 | pin_ptr pStr = PtrToStringChars(str); 18 | CefString cefStr(pStr); 19 | return cefStr; 20 | } 21 | 22 | void assignFromString(cef_string_t& cefStrT, String^ str) 23 | { 24 | cef_string_clear(&cefStrT); 25 | if(str != nullptr) 26 | { 27 | pin_ptr pStr = PtrToStringChars(str); 28 | cef_string_copy(pStr, str->Length, &cefStrT); 29 | } 30 | } 31 | 32 | } -------------------------------------------------------------------------------- /Win32/CefSharp/Utils.h: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | #pragma once 3 | 4 | using namespace System; 5 | 6 | namespace CefSharp 7 | { 8 | String^ convertToString(const cef_string_t& cefStr); 9 | String^ convertToString(const CefString& cefStr); 10 | CefString convertFromString(String^ str); 11 | void assignFromString(cef_string_t& cefStrT, String^ str); 12 | } -------------------------------------------------------------------------------- /Win32/CefSharp/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/app.ico -------------------------------------------------------------------------------- /Win32/CefSharp/include/npapi/NPAPI-README.txt: -------------------------------------------------------------------------------- 1 | The files in this directory have been copied from various locations in the 2 | Chromium source tree. They have been modified only to the extent necessary 3 | to work in the CEF Binary Distribution directory structure. Below is a 4 | listing of the original file locations. 5 | 6 | File Original Location 7 | ----------------------------------------------- 8 | basictypes.h base/ 9 | build_config.h build/ 10 | npapi.h third_party/npapi/bindings 11 | npapi_extensions.h third_party/npapi/bindings 12 | npfunctions.h third_party/npapi/bindings 13 | nphostapi.h third_party/npapi/bindings 14 | npruntime.h third_party/npapi/bindings 15 | nptypes.h third_party/npapi/bindings 16 | port.h base/ 17 | -------------------------------------------------------------------------------- /Win32/CefSharp/include/npapi/nphostapi.h: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2010 The Chromium Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style license that can be 3 | // found in the LICENSE file. 4 | 5 | #ifndef _NPHOSTAPI_H_ 6 | #define _NPHOSTAPI_H_ 7 | 8 | #include "port.h" 9 | #include "npapi.h" 10 | #include "npapi_extensions.h" 11 | #include "npfunctions.h" 12 | #include "npruntime.h" 13 | 14 | #ifdef __cplusplus 15 | extern "C" { 16 | #endif 17 | 18 | // 19 | // NPAPI library entry points 20 | // 21 | #if defined(OS_POSIX) && !defined(OS_MACOSX) 22 | typedef NPError (API_CALL * NP_InitializeFunc)(NPNetscapeFuncs* pNFuncs, 23 | NPPluginFuncs* pPFuncs); 24 | #else 25 | typedef NPError (API_CALL * NP_InitializeFunc)(NPNetscapeFuncs* pFuncs); 26 | typedef NPError (API_CALL * NP_GetEntryPointsFunc)(NPPluginFuncs* pFuncs); 27 | #endif 28 | typedef NPError (API_CALL * NP_ShutdownFunc)(void); 29 | 30 | #ifdef __cplusplus 31 | } // extern "C" 32 | #endif 33 | 34 | #endif // _NPHOSTAPI_H_ 35 | -------------------------------------------------------------------------------- /Win32/CefSharp/libs/Debug/libcef.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/Debug/libcef.lib -------------------------------------------------------------------------------- /Win32/CefSharp/libs/Debug/libcef_dll_wrapper.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/Debug/libcef_dll_wrapper.lib -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/CFLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/CFLite.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/JavaScriptCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/JavaScriptCore.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/SQLite3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/SQLite3.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/WebKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/WebKit.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/avcodec-52.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/avcodec-52.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/avformat-52.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/avformat-52.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/avutil-50.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/avutil-50.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/icudt40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/icudt40.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/icudt42.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/icudt42.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/icuin40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/icuin40.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/icuuc40.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/icuuc40.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/libcef.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/libcef.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/libcurl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/libcurl.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/libeay32.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/libexslt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/libexslt.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/libxml2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/libxml2.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/libxslt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/libxslt.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/objc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/objc.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/pthreadVC2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/pthreadVC2.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/General/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/General/ssleay32.dll -------------------------------------------------------------------------------- /Win32/CefSharp/libs/Release/libcef.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/Release/libcef.lib -------------------------------------------------------------------------------- /Win32/CefSharp/libs/Release/libcef_dll_wrapper.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/Release/libcef_dll_wrapper.lib -------------------------------------------------------------------------------- /Win32/CefSharp/libs/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/libs/nunit.framework.dll -------------------------------------------------------------------------------- /Win32/CefSharp/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by app.rc 4 | -------------------------------------------------------------------------------- /Win32/CefSharp/tools/nunit-console-runner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/tools/nunit-console-runner.dll -------------------------------------------------------------------------------- /Win32/CefSharp/tools/nunit-console-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/tools/nunit-console-x86.exe -------------------------------------------------------------------------------- /Win32/CefSharp/tools/nunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/tools/nunit.core.dll -------------------------------------------------------------------------------- /Win32/CefSharp/tools/nunit.core.interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/tools/nunit.core.interfaces.dll -------------------------------------------------------------------------------- /Win32/CefSharp/tools/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/tools/nunit.framework.dll -------------------------------------------------------------------------------- /Win32/CefSharp/tools/nunit.util.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/CefSharp/tools/nunit.util.dll -------------------------------------------------------------------------------- /Win32/Node.net/HostModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace Node.net 7 | { 8 | public class HostModule : IronJS.AutoWrapObject 9 | { 10 | /// 11 | /// A protected constructor for the HostModule base class. 12 | /// 13 | /// The JavaScript environment. 14 | protected HostModule(IronJS.Environment env) : base(env) 15 | { 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Win32/Node.net/LICENSE.txt: -------------------------------------------------------------------------------- 1 | This project contains source code from https://github.com/dnewcome/Node.net. 2 | 3 | It hence inherits the MIT license that project is licensed under. -------------------------------------------------------------------------------- /Win32/Node.net/Modules/AssertModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace Node.net.Modules 7 | { 8 | internal class AssertModule : HostModule 9 | { 10 | /// 11 | /// The public constructor for the 'assert' module. 12 | /// 13 | /// The JavaScript environment. 14 | public AssertModule(IronJS.Environment env) 15 | : base(env) 16 | { 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Win32/Node.net/Modules/ChildProcessesModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace Node.net.Modules 7 | { 8 | internal class ChildProcessesModule :HostModule 9 | { 10 | /// 11 | /// The public constructor for the 'child_processes' module. 12 | /// 13 | /// The JavaScript environment. 14 | public ChildProcessesModule(IronJS.Environment env) 15 | : base(env) 16 | { 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Win32/Node.net/Modules/CryptoModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace Node.net.Modules 7 | { 8 | internal class CryptoModule : HostModule 9 | { 10 | /// 11 | /// The public constructor for the 'crypto' module. 12 | /// 13 | /// The JavaScript environment. 14 | public CryptoModule(IronJS.Environment env) 15 | : base(env) 16 | { 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Win32/Node.net/Modules/DgramModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace Node.net.Modules 7 | { 8 | internal class DgramModule : HostModule 9 | { 10 | /// 11 | /// The public constructor for the 'dgram' module. 12 | /// 13 | /// The JavaScript environment. 14 | public DgramModule(IronJS.Environment env) 15 | : base(env) 16 | { 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Win32/Node.net/Modules/DnsModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace Node.net.Modules 7 | { 8 | internal class DnsModule : HostModule 9 | { 10 | /// 11 | /// The public constructor for the 'dns' module. 12 | /// 13 | /// The JavaScript environment. 14 | public DnsModule(IronJS.Environment env) 15 | : base(env) 16 | { 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Win32/Node.net/Modules/EventsModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace Node.net.Modules 7 | { 8 | internal class EventsModule : HostModule 9 | { 10 | /// 11 | /// The public constructor for the 'events' module. 12 | /// 13 | /// The JavaScript environment. 14 | public EventsModule(IronJS.Environment env) 15 | : base(env) 16 | { 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Win32/Node.net/Modules/FsModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using IronJS; 6 | using System.IO; 7 | using Node.net.Modules.Streams; 8 | 9 | namespace Node.net.Modules 10 | { 11 | internal class FsModule : HostModule 12 | { 13 | /// 14 | /// The public constructor for the 'fs' module. 15 | /// 16 | /// The JavaScript environment. 17 | public FsModule(IronJS.Environment env) 18 | : base(env) 19 | { 20 | } 21 | 22 | public CommonObject open(string filename) 23 | { 24 | StreamReader reader = new StreamReader(filename); 25 | return new NodeReadableStream(this.Env, reader); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /Win32/Node.net/Modules/HttpModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace Node.net.Modules 7 | { 8 | internal class HttpModule : HostModule 9 | { 10 | /// 11 | /// The public constructor for the 'http' module. 12 | /// 13 | /// The JavaScript environment. 14 | public HttpModule(IronJS.Environment env) 15 | : base(env) 16 | { 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Win32/Node.net/Modules/HttpsModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace Node.net.Modules 7 | { 8 | internal class HttpsModule : HostModule 9 | { 10 | /// 11 | /// The public constructor for the 'https' module. 12 | /// 13 | /// The JavaScript environment. 14 | public HttpsModule(IronJS.Environment env) 15 | : base(env) 16 | { 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Win32/Node.net/Modules/NetModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace Node.net.Modules 7 | { 8 | internal class NetModule : HostModule 9 | { 10 | /// 11 | /// The public constructor for the 'net' module. 12 | /// 13 | /// The JavaScript environment. 14 | public NetModule(IronJS.Environment env) 15 | : base(env) 16 | { 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Win32/Node.net/Modules/OsModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace Node.net.Modules 7 | { 8 | internal class OsModule : HostModule 9 | { 10 | /// 11 | /// The public constructor for the 'os' module. 12 | /// 13 | /// The JavaScript environment. 14 | public OsModule(IronJS.Environment env) 15 | : base(env) 16 | { 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Win32/Node.net/Modules/PathModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace Node.net.Modules 7 | { 8 | internal class PathModule : HostModule 9 | { 10 | /// 11 | /// The public constructor for the 'path' module. 12 | /// 13 | /// The JavaScript environment. 14 | public PathModule(IronJS.Environment env) 15 | : base(env) 16 | { 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Win32/Node.net/Modules/TlsModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace Node.net.Modules 7 | { 8 | internal class TlsModule : HostModule 9 | { 10 | /// 11 | /// The public constructor for the 'tls' module. 12 | /// 13 | /// The JavaScript environment. 14 | public TlsModule(IronJS.Environment env) 15 | : base(env) 16 | { 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Win32/Node.net/Modules/TtyModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace Node.net.Modules 7 | { 8 | internal class TtyModule : HostModule 9 | { 10 | /// 11 | /// The public constructor for the 'tty' module. 12 | /// 13 | /// The JavaScript environment. 14 | public TtyModule(IronJS.Environment env) 15 | : base(env) 16 | { 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Win32/Node.net/Modules/UrlModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace Node.net.Modules 7 | { 8 | internal class UrlModule : HostModule 9 | { 10 | /// 11 | /// The public constructor for the 'url' module. 12 | /// 13 | /// The JavaScript environment. 14 | public UrlModule(IronJS.Environment env) 15 | : base(env) 16 | { 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Win32/Node.net/Modules/VmModule.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | namespace Node.net.Modules 7 | { 8 | internal class VmModule : HostModule 9 | { 10 | /// 11 | /// The public constructor for the 'vm' module. 12 | /// 13 | /// The JavaScript environment. 14 | public VmModule(IronJS.Environment env) 15 | : base(env) 16 | { 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Win32/ScheduledBuild.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | rem Set the environment variables. 4 | call "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\vcvarsall.bat" x86 5 | cd "C:\Server Storage\Projects\TermKit\Win32" 6 | 7 | rem Build the solution. 8 | msbuild /t:Rebuild /fileLogger /fileLoggerParameters:LogFile=ScheduledBuild.log 9 | 10 | rem Pack and upload the results. 11 | cd "C:\Server Storage\Projects\TermKit\Win32\bin\Debug\Win32" 12 | "..\..\..\tools\ScheduledUpload\bin\x86\Debug\Nightly Upload Tool.exe" -------------------------------------------------------------------------------- /Win32/TermKit Console/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Windows.Forms; 5 | 6 | namespace Console 7 | { 8 | static class Program 9 | { 10 | /// 11 | /// The main entry point for the application. 12 | /// 13 | [STAThread] 14 | static void Main() 15 | { 16 | Application.EnableVisualStyles(); 17 | Application.SetCompatibleTextRenderingDefault(false); 18 | Application.Run(new MainForm()); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /Win32/TermKit Console/Properties/HTML.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/TermKit Console/Properties/HTML.zip -------------------------------------------------------------------------------- /Win32/TermKit Console/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Win32/TermKit Console/Protocols/ApplicationProtocol.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using CefSharp; 6 | using System.IO; 7 | 8 | namespace Console.Protocols 9 | { 10 | public class ApplicationProtocol : ISchemeHandler 11 | { 12 | public bool ProcessRequest(IRequest request, ref string mimeType, ref System.IO.Stream stream) 13 | { 14 | Uri uri = new Uri(request.Url); 15 | 16 | // Handle the application:/// protocol. 17 | mimeType = ClientResources.GetResourceType(uri.AbsolutePath); 18 | stream = new MemoryStream(ClientResources.GetResourceData(uri.AbsolutePath)); 19 | 20 | return true; 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Win32/TermKit Console/Protocols/ApplicationProtocolFactory.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using CefSharp; 6 | 7 | namespace Console.Protocols 8 | { 9 | public class ApplicationProtocolFactory : ISchemeHandlerFactory 10 | { 11 | public ISchemeHandler Create() 12 | { 13 | return new ApplicationProtocol(); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Win32/TermKit Console/Protocols/TermKitIconDefaultProtocol.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using CefSharp; 6 | using System.IO; 7 | 8 | namespace Console.Protocols 9 | { 10 | public class TermKitIconDefaultProtocol : ISchemeHandler 11 | { 12 | public bool ProcessRequest(IRequest request, ref string mimeType, ref System.IO.Stream stream) 13 | { 14 | Uri uri = new Uri(request.Url.Replace("://", ":///").TrimEnd(new char[] { '/' })); 15 | 16 | // Handle the termkit-icon-default:/// protocol. 17 | mimeType = "image/png"; 18 | stream = new MemoryStream(ClientIcons.GetDefaultIcon(uri.AbsolutePath.TrimStart(new char[] { '/' }))); 19 | 20 | return true; 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Win32/TermKit Console/Protocols/TermKitIconDefaultProtocolFactory.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using CefSharp; 6 | 7 | namespace Console.Protocols 8 | { 9 | public class TermKitIconDefaultProtocolFactory : ISchemeHandlerFactory 10 | { 11 | public ISchemeHandler Create() 12 | { 13 | return new TermKitIconDefaultProtocol(); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Win32/TermKit Console/Protocols/TermKitIconPreviewProtocol.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using CefSharp; 6 | using System.IO; 7 | 8 | namespace Console.Protocols 9 | { 10 | public class TermKitIconPreviewProtocol : ISchemeHandler 11 | { 12 | public bool ProcessRequest(IRequest request, ref string mimeType, ref System.IO.Stream stream) 13 | { 14 | Uri uri = new Uri(request.Url.Replace("://", ":///").TrimEnd(new char[] { '/' })); 15 | 16 | // Handle the termkit-icon-preview:/// protocol. 17 | mimeType = "image/png"; 18 | stream = new MemoryStream(ClientIcons.GetPathIcon(uri.AbsolutePath)); 19 | 20 | return true; 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Win32/TermKit Console/Protocols/TermKitIconPreviewProtocolFactory.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using CefSharp; 6 | 7 | namespace Console.Protocols 8 | { 9 | public class TermKitIconPreviewProtocolFactory : ISchemeHandlerFactory 10 | { 11 | public ISchemeHandler Create() 12 | { 13 | return new TermKitIconPreviewProtocol(); 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /Win32/TermKit Console/References/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/TermKit Console/References/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /Win32/TermKit Console/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/TermKit Console/icon.ico -------------------------------------------------------------------------------- /Win32/TermKit Console/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/TermKit Console/icon.png -------------------------------------------------------------------------------- /Win32/TermKit Local Server/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using Node.net; 6 | using System.IO; 7 | 8 | namespace TermKitLocalServer 9 | { 10 | class Program 11 | { 12 | static void Main(string[] args) 13 | { 14 | HostEngine engine = new HostEngine(); 15 | Stream stream = new FileStream(args[0], FileMode.Open); 16 | object o = engine.Execute(stream); 17 | Console.WriteLine("Result: ", o); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Win32/TermKit Service/NodeManager.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Windows.Forms; 9 | 10 | namespace Server 11 | { 12 | public partial class NodeManager : Form 13 | { 14 | public NodeManager() 15 | { 16 | InitializeComponent(); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Win32/TermKit Service/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.ServiceProcess; 5 | using System.Text; 6 | 7 | namespace Server 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | static void Main() 15 | { 16 | ServiceBase[] ServicesToRun; 17 | ServicesToRun = new ServiceBase[] 18 | { 19 | new TermKitService() 20 | }; 21 | ServiceBase.Run(ServicesToRun); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Win32/TermKit Service/ProjectInstaller.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections; 3 | using System.Collections.Generic; 4 | using System.ComponentModel; 5 | using System.Configuration.Install; 6 | using System.Linq; 7 | 8 | 9 | namespace Server 10 | { 11 | [RunInstaller(true)] 12 | public partial class ProjectInstaller : Installer 13 | { 14 | public ProjectInstaller() 15 | { 16 | InitializeComponent(); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Win32/TermKit Service/TermKitService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Diagnostics; 6 | using System.Linq; 7 | using System.ServiceProcess; 8 | using System.Text; 9 | 10 | namespace Server 11 | { 12 | public partial class TermKitService : ServiceBase 13 | { 14 | Process m_NodeJS = null; 15 | 16 | public TermKitService() 17 | { 18 | InitializeComponent(); 19 | } 20 | 21 | protected override void OnStart(string[] args) 22 | { 23 | if (this.m_NodeJS == null) 24 | { 25 | } 26 | } 27 | 28 | protected override void OnStop() 29 | { 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /Win32/Where is IronJS.txt: -------------------------------------------------------------------------------- 1 | You will need to create a new folder called IronJS and then clone: 2 | 3 | git+ssh://git@github.com:WindowsTermKit/IronJS.git 4 | 5 | to the folder. You will then have the source code for building IronJS 6 | and have the required dependencies for building the rest of the solution. -------------------------------------------------------------------------------- /Win32/tools/ScheduledUpload/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Win32/tools/ScheduledUpload/Resources/TrayIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/tools/ScheduledUpload/Resources/TrayIcon.ico -------------------------------------------------------------------------------- /Win32/tools/ScheduledUpload/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WindowsTermKit/TermKit/414a36452fac78e2553265c2b43be05dd7a61656/Win32/tools/ScheduledUpload/Resources/icon.ico -------------------------------------------------------------------------------- /Win32/tools/ScheduledUpload/ScheduledUpload.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 10.00 3 | # Visual Studio 2008 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ScheduledUpload", "ScheduledUpload.csproj", "{815CCC53-5E34-48A5-80DA-D8A099455887}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|x86 9 | Release|x86 = Release|x86 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {815CCC53-5E34-48A5-80DA-D8A099455887}.Debug|x86.ActiveCfg = Debug|x86 13 | {815CCC53-5E34-48A5-80DA-D8A099455887}.Debug|x86.Build.0 = Debug|x86 14 | {815CCC53-5E34-48A5-80DA-D8A099455887}.Release|x86.ActiveCfg = Release|x86 15 | {815CCC53-5E34-48A5-80DA-D8A099455887}.Release|x86.Build.0 = Release|x86 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /sloc.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | loc=0 3 | dirs="HTML Node" 4 | 5 | mv HTML/jquery.js . 6 | mv HTML/socket.io . 7 | mv Node/socket.io-node . 8 | mv HTML/external . 9 | 10 | for dir in $dirs; do 11 | files=`find $dir -type f | egrep -v "svn" | egrep -v "(DS_Store|pdf|svn|sql|png|txt|swfupload)"` 12 | lines=`wc -l $files | tail -1 | sed "s/total//g"` 13 | loc=$(($loc + $lines)) 14 | done 15 | 16 | mv socket.io HTML 17 | mv socket.io-node Node 18 | mv external HTML 19 | mv jquery.js HTML 20 | 21 | echo Lines of code: $loc 22 | --------------------------------------------------------------------------------