├── .gitattributes ├── .gitignore ├── LICENSE ├── PiBox ├── App │ ├── README.md │ └── __init__.py ├── CppClient │ ├── Config.py │ ├── SConscript │ ├── SConstruct │ ├── gen │ │ ├── README │ │ ├── SConscript │ │ └── autogen.h │ ├── inc │ │ ├── connect │ │ │ ├── baseserver.h │ │ │ ├── connectclient.h │ │ │ ├── cyclicserver.h │ │ │ ├── epollserver.h │ │ │ ├── threadserver.h │ │ │ └── udpserver.h │ │ ├── device │ │ │ └── serial.h │ │ ├── func │ │ │ └── inifile.h │ │ ├── lib │ │ │ └── jsoncpp │ │ │ │ ├── autolink.h │ │ │ │ ├── config.h │ │ │ │ ├── features.h │ │ │ │ ├── forwards.h │ │ │ │ ├── json.h │ │ │ │ ├── reader.h │ │ │ │ ├── value.h │ │ │ │ └── writer.h │ │ ├── pihome.h │ │ ├── service.h │ │ └── service │ │ │ ├── applicationservice.h │ │ │ ├── nasservice.h │ │ │ ├── servicebase.h │ │ │ └── statusservice.h │ ├── src │ │ ├── SConscript │ │ ├── connect │ │ │ ├── SConscript │ │ │ ├── baseserver.cpp │ │ │ ├── connectclient.cpp │ │ │ ├── cyclicserver.cpp │ │ │ ├── epollserver.cpp │ │ │ ├── threadserver.cpp │ │ │ └── udpserver.cpp │ │ ├── device │ │ │ ├── SConscript │ │ │ └── serial.cpp │ │ ├── func │ │ │ ├── SConscript │ │ │ └── inifile.c │ │ ├── main.cpp │ │ ├── service.cpp │ │ └── service │ │ │ ├── SConscript │ │ │ ├── applicationservice.cpp │ │ │ ├── nasservice.cpp │ │ │ ├── servicebase.cpp │ │ │ └── statusservice.cpp │ └── tools │ │ └── build_config.py ├── PiHome │ ├── PiApp │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── api.py │ │ ├── api_urls.py │ │ ├── context_processors.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── PiHome │ │ ├── __init__.py │ │ ├── settings.py │ │ ├── urls.py │ │ └── wsgi.py │ ├── README.md │ ├── WebShell │ │ ├── LICENSE │ │ ├── README.md │ │ ├── make_certificate.cfg │ │ ├── make_certificate.sh │ │ ├── webshell.pem │ │ ├── webshell.py │ │ └── www │ │ │ ├── back.png │ │ │ ├── cell.png │ │ │ ├── cells.png │ │ │ ├── delete.png │ │ │ ├── enter.png │ │ │ ├── head.png │ │ │ ├── heads.png │ │ │ ├── shift.png │ │ │ ├── webshell.css │ │ │ ├── webshell.html │ │ │ └── webshell.js │ ├── common │ │ ├── __init__.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── callback.py │ │ │ ├── client.py │ │ │ └── notification.py │ │ ├── driver │ │ │ ├── __init__.py │ │ │ └── linux_gpio.py │ │ ├── globaldata.py │ │ ├── struct │ │ │ ├── __init__.py │ │ │ ├── app_ini.py │ │ │ └── pci_list.py │ │ └── utils │ │ │ └── __init__.py │ ├── db.sqlite3 │ ├── filemanager │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── models.py │ │ ├── settings.py │ │ ├── static │ │ │ └── filemanager │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ ├── images │ │ │ │ ├── add_folder.png │ │ │ │ ├── close.png │ │ │ │ ├── copy.png │ │ │ │ ├── copy_public_link.png │ │ │ │ ├── cut.png │ │ │ │ ├── delete.png │ │ │ │ ├── download.png │ │ │ │ ├── folder.png │ │ │ │ ├── folder_big.png │ │ │ │ ├── home_folder.png │ │ │ │ ├── icons │ │ │ │ │ ├── css.png │ │ │ │ │ ├── default.png │ │ │ │ │ ├── doc.png │ │ │ │ │ ├── docx.png │ │ │ │ │ ├── gif.png │ │ │ │ │ ├── html.png │ │ │ │ │ ├── jpg.png │ │ │ │ │ ├── js.png │ │ │ │ │ ├── mkv.png │ │ │ │ │ ├── mp3.png │ │ │ │ │ ├── mp4.png │ │ │ │ │ ├── pdf.png │ │ │ │ │ ├── png.png │ │ │ │ │ ├── ppt.png │ │ │ │ │ ├── pptx.png │ │ │ │ │ ├── psd.png │ │ │ │ │ ├── swf.png │ │ │ │ │ ├── txt.png │ │ │ │ │ ├── xls.png │ │ │ │ │ ├── xlsx.png │ │ │ │ │ └── zip.png │ │ │ │ ├── opened_folder.png │ │ │ │ ├── paste.png │ │ │ │ ├── rename.png │ │ │ │ └── upload.png │ │ │ │ └── js │ │ │ │ ├── jquery │ │ │ │ ├── jquery-migrate.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── zclip │ │ │ │ │ ├── ZeroClipboard.swf │ │ │ │ │ └── jquery.zclip.min.js │ │ │ │ └── script.js │ │ ├── templates │ │ │ └── filemanager │ │ │ │ └── index.html │ │ ├── tests.py │ │ ├── urls.py │ │ ├── views.py │ │ └── widgets.py │ ├── manage.py │ ├── static │ │ ├── ajax │ │ │ └── dashboard-boxrefresh-demo.php │ │ ├── css │ │ │ ├── AdminLTE.css │ │ │ ├── Pi.css │ │ │ ├── bootstrap-slider │ │ │ │ └── slider.css │ │ │ ├── bootstrap-wysihtml5 │ │ │ │ ├── bootstrap3-wysihtml5.css │ │ │ │ └── bootstrap3-wysihtml5.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── box.css │ │ │ ├── colorpicker │ │ │ │ ├── bootstrap-colorpicker.css │ │ │ │ └── bootstrap-colorpicker.min.css │ │ │ ├── datatables │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ └── images │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ ├── datepicker │ │ │ │ └── datepicker3.css │ │ │ ├── daterangepicker │ │ │ │ └── daterangepicker-bs3.css │ │ │ ├── font-awesome.css │ │ │ ├── font-awesome.min.css │ │ │ ├── fullcalendar │ │ │ │ ├── fullcalendar.css │ │ │ │ └── fullcalendar.print.css │ │ │ ├── iCheck │ │ │ │ ├── all.css │ │ │ │ ├── flat │ │ │ │ │ ├── _all.css │ │ │ │ │ ├── aero.css │ │ │ │ │ ├── aero.png │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── blue.png │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ ├── flat.css │ │ │ │ │ ├── flat.png │ │ │ │ │ ├── flat@2x.png │ │ │ │ │ ├── green.css │ │ │ │ │ ├── green.png │ │ │ │ │ ├── green@2x.png │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── grey.png │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── orange.png │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── pink.png │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── purple.png │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ ├── red.css │ │ │ │ │ ├── red.png │ │ │ │ │ ├── red@2x.png │ │ │ │ │ ├── yellow.css │ │ │ │ │ ├── yellow.png │ │ │ │ │ └── yellow@2x.png │ │ │ │ ├── futurico │ │ │ │ │ ├── futurico.css │ │ │ │ │ ├── futurico.png │ │ │ │ │ └── futurico@2x.png │ │ │ │ ├── line │ │ │ │ │ ├── _all.css │ │ │ │ │ ├── aero.css │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── green.css │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── line.css │ │ │ │ │ ├── line.png │ │ │ │ │ ├── line@2x.png │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── red.css │ │ │ │ │ └── yellow.css │ │ │ │ ├── minimal │ │ │ │ │ ├── _all.css │ │ │ │ │ ├── aero.css │ │ │ │ │ ├── aero.png │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── blue.png │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ ├── green.css │ │ │ │ │ ├── green.png │ │ │ │ │ ├── green@2x.png │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── grey.png │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ ├── minimal.css │ │ │ │ │ ├── minimal.png │ │ │ │ │ ├── minimal@2x.png │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── orange.png │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── pink.png │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── purple.png │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ ├── red.css │ │ │ │ │ ├── red.png │ │ │ │ │ ├── red@2x.png │ │ │ │ │ ├── yellow.css │ │ │ │ │ ├── yellow.png │ │ │ │ │ └── yellow@2x.png │ │ │ │ ├── polaris │ │ │ │ │ ├── polaris.css │ │ │ │ │ ├── polaris.png │ │ │ │ │ └── polaris@2x.png │ │ │ │ └── square │ │ │ │ │ ├── _all.css │ │ │ │ │ ├── aero.css │ │ │ │ │ ├── aero.png │ │ │ │ │ ├── aero@2x.png │ │ │ │ │ ├── blue.css │ │ │ │ │ ├── blue.png │ │ │ │ │ ├── blue@2x.png │ │ │ │ │ ├── green.css │ │ │ │ │ ├── green.png │ │ │ │ │ ├── green@2x.png │ │ │ │ │ ├── grey.css │ │ │ │ │ ├── grey.png │ │ │ │ │ ├── grey@2x.png │ │ │ │ │ ├── orange.css │ │ │ │ │ ├── orange.png │ │ │ │ │ ├── orange@2x.png │ │ │ │ │ ├── pink.css │ │ │ │ │ ├── pink.png │ │ │ │ │ ├── pink@2x.png │ │ │ │ │ ├── purple.css │ │ │ │ │ ├── purple.png │ │ │ │ │ ├── purple@2x.png │ │ │ │ │ ├── red.css │ │ │ │ │ ├── red.png │ │ │ │ │ ├── red@2x.png │ │ │ │ │ ├── square.css │ │ │ │ │ ├── square.png │ │ │ │ │ ├── square@2x.png │ │ │ │ │ ├── yellow.css │ │ │ │ │ ├── yellow.png │ │ │ │ │ └── yellow@2x.png │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ │ └── ui-icons_f9bd01_256x240.png │ │ │ ├── ionicons.css │ │ │ ├── ionicons.min.css │ │ │ ├── ionslider │ │ │ │ ├── ion.rangeSlider.css │ │ │ │ ├── ion.rangeSlider.skinFlat.css │ │ │ │ └── ion.rangeSlider.skinNice.css │ │ │ ├── jQueryUI │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_100_e6e7e8_40x100.png │ │ │ │ │ ├── ui-bg_flat_100_f56954_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_f39c12_40x100.png │ │ │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_dadada_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_e6e6e6_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 │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui-1.10.3.custom.css │ │ │ │ ├── jquery-ui-1.10.3.custom.min.css │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ ├── jquery.ui.base.css │ │ │ │ ├── jquery.ui.button.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ ├── jquery.ui.menu.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.spinner.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ └── jquery.ui.tooltip.css │ │ │ ├── jvectormap │ │ │ │ └── jquery-jvectormap-1.2.2.css │ │ │ ├── morris │ │ │ │ └── morris.css │ │ │ └── timepicker │ │ │ │ ├── bootstrap-timepicker.css │ │ │ │ └── bootstrap-timepicker.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ ├── ionicons.eot │ │ │ ├── ionicons.svg │ │ │ ├── ionicons.ttf │ │ │ └── ionicons.woff │ │ ├── img │ │ │ ├── Thumbs.db │ │ │ ├── ajax-loader.gif │ │ │ ├── ajax-loader1.gif │ │ │ ├── avatar.png │ │ │ ├── avatar04.png │ │ │ ├── avatar2.png │ │ │ ├── avatar3.png │ │ │ ├── avatar5.png │ │ │ ├── avatar6.png │ │ │ ├── blur-background04.jpg │ │ │ ├── blur-background08.jpg │ │ │ ├── blur-background09.jpg │ │ │ ├── bootstrap-colorpicker │ │ │ │ ├── Thumbs.db │ │ │ │ ├── alpha-horizontal.png │ │ │ │ ├── alpha.png │ │ │ │ ├── hue-horizontal.png │ │ │ │ ├── hue.png │ │ │ │ └── saturation.png │ │ │ ├── credit │ │ │ │ ├── Thumbs.db │ │ │ │ ├── american-express.png │ │ │ │ ├── cirrus.png │ │ │ │ ├── mastercard.png │ │ │ │ ├── mestro.png │ │ │ │ ├── paypal.png │ │ │ │ ├── paypal2.png │ │ │ │ └── visa.png │ │ │ ├── house_plan.jpg │ │ │ ├── icon.png │ │ │ ├── icons.png │ │ │ ├── login.png │ │ │ ├── notlogin.png │ │ │ ├── pi_logo.png │ │ │ ├── sensor-numeric.png │ │ │ ├── sensor-picture.png │ │ │ ├── sensor-switch.png │ │ │ ├── sprite-skin-flat.png │ │ │ ├── sprite-skin-nice.png │ │ │ ├── user-bg.png │ │ │ ├── user.jpg │ │ │ └── user2.jpg │ │ ├── js │ │ │ ├── AdminLTE │ │ │ │ ├── app.js │ │ │ │ ├── dashboard.js │ │ │ │ └── demo.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── jQueryUI │ │ │ │ ├── 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-be.js │ │ │ │ │ ├── jquery.ui.datepicker-bg.js │ │ │ │ │ ├── jquery.ui.datepicker-bs.js │ │ │ │ │ ├── jquery.ui.datepicker-ca.js │ │ │ │ │ ├── jquery.ui.datepicker-cs.js │ │ │ │ │ ├── jquery.ui.datepicker-cy-GB.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-CA.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-hi.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-ka.js │ │ │ │ │ ├── jquery.ui.datepicker-kk.js │ │ │ │ │ ├── jquery.ui.datepicker-km.js │ │ │ │ │ ├── jquery.ui.datepicker-ko.js │ │ │ │ │ ├── jquery.ui.datepicker-ky.js │ │ │ │ │ ├── jquery.ui.datepicker-lb.js │ │ │ │ │ ├── jquery.ui.datepicker-lt.js │ │ │ │ │ ├── jquery.ui.datepicker-lv.js │ │ │ │ │ ├── jquery.ui.datepicker-mk.js │ │ │ │ │ ├── jquery.ui.datepicker-ml.js │ │ │ │ │ ├── jquery.ui.datepicker-ms.js │ │ │ │ │ ├── jquery.ui.datepicker-nb.js │ │ │ │ │ ├── jquery.ui.datepicker-nl-BE.js │ │ │ │ │ ├── jquery.ui.datepicker-nl.js │ │ │ │ │ ├── jquery.ui.datepicker-nn.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.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.effect-blind.js │ │ │ │ ├── jquery.ui.effect-bounce.js │ │ │ │ ├── jquery.ui.effect-clip.js │ │ │ │ ├── jquery.ui.effect-drop.js │ │ │ │ ├── jquery.ui.effect-explode.js │ │ │ │ ├── jquery.ui.effect-fade.js │ │ │ │ ├── jquery.ui.effect-fold.js │ │ │ │ ├── jquery.ui.effect-highlight.js │ │ │ │ ├── jquery.ui.effect-pulsate.js │ │ │ │ ├── jquery.ui.effect-scale.js │ │ │ │ ├── jquery.ui.effect-shake.js │ │ │ │ ├── jquery.ui.effect-slide.js │ │ │ │ ├── jquery.ui.effect-transfer.js │ │ │ │ ├── jquery.ui.effect.js │ │ │ │ ├── jquery.ui.menu.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.spinner.js │ │ │ │ ├── jquery.ui.tabs.js │ │ │ │ ├── jquery.ui.tooltip.js │ │ │ │ └── jquery.ui.widget.js │ │ │ ├── jquery.min.js │ │ │ └── plugins │ │ │ │ ├── bootstrap-slider │ │ │ │ └── bootstrap-slider.js │ │ │ │ ├── bootstrap-wysihtml5 │ │ │ │ ├── bootstrap3-wysihtml5.all.min.js │ │ │ │ └── bootstrap3-wysihtml5.js │ │ │ │ ├── ckeditor │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── adapters │ │ │ │ │ └── jquery.js │ │ │ │ ├── build-config.js │ │ │ │ ├── ckeditor.js │ │ │ │ ├── config.js │ │ │ │ ├── contents.css │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── is.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── ka.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── ms.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ ├── plugins │ │ │ │ │ ├── a11yhelp │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ │ └── lang │ │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ │ └── zh.js │ │ │ │ │ ├── about │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ ├── clipboard │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── paste.js │ │ │ │ │ ├── dialog │ │ │ │ │ │ └── dialogDefinition.js │ │ │ │ │ ├── fakeobjects │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ │ │ └── spacer.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── image │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ └── image.js │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── noimage.png │ │ │ │ │ ├── link │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ │ └── link.js │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ └── anchor.png │ │ │ │ │ ├── magicline │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ ├── pastefromword │ │ │ │ │ │ └── filter │ │ │ │ │ │ │ └── default.js │ │ │ │ │ ├── scayt │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ │ └── toolbar.css │ │ │ │ │ ├── specialchar │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── lang │ │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ │ └── specialchar.js │ │ │ │ │ ├── table │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── table.js │ │ │ │ │ ├── tabletools │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── tableCell.js │ │ │ │ │ └── wsc │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── ciframe.html │ │ │ │ │ │ ├── tmp.html │ │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ │ ├── wsc.css │ │ │ │ │ │ ├── wsc.js │ │ │ │ │ │ └── wsc_ie.js │ │ │ │ ├── skins │ │ │ │ │ └── moono │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ │ ├── dialog_opera.css │ │ │ │ │ │ ├── editor.css │ │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ │ └── refresh.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ │ └── readme.md │ │ │ │ └── styles.js │ │ │ │ ├── colorpicker │ │ │ │ ├── bootstrap-colorpicker.js │ │ │ │ └── bootstrap-colorpicker.min.js │ │ │ │ ├── datatables │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ └── jquery.dataTables.js │ │ │ │ ├── datepicker │ │ │ │ ├── bootstrap-datepicker.js │ │ │ │ └── locales │ │ │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ │ │ ├── bootstrap-datepicker.az.js │ │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ │ ├── bootstrap-datepicker.et.js │ │ │ │ │ ├── bootstrap-datepicker.fa.js │ │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ │ ├── bootstrap-datepicker.gl.js │ │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ │ │ ├── bootstrap-datepicker.kk.js │ │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ │ ├── bootstrap-datepicker.no.js │ │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ │ │ ├── bootstrap-datepicker.vi.js │ │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ │ │ ├── daterangepicker │ │ │ │ └── daterangepicker.js │ │ │ │ ├── flot │ │ │ │ ├── excanvas.js │ │ │ │ ├── excanvas.min.js │ │ │ │ ├── jquery.colorhelpers.js │ │ │ │ ├── jquery.colorhelpers.min.js │ │ │ │ ├── jquery.flot.canvas.js │ │ │ │ ├── jquery.flot.canvas.min.js │ │ │ │ ├── jquery.flot.categories.js │ │ │ │ ├── jquery.flot.categories.min.js │ │ │ │ ├── jquery.flot.crosshair.js │ │ │ │ ├── jquery.flot.crosshair.min.js │ │ │ │ ├── jquery.flot.errorbars.js │ │ │ │ ├── jquery.flot.errorbars.min.js │ │ │ │ ├── jquery.flot.fillbetween.js │ │ │ │ ├── jquery.flot.fillbetween.min.js │ │ │ │ ├── jquery.flot.image.js │ │ │ │ ├── jquery.flot.image.min.js │ │ │ │ ├── jquery.flot.js │ │ │ │ ├── jquery.flot.min.js │ │ │ │ ├── jquery.flot.navigate.js │ │ │ │ ├── jquery.flot.navigate.min.js │ │ │ │ ├── jquery.flot.pie.js │ │ │ │ ├── jquery.flot.pie.min.js │ │ │ │ ├── jquery.flot.resize.js │ │ │ │ ├── jquery.flot.resize.min.js │ │ │ │ ├── jquery.flot.selection.js │ │ │ │ ├── jquery.flot.selection.min.js │ │ │ │ ├── jquery.flot.stack.js │ │ │ │ ├── jquery.flot.stack.min.js │ │ │ │ ├── jquery.flot.symbol.js │ │ │ │ ├── jquery.flot.symbol.min.js │ │ │ │ ├── jquery.flot.threshold.js │ │ │ │ ├── jquery.flot.threshold.min.js │ │ │ │ ├── jquery.flot.time.js │ │ │ │ └── jquery.flot.time.min.js │ │ │ │ ├── fullcalendar │ │ │ │ ├── fullcalendar.js │ │ │ │ └── fullcalendar.min.js │ │ │ │ ├── iCheck │ │ │ │ ├── icheck.js │ │ │ │ └── icheck.min.js │ │ │ │ ├── input-mask │ │ │ │ ├── jquery.inputmask.date.extensions.js │ │ │ │ ├── jquery.inputmask.extensions.js │ │ │ │ ├── jquery.inputmask.js │ │ │ │ ├── jquery.inputmask.numeric.extensions.js │ │ │ │ ├── jquery.inputmask.phone.extensions.js │ │ │ │ ├── jquery.inputmask.regex.extensions.js │ │ │ │ └── phone-codes │ │ │ │ │ ├── phone-be.json │ │ │ │ │ ├── phone-codes.json │ │ │ │ │ └── readme.txt │ │ │ │ ├── ionslider │ │ │ │ └── ion.rangeSlider.min.js │ │ │ │ ├── jqueryKnob │ │ │ │ └── jquery.knob.js │ │ │ │ ├── jvectormap │ │ │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ │ │ └── jquery-jvectormap-world-mill-en.js │ │ │ │ ├── misc │ │ │ │ ├── html5shiv.js │ │ │ │ ├── jquery.ba-resize.min.js │ │ │ │ ├── jquery.placeholder.js │ │ │ │ ├── modernizr.min.js │ │ │ │ └── respond.min.js │ │ │ │ ├── morris │ │ │ │ ├── morris.js │ │ │ │ └── morris.min.js │ │ │ │ ├── raphael-min.js │ │ │ │ ├── slimScroll │ │ │ │ ├── jquery.slimscroll.js │ │ │ │ ├── jquery.slimscroll.min.js │ │ │ │ └── slimScroll.jquery.json │ │ │ │ ├── sparkline │ │ │ │ ├── jquery.sparkline.js │ │ │ │ └── jquery.sparkline.min.js │ │ │ │ └── timepicker │ │ │ │ ├── bootstrap-timepicker.js │ │ │ │ └── bootstrap-timepicker.min.js │ │ └── yaaw-master │ │ │ ├── README.md │ │ │ ├── TODO.md │ │ │ ├── css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.min.css │ │ │ └── main.css │ │ │ ├── img │ │ │ ├── favicon.ico │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── aria2.js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery-1.7.2.min.js │ │ │ ├── jquery.Storage.js │ │ │ ├── jquery.base64.min.js │ │ │ ├── jquery.jsonrpc.js │ │ │ ├── mustache.js │ │ │ ├── peerid.js │ │ │ └── yaaw.js │ │ │ └── offline.appcache │ └── templates │ │ ├── 404.html │ │ ├── 500.html │ │ ├── base-no-sidebar.html │ │ ├── base-user.html │ │ ├── base.html │ │ ├── dashboard │ │ └── dashboard.html │ │ ├── home │ │ ├── add.html │ │ ├── add_home.html │ │ ├── add_sensor.html │ │ ├── device.html │ │ ├── edit_sensor.html │ │ ├── help.html │ │ ├── help_en.html │ │ ├── home.html │ │ ├── manage.html │ │ └── sensor_data.html │ │ ├── login.html │ │ ├── nas │ │ ├── download.html │ │ ├── file.html │ │ └── video.html │ │ ├── notification.html │ │ ├── register.html │ │ ├── register_return.html │ │ ├── settings │ │ ├── account.html │ │ ├── api_account.html │ │ ├── api_general.html │ │ └── general.html │ │ ├── status │ │ ├── about.html │ │ ├── default.html │ │ ├── dmesg.html │ │ └── process.html │ │ └── webssh │ │ └── webssh.html ├── etc │ └── PiBox │ │ └── aria2 │ │ ├── aria2c.conf │ │ └── save │ │ └── aria2.session ├── install_env.sh ├── install_source.sh ├── log │ └── README.md ├── sh │ ├── README.md │ ├── aria2 │ │ ├── pauseAll.sh │ │ ├── start.sh │ │ ├── stop.sh │ │ └── unpauseAll.sh │ ├── callback │ │ ├── callout.py │ │ ├── gpio.py │ │ ├── readme.md │ │ └── send_email.py │ ├── datapoint_tools │ │ ├── num.py │ │ ├── pic.py │ │ └── switch.py │ └── syncdb.sh ├── start.sh └── stop.sh ├── README.md └── optional-app ├── GPIO ├── README.md ├── __init__.py ├── app.ini ├── static │ └── GPIO │ │ └── img │ │ └── pin_pic.png ├── templates │ └── GPIO │ │ └── gpio.html ├── urls.py └── views.py ├── README.md └── webcam ├── README.md ├── __init__.py ├── app.ini ├── templates └── webcam │ └── webcam.html ├── tmp └── cancel.png ├── urls.py └── views.py /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.map 3 | *.dblite 4 | *.elf 5 | *.bin 6 | *.hex 7 | *.axf 8 | *.exe 9 | *.pdb 10 | *.idb 11 | *.ilk 12 | *~ 13 | *.o 14 | *.obj 15 | *.bak 16 | *.dep 17 | *.lib 18 | *.a 19 | *.i 20 | *.d 21 | *.log 22 | -------------------------------------------------------------------------------- /PiBox/App/README.md: -------------------------------------------------------------------------------- 1 | You have to copy the app to the this folder,like 2 | 3 | cp optional-app/GPIO PiBox/App/ -------------------------------------------------------------------------------- /PiBox/App/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/App/__init__.py -------------------------------------------------------------------------------- /PiBox/CppClient/Config.py: -------------------------------------------------------------------------------- 1 | BUILD = 'debug' 2 | PLATFORM = "local" 3 | 4 | DEBUG_BUILD = 1 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /PiBox/CppClient/SConscript: -------------------------------------------------------------------------------- 1 | # for module compiling 2 | import os 3 | 4 | 5 | src = [] 6 | cwd = os.getcwd() 7 | list = os.listdir(cwd) 8 | 9 | for item in list: 10 | if os.path.isfile(os.path.join(cwd, item, 'SConscript')): 11 | src = src + SConscript(os.path.join(item, 'SConscript')) 12 | 13 | Return('src') 14 | -------------------------------------------------------------------------------- /PiBox/CppClient/gen/README: -------------------------------------------------------------------------------- 1 | This directory contains auto-generated files 2 | -------------------------------------------------------------------------------- /PiBox/CppClient/gen/SConscript: -------------------------------------------------------------------------------- 1 | # for module compiling 2 | import os 3 | 4 | 5 | src = [] 6 | cwd = os.getcwd() 7 | list = os.listdir(cwd) 8 | 9 | for item in list: 10 | if os.path.isfile(os.path.join(cwd, item, 'SConscript')): 11 | src = src + SConscript(os.path.join(item, 'SConscript')) 12 | 13 | Return('src') 14 | -------------------------------------------------------------------------------- /PiBox/CppClient/gen/autogen.h: -------------------------------------------------------------------------------- 1 | // auto-generated file 2 | #ifndef AUTOGEN_H 3 | 4 | #define AUTOGEN_H 5 | 6 | #define DEBUG_BUILD 1 7 | 8 | #endif // AUTOGEN_H 9 | 10 | -------------------------------------------------------------------------------- /PiBox/CppClient/inc/connect/connectclient.h: -------------------------------------------------------------------------------- 1 | #ifndef CONNECTCLIENT_H 2 | #define CONNECTCLIENT_H 3 | 4 | #include // for sockaddr_in 5 | #include // for socket 6 | #include // for socket 7 | #include 8 | #include 9 | 10 | #include // for printf 11 | #include // for exit 12 | #include // for bzero 13 | #include 14 | #include 15 | #include 16 | #include 17 | 18 | #include 19 | #include 20 | 21 | 22 | 23 | class ConnectClient 24 | { 25 | public: 26 | ConnectClient(); 27 | ~ConnectClient(); 28 | 29 | 30 | 31 | }; 32 | 33 | #endif // CONNECTCLIENT_H 34 | -------------------------------------------------------------------------------- /PiBox/CppClient/inc/connect/cyclicserver.h: -------------------------------------------------------------------------------- 1 | #ifndef CYCLICSERVER_H 2 | #define CYCLICSERVER_H 3 | 4 | #include // for sockaddr_in 5 | #include // for socket 6 | #include // for socket 7 | #include 8 | #include 9 | 10 | #include // for printf 11 | #include // for exit 12 | #include // for bzero 13 | #include 14 | #include 15 | #include 16 | #include 17 | 18 | #include 19 | #include 20 | 21 | #include "connect/baseserver.h" 22 | 23 | class CyclicServer : public BaseServer 24 | { 25 | public: 26 | CyclicServer(); 27 | ~CyclicServer(); 28 | 29 | 30 | virtual bool StartListen(); 31 | 32 | virtual void Process(); 33 | 34 | private: 35 | 36 | }; 37 | 38 | #endif // CYCLICSERVER_H 39 | -------------------------------------------------------------------------------- /PiBox/CppClient/inc/connect/epollserver.h: -------------------------------------------------------------------------------- 1 | #ifndef EPOLLSERVER_H 2 | #define EPOLLSERVER_H 3 | 4 | #include // for sockaddr_in 5 | #include // for socket 6 | #include // for socket 7 | 8 | #ifdef linux 9 | #include 10 | #endif 11 | 12 | #include 13 | #include 14 | 15 | #include // for printf 16 | #include // for exit 17 | #include // for bzero 18 | #include 19 | #include 20 | #include 21 | #include 22 | 23 | #include 24 | #include 25 | 26 | #include "connect/baseserver.h" 27 | 28 | class EpollServer : public BaseServer 29 | { 30 | public: 31 | EpollServer(); 32 | ~EpollServer(); 33 | 34 | virtual bool StartListen(); 35 | 36 | virtual void Process(); 37 | 38 | private: 39 | 40 | }; 41 | 42 | #endif // EPOLLSERVER_H 43 | -------------------------------------------------------------------------------- /PiBox/CppClient/inc/connect/threadserver.h: -------------------------------------------------------------------------------- 1 | #ifndef THREADSERVER_H 2 | #define THREADSERVER_H 3 | 4 | #include // for sockaddr_in 5 | #include // for socket 6 | #include // for socket 7 | #include 8 | #include 9 | 10 | #include // for printf 11 | #include // for exit 12 | #include // for bzero 13 | #include 14 | #include 15 | #include 16 | #include 17 | #include 18 | 19 | #include 20 | #include 21 | 22 | #include "connect/baseserver.h" 23 | 24 | class ThreadServer : public BaseServer 25 | { 26 | public: 27 | ThreadServer(); 28 | ~ThreadServer(); 29 | 30 | virtual bool StartListen(); 31 | 32 | virtual void Process(); 33 | 34 | private: 35 | 36 | }; 37 | 38 | #endif // THREADSERVER_H 39 | -------------------------------------------------------------------------------- /PiBox/CppClient/inc/func/inifile.h: -------------------------------------------------------------------------------- 1 | // inifile.h 2 | /** 3 | * @file 4 | * @brief initialization file read and write API 5 | * -size of the ini file must less than 16K 6 | * -after '=' in key value pair, can not support empty char. this would not like WIN32 API 7 | * -support comment using ';' prefix 8 | * -can not support multi line 9 | * @author Deng Yangjun 10 | * @date 2007-1-9 11 | * @version 0.2 12 | */ 13 | 14 | #ifndef INI_FILE_H_ 15 | #define INI_FILE_H_ 16 | #ifdef __cplusplus 17 | extern "C" 18 | { 19 | #endif 20 | int read_profile_string( const char *section, const char *key,char *value, int size,const char *default_value, const char *file); 21 | int read_profile_int( const char *section, const char *key,int default_value, const char *file); 22 | int write_profile_string( const char *section, const char *key,const char *value, const char *file); 23 | #ifdef __cplusplus 24 | }; //end of extern "C" { 25 | #endif 26 | #endif //end of INI_FILE_H_ -------------------------------------------------------------------------------- /PiBox/CppClient/inc/lib/jsoncpp/autolink.h: -------------------------------------------------------------------------------- 1 | #ifndef JSON_AUTOLINK_H_INCLUDED 2 | # define JSON_AUTOLINK_H_INCLUDED 3 | 4 | # include "config.h" 5 | 6 | # ifdef JSON_IN_CPPTL 7 | # include 8 | # endif 9 | 10 | # if !defined(JSON_NO_AUTOLINK) && !defined(JSON_DLL_BUILD) && !defined(JSON_IN_CPPTL) 11 | # define CPPTL_AUTOLINK_NAME "json" 12 | # undef CPPTL_AUTOLINK_DLL 13 | # ifdef JSON_DLL 14 | # define CPPTL_AUTOLINK_DLL 15 | # endif 16 | # include "autolink.h" 17 | # endif 18 | 19 | #endif // JSON_AUTOLINK_H_INCLUDED 20 | -------------------------------------------------------------------------------- /PiBox/CppClient/inc/lib/jsoncpp/forwards.h: -------------------------------------------------------------------------------- 1 | #ifndef JSON_FORWARDS_H_INCLUDED 2 | # define JSON_FORWARDS_H_INCLUDED 3 | 4 | # include "config.h" 5 | 6 | namespace Json { 7 | 8 | // writer.h 9 | class FastWriter; 10 | class StyledWriter; 11 | 12 | // reader.h 13 | class Reader; 14 | 15 | // features.h 16 | class Features; 17 | 18 | // value.h 19 | typedef int Int; 20 | typedef unsigned int UInt; 21 | class StaticString; 22 | class Path; 23 | class PathArgument; 24 | class Value; 25 | class ValueIteratorBase; 26 | class ValueIterator; 27 | class ValueConstIterator; 28 | #ifdef JSON_VALUE_USE_INTERNAL_MAP 29 | class ValueAllocator; 30 | class ValueMapAllocator; 31 | class ValueInternalLink; 32 | class ValueInternalArray; 33 | class ValueInternalMap; 34 | #endif // #ifdef JSON_VALUE_USE_INTERNAL_MAP 35 | 36 | } // namespace Json 37 | 38 | 39 | #endif // JSON_FORWARDS_H_INCLUDED 40 | -------------------------------------------------------------------------------- /PiBox/CppClient/inc/lib/jsoncpp/json.h: -------------------------------------------------------------------------------- 1 | #ifndef JSON_JSON_H_INCLUDED 2 | # define JSON_JSON_H_INCLUDED 3 | 4 | # include "autolink.h" 5 | # include "value.h" 6 | # include "reader.h" 7 | # include "writer.h" 8 | # include "features.h" 9 | 10 | #endif // JSON_JSON_H_INCLUDED 11 | -------------------------------------------------------------------------------- /PiBox/CppClient/inc/pihome.h: -------------------------------------------------------------------------------- 1 | #ifndef PIHOME_H 2 | #define PIHOME_H 3 | 4 | #include // for printf 5 | 6 | #ifdef DEBUG_BUILD 7 | #define DEBUG(x) fprintf(stderr, x) 8 | #else 9 | #define DEBUG(x) do {} while (0) 10 | #endif 11 | 12 | 13 | 14 | 15 | 16 | #endif // PIHOME_H 17 | -------------------------------------------------------------------------------- /PiBox/CppClient/inc/service.h: -------------------------------------------------------------------------------- 1 | #ifndef SERVICE_H 2 | #define SERVICE_H 3 | 4 | #include // for printf 5 | #include // for exit 6 | #include // for bzero 7 | #include 8 | #include 9 | #include 10 | 11 | #include 12 | #include 13 | #include 14 | 15 | #include "jsoncpp/json.h" 16 | 17 | class ServiceBase; 18 | 19 | class Service 20 | { 21 | public: 22 | Service(char *gbuf); 23 | ~Service(); 24 | void Start(); 25 | char *ifsend(int *send_len); 26 | 27 | static void RegisterService(std::string key, ServiceBase *value); 28 | 29 | private: 30 | ServiceBase *target_service_; 31 | std::string json_; 32 | Json::Value *root_; 33 | Json::Value *send_root_; 34 | static std::map service_map_; 35 | 36 | }; 37 | 38 | 39 | 40 | #endif // SERVICE_H 41 | -------------------------------------------------------------------------------- /PiBox/CppClient/inc/service/applicationservice.h: -------------------------------------------------------------------------------- 1 | #ifndef APPLICATIONSERVICE_H 2 | #define APPLICATIONSERVICE_H 3 | 4 | #include 5 | #include 6 | #include 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include 13 | #include "service/servicebase.h" 14 | #include "jsoncpp/json.h" 15 | 16 | typedef int (*APPFUN)(Json::Value *send_root, Json::Value *recv_root); 17 | typedef int (*APPFUN_INIT)(); 18 | 19 | class ApplicationService : public ServiceBase 20 | { 21 | public: 22 | ApplicationService(); 23 | ~ApplicationService(); 24 | 25 | const static std::string ktitle_; 26 | 27 | void Start(Json::Value *send_root, Json::Value *recv_root); 28 | 29 | int read_app_ini(const char* dirname); 30 | 31 | void HandleCmd(); 32 | 33 | private: 34 | std::map application_map_; 35 | std::vector app_list; 36 | std::vector dl_list; 37 | }; 38 | 39 | #endif // APPLICATIONSERVICE_H 40 | -------------------------------------------------------------------------------- /PiBox/CppClient/inc/service/nasservice.h: -------------------------------------------------------------------------------- 1 | #ifndef NASSERVICE_H 2 | #define NASSERVICE_H 3 | 4 | #include 5 | #include 6 | #include 7 | 8 | #include 9 | #include 10 | #include 11 | #include 12 | #include "service/servicebase.h" 13 | #include "jsoncpp/json.h" 14 | 15 | 16 | class NasService : public ServiceBase 17 | { 18 | public: 19 | NasService(); 20 | ~NasService(); 21 | 22 | const static std::string ktitle_; 23 | 24 | void Start(Json::Value *send_root, Json::Value *recv_root); 25 | 26 | void HandleCmd(); 27 | 28 | private: 29 | }; 30 | 31 | #endif // NASSERVICE_H 32 | -------------------------------------------------------------------------------- /PiBox/CppClient/inc/service/servicebase.h: -------------------------------------------------------------------------------- 1 | #ifndef SERVICEBASE_H 2 | #define SERVICEBASE_H 3 | 4 | #include 5 | 6 | #include 7 | #include 8 | 9 | #include "jsoncpp/json.h" 10 | 11 | class ServiceBase 12 | { 13 | public: 14 | ServiceBase(); 15 | virtual ~ServiceBase(); 16 | 17 | virtual void Start(Json::Value *send_root, Json::Value *recv_root); 18 | 19 | //used for service sync 20 | pthread_mutex_t mutex_; 21 | }; 22 | 23 | #endif // SERVICEBASE_H 24 | -------------------------------------------------------------------------------- /PiBox/CppClient/src/SConscript: -------------------------------------------------------------------------------- 1 | # for module compiling 2 | import os 3 | 4 | src = Glob('*.cpp') 5 | src += Glob('*.c') 6 | cwd = os.getcwd() 7 | list = os.listdir(cwd) 8 | 9 | for item in list: 10 | if os.path.isfile(os.path.join(cwd, item, 'SConscript')): 11 | src = src + SConscript(os.path.join(item, 'SConscript')) 12 | 13 | Return('src') 14 | -------------------------------------------------------------------------------- /PiBox/CppClient/src/connect/SConscript: -------------------------------------------------------------------------------- 1 | # for module compiling 2 | import os 3 | 4 | src = Glob('*.cpp') 5 | src += Glob('*.c') 6 | 7 | Return('src') 8 | -------------------------------------------------------------------------------- /PiBox/CppClient/src/connect/connectclient.cpp: -------------------------------------------------------------------------------- 1 | #include "connect/connectclient.h" 2 | 3 | 4 | 5 | ConnectClient::ConnectClient() 6 | { 7 | 8 | } 9 | 10 | ConnectClient::~ConnectClient() 11 | { 12 | 13 | } 14 | 15 | -------------------------------------------------------------------------------- /PiBox/CppClient/src/connect/epollserver.cpp: -------------------------------------------------------------------------------- 1 | #include "connect/epollserver.h" 2 | 3 | 4 | EpollServer::EpollServer() 5 | { 6 | 7 | } 8 | 9 | EpollServer::~EpollServer() 10 | { 11 | 12 | } 13 | 14 | 15 | bool EpollServer::StartListen() 16 | { 17 | #ifdef linux 18 | 19 | 20 | #endif 21 | 22 | return true; 23 | } 24 | 25 | 26 | void EpollServer::Process() 27 | { 28 | #ifdef linux 29 | 30 | #endif 31 | } 32 | 33 | -------------------------------------------------------------------------------- /PiBox/CppClient/src/device/SConscript: -------------------------------------------------------------------------------- 1 | # for module compiling 2 | import os 3 | 4 | src = Glob('*.cpp') 5 | src += Glob('*.c') 6 | 7 | Return('src') 8 | -------------------------------------------------------------------------------- /PiBox/CppClient/src/func/SConscript: -------------------------------------------------------------------------------- 1 | # for module compiling 2 | import os 3 | 4 | src = Glob('*.cpp') 5 | src += Glob('*.c') 6 | 7 | Return('src') 8 | -------------------------------------------------------------------------------- /PiBox/CppClient/src/service/SConscript: -------------------------------------------------------------------------------- 1 | # for module compiling 2 | import os 3 | 4 | src = Glob('*.cpp') 5 | src += Glob('*.c') 6 | 7 | Return('src') 8 | -------------------------------------------------------------------------------- /PiBox/CppClient/src/service/servicebase.cpp: -------------------------------------------------------------------------------- 1 | #include "service/servicebase.h" 2 | 3 | ServiceBase::ServiceBase() 4 | { 5 | // mutex_ = PTHREAD_MUTEX_INITIALIZER; 6 | pthread_mutex_init(&mutex_,NULL); 7 | //pthread_mutex_lock(&mutex); 8 | //pthread_mutex_unlock(&mutex); 9 | //pthread_mutex_destroy(&mutex); 10 | } 11 | 12 | ServiceBase::~ServiceBase() 13 | { 14 | 15 | } 16 | 17 | void ServiceBase::Start(Json::Value *send_root, Json::Value *recv_root) 18 | { 19 | std::cout << "Service_base::Start" << std::endl; 20 | } 21 | -------------------------------------------------------------------------------- /PiBox/CppClient/tools/build_config.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | import os 3 | import sys 4 | from Config import * 5 | 6 | basedir = os.path.dirname(os.path.realpath(__file__)) + "/../" 7 | gen_dir = basedir + "gen/" 8 | 9 | 10 | HeaderFilename = gen_dir + 'autogen.h' 11 | 12 | print HeaderFilename 13 | 14 | HeaderFile = open(HeaderFilename, 'w') 15 | def writeheader(s): HeaderFile.write(s+"\n"); 16 | 17 | writeheader("// auto-generated file") 18 | writeheader("#ifndef AUTOGEN_H \n") 19 | writeheader("#define AUTOGEN_H \n") 20 | 21 | if DEBUG_BUILD == 1: 22 | writeheader("#define DEBUG_BUILD 1 \n") 23 | 24 | writeheader("#endif // AUTOGEN_H\n") 25 | HeaderFile.close() -------------------------------------------------------------------------------- /PiBox/PiHome/PiApp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/PiApp/__init__.py -------------------------------------------------------------------------------- /PiBox/PiHome/PiApp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /PiBox/PiHome/PiApp/context_processors.py: -------------------------------------------------------------------------------- 1 | #coding=utf-8 2 | ''' 3 | # The modules contains global template data 4 | 5 | # Any issues or improvements please contact jacob-chen@iotwrt.com 6 | ''' 7 | 8 | from common import globaldata 9 | from common.api import notification 10 | 11 | # notification.send('i', 0, 'title', 'test!') 12 | 13 | def app_info(request): 14 | return { 15 | 'PCILIST': globaldata.pci_list.content, 16 | 'NOTIFICATION': notification.get_unread(request.user.id), 17 | } 18 | 19 | def version(request): 20 | return { 21 | 'VERSION': globaldata.VERSION, 22 | } -------------------------------------------------------------------------------- /PiBox/PiHome/PiApp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /PiBox/PiHome/PiHome/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/PiHome/__init__.py -------------------------------------------------------------------------------- /PiBox/PiHome/PiHome/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for PiHome project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/1.6/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "PiHome.settings") 12 | 13 | from django.core.wsgi import get_wsgi_application 14 | application = get_wsgi_application() 15 | -------------------------------------------------------------------------------- /PiBox/PiHome/README.md: -------------------------------------------------------------------------------- 1 | This directory contains django server's files. 2 | -------------------------------------------------------------------------------- /PiBox/PiHome/WebShell/make_certificate.cfg: -------------------------------------------------------------------------------- 1 | RANDFILE = $ENV::HOME/.rnd 2 | [ req ] 3 | default_bits = 2048 4 | distinguished_name = req_distinguished_name 5 | attributes = req_attributes 6 | prompt = no 7 | output_password = __MY_PASS__ 8 | [ req_distinguished_name ] 9 | CN = __FQDN__ 10 | 11 | [ req_attributes ] 12 | challengePassword = __CHALLENGE_PASS__ 13 | -------------------------------------------------------------------------------- /PiBox/PiHome/WebShell/make_certificate.sh: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | umask 077 3 | openssl req -config "make_certificate.cfg" -keyout "webshell.pem" -newkey rsa -nodes -x509 -days 365 -out "webshell.pem" 4 | -------------------------------------------------------------------------------- /PiBox/PiHome/WebShell/www/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/WebShell/www/back.png -------------------------------------------------------------------------------- /PiBox/PiHome/WebShell/www/cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/WebShell/www/cell.png -------------------------------------------------------------------------------- /PiBox/PiHome/WebShell/www/cells.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/WebShell/www/cells.png -------------------------------------------------------------------------------- /PiBox/PiHome/WebShell/www/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/WebShell/www/delete.png -------------------------------------------------------------------------------- /PiBox/PiHome/WebShell/www/enter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/WebShell/www/enter.png -------------------------------------------------------------------------------- /PiBox/PiHome/WebShell/www/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/WebShell/www/head.png -------------------------------------------------------------------------------- /PiBox/PiHome/WebShell/www/heads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/WebShell/www/heads.png -------------------------------------------------------------------------------- /PiBox/PiHome/WebShell/www/shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/WebShell/www/shift.png -------------------------------------------------------------------------------- /PiBox/PiHome/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/common/__init__.py -------------------------------------------------------------------------------- /PiBox/PiHome/common/api/__init__.py: -------------------------------------------------------------------------------- 1 | #coding=utf-8 2 | import re 3 | import sys 4 | from socket import * 5 | 6 | 7 | def validateEmail(email): 8 | if len(email) > 7: 9 | if re.match("^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$", email) != None: 10 | return 1 11 | return 0 12 | 13 | def lines2html(lines): 14 | out = '' 15 | for line in lines: 16 | out += line 17 | return out 18 | 19 | def lineslimit(lines, max): 20 | count = len(lines) 21 | if count > max: 22 | lines = lines[count-max:count] 23 | return lines2html(lines) -------------------------------------------------------------------------------- /PiBox/PiHome/common/driver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/common/driver/__init__.py -------------------------------------------------------------------------------- /PiBox/PiHome/common/globaldata.py: -------------------------------------------------------------------------------- 1 | #coding=utf-8 2 | ''' 3 | # This modules contains shared data 4 | 5 | # Any issues or improvements please contact jacob-chen@iotwrt.com 6 | ''' 7 | 8 | import os,sys,logging 9 | 10 | from PiApp.models import PiSettings 11 | 12 | import struct.pci_list 13 | import struct.app_ini 14 | 15 | VERSION = '0.3.0' 16 | 17 | BASE_DIR = os.path.dirname(os.path.abspath(__file__)) + '/..' + '/..' 18 | APP_DIR = BASE_DIR + '/App' 19 | 20 | #pihome control interface list,will be used to create sidebar and titlebar 21 | pci_list = struct.pci_list.PciList() 22 | #app info read from ini 23 | app_ini = struct.app_ini.AppIni(APP_DIR) 24 | 25 | #others 26 | def getclient(): 27 | try: 28 | pisettings_instance = PiSettings.objects.get(id =1) 29 | except: 30 | pisettings_instance = PiSettings.objects.create(id =1) 31 | 32 | return pisettings_instance 33 | 34 | 35 | def getLogger(): 36 | logger = logging.getLogger('pihome') 37 | return logger 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /PiBox/PiHome/common/struct/__init__.py: -------------------------------------------------------------------------------- 1 | #coding=utf-8 2 | import re 3 | import sys 4 | from socket import * 5 | 6 | 7 | def validateEmail(email): 8 | if len(email) > 7: 9 | if re.match("^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$", email) != None: 10 | return 1 11 | return 0 12 | 13 | def lines2html(lines): 14 | out = '' 15 | for line in lines: 16 | out += line 17 | return out 18 | 19 | def lineslimit(lines, max): 20 | count = len(lines) 21 | if count > max: 22 | lines = lines[count-max:count] 23 | return lines2html(lines) -------------------------------------------------------------------------------- /PiBox/PiHome/common/struct/app_ini.py: -------------------------------------------------------------------------------- 1 | ''' 2 | # This modules is used to read conf from registered app. 3 | 4 | # Any issues or improvements please contact jacob-chen@iotwrt.com 5 | ''' 6 | 7 | import ConfigParser 8 | import string, os, sys 9 | 10 | 11 | class AppIni(): 12 | def __init__(self, get_dir): 13 | self.base_dir = get_dir 14 | 15 | def read(self, app, arg1): 16 | app_dir = os.path.join(self.base_dir, app) 17 | cf = ConfigParser.ConfigParser() 18 | cf.read(os.path.join(app_dir, "app.ini")) 19 | 20 | return cf.get('Application', arg1) 21 | 22 | -------------------------------------------------------------------------------- /PiBox/PiHome/common/utils/__init__.py: -------------------------------------------------------------------------------- 1 | #coding=utf-8 2 | import re 3 | import sys 4 | from socket import * 5 | 6 | 7 | def validateEmail(email): 8 | if len(email) > 7: 9 | if re.match("^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$", email) != None: 10 | return 1 11 | return 0 12 | 13 | def lines2html(lines): 14 | out = '' 15 | for line in lines: 16 | out += line 17 | return out 18 | 19 | def lineslimit(lines, max): 20 | count = len(lines) 21 | if count > max: 22 | lines = lines[count-max:count] 23 | return lines2html(lines) -------------------------------------------------------------------------------- /PiBox/PiHome/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/db.sqlite3 -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | from django import forms 3 | from .widgets import CKEditorWidget 4 | 5 | class CKEditorField(models.TextField): 6 | def __init__(self, *args, **kwargs): 7 | """ arguments config,filemanager_url can be passed here 8 | for the same use as of CKEditorWidget. 9 | """ 10 | self.config = kwargs.pop('config', {}) 11 | self.filemanager_url = kwargs.pop('filemanager_url', '') 12 | super(CKEditorField, self).__init__(*args, **kwargs) 13 | 14 | def formfield(self, **kwargs): 15 | defaults = { 16 | 'form_class': forms.CharField, 17 | 'widget': CKEditorWidget(config=self.config, filemanager_url=self.filemanager_url) 18 | } 19 | defaults.update(kwargs) 20 | return super(CKEditorField, self).formfield(**defaults) 21 | -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/settings.py: -------------------------------------------------------------------------------- 1 | import os 2 | from django.conf import settings 3 | 4 | FILEMANAGER_STATIC_ROOT = getattr(settings, 'FILEMANAGER_STATIC_ROOT', 5 | os.path.dirname(os.path.abspath(__file__))+'/static/filemanager/') 6 | FILEMANAGER_CKEDITOR_JS = getattr(settings, 'FILEMANAGER_CKEDITOR_JS', 7 | 'ckeditor/ckeditor.js') 8 | FILEMANAGER_CHECK_SPACE = getattr(settings, 'FILEMANAGER_CHECK_SPACE', 9 | True) 10 | FILEMANAGER_SHOW_SPACE = getattr(settings, 'FILEMANAGER_SHOW_SPACE', 11 | FILEMANAGER_CHECK_SPACE) 12 | -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/add_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/add_folder.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/close.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/copy.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/copy_public_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/copy_public_link.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/cut.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/delete.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/download.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/folder.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/folder_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/folder_big.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/home_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/home_folder.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/css.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/default.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/doc.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/docx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/docx.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/gif.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/html.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/jpg.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/js.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/mkv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/mkv.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/mp3.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/mp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/mp4.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/pdf.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/png.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/ppt.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/pptx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/pptx.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/psd.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/swf.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/txt.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/xls.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/xlsx.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/icons/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/icons/zip.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/opened_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/opened_folder.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/paste.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/rename.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/images/upload.png -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/static/filemanager/js/jquery/zclip/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/filemanager/static/filemanager/js/jquery/zclip/ZeroClipboard.swf -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import * 2 | from django.contrib.staticfiles.urls import staticfiles_urlpatterns 3 | from filemanager import path_end 4 | from views import * 5 | 6 | urlpatterns = patterns('', 7 | (r''+path_end, index), 8 | ) 9 | -------------------------------------------------------------------------------- /PiBox/PiHome/filemanager/views.py: -------------------------------------------------------------------------------- 1 | #coding=utf-8 2 | from django.shortcuts import render 3 | from django import forms 4 | from django.template import RequestContext 5 | from django.http import HttpResponse, HttpResponseRedirect 6 | from django.template.loader import get_template 7 | from django.core.paginator import Paginator 8 | from django.core.urlresolvers import reverse 9 | from django.contrib.auth import authenticate,login,logout 10 | from django.contrib.auth.models import User 11 | from django.contrib.auth.decorators import login_required 12 | 13 | from PiHome.settings import MEDIA_ROOT 14 | import json as simplejson 15 | from filemanager import FileManager 16 | 17 | @login_required 18 | def index(request,path): 19 | fm = FileManager(MEDIA_ROOT) 20 | return fm.render(request,path) -------------------------------------------------------------------------------- /PiBox/PiHome/manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | import os 3 | import sys 4 | 5 | if __name__ == "__main__": 6 | os.environ.setdefault("DJANGO_SETTINGS_MODULE", "PiHome.settings") 7 | 8 | from django.core.management import execute_from_command_line 9 | 10 | execute_from_command_line(sys.argv) 11 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/datatables/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/datatables/images/sort_asc.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/datatables/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/datatables/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/datatables/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/datatables/images/sort_both.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/datatables/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/datatables/images/sort_desc.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/datatables/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/datatables/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/fullcalendar/fullcalendar.print.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * FullCalendar v1.6.4 Print Stylesheet 3 | * Docs & License: http://arshaw.com/fullcalendar/ 4 | * (c) 2013 Adam Shaw 5 | */ 6 | 7 | /* 8 | * Include this stylesheet on your page to get a more printer-friendly calendar. 9 | * When including this stylesheet, use the media='print' attribute of the tag. 10 | * Make sure to include this stylesheet IN ADDITION to the regular fullcalendar.css. 11 | */ 12 | 13 | 14 | /* Events 15 | -----------------------------------------------------*/ 16 | .fc-event { 17 | background: #fff !important; 18 | color: #000 !important; 19 | } 20 | 21 | /* for vertical events */ 22 | 23 | .fc-event-bg { 24 | display: none !important; 25 | } 26 | 27 | .fc-event .ui-resizable-handle { 28 | display: none !important; 29 | } -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/aero.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/aero@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/blue.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/blue@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/flat.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/flat@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/green.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/green@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/grey.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/grey@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/orange.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/orange@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/pink.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/pink@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/purple.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/purple@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/red.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/red@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/yellow.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/flat/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/flat/yellow@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/futurico/futurico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/futurico/futurico.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/futurico/futurico@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/futurico/futurico@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/line/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/line/line.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/line/line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/line/line@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/aero.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/aero@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/blue.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/blue@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/green.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/green@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/grey.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/grey@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/minimal.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/minimal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/minimal@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/orange.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/orange@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/pink.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/pink@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/purple.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/purple@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/red.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/red@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/yellow.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/minimal/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/minimal/yellow@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/polaris/polaris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/polaris/polaris.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/polaris/polaris@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/polaris/polaris@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/aero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/aero.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/aero@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/aero@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/blue.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/blue@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/green.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/green@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/grey.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/grey@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/grey@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/orange.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/orange@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/pink.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/pink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/pink@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/purple.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/purple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/purple@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/red.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/red@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/red@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/square.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/square@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/square@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/yellow.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/iCheck/square/yellow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/iCheck/square/yellow@2x.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/images/animated-overlay.gif -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/images/ui-bg_flat_55_fbec88_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/images/ui-bg_flat_55_fbec88_40x100.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/images/ui-bg_glass_75_d0e5f5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/images/ui-bg_glass_75_d0e5f5_1x400.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/images/ui-bg_glass_85_dfeffc_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/images/ui-bg_glass_85_dfeffc_1x400.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/images/ui-bg_inset-hard_100_f5f8f9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/images/ui-bg_inset-hard_100_f5f8f9_1x100.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/images/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/images/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/images/ui-icons_217bc0_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/images/ui-icons_217bc0_256x240.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/images/ui-icons_469bdd_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/images/ui-icons_469bdd_256x240.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/images/ui-icons_6da8d5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/images/ui-icons_6da8d5_256x240.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/images/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/images/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/images/ui-icons_f9bd01_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/images/ui-icons_f9bd01_256x240.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/animated-overlay.gif -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-bg_flat_100_e6e7e8_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-bg_flat_100_e6e7e8_40x100.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-bg_flat_100_f56954_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-bg_flat_100_f56954_40x100.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-bg_flat_55_f39c12_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-bg_flat_55_f39c12_40x100.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-bg_flat_65_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-bg_flat_65_ffffff_40x100.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-bg_flat_75_dadada_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-bg_flat_75_dadada_40x100.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-bg_flat_75_e6e6e6_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-bg_flat_75_e6e6e6_40x100.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/css/jQueryUI/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Accordion 1.10.3 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2013 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Accordion#theming 10 | */ 11 | .ui-accordion .ui-accordion-header { 12 | display: block; 13 | cursor: pointer; 14 | position: relative; 15 | margin-top: 2px; 16 | padding: .5em .5em .5em .7em; 17 | min-height: 0; /* support: IE7 */ 18 | } 19 | .ui-accordion .ui-accordion-icons { 20 | padding-left: 2.2em; 21 | } 22 | .ui-accordion .ui-accordion-noicons { 23 | padding-left: .7em; 24 | } 25 | .ui-accordion .ui-accordion-icons .ui-accordion-icons { 26 | padding-left: 2.2em; 27 | } 28 | .ui-accordion .ui-accordion-header .ui-accordion-header-icon { 29 | position: absolute; 30 | left: .5em; 31 | top: 50%; 32 | margin-top: -8px; 33 | } 34 | .ui-accordion .ui-accordion-content { 35 | padding: 1em 2.2em; 36 | border-top: 0; 37 | overflow: auto; 38 | } 39 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.10.3 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2013 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Theming 10 | */ 11 | @import "jquery.ui.base.css"; 12 | @import "jquery.ui.theme.css"; 13 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Autocomplete 1.10.3 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2013 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Autocomplete#theming 10 | */ 11 | .ui-autocomplete { 12 | position: absolute; 13 | top: 0; 14 | left: 0; 15 | cursor: default; 16 | } 17 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.10.3 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2013 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Theming 10 | */ 11 | @import url("jquery.ui.core.css"); 12 | 13 | @import url("jquery.ui.accordion.css"); 14 | @import url("jquery.ui.autocomplete.css"); 15 | @import url("jquery.ui.button.css"); 16 | @import url("jquery.ui.datepicker.css"); 17 | @import url("jquery.ui.dialog.css"); 18 | @import url("jquery.ui.menu.css"); 19 | @import url("jquery.ui.progressbar.css"); 20 | @import url("jquery.ui.resizable.css"); 21 | @import url("jquery.ui.selectable.css"); 22 | @import url("jquery.ui.slider.css"); 23 | @import url("jquery.ui.spinner.css"); 24 | @import url("jquery.ui.tabs.css"); 25 | @import url("jquery.ui.tooltip.css"); 26 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.10.3 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2013 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Progressbar#theming 10 | */ 11 | .ui-progressbar { 12 | height: 2em; 13 | text-align: left; 14 | overflow: hidden; 15 | } 16 | .ui-progressbar .ui-progressbar-value { 17 | margin: -1px; 18 | height: 100%; 19 | } 20 | .ui-progressbar .ui-progressbar-overlay { 21 | background: url("images/animated-overlay.gif"); 22 | height: 100%; 23 | filter: alpha(opacity=25); 24 | opacity: 0.25; 25 | } 26 | .ui-progressbar-indeterminate .ui-progressbar-value { 27 | background-image: none; 28 | } 29 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.10.3 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2013 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Selectable#theming 10 | */ 11 | .ui-selectable-helper { 12 | position: absolute; 13 | z-index: 100; 14 | border: 1px dotted black; 15 | } 16 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jQueryUI/jquery.ui.tooltip.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tooltip 1.10.3 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2013 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-tooltip { 10 | padding: 8px; 11 | position: absolute; 12 | z-index: 9999; 13 | max-width: 300px; 14 | -webkit-box-shadow: 0 0 5px #aaa; 15 | box-shadow: 0 0 5px #aaa; 16 | } 17 | body .ui-tooltip { 18 | border-width: 2px; 19 | } 20 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/jvectormap/jquery-jvectormap-1.2.2.css: -------------------------------------------------------------------------------- 1 | .jvectormap-label { 2 | position: absolute; 3 | display: none; 4 | border: solid 1px #CDCDCD; 5 | -webkit-border-radius: 3px; 6 | -moz-border-radius: 3px; 7 | border-radius: 3px; 8 | background: #292929; 9 | color: white; 10 | font-size: 10px!important; 11 | padding: 3px; 12 | z-index: 9999; 13 | } 14 | 15 | .jvectormap-zoomin, .jvectormap-zoomout { 16 | position: absolute; 17 | left: 10px; 18 | -webkit-border-radius: 3px; 19 | -moz-border-radius: 3px; 20 | border-radius: 3px; 21 | background: #292929; 22 | padding: 5px; 23 | color: white; 24 | cursor: pointer; 25 | line-height: 10px; 26 | text-align: center; 27 | font-weight: bold; 28 | } 29 | 30 | .jvectormap-zoomin { 31 | top: 10px; 32 | } 33 | 34 | .jvectormap-zoomout { 35 | top: 35px; 36 | } -------------------------------------------------------------------------------- /PiBox/PiHome/static/css/morris/morris.css: -------------------------------------------------------------------------------- 1 | .morris-hover{position:absolute;z-index:1000}.morris-hover.morris-default-style{border-radius:10px;padding:6px;color:#666;background:rgba(255,255,255,0.8);border:solid 2px rgba(230,230,230,0.8);font-family:sans-serif;font-size:12px;text-align:center}.morris-hover.morris-default-style .morris-hover-row-label{font-weight:bold;margin:0.25em 0} 2 | .morris-hover.morris-default-style .morris-hover-point{white-space:nowrap;margin:0.1em 0} 3 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /PiBox/PiHome/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /PiBox/PiHome/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /PiBox/PiHome/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /PiBox/PiHome/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /PiBox/PiHome/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /PiBox/PiHome/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /PiBox/PiHome/static/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/fonts/ionicons.eot -------------------------------------------------------------------------------- /PiBox/PiHome/static/fonts/ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/fonts/ionicons.ttf -------------------------------------------------------------------------------- /PiBox/PiHome/static/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/fonts/ionicons.woff -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/Thumbs.db -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/ajax-loader.gif -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/ajax-loader1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/ajax-loader1.gif -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/avatar.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/avatar04.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/avatar2.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/avatar3.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/avatar5.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/avatar6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/avatar6.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/blur-background04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/blur-background04.jpg -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/blur-background08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/blur-background08.jpg -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/blur-background09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/blur-background09.jpg -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/bootstrap-colorpicker/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/bootstrap-colorpicker/Thumbs.db -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/bootstrap-colorpicker/alpha-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/bootstrap-colorpicker/alpha-horizontal.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/bootstrap-colorpicker/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/bootstrap-colorpicker/alpha.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/bootstrap-colorpicker/hue-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/bootstrap-colorpicker/hue-horizontal.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/bootstrap-colorpicker/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/bootstrap-colorpicker/hue.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/bootstrap-colorpicker/saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/bootstrap-colorpicker/saturation.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/credit/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/credit/Thumbs.db -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/credit/american-express.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/credit/cirrus.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/credit/mastercard.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/credit/mestro.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/credit/paypal.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/credit/paypal2.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/credit/visa.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/house_plan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/house_plan.jpg -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/icon.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/icons.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/login.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/notlogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/notlogin.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/pi_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/pi_logo.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/sensor-numeric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/sensor-numeric.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/sensor-picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/sensor-picture.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/sensor-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/sensor-switch.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/sprite-skin-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/sprite-skin-flat.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/sprite-skin-nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/sprite-skin-nice.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/user-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/user-bg.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/user.jpg -------------------------------------------------------------------------------- /PiBox/PiHome/static/img/user2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/img/user2.jpg -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/i18n/jquery.ui.datepicker-ca.js: -------------------------------------------------------------------------------- 1 | /* Inicialització en català per a l'extensió 'UI date picker' per jQuery. */ 2 | /* Writers: (joan.leon@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ca'] = { 5 | closeText: 'Tanca', 6 | prevText: 'Anterior', 7 | nextText: 'Següent', 8 | currentText: 'Avui', 9 | monthNames: ['gener','febrer','març','abril','maig','juny', 10 | 'juliol','agost','setembre','octubre','novembre','desembre'], 11 | monthNamesShort: ['gen','feb','març','abr','maig','juny', 12 | 'jul','ag','set','oct','nov','des'], 13 | dayNames: ['diumenge','dilluns','dimarts','dimecres','dijous','divendres','dissabte'], 14 | dayNamesShort: ['dg','dl','dt','dc','dj','dv','ds'], 15 | dayNamesMin: ['dg','dl','dt','dc','dj','dv','ds'], 16 | weekHeader: 'Set', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ca']); 23 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/i18n/jquery.ui.datepicker-cy-GB.js: -------------------------------------------------------------------------------- 1 | /* Welsh/UK initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by William Griffiths. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['cy-GB'] = { 5 | closeText: 'Done', 6 | prevText: 'Prev', 7 | nextText: 'Next', 8 | currentText: 'Today', 9 | monthNames: ['Ionawr','Chwefror','Mawrth','Ebrill','Mai','Mehefin', 10 | 'Gorffennaf','Awst','Medi','Hydref','Tachwedd','Rhagfyr'], 11 | monthNamesShort: ['Ion', 'Chw', 'Maw', 'Ebr', 'Mai', 'Meh', 12 | 'Gor', 'Aws', 'Med', 'Hyd', 'Tac', 'Rha'], 13 | dayNames: ['Dydd Sul', 'Dydd Llun', 'Dydd Mawrth', 'Dydd Mercher', 'Dydd Iau', 'Dydd Gwener', 'Dydd Sadwrn'], 14 | dayNamesShort: ['Sul', 'Llu', 'Maw', 'Mer', 'Iau', 'Gwe', 'Sad'], 15 | dayNamesMin: ['Su','Ll','Ma','Me','Ia','Gw','Sa'], 16 | weekHeader: 'Wy', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['cy-GB']); 23 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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: 'KW', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['de']); 23 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['fo']); 23 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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: ['ינו','פבר','מרץ','אפר','מאי','יוני', 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 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/i18n/jquery.ui.datepicker-hi.js: -------------------------------------------------------------------------------- 1 | /* Hindi initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Michael Dawart. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['hi'] = { 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['hi']); 23 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/i18n/jquery.ui.datepicker-kk.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['kk'] = { 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['kk']); 23 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/i18n/jquery.ui.datepicker-km.js: -------------------------------------------------------------------------------- 1 | /* Khmer initialisation for the jQuery calendar extension. */ 2 | /* Written by Chandara Om (chandara.teacher@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['km'] = { 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['km']); 23 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/i18n/jquery.ui.datepicker-ko.js: -------------------------------------------------------------------------------- 1 | /* Korean initialisation for the jQuery calendar extension. */ 2 | /* Written by DaeKwon Kang (ncrash.dk@gmail.com), Edited by Genie. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ko'] = { 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: 'Wk', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '년'}; 22 | $.datepicker.setDefaults($.datepicker.regional['ko']); 23 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/i18n/jquery.ui.datepicker-mk.js: -------------------------------------------------------------------------------- 1 | /* Macedonian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Stojce Slavkovski. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['mk'] = { 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['mk']); 23 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/i18n/jquery.ui.datepicker-nb.js: -------------------------------------------------------------------------------- 1 | /* Norwegian Bokmål initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Bjørn Johansen (post@bjornjohansen.no). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['nb'] = { 5 | closeText: 'Lukk', 6 | prevText: '«Forrige', 7 | nextText: 'Neste»', 8 | currentText: 'I dag', 9 | monthNames: ['januar','februar','mars','april','mai','juni','juli','august','september','oktober','november','desember'], 10 | monthNamesShort: ['jan','feb','mar','apr','mai','jun','jul','aug','sep','okt','nov','des'], 11 | dayNamesShort: ['søn','man','tir','ons','tor','fre','lør'], 12 | dayNames: ['søndag','mandag','tirsdag','onsdag','torsdag','fredag','lørdag'], 13 | dayNamesMin: ['sø','ma','ti','on','to','fr','lø'], 14 | weekHeader: 'Uke', 15 | dateFormat: 'dd.mm.yy', 16 | firstDay: 1, 17 | isRTL: false, 18 | showMonthAfterYear: false, 19 | yearSuffix: '' 20 | }; 21 | $.datepicker.setDefaults($.datepicker.regional['nb']); 22 | }); 23 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/i18n/jquery.ui.datepicker-nn.js: -------------------------------------------------------------------------------- 1 | /* Norwegian Nynorsk initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Bjørn Johansen (post@bjornjohansen.no). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['nn'] = { 5 | closeText: 'Lukk', 6 | prevText: '«Førre', 7 | nextText: 'Neste»', 8 | currentText: 'I dag', 9 | monthNames: ['januar','februar','mars','april','mai','juni','juli','august','september','oktober','november','desember'], 10 | monthNamesShort: ['jan','feb','mar','apr','mai','jun','jul','aug','sep','okt','nov','des'], 11 | dayNamesShort: ['sun','mån','tys','ons','tor','fre','lau'], 12 | dayNames: ['sundag','måndag','tysdag','onsdag','torsdag','fredag','laurdag'], 13 | dayNamesMin: ['su','må','ty','on','to','fr','la'], 14 | weekHeader: 'Veke', 15 | dateFormat: 'dd.mm.yy', 16 | firstDay: 1, 17 | isRTL: false, 18 | showMonthAfterYear: false, 19 | yearSuffix: '' 20 | }; 21 | $.datepicker.setDefaults($.datepicker.regional['nn']); 22 | }); 23 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | }); 23 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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: ['nedeľ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 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | }); 24 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/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 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/jQueryUI/jquery.ui.effect-fade.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Effects Fade 1.10.3 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2013 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/fade-effect/ 10 | * 11 | * Depends: 12 | * jquery.ui.effect.js 13 | */ 14 | (function( $, undefined ) { 15 | 16 | $.effects.effect.fade = function( o, done ) { 17 | var el = $( this ), 18 | mode = $.effects.setMode( el, o.mode || "toggle" ); 19 | 20 | el.animate({ 21 | opacity: mode 22 | }, { 23 | queue: false, 24 | duration: o.duration, 25 | easing: o.easing, 26 | complete: done 27 | }); 28 | }; 29 | 30 | })( jQuery ); 31 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/license 3 | 4 | cs.js Found: 30 Missing: 0 5 | cy.js Found: 30 Missing: 0 6 | da.js Found: 12 Missing: 18 7 | de.js Found: 30 Missing: 0 8 | el.js Found: 25 Missing: 5 9 | eo.js Found: 30 Missing: 0 10 | fa.js Found: 30 Missing: 0 11 | fi.js Found: 30 Missing: 0 12 | fr.js Found: 30 Missing: 0 13 | gu.js Found: 12 Missing: 18 14 | he.js Found: 30 Missing: 0 15 | it.js Found: 30 Missing: 0 16 | mk.js Found: 5 Missing: 25 17 | nb.js Found: 30 Missing: 0 18 | nl.js Found: 30 Missing: 0 19 | no.js Found: 30 Missing: 0 20 | pt-br.js Found: 30 Missing: 0 21 | ro.js Found: 6 Missing: 24 22 | tr.js Found: 30 Missing: 0 23 | ug.js Found: 27 Missing: 3 24 | vi.js Found: 6 Missing: 24 25 | zh-cn.js Found: 30 Missing: 0 26 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/plugins/fakeobjects/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/plugins/fakeobjects/images/Thumbs.db -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/plugins/fakeobjects/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/plugins/fakeobjects/images/spacer.gif -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/license 3 | 4 | cs.js Found: 118 Missing: 0 5 | cy.js Found: 118 Missing: 0 6 | de.js Found: 118 Missing: 0 7 | el.js Found: 16 Missing: 102 8 | eo.js Found: 118 Missing: 0 9 | et.js Found: 31 Missing: 87 10 | fa.js Found: 24 Missing: 94 11 | fi.js Found: 23 Missing: 95 12 | fr.js Found: 118 Missing: 0 13 | hr.js Found: 23 Missing: 95 14 | it.js Found: 118 Missing: 0 15 | nb.js Found: 118 Missing: 0 16 | nl.js Found: 118 Missing: 0 17 | no.js Found: 118 Missing: 0 18 | tr.js Found: 118 Missing: 0 19 | ug.js Found: 39 Missing: 79 20 | zh-cn.js Found: 118 Missing: 0 21 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/js/plugins/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.ar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Arabic translation for bootstrap-datepicker 3 | * Mohammed Alshehri 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ar'] = { 7 | days: ["الأحد", "الاثنين", "الثلاثاء", "الأربعاء", "الخميس", "الجمعة", "السبت", "الأحد"], 8 | daysShort: ["أحد", "اثنين", "ثلاثاء", "أربعاء", "خميس", "جمعة", "سبت", "أحد"], 9 | daysMin: ["ح", "ن", "ث", "ع", "خ", "ج", "س", "ح"], 10 | months: ["يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر"], 11 | monthsShort: ["يناير", "فبراير", "مارس", "أبريل", "مايو", "يونيو", "يوليو", "أغسطس", "سبتمبر", "أكتوبر", "نوفمبر", "ديسمبر"], 12 | today: "هذا اليوم", 13 | rtl: true 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.az.js: -------------------------------------------------------------------------------- 1 | // Azerbaijani 2 | ;(function($){ 3 | $.fn.datepicker.dates['az'] = { 4 | days: ["Bazar", "Bazar ertəsi", "Çərşənbə axşamı", "Çərşənbə", "Cümə axşamı", "Cümə", "Şənbə", "Bazar"], 5 | daysShort: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş.", "B."], 6 | daysMin: ["B.", "B.e", "Ç.a", "Ç.", "C.a", "C.", "Ş.", "B."], 7 | months: ["Yanvar", "Fevral", "Mart", "Aprel", "May", "İyun", "İyul", "Avqust", "Sentyabr", "Oktyabr", "Noyabr", "Dekabr"], 8 | monthsShort: ["Yan", "Fev", "Mar", "Apr", "May", "İyun", "İyul", "Avq", "Sen", "Okt", "Noy", "Dek"], 9 | today: "Bu gün", 10 | weekStart: 1 11 | }; 12 | }(jQuery)); 13 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.bg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bulgarian translation for bootstrap-datepicker 3 | * Apostol Apostolov 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['bg'] = { 7 | days: ["Неделя", "Понеделник", "Вторник", "Сряда", "Четвъртък", "Петък", "Събота", "Неделя"], 8 | daysShort: ["Нед", "Пон", "Вто", "Сря", "Чет", "Пет", "Съб", "Нед"], 9 | daysMin: ["Н", "П", "В", "С", "Ч", "П", "С", "Н"], 10 | months: ["Януари", "Февруари", "Март", "Април", "Май", "Юни", "Юли", "Август", "Септември", "Октомври", "Ноември", "Декември"], 11 | monthsShort: ["Ян", "Фев", "Мар", "Апр", "Май", "Юни", "Юли", "Авг", "Сеп", "Окт", "Ное", "Дек"], 12 | today: "днес" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.ca.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Catalan translation for bootstrap-datepicker 3 | * J. Garcia 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ca'] = { 7 | days: ["Diumenge", "Dilluns", "Dimarts", "Dimecres", "Dijous", "Divendres", "Dissabte", "Diumenge"], 8 | daysShort: ["Diu", "Dil", "Dmt", "Dmc", "Dij", "Div", "Dis", "Diu"], 9 | daysMin: ["dg", "dl", "dt", "dc", "dj", "dv", "ds", "dg"], 10 | months: ["Gener", "Febrer", "Març", "Abril", "Maig", "Juny", "Juliol", "Agost", "Setembre", "Octubre", "Novembre", "Desembre"], 11 | monthsShort: ["Gen", "Feb", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Oct", "Nov", "Des"], 12 | today: "Avui" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.cs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Czech translation for bootstrap-datepicker 3 | * Matěj Koubík 4 | * Fixes by Michal Remiš 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['cs'] = { 8 | days: ["Neděle", "Pondělí", "Úterý", "Středa", "Čtvrtek", "Pátek", "Sobota", "Neděle"], 9 | daysShort: ["Ned", "Pon", "Úte", "Stř", "Čtv", "Pát", "Sob", "Ned"], 10 | daysMin: ["Ne", "Po", "Út", "St", "Čt", "Pá", "So", "Ne"], 11 | months: ["Leden", "Únor", "Březen", "Duben", "Květen", "Červen", "Červenec", "Srpen", "Září", "Říjen", "Listopad", "Prosinec"], 12 | monthsShort: ["Led", "Úno", "Bře", "Dub", "Kvě", "Čer", "Čnc", "Srp", "Zář", "Říj", "Lis", "Pro"], 13 | today: "Dnes" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.cy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Welsh translation for bootstrap-datepicker 3 | * S. Morris 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['cy'] = { 7 | days: ["Sul", "Llun", "Mawrth", "Mercher", "Iau", "Gwener", "Sadwrn", "Sul"], 8 | daysShort: ["Sul", "Llu", "Maw", "Mer", "Iau", "Gwe", "Sad", "Sul"], 9 | daysMin: ["Su", "Ll", "Ma", "Me", "Ia", "Gwe", "Sa", "Su"], 10 | months: ["Ionawr", "Chewfror", "Mawrth", "Ebrill", "Mai", "Mehefin", "Gorfennaf", "Awst", "Medi", "Hydref", "Tachwedd", "Rhagfyr"], 11 | monthsShort: ["Ion", "Chw", "Maw", "Ebr", "Mai", "Meh", "Gor", "Aws", "Med", "Hyd", "Tach", "Rha"], 12 | today: "Heddiw" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.da.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Danish translation for bootstrap-datepicker 3 | * Christian Pedersen 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['da'] = { 7 | days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag"], 8 | daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør", "Søn"], 9 | daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø", "Sø"], 10 | months: ["Januar", "Februar", "Marts", "April", "Maj", "Juni", "Juli", "August", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "I Dag", 13 | clear: "Nulstil" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.de.js: -------------------------------------------------------------------------------- 1 | /** 2 | * German translation for bootstrap-datepicker 3 | * Sam Zurcher 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['de'] = { 7 | days: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag", "Sonntag"], 8 | daysShort: ["Son", "Mon", "Die", "Mit", "Don", "Fre", "Sam", "Son"], 9 | daysMin: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa", "So"], 10 | months: ["Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"], 11 | monthsShort: ["Jan", "Feb", "Mär", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"], 12 | today: "Heute", 13 | clear: "Löschen", 14 | weekStart: 1, 15 | format: "dd.mm.yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.el.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Greek translation for bootstrap-datepicker 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['el'] = { 6 | days: ["Κυριακή", "Δευτέρα", "Τρίτη", "Τετάρτη", "Πέμπτη", "Παρασκευή", "Σάββατο", "Κυριακή"], 7 | daysShort: ["Κυρ", "Δευ", "Τρι", "Τετ", "Πεμ", "Παρ", "Σαβ", "Κυρ"], 8 | daysMin: ["Κυ", "Δε", "Τρ", "Τε", "Πε", "Πα", "Σα", "Κυ"], 9 | months: ["Ιανουάριος", "Φεβρουάριος", "Μάρτιος", "Απρίλιος", "Μάιος", "Ιούνιος", "Ιούλιος", "Αύγουστος", "Σεπτέμβριος", "Οκτώβριος", "Νοέμβριος", "Δεκέμβριος"], 10 | monthsShort: ["Ιαν", "Φεβ", "Μαρ", "Απρ", "Μάι", "Ιουν", "Ιουλ", "Αυγ", "Σεπ", "Οκτ", "Νοε", "Δεκ"], 11 | today: "Σήμερα" 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.es.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Spanish translation for bootstrap-datepicker 3 | * Bruno Bonamin 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['es'] = { 7 | days: ["Domingo", "Lunes", "Martes", "Miércoles", "Jueves", "Viernes", "Sábado", "Domingo"], 8 | daysShort: ["Dom", "Lun", "Mar", "Mié", "Jue", "Vie", "Sáb", "Dom"], 9 | daysMin: ["Do", "Lu", "Ma", "Mi", "Ju", "Vi", "Sa", "Do"], 10 | months: ["Enero", "Febrero", "Marzo", "Abril", "Mayo", "Junio", "Julio", "Agosto", "Septiembre", "Octubre", "Noviembre", "Diciembre"], 11 | monthsShort: ["Ene", "Feb", "Mar", "Abr", "May", "Jun", "Jul", "Ago", "Sep", "Oct", "Nov", "Dic"], 12 | today: "Hoy" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.et.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Estonian translation for bootstrap-datepicker 3 | * Ando Roots 4 | * Fixes by Illimar Tambek < 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['et'] = { 8 | days: ["Pühapäev", "Esmaspäev", "Teisipäev", "Kolmapäev", "Neljapäev", "Reede", "Laupäev", "Pühapäev"], 9 | daysShort: ["Pühap", "Esmasp", "Teisip", "Kolmap", "Neljap", "Reede", "Laup", "Pühap"], 10 | daysMin: ["P", "E", "T", "K", "N", "R", "L", "P"], 11 | months: ["Jaanuar", "Veebruar", "Märts", "Aprill", "Mai", "Juuni", "Juuli", "August", "September", "Oktoober", "November", "Detsember"], 12 | monthsShort: ["Jaan", "Veebr", "Märts", "Apr", "Mai", "Juuni", "Juuli", "Aug", "Sept", "Okt", "Nov", "Dets"], 13 | today: "Täna", 14 | clear: "Tühjenda", 15 | weekStart: 1, 16 | format: "dd.mm.yyyy" 17 | }; 18 | }(jQuery)); 19 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.fa.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Persian translation for bootstrap-datepicker 3 | * Mostafa Rokooie 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['fa'] = { 7 | days: ["یک‌شنبه", "دوشنبه", "سه‌شنبه", "چهارشنبه", "پنج‌شنبه", "جمعه", "شنبه", "یک‌شنبه"], 8 | daysShort: ["یک", "دو", "سه", "چهار", "پنج", "جمعه", "شنبه", "یک"], 9 | daysMin: ["ی", "د", "س", "چ", "پ", "ج", "ش", "ی"], 10 | months: ["ژانویه", "فوریه", "مارس", "آوریل", "مه", "ژوئن", "ژوئیه", "اوت", "سپتامبر", "اکتبر", "نوامبر", "دسامبر"], 11 | monthsShort: ["ژان", "فور", "مار", "آور", "مه", "ژون", "ژوی", "اوت", "سپت", "اکت", "نوا", "دسا"], 12 | today: "امروز", 13 | clear: "پاک کن", 14 | weekStart: 1, 15 | format: "yyyy/mm/dd" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.fi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Finnish translation for bootstrap-datepicker 3 | * Jaakko Salonen 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['fi'] = { 7 | days: ["sunnuntai", "maanantai", "tiistai", "keskiviikko", "torstai", "perjantai", "lauantai", "sunnuntai"], 8 | daysShort: ["sun", "maa", "tii", "kes", "tor", "per", "lau", "sun"], 9 | daysMin: ["su", "ma", "ti", "ke", "to", "pe", "la", "su"], 10 | months: ["tammikuu", "helmikuu", "maaliskuu", "huhtikuu", "toukokuu", "kesäkuu", "heinäkuu", "elokuu", "syyskuu", "lokakuu", "marraskuu", "joulukuu"], 11 | monthsShort: ["tam", "hel", "maa", "huh", "tou", "kes", "hei", "elo", "syy", "lok", "mar", "jou"], 12 | today: "tänään", 13 | weekStart: 1, 14 | format: "d.m.yyyy" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.fr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * French translation for bootstrap-datepicker 3 | * Nico Mollet 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['fr'] = { 7 | days: ["Dimanche", "Lundi", "Mardi", "Mercredi", "Jeudi", "Vendredi", "Samedi", "Dimanche"], 8 | daysShort: ["Dim", "Lun", "Mar", "Mer", "Jeu", "Ven", "Sam", "Dim"], 9 | daysMin: ["D", "L", "Ma", "Me", "J", "V", "S", "D"], 10 | months: ["Janvier", "Février", "Mars", "Avril", "Mai", "Juin", "Juillet", "Août", "Septembre", "Octobre", "Novembre", "Décembre"], 11 | monthsShort: ["Jan", "Fév", "Mar", "Avr", "Mai", "Jui", "Jul", "Aou", "Sep", "Oct", "Nov", "Déc"], 12 | today: "Aujourd'hui", 13 | clear: "Effacer", 14 | weekStart: 1, 15 | format: "dd/mm/yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.gl.js: -------------------------------------------------------------------------------- 1 | ;(function($){ 2 | $.fn.datepicker.dates['gl'] = { 3 | days: ["Domingo", "Luns", "Martes", "Mércores", "Xoves", "Venres", "Sábado", "Domingo"], 4 | daysShort: ["Dom", "Lun", "Mar", "Mér", "Xov", "Ven", "Sáb", "Dom"], 5 | daysMin: ["Do", "Lu", "Ma", "Me", "Xo", "Ve", "Sa", "Do"], 6 | months: ["Xaneiro", "Febreiro", "Marzo", "Abril", "Maio", "Xuño", "Xullo", "Agosto", "Setembro", "Outubro", "Novembro", "Decembro"], 7 | monthsShort: ["Xan", "Feb", "Mar", "Abr", "Mai", "Xun", "Xul", "Ago", "Sep", "Out", "Nov", "Dec"], 8 | today: "Hoxe", 9 | clear: "Limpar" 10 | }; 11 | }(jQuery)); 12 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hebrew translation for bootstrap-datepicker 3 | * Sagie Maoz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['he'] = { 7 | days: ["ראשון", "שני", "שלישי", "רביעי", "חמישי", "שישי", "שבת", "ראשון"], 8 | daysShort: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 9 | daysMin: ["א", "ב", "ג", "ד", "ה", "ו", "ש", "א"], 10 | months: ["ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"], 11 | monthsShort: ["ינו", "פבר", "מרץ", "אפר", "מאי", "יונ", "יול", "אוג", "ספט", "אוק", "נוב", "דצמ"], 12 | today: "היום", 13 | rtl: true 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.hr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Croatian localisation 3 | */ 4 | ;(function($){ 5 | $.fn.datepicker.dates['hr'] = { 6 | days: ["Nedjelja", "Ponedjeljak", "Utorak", "Srijeda", "Četvrtak", "Petak", "Subota", "Nedjelja"], 7 | daysShort: ["Ned", "Pon", "Uto", "Sri", "Čet", "Pet", "Sub", "Ned"], 8 | daysMin: ["Ne", "Po", "Ut", "Sr", "Če", "Pe", "Su", "Ne"], 9 | months: ["Siječanj", "Veljača", "Ožujak", "Travanj", "Svibanj", "Lipanj", "Srpanj", "Kolovoz", "Rujan", "Listopad", "Studeni", "Prosinac"], 10 | monthsShort: ["Sij", "Velj", "Ožu", "Tra", "Svi", "Lip", "Srp", "Kol", "Ruj", "Lis", "Stu", "Pro"], 11 | today: "Danas" 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.hu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Hungarian translation for bootstrap-datepicker 3 | * Sotus László 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['hu'] = { 7 | days: ["Vasárnap", "Hétfő", "Kedd", "Szerda", "Csütörtök", "Péntek", "Szombat", "Vasárnap"], 8 | daysShort: ["Vas", "Hét", "Ked", "Sze", "Csü", "Pén", "Szo", "Vas"], 9 | daysMin: ["Va", "Hé", "Ke", "Sz", "Cs", "Pé", "Sz", "Va"], 10 | months: ["Január", "Február", "Március", "Április", "Május", "Június", "Július", "Augusztus", "Szeptember", "Október", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Már", "Ápr", "Máj", "Jún", "Júl", "Aug", "Sze", "Okt", "Nov", "Dec"], 12 | today: "Ma", 13 | weekStart: 1, 14 | format: "yyyy.mm.dd" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.id.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Bahasa translation for bootstrap-datepicker 3 | * Azwar Akbar 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['id'] = { 7 | days: ["Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu", "Minggu"], 8 | daysShort: ["Mgu", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab", "Mgu"], 9 | daysMin: ["Mg", "Sn", "Sl", "Ra", "Ka", "Ju", "Sa", "Mg"], 10 | months: ["Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ags", "Sep", "Okt", "Nov", "Des"], 12 | today: "Hari Ini", 13 | clear: "Kosongkan" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.is.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Icelandic translation for bootstrap-datepicker 3 | * Hinrik Örn Sigurðsson 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['is'] = { 7 | days: ["Sunnudagur", "Mánudagur", "Þriðjudagur", "Miðvikudagur", "Fimmtudagur", "Föstudagur", "Laugardagur", "Sunnudagur"], 8 | daysShort: ["Sun", "Mán", "Þri", "Mið", "Fim", "Fös", "Lau", "Sun"], 9 | daysMin: ["Su", "Má", "Þr", "Mi", "Fi", "Fö", "La", "Su"], 10 | months: ["Janúar", "Febrúar", "Mars", "Apríl", "Maí", "Júní", "Júlí", "Ágúst", "September", "Október", "Nóvember", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maí", "Jún", "Júl", "Ágú", "Sep", "Okt", "Nóv", "Des"], 12 | today: "Í Dag" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.it.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Italian translation for bootstrap-datepicker 3 | * Enrico Rubboli 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['it'] = { 7 | days: ["Domenica", "Lunedì", "Martedì", "Mercoledì", "Giovedì", "Venerdì", "Sabato", "Domenica"], 8 | daysShort: ["Dom", "Lun", "Mar", "Mer", "Gio", "Ven", "Sab", "Dom"], 9 | daysMin: ["Do", "Lu", "Ma", "Me", "Gi", "Ve", "Sa", "Do"], 10 | months: ["Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre"], 11 | monthsShort: ["Gen", "Feb", "Mar", "Apr", "Mag", "Giu", "Lug", "Ago", "Set", "Ott", "Nov", "Dic"], 12 | today: "Oggi", 13 | clear: "Cancella", 14 | weekStart: 1, 15 | format: "dd/mm/yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Japanese translation for bootstrap-datepicker 3 | * Norio Suzuki 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ja'] = { 7 | days: ["日曜", "月曜", "火曜", "水曜", "木曜", "金曜", "土曜", "日曜"], 8 | daysShort: ["日", "月", "火", "水", "木", "金", "土", "日"], 9 | daysMin: ["日", "月", "火", "水", "木", "金", "土", "日"], 10 | months: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 11 | monthsShort: ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"], 12 | today: "今日", 13 | format: "yyyy/mm/dd" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.ka.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Georgian translation for bootstrap-datepicker 3 | * Levan Melikishvili 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ka'] = { 7 | days: ["კვირა", "ორშაბათი", "სამშაბათი", "ოთხშაბათი", "ხუთშაბათი", "პარასკევი", "შაბათი", "კვირა"], 8 | daysShort: ["კვი", "ორშ", "სამ", "ოთხ", "ხუთ", "პარ", "შაბ", "კვი"], 9 | daysMin: ["კვ", "ორ", "სა", "ოთ", "ხუ", "პა", "შა", "კვ"], 10 | months: ["იანვარი", "თებერვალი", "მარტი", "აპრილი", "მაისი", "ივნისი", "ივლისი", "აგვისტო", "სექტემბერი", "ოქტომები", "ნოემბერი", "დეკემბერი"], 11 | monthsShort: ["იან", "თებ", "მარ", "აპრ", "მაი", "ივნ", "ივლ", "აგვ", "სექ", "ოქტ", "ნოე", "დეკ"], 12 | today: "დღეს", 13 | clear: "გასუფთავება", 14 | weekStart: 1, 15 | format: "dd.mm.yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.kk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Kazakh translation for bootstrap-datepicker 3 | * Yerzhan Tolekov 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['kk'] = { 7 | days: ["Жексенбі", "Дүйсенбі", "Сейсенбі", "Сәрсенбі", "Бейсенбі", "Жұма", "Сенбі", "Жексенбі"], 8 | daysShort: ["Жек", "Дүй", "Сей", "Сәр", "Бей", "Жұм", "Сен", "Жек"], 9 | daysMin: ["Жк", "Дс", "Сс", "Ср", "Бс", "Жм", "Сн", "Жк"], 10 | months: ["Қаңтар", "Ақпан", "Наурыз", "Сәуір", "Мамыр", "Маусым", "Шілде", "Тамыз", "Қыркүйек", "Қазан", "Қараша", "Желтоқсан"], 11 | monthsShort: ["Қаң", "Ақп", "Нау", "Сәу", "Мамыр", "Мау", "Шлд", "Тмз", "Қыр", "Қзн", "Қар", "Жел"], 12 | today: "Бүгін", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.kr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Korean translation for bootstrap-datepicker 3 | * Gu Youn 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['kr'] = { 7 | days: ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일", "일요일"], 8 | daysShort: ["일", "월", "화", "수", "목", "금", "토", "일"], 9 | daysMin: ["일", "월", "화", "수", "목", "금", "토", "일"], 10 | months: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"], 11 | monthsShort: ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"] 12 | }; 13 | }(jQuery)); 14 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.lt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Lithuanian translation for bootstrap-datepicker 3 | * Šarūnas Gliebus 4 | */ 5 | 6 | ;(function($){ 7 | $.fn.datepicker.dates['lt'] = { 8 | days: ["Sekmadienis", "Pirmadienis", "Antradienis", "Trečiadienis", "Ketvirtadienis", "Penktadienis", "Šeštadienis", "Sekmadienis"], 9 | daysShort: ["S", "Pr", "A", "T", "K", "Pn", "Š", "S"], 10 | daysMin: ["Sk", "Pr", "An", "Tr", "Ke", "Pn", "Št", "Sk"], 11 | months: ["Sausis", "Vasaris", "Kovas", "Balandis", "Gegužė", "Birželis", "Liepa", "Rugpjūtis", "Rugsėjis", "Spalis", "Lapkritis", "Gruodis"], 12 | monthsShort: ["Sau", "Vas", "Kov", "Bal", "Geg", "Bir", "Lie", "Rugp", "Rugs", "Spa", "Lap", "Gru"], 13 | today: "Šiandien", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.lv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Latvian translation for bootstrap-datepicker 3 | * Artis Avotins 4 | */ 5 | 6 | ;(function($){ 7 | $.fn.datepicker.dates['lv'] = { 8 | days: ["Svētdiena", "Pirmdiena", "Otrdiena", "Trešdiena", "Ceturtdiena", "Piektdiena", "Sestdiena", "Svētdiena"], 9 | daysShort: ["Sv", "P", "O", "T", "C", "Pk", "S", "Sv"], 10 | daysMin: ["Sv", "Pr", "Ot", "Tr", "Ce", "Pk", "Se", "Sv"], 11 | months: ["Janvāris", "Februāris", "Marts", "Aprīlis", "Maijs", "Jūnijs", "Jūlijs", "Augusts", "Septembris", "Oktobris", "Novembris", "Decembris"], 12 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jūn", "Jūl", "Aug", "Sep", "Okt", "Nov", "Dec"], 13 | today: "Šodien", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.mk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Macedonian translation for bootstrap-datepicker 3 | * Marko Aleksic 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['mk'] = { 7 | days: ["Недела", "Понеделник", "Вторник", "Среда", "Четврток", "Петок", "Сабота", "Недела"], 8 | daysShort: ["Нед", "Пон", "Вто", "Сре", "Чет", "Пет", "Саб", "Нед"], 9 | daysMin: ["Не", "По", "Вт", "Ср", "Че", "Пе", "Са", "Не"], 10 | months: ["Јануари", "Февруари", "Март", "Април", "Мај", "Јуни", "Јули", "Август", "Септември", "Октомври", "Ноември", "Декември"], 11 | monthsShort: ["Јан", "Фев", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Ное", "Дек"], 12 | today: "Денес", 13 | format: "dd.mm.yyyy" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.ms.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Malay translation for bootstrap-datepicker 3 | * Ateman Faiz 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ms'] = { 7 | days: ["Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu", "Ahad"], 8 | daysShort: ["Aha", "Isn", "Sel", "Rab", "Kha", "Jum", "Sab", "Aha"], 9 | daysMin: ["Ah", "Is", "Se", "Ra", "Kh", "Ju", "Sa", "Ah"], 10 | months: ["Januari", "Februari", "Mac", "April", "Mei", "Jun", "Julai", "Ogos", "September", "Oktober", "November", "Disember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mei", "Jun", "Jul", "Ogo", "Sep", "Okt", "Nov", "Dis"], 12 | today: "Hari Ini" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.nb.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Norwegian (bokmål) translation for bootstrap-datepicker 3 | * Fredrik Sundmyhr 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nb'] = { 7 | days: ["Søndag", "Mandag", "Tirsdag", "Onsdag", "Torsdag", "Fredag", "Lørdag", "Søndag"], 8 | daysShort: ["Søn", "Man", "Tir", "Ons", "Tor", "Fre", "Lør", "Søn"], 9 | daysMin: ["Sø", "Ma", "Ti", "On", "To", "Fr", "Lø", "Sø"], 10 | months: ["Januar", "Februar", "Mars", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Desember"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Des"], 12 | today: "I Dag" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.nl-BE.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Belgium-Dutch translation for bootstrap-datepicker 3 | * Julien Poulin 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nl-BE'] = { 7 | days: ["Zondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrijdag", "Zaterdag", "Zondag"], 8 | daysShort: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 9 | daysMin: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 10 | months: ["Januari", "Februari", "Maart", "April", "Mei", "Juni", "Juli", "Augustus", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mrt", "Apr", "Mei", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Vandaag", 13 | clear: "Leegmaken", 14 | weekStart: 1, 15 | format: "dd/mm/yyyy" 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.nl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Dutch translation for bootstrap-datepicker 3 | * Reinier Goltstein 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['nl'] = { 7 | days: ["Zondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrijdag", "Zaterdag", "Zondag"], 8 | daysShort: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 9 | daysMin: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za", "Zo"], 10 | months: ["Januari", "Februari", "Maart", "April", "Mei", "Juni", "Juli", "Augustus", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mrt", "Apr", "Mei", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Vandaag" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.no.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Norwegian translation for bootstrap-datepicker 3 | **/ 4 | ;(function($){ 5 | $.fn.datepicker.dates['no'] = { 6 | days: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'], 7 | daysShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'], 8 | daysMin: ['Sø','Ma','Ti','On','To','Fr','Lø'], 9 | months: ['Januar','Februar','Mars','April','Mai','Juni','Juli','August','September','Oktober','November','Desember'], 10 | monthsShort: ['Jan','Feb','Mar','Apr','Mai','Jun','Jul','Aug','Sep','Okt','Nov','Des'], 11 | today: 'I dag', 12 | clear: 'Nullstill', 13 | weekStart: 1, 14 | format: 'dd.mm.yyyy' 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.pl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Polish translation for bootstrap-datepicker 3 | * Robert 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['pl'] = { 7 | days: ["Niedziela", "Poniedziałek", "Wtorek", "Środa", "Czwartek", "Piątek", "Sobota", "Niedziela"], 8 | daysShort: ["Nie", "Pn", "Wt", "Śr", "Czw", "Pt", "So", "Nie"], 9 | daysMin: ["N", "Pn", "Wt", "Śr", "Cz", "Pt", "So", "N"], 10 | months: ["Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień"], 11 | monthsShort: ["Sty", "Lu", "Mar", "Kw", "Maj", "Cze", "Lip", "Sie", "Wrz", "Pa", "Lis", "Gru"], 12 | today: "Dzisiaj", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.pt-BR.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Brazilian translation for bootstrap-datepicker 3 | * Cauan Cabral 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['pt-BR'] = { 7 | days: ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado", "Domingo"], 8 | daysShort: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb", "Dom"], 9 | daysMin: ["Do", "Se", "Te", "Qu", "Qu", "Se", "Sa", "Do"], 10 | months: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"], 11 | monthsShort: ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"], 12 | today: "Hoje", 13 | clear: "Limpar" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.pt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Portuguese translation for bootstrap-datepicker 3 | * Original code: Cauan Cabral 4 | * Tiago Melo 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['pt'] = { 8 | days: ["Domingo", "Segunda", "Terça", "Quarta", "Quinta", "Sexta", "Sábado", "Domingo"], 9 | daysShort: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb", "Dom"], 10 | daysMin: ["Do", "Se", "Te", "Qu", "Qu", "Se", "Sa", "Do"], 11 | months: ["Janeiro", "Fevereiro", "Março", "Abril", "Maio", "Junho", "Julho", "Agosto", "Setembro", "Outubro", "Novembro", "Dezembro"], 12 | monthsShort: ["Jan", "Fev", "Mar", "Abr", "Mai", "Jun", "Jul", "Ago", "Set", "Out", "Nov", "Dez"], 13 | today: "Hoje", 14 | clear: "Limpar" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.ro.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Romanian translation for bootstrap-datepicker 3 | * Cristian Vasile 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ro'] = { 7 | days: ["Duminică", "Luni", "Marţi", "Miercuri", "Joi", "Vineri", "Sâmbătă", "Duminică"], 8 | daysShort: ["Dum", "Lun", "Mar", "Mie", "Joi", "Vin", "Sâm", "Dum"], 9 | daysMin: ["Du", "Lu", "Ma", "Mi", "Jo", "Vi", "Sâ", "Du"], 10 | months: ["Ianuarie", "Februarie", "Martie", "Aprilie", "Mai", "Iunie", "Iulie", "August", "Septembrie", "Octombrie", "Noiembrie", "Decembrie"], 11 | monthsShort: ["Ian", "Feb", "Mar", "Apr", "Mai", "Iun", "Iul", "Aug", "Sep", "Oct", "Nov", "Dec"], 12 | today: "Astăzi", 13 | clear: "Șterge", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.rs-latin.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Serbian latin translation for bootstrap-datepicker 3 | * Bojan Milosavlević 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['rs-latin'] = { 7 | days: ["Nedelja","Ponedeljak", "Utorak", "Sreda", "Četvrtak", "Petak", "Subota", "Nedelja"], 8 | daysShort: ["Ned", "Pon", "Uto", "Sre", "Čet", "Pet", "Sub", "Ned"], 9 | daysMin: ["N", "Po", "U", "Sr", "Č", "Pe", "Su", "N"], 10 | months: ["Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "Decembar"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danas" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.rs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Serbian cyrillic translation for bootstrap-datepicker 3 | * Bojan Milosavlević 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['rs'] = { 7 | days: ["Недеља","Понедељак", "Уторак", "Среда", "Четвртак", "Петак", "Субота", "Недеља"], 8 | daysShort: ["Нед", "Пон", "Уто", "Сре", "Чет", "Пет", "Суб", "Нед"], 9 | daysMin: ["Н", "По", "У", "Ср", "Ч", "Пе", "Су", "Н"], 10 | months: ["Јануар", "Фебруар", "Март", "Април", "Мај", "Јун", "Јул", "Август", "Септембар", "Октобар", "Новембар", "Децембар"], 11 | monthsShort: ["Јан", "Феб", "Мар", "Апр", "Мај", "Јун", "Јул", "Авг", "Сеп", "Окт", "Нов", "Дец"], 12 | today: "Данас" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.ru.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Russian translation for bootstrap-datepicker 3 | * Victor Taranenko 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ru'] = { 7 | days: ["Воскресенье", "Понедельник", "Вторник", "Среда", "Четверг", "Пятница", "Суббота", "Воскресенье"], 8 | daysShort: ["Вск", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб", "Вск"], 9 | daysMin: ["Вс", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб", "Вс"], 10 | months: ["Январь", "Февраль", "Март", "Апрель", "Май", "Июнь", "Июль", "Август", "Сентябрь", "Октябрь", "Ноябрь", "Декабрь"], 11 | monthsShort: ["Янв", "Фев", "Мар", "Апр", "Май", "Июн", "Июл", "Авг", "Сен", "Окт", "Ноя", "Дек"], 12 | today: "Сегодня", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.sk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Slovak translation for bootstrap-datepicker 3 | * Marek Lichtner 4 | * Fixes by Michal Remiš 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates["sk"] = { 8 | days: ["Nedeľa", "Pondelok", "Utorok", "Streda", "Štvrtok", "Piatok", "Sobota", "Nedeľa"], 9 | daysShort: ["Ned", "Pon", "Uto", "Str", "Štv", "Pia", "Sob", "Ned"], 10 | daysMin: ["Ne", "Po", "Ut", "St", "Št", "Pia", "So", "Ne"], 11 | months: ["Január", "Február", "Marec", "Apríl", "Máj", "Jún", "Júl", "August", "September", "Október", "November", "December"], 12 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Máj", "Jún", "Júl", "Aug", "Sep", "Okt", "Nov", "Dec"], 13 | today: "Dnes" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.sl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Slovene translation for bootstrap-datepicker 3 | * Gregor Rudolf 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sl'] = { 7 | days: ["Nedelja", "Ponedeljek", "Torek", "Sreda", "Četrtek", "Petek", "Sobota", "Nedelja"], 8 | daysShort: ["Ned", "Pon", "Tor", "Sre", "Čet", "Pet", "Sob", "Ned"], 9 | daysMin: ["Ne", "Po", "To", "Sr", "Če", "Pe", "So", "Ne"], 10 | months: ["Januar", "Februar", "Marec", "April", "Maj", "Junij", "Julij", "Avgust", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Avg", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Danes" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.sq.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Albanian translation for bootstrap-datepicker 3 | * Tomor Pupovci 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sq'] = { 7 | days: ["E Diel", "E Hënë", "E martē", "E mërkurë", "E Enjte", "E Premte", "E Shtunë", "E Diel"], 8 | daysShort: ["Die", "Hën", "Mar", "Mër", "Enj", "Pre", "Shtu", "Die"], 9 | daysMin: ["Di", "Hë", "Ma", "Më", "En", "Pr", "Sht", "Di"], 10 | months: ["Janar", "Shkurt", "Mars", "Prill", "Maj", "Qershor", "Korrik", "Gusht", "Shtator", "Tetor", "Nëntor", "Dhjetor"], 11 | monthsShort: ["Jan", "Shk", "Mar", "Pri", "Maj", "Qer", "Korr", "Gu", "Sht", "Tet", "Nën", "Dhjet"], 12 | today: "Sot" 13 | }; 14 | }(jQuery)); 15 | 16 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.sv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Swedish translation for bootstrap-datepicker 3 | * Patrik Ragnarsson 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['sv'] = { 7 | days: ["Söndag", "Måndag", "Tisdag", "Onsdag", "Torsdag", "Fredag", "Lördag", "Söndag"], 8 | daysShort: ["Sön", "Mån", "Tis", "Ons", "Tor", "Fre", "Lör", "Sön"], 9 | daysMin: ["Sö", "Må", "Ti", "On", "To", "Fr", "Lö", "Sö"], 10 | months: ["Januari", "Februari", "Mars", "April", "Maj", "Juni", "Juli", "Augusti", "September", "Oktober", "November", "December"], 11 | monthsShort: ["Jan", "Feb", "Mar", "Apr", "Maj", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"], 12 | today: "Idag", 13 | format: "yyyy-mm-dd", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.sw.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Swahili translation for bootstrap-datepicker 3 | * Edwin Mugendi 4 | * Source: http://scriptsource.org/cms/scripts/page.php?item_id=entry_detail&uid=xnfaqyzcku 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['sw'] = { 8 | days: ["Jumapili", "Jumatatu", "Jumanne", "Jumatano", "Alhamisi", "Ijumaa", "Jumamosi", "Jumapili"], 9 | daysShort: ["J2", "J3", "J4", "J5", "Alh", "Ij", "J1", "J2"], 10 | daysMin: ["2", "3", "4", "5", "A", "I", "1", "2"], 11 | months: ["Januari", "Februari", "Machi", "Aprili", "Mei", "Juni", "Julai", "Agosti", "Septemba", "Oktoba", "Novemba", "Desemba"], 12 | monthsShort: ["Jan", "Feb", "Mac", "Apr", "Mei", "Jun", "Jul", "Ago", "Sep", "Okt", "Nov", "Des"], 13 | today: "Leo" 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.th.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Thai translation for bootstrap-datepicker 3 | * Suchau Jiraprapot 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['th'] = { 7 | days: ["อาทิตย์", "จันทร์", "อังคาร", "พุธ", "พฤหัส", "ศุกร์", "เสาร์", "อาทิตย์"], 8 | daysShort: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], 9 | daysMin: ["อา", "จ", "อ", "พ", "พฤ", "ศ", "ส", "อา"], 10 | months: ["มกราคม", "กุมภาพันธ์", "มีนาคม", "เมษายน", "พฤษภาคม", "มิถุนายน", "กรกฎาคม", "สิงหาคม", "กันยายน", "ตุลาคม", "พฤศจิกายน", "ธันวาคม"], 11 | monthsShort: ["ม.ค.", "ก.พ.", "มี.ค.", "เม.ย.", "พ.ค.", "มิ.ย.", "ก.ค.", "ส.ค.", "ก.ย.", "ต.ค.", "พ.ย.", "ธ.ค."], 12 | today: "วันนี้" 13 | }; 14 | }(jQuery)); 15 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.tr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Turkish translation for bootstrap-datepicker 3 | * Serkan Algur 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['tr'] = { 7 | days: ["Pazar", "Pazartesi", "Salı", "Çarşamba", "Perşembe", "Cuma", "Cumartesi", "Pazar"], 8 | daysShort: ["Pz", "Pzt", "Sal", "Çrş", "Prş", "Cu", "Cts", "Pz"], 9 | daysMin: ["Pz", "Pzt", "Sa", "Çr", "Pr", "Cu", "Ct", "Pz"], 10 | months: ["Ocak", "Şubat", "Mart", "Nisan", "Mayıs", "Haziran", "Temmuz", "Ağustos", "Eylül", "Ekim", "Kasım", "Aralık"], 11 | monthsShort: ["Oca", "Şub", "Mar", "Nis", "May", "Haz", "Tem", "Ağu", "Eyl", "Eki", "Kas", "Ara"], 12 | today: "Bugün", 13 | format: "dd.mm.yyyy" 14 | }; 15 | }(jQuery)); 16 | 17 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.ua.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Ukrainian translation for bootstrap-datepicker 3 | * Igor Polynets 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['ua'] = { 7 | days: ["Неділя", "Понеділок", "Вівторок", "Середа", "Четвер", "П'ятница", "Субота", "Неділя"], 8 | daysShort: ["Нед", "Пнд", "Втр", "Срд", "Чтв", "Птн", "Суб", "Нед"], 9 | daysMin: ["Нд", "Пн", "Вт", "Ср", "Чт", "Пт", "Сб", "Нд"], 10 | months: ["Cічень", "Лютий", "Березень", "Квітень", "Травень", "Червень", "Липень", "Серпень", "Вересень", "Жовтень", "Листопад", "Грудень"], 11 | monthsShort: ["Січ", "Лют", "Бер", "Кві", "Тра", "Чер", "Лип", "Сер", "Вер", "Жов", "Лис", "Гру"], 12 | today: "Сьогодні", 13 | weekStart: 1 14 | }; 15 | }(jQuery)); 16 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.vi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Vietnamese translation for bootstrap-datepicker 3 | * An Vo 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['vi'] = { 7 | days: ["Chủ nhật", "Thứ hai", "Thứ ba", "Thứ tư", "Thứ năm", "Thứ sáu", "Thứ bảy", "Chủ nhật"], 8 | daysShort: ["CN", "Thứ 2", "Thứ 3", "Thứ 4", "Thứ 5", "Thứ 6", "Thứ 7", "CN"], 9 | daysMin: ["CN", "T2", "T3", "T4", "T5", "T6", "T7", "CN"], 10 | months: ["Tháng 1", "Tháng 2", "Tháng 3", "Tháng 4", "Tháng 5", "Tháng 6", "Tháng 7", "Tháng 8", "Tháng 9", "Tháng 10", "Tháng 11", "Tháng 12"], 11 | monthsShort: ["Th1", "Th2", "Th3", "Th4", "Th5", "Th6", "Th7", "Th8", "Th9", "Th10", "Th11", "Th12"], 12 | today: "Hôm nay", 13 | clear: "Xóa", 14 | format: "dd/mm/yyyy" 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.zh-CN.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Simplified Chinese translation for bootstrap-datepicker 3 | * Yuan Cheung 4 | */ 5 | ;(function($){ 6 | $.fn.datepicker.dates['zh-CN'] = { 7 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"], 8 | daysShort: ["周日", "周一", "周二", "周三", "周四", "周五", "周六", "周日"], 9 | daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"], 10 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 11 | monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 12 | today: "今日", 13 | format: "yyyy年mm月dd日", 14 | weekStart: 1 15 | }; 16 | }(jQuery)); 17 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/datepicker/locales/bootstrap-datepicker.zh-TW.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Traditional Chinese translation for bootstrap-datepicker 3 | * Rung-Sheng Jang 4 | * FrankWu Fix more appropriate use of Traditional Chinese habit 5 | */ 6 | ;(function($){ 7 | $.fn.datepicker.dates['zh-TW'] = { 8 | days: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"], 9 | daysShort: ["週日", "週一", "週二", "週三", "週四", "週五", "週六", "週日"], 10 | daysMin: ["日", "一", "二", "三", "四", "五", "六", "日"], 11 | months: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 12 | monthsShort: ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"], 13 | today: "今天", 14 | format: "yyyy年mm月dd日", 15 | weekStart: 1 16 | }; 17 | }(jQuery)); 18 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/js/plugins/input-mask/phone-codes/readme.txt: -------------------------------------------------------------------------------- 1 | more phone masks can be found at https://github.com/andr-04/inputmask-multi -------------------------------------------------------------------------------- /PiBox/PiHome/static/yaaw-master/TODO.md: -------------------------------------------------------------------------------- 1 | TODO 2 | ==== 3 | -------------------------------------------------------------------------------- /PiBox/PiHome/static/yaaw-master/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/yaaw-master/img/favicon.ico -------------------------------------------------------------------------------- /PiBox/PiHome/static/yaaw-master/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/yaaw-master/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/yaaw-master/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/PiHome/static/yaaw-master/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /PiBox/PiHome/static/yaaw-master/offline.appcache: -------------------------------------------------------------------------------- 1 | CACHE MANIFEST 2 | #2014-7-12 16:31 3 | 4 | CACHE: 5 | index.html 6 | css/main.css 7 | css/bootstrap.min.css 8 | css/bootstrap-responsive.min.css 9 | img/favicon.ico 10 | img/glyphicons-halflings-white.png 11 | img/glyphicons-halflings.png 12 | js/jquery-1.7.2.min.js 13 | js/bootstrap.min.js 14 | js/jquery.jsonrpc.js 15 | js/jquery.Storage.js 16 | js/jquery.base64.min.js 17 | js/mustache.js 18 | js/peerid.js 19 | js/aria2.js 20 | js/yaaw.js 21 | -------------------------------------------------------------------------------- /PiBox/PiHome/templates/404.html: -------------------------------------------------------------------------------- 1 | {% extends "base-user.html" %} 2 | 3 | {% block content %} 4 |
5 |

404

6 |
7 |

Oops! Page not found.

8 |

9 | We could not find the page you were looking for. 10 | Meanwhile, you may return to dashboard 11 |

12 |
13 |
14 | {% endblock %} -------------------------------------------------------------------------------- /PiBox/PiHome/templates/500.html: -------------------------------------------------------------------------------- 1 | {% extends "base-user.html" %} 2 | 3 | {% block content %} 4 |
5 |

500

6 |
7 |

Oops! Something went wrong.

8 |

9 | We will work on fixing that right away. 10 | Meanwhile, you may return to dashboard 11 |

12 |
13 |
14 | {% endblock %} 15 | -------------------------------------------------------------------------------- /PiBox/PiHome/templates/home/help_en.html: -------------------------------------------------------------------------------- 1 | {% extends "base-user.html" %} 2 | 3 | {% block css%} 4 | {% endblock %} 5 | {% block js%} 6 | {% endblock %} 7 | 8 | 9 | {% block on_ready%} 10 | {% endblock %} 11 | 12 | {% block content %} 13 |
14 |
15 |
16 |
17 | 18 |

Document-en

19 |
20 |
21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 |
35 | 36 |
37 |
38 |
39 | {% endblock %} -------------------------------------------------------------------------------- /PiBox/PiHome/templates/nas/file.html: -------------------------------------------------------------------------------- 1 | {% extends "base-user.html" %} 2 | 3 | {% block css%} 4 | 13 | {% endblock %} 14 | 15 | {% block js%} 16 | 23 | {% endblock %} 24 | 25 | {% block on_ready%} 26 | {% endblock %} 27 | 28 | {% block content %} 29 | 30 |
31 | 32 |
33 | 34 | {% endblock %} 35 | -------------------------------------------------------------------------------- /PiBox/PiHome/templates/status/dmesg.html: -------------------------------------------------------------------------------- 1 | {% extends "base-user.html" %} 2 | 3 | {% block css%} 4 | {% endblock %} 5 | {% block js%} 6 | {% endblock %} 7 | 8 | 9 | {% block on_ready%} 10 | {% endblock %} 11 | 12 | {% block content %} 13 | 14 |
15 |
16 | 17 |
18 |
19 | 20 |

Log

21 |
22 |
23 |
{{ log }}
24 |
25 |
26 |
27 |
28 | {% endblock %} -------------------------------------------------------------------------------- /PiBox/etc/PiBox/aria2/save/aria2.session: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/PiBox/etc/PiBox/aria2/save/aria2.session -------------------------------------------------------------------------------- /PiBox/install_env.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | dir=`dirname ${0}` 3 | dir2="${PWD}/${dir}" 4 | cd ${dir2} 5 | cp -rf ./etc/* /etc 6 | # ln -s ${dir2}/App PiHome/templates/application 7 | # ln -s ${dir2}/App PiHome/static/application 8 | ln -s ${dir2}/App PiHome 9 | 10 | mkdir /home/shares 11 | chmod 0666 /home/shares -------------------------------------------------------------------------------- /PiBox/log/README.md: -------------------------------------------------------------------------------- 1 | log. -------------------------------------------------------------------------------- /PiBox/sh/README.md: -------------------------------------------------------------------------------- 1 | This directory contains script tools. 2 | -------------------------------------------------------------------------------- /PiBox/sh/aria2/pauseAll.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "aria2.pauseAll" 4 | curl -d "{\"jsonrpc\":\"2.0\",\"method\":\"aria2.pauseAll\",\"id\":1,\"params\":[]}" "http://127.0.0.1:6800/jsonrpc" 5 | echo '\ndone' 6 | -------------------------------------------------------------------------------- /PiBox/sh/aria2/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | 4 | if [ ! -f "/etc/PiBox/aria2/save/aria2.session" ]; then 5 | touch '/etc/PiBox/aria2/save/aria2.session' 6 | fi 7 | 8 | #if [ ! -f "/var/PiBox/aria2/save/aria2.log" ]; then 9 | # touch '/var/PiBox/aria2/save/aria2.log' 10 | #fi 11 | 12 | aria2c --conf-path="/etc/PiBox/aria2/aria2c.conf" -D 13 | -------------------------------------------------------------------------------- /PiBox/sh/aria2/stop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | pids=`ps aux|grep 'aria2'|grep -v 'grep'|awk -F' ' '{print $2}'` 4 | if [ "$pids" ];then 5 | kill -9 $pids 6 | fi 7 | 8 | echo 'kill aria2!' -------------------------------------------------------------------------------- /PiBox/sh/aria2/unpauseAll.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "aria2.unpauseAll" 4 | curl -d "{\"jsonrpc\":\"2.0\",\"method\":\"aria2.unpauseAll\",\"id\":1,\"params\":[]}" "http://127.0.0.1:6800/jsonrpc" 5 | echo '\ndone' 6 | -------------------------------------------------------------------------------- /PiBox/sh/callback/callout.py: -------------------------------------------------------------------------------- 1 | ''' 2 | # Any issues or improvements please contact jacob-chen@iotwrt.com 3 | ''' 4 | import os,sys 5 | 6 | cwd = os.path.dirname(os.path.abspath(__file__)) + '/..' + '/..' 7 | sys.path.append(os.path.join(cwd, 'PiHome')) 8 | 9 | print 'Sensor:', str(sys.argv[1]) 10 | print 'Value:', str(sys.argv[2]) 11 | print 'key:', str(sys.argv[3]) -------------------------------------------------------------------------------- /PiBox/sh/callback/gpio.py: -------------------------------------------------------------------------------- 1 | ''' 2 | # Any issues or improvements please contact jacob-chen@iotwrt.com 3 | ''' 4 | import os,sys 5 | 6 | 7 | cwd = os.path.dirname(os.path.abspath(__file__)) + '/..' + '/..' 8 | sys.path.append(os.path.join(cwd, 'PiHome')) 9 | 10 | from common.driver import linux_gpio 11 | 12 | print 'Sensor:', str(sys.argv[1]) 13 | print 'Value:', str(sys.argv[2]) 14 | 15 | GPIO_NUM = 23 16 | 17 | print 'GPIO_BCM_NUM:', GPIO_NUM 18 | 19 | gpio = linux_gpio.gpio(GPIO_NUM) 20 | gpio.gpio_export() 21 | gpio.write_gpio_direction('out') 22 | gpio.write_gpio_value(sys.argv[2]) -------------------------------------------------------------------------------- /PiBox/sh/syncdb.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | dir=`dirname ${0}` 3 | dir2="${PWD}/${dir}" 4 | cd ${dir2} 5 | cd ../ 6 | 7 | python ./PiHome/manage.py syncdb 8 | 9 | -------------------------------------------------------------------------------- /PiBox/stop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # killall pihome 4 | # killall python 5 | 6 | pids=`ps aux|grep 'pihome'|grep -v 'grep'|awk -F' ' '{print $2}'` 7 | if [ "$pids" ];then 8 | kill -9 $pids 9 | fi 10 | pids=`ps aux|grep 'manage.py'|grep -v 'grep'|awk -F' ' '{print $2}'` 11 | if [ "$pids" ];then 12 | kill -9 $pids 13 | fi 14 | pids=`ps aux|grep 'webshell.py'|grep -v 'grep'|awk -F' ' '{print $2}'` 15 | if [ "$pids" ];then 16 | kill -9 $pids 17 | fi -------------------------------------------------------------------------------- /optional-app/GPIO/README.md: -------------------------------------------------------------------------------- 1 | 复制文件夹到App文件夹下即可。 2 | 注意GPIO的id是bcm驱动的id。 -------------------------------------------------------------------------------- /optional-app/GPIO/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/optional-app/GPIO/__init__.py -------------------------------------------------------------------------------- /optional-app/GPIO/app.ini: -------------------------------------------------------------------------------- 1 | [Application] 2 | Name=GPIO 3 | HaveLib=0 -------------------------------------------------------------------------------- /optional-app/GPIO/static/GPIO/img/pin_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/optional-app/GPIO/static/GPIO/img/pin_pic.png -------------------------------------------------------------------------------- /optional-app/GPIO/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import * 2 | from django.contrib.staticfiles.urls import staticfiles_urlpatterns 3 | 4 | from views import * 5 | 6 | 7 | urlpatterns = patterns('', 8 | (r'^$', GPIO), 9 | (r'^add/', add), 10 | (r'^remove/', remove), 11 | (r'^read_direction/', read_direction), 12 | (r'^write_direction/', write_direction), 13 | (r'^read_value/', read_value), 14 | (r'^write_value/', write_value), 15 | (r'^exported_gpio/', exported_gpio), 16 | ) 17 | -------------------------------------------------------------------------------- /optional-app/README.md: -------------------------------------------------------------------------------- 1 | Here is app you can choose to install or no.
2 | How to install depends on app.
3 | Remember to restart PiBox after Installation.
4 | 5 | # webcam # 6 | 7 | ![image](http://www.iotwrt.com/jpg/pb-cam.png) 8 | 9 | # GPIO # 10 | 11 | ![image](http://www.iotwrt.com/jpg/pb-gpio.jpg) 12 | 13 | -------------------------------------------------------------------------------- /optional-app/webcam/README.md: -------------------------------------------------------------------------------- 1 | 放到pibox文件夹的app目录下.
2 | 3 | sudo apt-get install python-opencv 4 | 5 | 6 | 因为使用的过程中出现了usb速度或者其他硬件原因导致的读取失败,大小被限制在320*240. -------------------------------------------------------------------------------- /optional-app/webcam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/optional-app/webcam/__init__.py -------------------------------------------------------------------------------- /optional-app/webcam/app.ini: -------------------------------------------------------------------------------- 1 | [Application] 2 | Name=webcam 3 | HaveLib=0 4 | -------------------------------------------------------------------------------- /optional-app/webcam/tmp/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzyy2/PiBox/8c3769befd6a93baeec1f868a08e71dfa143d081/optional-app/webcam/tmp/cancel.png -------------------------------------------------------------------------------- /optional-app/webcam/urls.py: -------------------------------------------------------------------------------- 1 | from django.conf.urls import * 2 | from django.contrib.staticfiles.urls import staticfiles_urlpatterns 3 | from PiApp.views import * 4 | from PiApp.api import * 5 | 6 | from views import * 7 | #/PiApp/application 8 | 9 | urlpatterns = patterns('', 10 | (r'^$', index), 11 | (r'^open/', open_camera), 12 | (r'^close/', close_camera), 13 | (r'^temp.jpg', image), 14 | ) 15 | --------------------------------------------------------------------------------