├── LICENSE.txt
├── README.md
├── android
├── custom
│ └── compat.js
└── src
│ ├── .gitignore
│ ├── .idea
│ ├── gradle.xml
│ └── runConfigurations.xml
│ ├── app
│ ├── build.gradle
│ ├── proguard-project.txt
│ └── src
│ │ └── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ └── com
│ │ │ └── example
│ │ │ └── agitodo
│ │ │ ├── Dropbox.java
│ │ │ ├── Gdrive.java
│ │ │ ├── Gmail.java
│ │ │ ├── Hubic.java
│ │ │ ├── Logger.java
│ │ │ ├── MainActivity.java
│ │ │ ├── OAuth.java
│ │ │ └── Request.java
│ │ └── res
│ │ ├── drawable-hdpi
│ │ └── ic_launcher.png
│ │ ├── drawable-ldpi
│ │ └── ic_launcher.png
│ │ ├── drawable-mdpi
│ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ └── ic_launcher.png
│ │ ├── drawable-xxhdpi
│ │ └── ic_launcher.png
│ │ ├── layout
│ │ ├── about.xml
│ │ └── main.xml
│ │ ├── menu
│ │ └── main_menu.xml
│ │ └── values
│ │ └── strings.xml
│ ├── build.gradle
│ ├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
│ ├── gradlew
│ ├── gradlew.bat
│ └── settings.gradle
├── build_android.py
├── build_node.py
├── build_qt.py
├── core
├── .gitignore
├── css
│ ├── style.css
│ └── theme.css
├── favicon.ico
├── font
│ ├── ubuntu-r-webfont.ttf
│ └── ubuntu-r-webfont.woff
├── img
│ ├── calendar-white.svg
│ ├── check-black.svg
│ ├── check-green.svg
│ ├── check-white.svg
│ ├── clock-black.svg
│ ├── day-white.svg
│ ├── icon-256.png
│ ├── star-black.svg
│ └── week-white.svg
├── index.html
└── js
│ ├── dg_about.js
│ ├── dg_edit.js
│ ├── dg_settings.js
│ ├── email.js
│ ├── global.js
│ ├── oauth.js
│ ├── pg_day.js
│ ├── pg_month.js
│ ├── pg_taskList.js
│ ├── pg_week.js
│ ├── request.js
│ ├── session.js
│ ├── storage.js
│ ├── sync.js
│ ├── tasks.js
│ ├── util.js
│ ├── widget.js
│ └── xdate.i18n.js
├── large.png
├── lib
├── CryptoJS v3.1.2
│ ├── components
│ │ ├── aes-min.js
│ │ ├── aes.js
│ │ ├── cipher-core-min.js
│ │ ├── cipher-core.js
│ │ ├── core-min.js
│ │ ├── core.js
│ │ ├── enc-base64-min.js
│ │ ├── enc-base64.js
│ │ ├── enc-utf16-min.js
│ │ ├── enc-utf16.js
│ │ ├── evpkdf-min.js
│ │ ├── evpkdf.js
│ │ ├── format-hex-min.js
│ │ ├── format-hex.js
│ │ ├── hmac-min.js
│ │ ├── hmac.js
│ │ ├── lib-typedarrays-min.js
│ │ ├── lib-typedarrays.js
│ │ ├── md5-min.js
│ │ ├── md5.js
│ │ ├── mode-cfb-min.js
│ │ ├── mode-cfb.js
│ │ ├── mode-ctr-gladman-min.js
│ │ ├── mode-ctr-gladman.js
│ │ ├── mode-ctr-min.js
│ │ ├── mode-ctr.js
│ │ ├── mode-ecb-min.js
│ │ ├── mode-ecb.js
│ │ ├── mode-ofb-min.js
│ │ ├── mode-ofb.js
│ │ ├── pad-ansix923-min.js
│ │ ├── pad-ansix923.js
│ │ ├── pad-iso10126-min.js
│ │ ├── pad-iso10126.js
│ │ ├── pad-iso97971-min.js
│ │ ├── pad-iso97971.js
│ │ ├── pad-nopadding-min.js
│ │ ├── pad-nopadding.js
│ │ ├── pad-zeropadding-min.js
│ │ ├── pad-zeropadding.js
│ │ ├── pbkdf2-min.js
│ │ ├── pbkdf2.js
│ │ ├── rabbit-legacy-min.js
│ │ ├── rabbit-legacy.js
│ │ ├── rabbit-min.js
│ │ ├── rabbit.js
│ │ ├── rc4-min.js
│ │ ├── rc4.js
│ │ ├── ripemd160-min.js
│ │ ├── ripemd160.js
│ │ ├── sha1-min.js
│ │ ├── sha1.js
│ │ ├── sha224-min.js
│ │ ├── sha224.js
│ │ ├── sha256-min.js
│ │ ├── sha256.js
│ │ ├── sha3-min.js
│ │ ├── sha3.js
│ │ ├── sha384-min.js
│ │ ├── sha384.js
│ │ ├── sha512-min.js
│ │ ├── sha512.js
│ │ ├── tripledes-min.js
│ │ ├── tripledes.js
│ │ ├── x64-core-min.js
│ │ └── x64-core.js
│ └── rollups
│ │ ├── aes.js
│ │ ├── hmac-md5.js
│ │ ├── hmac-ripemd160.js
│ │ ├── hmac-sha1.js
│ │ ├── hmac-sha224.js
│ │ ├── hmac-sha256.js
│ │ ├── hmac-sha3.js
│ │ ├── hmac-sha384.js
│ │ ├── hmac-sha512.js
│ │ ├── md5.js
│ │ ├── pbkdf2.js
│ │ ├── rabbit-legacy.js
│ │ ├── rabbit.js
│ │ ├── rc4.js
│ │ ├── ripemd160.js
│ │ ├── sha1.js
│ │ ├── sha224.js
│ │ ├── sha256.js
│ │ ├── sha3.js
│ │ ├── sha384.js
│ │ ├── sha512.js
│ │ └── tripledes.js
├── jquery-2.1.3
│ ├── jquery-2.1.3.js
│ └── jquery-2.1.3.min.js
├── jquery.mobile-1.4.5
│ ├── demos
│ │ ├── _assets
│ │ │ ├── css
│ │ │ │ └── jqm-demos.css
│ │ │ ├── img
│ │ │ │ ├── album-af.jpg
│ │ │ │ ├── album-ag.jpg
│ │ │ │ ├── album-bb.jpg
│ │ │ │ ├── album-bk.jpg
│ │ │ │ ├── album-hc.jpg
│ │ │ │ ├── album-k.jpg
│ │ │ │ ├── album-mg.jpg
│ │ │ │ ├── album-ok.jpg
│ │ │ │ ├── album-p.jpg
│ │ │ │ ├── album-rh.jpg
│ │ │ │ ├── album-ws.jpg
│ │ │ │ ├── album-xx.jpg
│ │ │ │ ├── apple.png
│ │ │ │ ├── bg-pattern.png
│ │ │ │ ├── bike.jpg
│ │ │ │ ├── blackberry_10.png
│ │ │ │ ├── bmw-thumb.jpg
│ │ │ │ ├── bmw.jpg
│ │ │ │ ├── buenosaires.jpg
│ │ │ │ ├── capetown.jpg
│ │ │ │ ├── de.png
│ │ │ │ ├── devices.png
│ │ │ │ ├── fi.png
│ │ │ │ ├── firefox-logo.png
│ │ │ │ ├── firefox_os.png
│ │ │ │ ├── galaxy_express.png
│ │ │ │ ├── gb.png
│ │ │ │ ├── gf.png
│ │ │ │ ├── glyphish-icons
│ │ │ │ │ ├── 09-chat2.png
│ │ │ │ │ ├── 100-coffee.png
│ │ │ │ │ ├── 18-envelope.png
│ │ │ │ │ ├── 19-gear.png
│ │ │ │ │ ├── 21-skull.png
│ │ │ │ │ ├── 30-key.png
│ │ │ │ │ ├── 34-coffee.png
│ │ │ │ │ ├── 88-beermug.png
│ │ │ │ │ └── Read me first - license.txt
│ │ │ │ ├── jquery-logo.png
│ │ │ │ ├── landrover-thumb.jpg
│ │ │ │ ├── landrover.jpg
│ │ │ │ ├── lumia_800.png
│ │ │ │ ├── newyork.jpg
│ │ │ │ ├── nexus_7.png
│ │ │ │ ├── paris.jpg
│ │ │ │ ├── phone_galaxy3.png
│ │ │ │ ├── phone_iphone5.png
│ │ │ │ ├── phone_lumia920.png
│ │ │ │ ├── phone_onex.png
│ │ │ │ ├── photo-landscape.jpg
│ │ │ │ ├── photo-portrait.jpg
│ │ │ │ ├── photo-run.jpeg
│ │ │ │ ├── seoul.jpg
│ │ │ │ ├── sydney.jpg
│ │ │ │ ├── tesla-thumb.jpg
│ │ │ │ ├── tesla.jpg
│ │ │ │ ├── tizen.png
│ │ │ │ └── us.png
│ │ │ └── js
│ │ │ │ ├── h2widget.js
│ │ │ │ ├── index.html
│ │ │ │ ├── index.js
│ │ │ │ ├── jqm-demos.js
│ │ │ │ └── view-source.js
│ │ ├── _search
│ │ │ └── index.html
│ │ ├── backbone-requirejs
│ │ │ ├── backbone-require.html
│ │ │ ├── index.html
│ │ │ └── js
│ │ │ │ ├── collections
│ │ │ │ └── CategoriesCollection.js
│ │ │ │ ├── main.js
│ │ │ │ ├── models
│ │ │ │ └── CategoryModel.js
│ │ │ │ ├── routers
│ │ │ │ └── mobileRouter.js
│ │ │ │ └── views
│ │ │ │ └── CategoryView.js
│ │ ├── body-bar-classes
│ │ │ └── index.html
│ │ ├── button-markup
│ │ │ └── index.html
│ │ ├── button
│ │ │ └── index.html
│ │ ├── checkboxradio-checkbox
│ │ │ └── index.html
│ │ ├── checkboxradio-radio
│ │ │ └── index.html
│ │ ├── collapsible-dynamic
│ │ │ └── index.html
│ │ ├── collapsible
│ │ │ └── index.html
│ │ ├── collapsibleset
│ │ │ └── index.html
│ │ ├── controlgroup-dynamic
│ │ │ └── index.html
│ │ ├── controlgroup
│ │ │ └── index.html
│ │ ├── css
│ │ │ └── themes
│ │ │ │ └── default
│ │ │ │ ├── images
│ │ │ │ ├── ajax-loader.gif
│ │ │ │ ├── icons-png
│ │ │ │ │ ├── action-black.png
│ │ │ │ │ ├── action-white.png
│ │ │ │ │ ├── alert-black.png
│ │ │ │ │ ├── alert-white.png
│ │ │ │ │ ├── arrow-d-black.png
│ │ │ │ │ ├── arrow-d-l-black.png
│ │ │ │ │ ├── arrow-d-l-white.png
│ │ │ │ │ ├── arrow-d-r-black.png
│ │ │ │ │ ├── arrow-d-r-white.png
│ │ │ │ │ ├── arrow-d-white.png
│ │ │ │ │ ├── arrow-l-black.png
│ │ │ │ │ ├── arrow-l-white.png
│ │ │ │ │ ├── arrow-r-black.png
│ │ │ │ │ ├── arrow-r-white.png
│ │ │ │ │ ├── arrow-u-black.png
│ │ │ │ │ ├── arrow-u-l-black.png
│ │ │ │ │ ├── arrow-u-l-white.png
│ │ │ │ │ ├── arrow-u-r-black.png
│ │ │ │ │ ├── arrow-u-r-white.png
│ │ │ │ │ ├── arrow-u-white.png
│ │ │ │ │ ├── audio-black.png
│ │ │ │ │ ├── audio-white.png
│ │ │ │ │ ├── back-black.png
│ │ │ │ │ ├── back-white.png
│ │ │ │ │ ├── bars-black.png
│ │ │ │ │ ├── bars-white.png
│ │ │ │ │ ├── bullets-black.png
│ │ │ │ │ ├── bullets-white.png
│ │ │ │ │ ├── calendar-black.png
│ │ │ │ │ ├── calendar-white.png
│ │ │ │ │ ├── camera-black.png
│ │ │ │ │ ├── camera-white.png
│ │ │ │ │ ├── carat-d-black.png
│ │ │ │ │ ├── carat-d-white.png
│ │ │ │ │ ├── carat-l-black.png
│ │ │ │ │ ├── carat-l-white.png
│ │ │ │ │ ├── carat-r-black.png
│ │ │ │ │ ├── carat-r-white.png
│ │ │ │ │ ├── carat-u-black.png
│ │ │ │ │ ├── carat-u-white.png
│ │ │ │ │ ├── check-black.png
│ │ │ │ │ ├── check-white.png
│ │ │ │ │ ├── clock-black.png
│ │ │ │ │ ├── clock-white.png
│ │ │ │ │ ├── cloud-black.png
│ │ │ │ │ ├── cloud-white.png
│ │ │ │ │ ├── comment-black.png
│ │ │ │ │ ├── comment-white.png
│ │ │ │ │ ├── delete-black.png
│ │ │ │ │ ├── delete-white.png
│ │ │ │ │ ├── edit-black.png
│ │ │ │ │ ├── edit-white.png
│ │ │ │ │ ├── eye-black.png
│ │ │ │ │ ├── eye-white.png
│ │ │ │ │ ├── forbidden-black.png
│ │ │ │ │ ├── forbidden-white.png
│ │ │ │ │ ├── forward-black.png
│ │ │ │ │ ├── forward-white.png
│ │ │ │ │ ├── gear-black.png
│ │ │ │ │ ├── gear-white.png
│ │ │ │ │ ├── grid-black.png
│ │ │ │ │ ├── grid-white.png
│ │ │ │ │ ├── heart-black.png
│ │ │ │ │ ├── heart-white.png
│ │ │ │ │ ├── home-black.png
│ │ │ │ │ ├── home-white.png
│ │ │ │ │ ├── info-black.png
│ │ │ │ │ ├── info-white.png
│ │ │ │ │ ├── location-black.png
│ │ │ │ │ ├── location-white.png
│ │ │ │ │ ├── lock-black.png
│ │ │ │ │ ├── lock-white.png
│ │ │ │ │ ├── mail-black.png
│ │ │ │ │ ├── mail-white.png
│ │ │ │ │ ├── minus-black.png
│ │ │ │ │ ├── minus-white.png
│ │ │ │ │ ├── navigation-black.png
│ │ │ │ │ ├── navigation-white.png
│ │ │ │ │ ├── phone-black.png
│ │ │ │ │ ├── phone-white.png
│ │ │ │ │ ├── plus-black.png
│ │ │ │ │ ├── plus-white.png
│ │ │ │ │ ├── power-black.png
│ │ │ │ │ ├── power-white.png
│ │ │ │ │ ├── recycle-black.png
│ │ │ │ │ ├── recycle-white.png
│ │ │ │ │ ├── refresh-black.png
│ │ │ │ │ ├── refresh-white.png
│ │ │ │ │ ├── search-black.png
│ │ │ │ │ ├── search-white.png
│ │ │ │ │ ├── shop-black.png
│ │ │ │ │ ├── shop-white.png
│ │ │ │ │ ├── star-black.png
│ │ │ │ │ ├── star-white.png
│ │ │ │ │ ├── tag-black.png
│ │ │ │ │ ├── tag-white.png
│ │ │ │ │ ├── user-black.png
│ │ │ │ │ ├── user-white.png
│ │ │ │ │ ├── video-black.png
│ │ │ │ │ └── video-white.png
│ │ │ │ └── icons-svg
│ │ │ │ │ ├── action-black.svg
│ │ │ │ │ ├── action-white.svg
│ │ │ │ │ ├── alert-black.svg
│ │ │ │ │ ├── alert-white.svg
│ │ │ │ │ ├── arrow-d-black.svg
│ │ │ │ │ ├── arrow-d-l-black.svg
│ │ │ │ │ ├── arrow-d-l-white.svg
│ │ │ │ │ ├── arrow-d-r-black.svg
│ │ │ │ │ ├── arrow-d-r-white.svg
│ │ │ │ │ ├── arrow-d-white.svg
│ │ │ │ │ ├── arrow-l-black.svg
│ │ │ │ │ ├── arrow-l-white.svg
│ │ │ │ │ ├── arrow-r-black.svg
│ │ │ │ │ ├── arrow-r-white.svg
│ │ │ │ │ ├── arrow-u-black.svg
│ │ │ │ │ ├── arrow-u-l-black.svg
│ │ │ │ │ ├── arrow-u-l-white.svg
│ │ │ │ │ ├── arrow-u-r-black.svg
│ │ │ │ │ ├── arrow-u-r-white.svg
│ │ │ │ │ ├── arrow-u-white.svg
│ │ │ │ │ ├── audio-black.svg
│ │ │ │ │ ├── audio-white.svg
│ │ │ │ │ ├── back-black.svg
│ │ │ │ │ ├── back-white.svg
│ │ │ │ │ ├── bars-black.svg
│ │ │ │ │ ├── bars-white.svg
│ │ │ │ │ ├── bullets-black.svg
│ │ │ │ │ ├── bullets-white.svg
│ │ │ │ │ ├── calendar-black.svg
│ │ │ │ │ ├── calendar-white.svg
│ │ │ │ │ ├── camera-black.svg
│ │ │ │ │ ├── camera-white.svg
│ │ │ │ │ ├── carat-d-black.svg
│ │ │ │ │ ├── carat-d-white.svg
│ │ │ │ │ ├── carat-l-black.svg
│ │ │ │ │ ├── carat-l-white.svg
│ │ │ │ │ ├── carat-r-black.svg
│ │ │ │ │ ├── carat-r-white.svg
│ │ │ │ │ ├── carat-u-black.svg
│ │ │ │ │ ├── carat-u-white.svg
│ │ │ │ │ ├── check-black.svg
│ │ │ │ │ ├── check-white.svg
│ │ │ │ │ ├── clock-black.svg
│ │ │ │ │ ├── clock-white.svg
│ │ │ │ │ ├── cloud-black.svg
│ │ │ │ │ ├── cloud-white.svg
│ │ │ │ │ ├── comment-black.svg
│ │ │ │ │ ├── comment-white.svg
│ │ │ │ │ ├── delete-black.svg
│ │ │ │ │ ├── delete-white.svg
│ │ │ │ │ ├── edit-black.svg
│ │ │ │ │ ├── edit-white.svg
│ │ │ │ │ ├── eye-black.svg
│ │ │ │ │ ├── eye-white.svg
│ │ │ │ │ ├── forbidden-black.svg
│ │ │ │ │ ├── forbidden-white.svg
│ │ │ │ │ ├── forward-black.svg
│ │ │ │ │ ├── forward-white.svg
│ │ │ │ │ ├── gear-black.svg
│ │ │ │ │ ├── gear-white.svg
│ │ │ │ │ ├── grid-black.svg
│ │ │ │ │ ├── grid-white.svg
│ │ │ │ │ ├── heart-black.svg
│ │ │ │ │ ├── heart-white.svg
│ │ │ │ │ ├── home-black.svg
│ │ │ │ │ ├── home-white.svg
│ │ │ │ │ ├── info-black.svg
│ │ │ │ │ ├── info-white.svg
│ │ │ │ │ ├── location-black.svg
│ │ │ │ │ ├── location-white.svg
│ │ │ │ │ ├── lock-black.svg
│ │ │ │ │ ├── lock-white.svg
│ │ │ │ │ ├── mail-black.svg
│ │ │ │ │ ├── mail-white.svg
│ │ │ │ │ ├── minus-black.svg
│ │ │ │ │ ├── minus-white.svg
│ │ │ │ │ ├── navigation-black.svg
│ │ │ │ │ ├── navigation-white.svg
│ │ │ │ │ ├── phone-black.svg
│ │ │ │ │ ├── phone-white.svg
│ │ │ │ │ ├── plus-black.svg
│ │ │ │ │ ├── plus-white.svg
│ │ │ │ │ ├── power-black.svg
│ │ │ │ │ ├── power-white.svg
│ │ │ │ │ ├── recycle-black.svg
│ │ │ │ │ ├── recycle-white.svg
│ │ │ │ │ ├── refresh-black.svg
│ │ │ │ │ ├── refresh-white.svg
│ │ │ │ │ ├── search-black.svg
│ │ │ │ │ ├── search-white.svg
│ │ │ │ │ ├── shop-black.svg
│ │ │ │ │ ├── shop-white.svg
│ │ │ │ │ ├── star-black.svg
│ │ │ │ │ ├── star-white.svg
│ │ │ │ │ ├── tag-black.svg
│ │ │ │ │ ├── tag-white.svg
│ │ │ │ │ ├── user-black.svg
│ │ │ │ │ ├── user-white.svg
│ │ │ │ │ ├── video-black.svg
│ │ │ │ │ └── video-white.svg
│ │ │ │ ├── jquery.mobile-1.4.5.min.css
│ │ │ │ ├── jquery.mobile.external-png-1.4.5.min.css
│ │ │ │ ├── jquery.mobile.icons-1.4.5.min.css
│ │ │ │ ├── jquery.mobile.inline-png-1.4.5.min.css
│ │ │ │ ├── jquery.mobile.inline-svg-1.4.5.min.css
│ │ │ │ ├── jquery.mobile.structure-1.4.5.min.css
│ │ │ │ └── jquery.mobile.theme-1.4.5.min.css
│ │ ├── datepicker
│ │ │ └── index.html
│ │ ├── favicon.ico
│ │ ├── filterable
│ │ │ └── index.html
│ │ ├── flipswitch
│ │ │ └── index.html
│ │ ├── forms-disabled
│ │ │ └── index.html
│ │ ├── forms-field-contain
│ │ │ ├── fieldcontain-hide-label-deprecated.html
│ │ │ └── index.html
│ │ ├── forms-gallery
│ │ │ └── index.html
│ │ ├── forms-label-hidden-accessible
│ │ │ └── index.html
│ │ ├── forms
│ │ │ └── index.html
│ │ ├── grids-buttons
│ │ │ └── index.html
│ │ ├── grids-custom-responsive
│ │ │ └── index.html
│ │ ├── grids
│ │ │ └── index.html
│ │ ├── icons-grunticon
│ │ │ └── index.html
│ │ ├── icons
│ │ │ └── index.html
│ │ ├── index.html
│ │ ├── intro
│ │ │ └── index.html
│ │ ├── jqm-contents.html
│ │ ├── jqm-contents.php
│ │ ├── jqm-navmenu.html
│ │ ├── jqm-navmenu.php
│ │ ├── jqm-search.html
│ │ ├── jqm-search.php
│ │ ├── js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.min.js
│ │ │ ├── jquery.mobile-1.4.5.js
│ │ │ ├── jquery.mobile-1.4.5.min.js
│ │ │ └── jquery.mobile-1.4.5.min.map
│ │ ├── listview-autocomplete-remote
│ │ │ └── index.html
│ │ ├── listview-autocomplete
│ │ │ └── index.html
│ │ ├── listview-autodividers-linkbar
│ │ │ ├── autodividers-linkbar-demo.html
│ │ │ ├── autodividers-linkbar.css
│ │ │ ├── autodividers-linkbar.js
│ │ │ └── index.html
│ │ ├── listview-autodividers-selector
│ │ │ └── index.html
│ │ ├── listview-collapsible-item-flat
│ │ │ └── index.html
│ │ ├── listview-collapsible-item-indented
│ │ │ └── index.html
│ │ ├── listview-grid
│ │ │ ├── index.html
│ │ │ ├── listview-grid.css
│ │ │ └── listview-grid.html
│ │ ├── listview-nested-lists
│ │ │ └── index.html
│ │ ├── listview
│ │ │ └── index.html
│ │ ├── loader
│ │ │ └── index.html
│ │ ├── map-geolocation
│ │ │ └── index.html
│ │ ├── map-list-toggle
│ │ │ ├── index.html
│ │ │ ├── jquery.gmap.js
│ │ │ └── showMore.html
│ │ ├── navbar
│ │ │ └── index.html
│ │ ├── navigation-hash-processing
│ │ │ └── index.html
│ │ ├── navigation-linking-pages
│ │ │ └── index.html
│ │ ├── navigation-php-redirect
│ │ │ ├── index.html
│ │ │ ├── redirect-target.php
│ │ │ ├── redirect.php
│ │ │ └── source.php
│ │ ├── navigation
│ │ │ ├── demo.js
│ │ │ └── index.html
│ │ ├── old-faq-pages
│ │ │ ├── controls-in-header-footer.html
│ │ │ ├── disabling-a-button-does-not-work.html
│ │ │ ├── dom-ready-not-working.html
│ │ │ ├── how-can-i-stop-auto-enhancement-of-a-block-of-elements.html
│ │ │ ├── how-can-i-stop-auto-enhancement-of-elements.html
│ │ │ ├── how-configure-phonegap-cordova.html
│ │ │ ├── how-do-i-control-page-titles.html
│ │ │ ├── how-do-i-load-a-page.html
│ │ │ ├── how-do-i-scroll-to-a-position.html
│ │ │ ├── how-do-i-turn-off-url-hiding.html
│ │ │ ├── how-do-i-use-touch-mouse-events.html
│ │ │ ├── how-does-theming-work.html
│ │ │ ├── index.html
│ │ │ ├── injected-content-is-not-enhanced.html
│ │ │ ├── my-html-5-inputs-look-different-in-browsers.html
│ │ │ ├── my-range-search-input-type-is-being-changed.html
│ │ │ ├── pass-query-params-to-page.html
│ │ │ ├── pass-via-the-hash-to-page.html
│ │ │ ├── scripts-and-styles-not-loading.html
│ │ │ ├── sometimes-custom-select-shows-as-dialog-popup.html
│ │ │ ├── the-application-cache-is-not-working.html
│ │ │ ├── triggering-create-on-injected-content-does-not-work.html
│ │ │ ├── updating-the-value-of-enhanced-form-elements-does-not-work.html
│ │ │ ├── why-is-only-the-first-page-loaded.html
│ │ │ └── why-wont-my-css-styles-apply-correctly-to-a-widget.html
│ │ ├── page-events
│ │ │ ├── alertevents-2.html
│ │ │ ├── alertevents-2.php
│ │ │ ├── alertevents-3.html
│ │ │ ├── alertevents-3.php
│ │ │ ├── alertevents.html
│ │ │ ├── alertevents.php
│ │ │ ├── docs.html
│ │ │ ├── docs.php
│ │ │ ├── index.html
│ │ │ ├── logevents-2.html
│ │ │ ├── logevents-2.php
│ │ │ ├── logevents-3.html
│ │ │ ├── logevents-3.php
│ │ │ ├── logevents.html
│ │ │ └── logevents.php
│ │ ├── pages-dialog
│ │ │ ├── dialog-alt.html
│ │ │ ├── dialog-buttons.html
│ │ │ ├── dialog-corners.html
│ │ │ ├── dialog-noclosebtn.html
│ │ │ ├── dialog-overlay.html
│ │ │ ├── dialog-rightclosebtn.html
│ │ │ ├── dialog-success.html
│ │ │ ├── dialog-with-select.html
│ │ │ ├── dialog.html
│ │ │ └── index.html
│ │ ├── pages-multi-page
│ │ │ └── index.html
│ │ ├── pages-single-page
│ │ │ └── index.html
│ │ ├── pages
│ │ │ ├── index.html
│ │ │ ├── samepagetransition.html
│ │ │ └── startpage.html
│ │ ├── panel-external-internal
│ │ │ ├── index.html
│ │ │ ├── page-b.html
│ │ │ └── page-c.html
│ │ ├── panel-external
│ │ │ ├── index.html
│ │ │ └── page-b.html
│ │ ├── panel-fixed
│ │ │ └── index.html
│ │ ├── panel-responsive
│ │ │ └── index.html
│ │ ├── panel-styling
│ │ │ └── index.html
│ │ ├── panel-swipe-open
│ │ │ └── index.html
│ │ ├── panel
│ │ │ └── index.html
│ │ ├── popup-alignment
│ │ │ ├── index.html
│ │ │ └── popup.alignment.js
│ │ ├── popup-arrow-size
│ │ │ └── index.html
│ │ ├── popup-dynamic
│ │ │ └── index.html
│ │ ├── popup-iframe
│ │ │ ├── index.html
│ │ │ ├── map.html
│ │ │ ├── popup-iframe-map.js
│ │ │ └── popup-iframe-video.js
│ │ ├── popup-image-scaling
│ │ │ ├── index.html
│ │ │ └── popup-image-scaling.js
│ │ ├── popup-outside-multipage
│ │ │ └── index.html
│ │ ├── popup
│ │ │ └── index.html
│ │ ├── rangeslider
│ │ │ └── index.html
│ │ ├── rwd
│ │ │ └── index.html
│ │ ├── selectmenu-custom-filter
│ │ │ └── index.html
│ │ ├── selectmenu-custom
│ │ │ └── index.html
│ │ ├── selectmenu
│ │ │ └── index.html
│ │ ├── slider-flipswitch
│ │ │ └── index.html
│ │ ├── slider-tooltip
│ │ │ └── index.html
│ │ ├── slider
│ │ │ └── index.html
│ │ ├── swipe-list
│ │ │ └── index.html
│ │ ├── swipe-page
│ │ │ ├── buenosaires.html
│ │ │ ├── capetown.html
│ │ │ ├── index.html
│ │ │ ├── newyork.html
│ │ │ ├── paris.html
│ │ │ ├── seoul.html
│ │ │ ├── swipe-page.css
│ │ │ ├── swipe-page.js
│ │ │ └── sydney.html
│ │ ├── table-column-toggle-example
│ │ │ └── index.html
│ │ ├── table-column-toggle-heading-groups
│ │ │ └── index.html
│ │ ├── table-column-toggle-options
│ │ │ └── index.html
│ │ ├── table-column-toggle
│ │ │ └── index.html
│ │ ├── table-reflow-heading-groups
│ │ │ └── index.html
│ │ ├── table-reflow-stripes-strokes
│ │ │ └── index.html
│ │ ├── table-reflow-styling
│ │ │ └── index.html
│ │ ├── table-reflow
│ │ │ └── index.html
│ │ ├── tabs
│ │ │ ├── ajax-content-ignore.html
│ │ │ ├── index.html
│ │ │ └── tabbed-content.html
│ │ ├── textinput
│ │ │ └── index.html
│ │ ├── theme-classic
│ │ │ ├── images
│ │ │ │ └── ajax-loader.gif
│ │ │ ├── index.html
│ │ │ └── theme-classic.css
│ │ ├── theme-default
│ │ │ └── index.html
│ │ ├── toolbar-dynamic
│ │ │ └── index.html
│ │ ├── toolbar-external
│ │ │ ├── index.html
│ │ │ └── index2.html
│ │ ├── toolbar-fixed-external
│ │ │ └── index.html
│ │ ├── toolbar-fixed-forms
│ │ │ └── index.html
│ │ ├── toolbar-fixed-fullscreen
│ │ │ └── index.html
│ │ ├── toolbar-fixed-persistent-optimized
│ │ │ ├── index.html
│ │ │ ├── page-b.html
│ │ │ ├── page-c.html
│ │ │ └── page-d.html
│ │ ├── toolbar-fixed-persistent
│ │ │ ├── index.html
│ │ │ ├── page-b.html
│ │ │ ├── page-c.html
│ │ │ └── page-d.html
│ │ ├── toolbar-fixed
│ │ │ └── index.html
│ │ ├── toolbar
│ │ │ └── index.html
│ │ └── transitions
│ │ │ ├── index.html
│ │ │ ├── page-transitions-dialog.html
│ │ │ └── page-transitions-page.html
│ ├── images
│ │ ├── ajax-loader.gif
│ │ ├── icons-png
│ │ │ ├── action-black.png
│ │ │ ├── action-white.png
│ │ │ ├── alert-black.png
│ │ │ ├── alert-white.png
│ │ │ ├── arrow-d-black.png
│ │ │ ├── arrow-d-l-black.png
│ │ │ ├── arrow-d-l-white.png
│ │ │ ├── arrow-d-r-black.png
│ │ │ ├── arrow-d-r-white.png
│ │ │ ├── arrow-d-white.png
│ │ │ ├── arrow-l-black.png
│ │ │ ├── arrow-l-white.png
│ │ │ ├── arrow-r-black.png
│ │ │ ├── arrow-r-white.png
│ │ │ ├── arrow-u-black.png
│ │ │ ├── arrow-u-l-black.png
│ │ │ ├── arrow-u-l-white.png
│ │ │ ├── arrow-u-r-black.png
│ │ │ ├── arrow-u-r-white.png
│ │ │ ├── arrow-u-white.png
│ │ │ ├── audio-black.png
│ │ │ ├── audio-white.png
│ │ │ ├── back-black.png
│ │ │ ├── back-white.png
│ │ │ ├── bars-black.png
│ │ │ ├── bars-white.png
│ │ │ ├── bullets-black.png
│ │ │ ├── bullets-white.png
│ │ │ ├── calendar-black.png
│ │ │ ├── calendar-white.png
│ │ │ ├── camera-black.png
│ │ │ ├── camera-white.png
│ │ │ ├── carat-d-black.png
│ │ │ ├── carat-d-white.png
│ │ │ ├── carat-l-black.png
│ │ │ ├── carat-l-white.png
│ │ │ ├── carat-r-black.png
│ │ │ ├── carat-r-white.png
│ │ │ ├── carat-u-black.png
│ │ │ ├── carat-u-white.png
│ │ │ ├── check-black.png
│ │ │ ├── check-white.png
│ │ │ ├── clock-black.png
│ │ │ ├── clock-white.png
│ │ │ ├── cloud-black.png
│ │ │ ├── cloud-white.png
│ │ │ ├── comment-black.png
│ │ │ ├── comment-white.png
│ │ │ ├── delete-black.png
│ │ │ ├── delete-white.png
│ │ │ ├── edit-black.png
│ │ │ ├── edit-white.png
│ │ │ ├── eye-black.png
│ │ │ ├── eye-white.png
│ │ │ ├── forbidden-black.png
│ │ │ ├── forbidden-white.png
│ │ │ ├── forward-black.png
│ │ │ ├── forward-white.png
│ │ │ ├── gear-black.png
│ │ │ ├── gear-white.png
│ │ │ ├── grid-black.png
│ │ │ ├── grid-white.png
│ │ │ ├── heart-black.png
│ │ │ ├── heart-white.png
│ │ │ ├── home-black.png
│ │ │ ├── home-white.png
│ │ │ ├── info-black.png
│ │ │ ├── info-white.png
│ │ │ ├── location-black.png
│ │ │ ├── location-white.png
│ │ │ ├── lock-black.png
│ │ │ ├── lock-white.png
│ │ │ ├── mail-black.png
│ │ │ ├── mail-white.png
│ │ │ ├── minus-black.png
│ │ │ ├── minus-white.png
│ │ │ ├── navigation-black.png
│ │ │ ├── navigation-white.png
│ │ │ ├── phone-black.png
│ │ │ ├── phone-white.png
│ │ │ ├── plus-black.png
│ │ │ ├── plus-white.png
│ │ │ ├── power-black.png
│ │ │ ├── power-white.png
│ │ │ ├── recycle-black.png
│ │ │ ├── recycle-white.png
│ │ │ ├── refresh-black.png
│ │ │ ├── refresh-white.png
│ │ │ ├── search-black.png
│ │ │ ├── search-white.png
│ │ │ ├── shop-black.png
│ │ │ ├── shop-white.png
│ │ │ ├── star-black.png
│ │ │ ├── star-white.png
│ │ │ ├── tag-black.png
│ │ │ ├── tag-white.png
│ │ │ ├── user-black.png
│ │ │ ├── user-white.png
│ │ │ ├── video-black.png
│ │ │ └── video-white.png
│ │ └── icons-svg
│ │ │ ├── action-black.svg
│ │ │ ├── action-white.svg
│ │ │ ├── alert-black.svg
│ │ │ ├── alert-white.svg
│ │ │ ├── arrow-d-black.svg
│ │ │ ├── arrow-d-l-black.svg
│ │ │ ├── arrow-d-l-white.svg
│ │ │ ├── arrow-d-r-black.svg
│ │ │ ├── arrow-d-r-white.svg
│ │ │ ├── arrow-d-white.svg
│ │ │ ├── arrow-l-black.svg
│ │ │ ├── arrow-l-white.svg
│ │ │ ├── arrow-r-black.svg
│ │ │ ├── arrow-r-white.svg
│ │ │ ├── arrow-u-black.svg
│ │ │ ├── arrow-u-l-black.svg
│ │ │ ├── arrow-u-l-white.svg
│ │ │ ├── arrow-u-r-black.svg
│ │ │ ├── arrow-u-r-white.svg
│ │ │ ├── arrow-u-white.svg
│ │ │ ├── audio-black.svg
│ │ │ ├── audio-white.svg
│ │ │ ├── back-black.svg
│ │ │ ├── back-white.svg
│ │ │ ├── bars-black.svg
│ │ │ ├── bars-white.svg
│ │ │ ├── bullets-black.svg
│ │ │ ├── bullets-white.svg
│ │ │ ├── calendar-black.svg
│ │ │ ├── calendar-white.svg
│ │ │ ├── camera-black.svg
│ │ │ ├── camera-white.svg
│ │ │ ├── carat-d-black.svg
│ │ │ ├── carat-d-white.svg
│ │ │ ├── carat-l-black.svg
│ │ │ ├── carat-l-white.svg
│ │ │ ├── carat-r-black.svg
│ │ │ ├── carat-r-white.svg
│ │ │ ├── carat-u-black.svg
│ │ │ ├── carat-u-white.svg
│ │ │ ├── check-black.svg
│ │ │ ├── check-white.svg
│ │ │ ├── clock-black.svg
│ │ │ ├── clock-white.svg
│ │ │ ├── cloud-black.svg
│ │ │ ├── cloud-white.svg
│ │ │ ├── comment-black.svg
│ │ │ ├── comment-white.svg
│ │ │ ├── delete-black.svg
│ │ │ ├── delete-white.svg
│ │ │ ├── edit-black.svg
│ │ │ ├── edit-white.svg
│ │ │ ├── eye-black.svg
│ │ │ ├── eye-white.svg
│ │ │ ├── forbidden-black.svg
│ │ │ ├── forbidden-white.svg
│ │ │ ├── forward-black.svg
│ │ │ ├── forward-white.svg
│ │ │ ├── gear-black.svg
│ │ │ ├── gear-white.svg
│ │ │ ├── grid-black.svg
│ │ │ ├── grid-white.svg
│ │ │ ├── heart-black.svg
│ │ │ ├── heart-white.svg
│ │ │ ├── home-black.svg
│ │ │ ├── home-white.svg
│ │ │ ├── info-black.svg
│ │ │ ├── info-white.svg
│ │ │ ├── location-black.svg
│ │ │ ├── location-white.svg
│ │ │ ├── lock-black.svg
│ │ │ ├── lock-white.svg
│ │ │ ├── mail-black.svg
│ │ │ ├── mail-white.svg
│ │ │ ├── minus-black.svg
│ │ │ ├── minus-white.svg
│ │ │ ├── navigation-black.svg
│ │ │ ├── navigation-white.svg
│ │ │ ├── phone-black.svg
│ │ │ ├── phone-white.svg
│ │ │ ├── plus-black.svg
│ │ │ ├── plus-white.svg
│ │ │ ├── power-black.svg
│ │ │ ├── power-white.svg
│ │ │ ├── recycle-black.svg
│ │ │ ├── recycle-white.svg
│ │ │ ├── refresh-black.svg
│ │ │ ├── refresh-white.svg
│ │ │ ├── search-black.svg
│ │ │ ├── search-white.svg
│ │ │ ├── shop-black.svg
│ │ │ ├── shop-white.svg
│ │ │ ├── star-black.svg
│ │ │ ├── star-white.svg
│ │ │ ├── tag-black.svg
│ │ │ ├── tag-white.svg
│ │ │ ├── user-black.svg
│ │ │ ├── user-white.svg
│ │ │ ├── video-black.svg
│ │ │ └── video-white.svg
│ ├── jquery.mobile-1.4.5.css
│ ├── jquery.mobile-1.4.5.js
│ ├── jquery.mobile-1.4.5.min.css
│ ├── jquery.mobile-1.4.5.min.js
│ ├── jquery.mobile-1.4.5.min.map
│ ├── jquery.mobile.external-png-1.4.5.css
│ ├── jquery.mobile.external-png-1.4.5.min.css
│ ├── jquery.mobile.icons-1.4.5.css
│ ├── jquery.mobile.icons-1.4.5.min.css
│ ├── jquery.mobile.inline-png-1.4.5.css
│ ├── jquery.mobile.inline-png-1.4.5.min.css
│ ├── jquery.mobile.inline-svg-1.4.5.css
│ ├── jquery.mobile.inline-svg-1.4.5.min.css
│ ├── jquery.mobile.structure-1.4.5.css
│ ├── jquery.mobile.structure-1.4.5.min.css
│ ├── jquery.mobile.theme-1.4.5.css
│ └── jquery.mobile.theme-1.4.5.min.css
└── xdate-0.8
│ ├── GPL-LICENSE.txt
│ ├── MIT-LICENSE.txt
│ ├── Makefile
│ ├── README.mkd
│ ├── build
│ ├── compiler.jar
│ └── externs.js
│ ├── changelog.txt
│ ├── package.json
│ ├── src
│ ├── extras.js
│ └── xdate.js
│ ├── test
│ ├── adding.js
│ ├── constructors.js
│ ├── diffing.js
│ ├── formatting-extras.js
│ ├── formatting.js
│ ├── getters.js
│ ├── nothing.html
│ ├── old.js
│ ├── parsing.js
│ ├── setters.js
│ ├── test.html
│ ├── test.js
│ ├── utc-mode.js
│ └── utilities.js
│ └── version.txt
├── qt
├── .gitignore
├── agitodo
│ ├── agitodo.pro
│ ├── agitodo.qrc
│ ├── filesys.cpp
│ ├── filesys.h
│ ├── javascriptinterface.cpp
│ ├── javascriptinterface.h
│ ├── main.cpp
│ ├── mainwindow.cpp
│ ├── mainwindow.h
│ ├── mainwindow.ui
│ ├── res
│ │ ├── error.html
│ │ ├── icon-128.png
│ │ ├── license.txt
│ │ ├── ok.html
│ │ └── thirdparties.txt
│ ├── server.cpp
│ └── server.h
└── custom
│ ├── compat.js
│ └── index.html
├── small.png
└── www
├── .gitignore
├── bin
└── create_test_account.js
├── custom
└── compat.js
├── db.js
├── dropbox.js
├── gdrive.js
├── gmail.js
├── hubic.js
├── index.js
├── jsonrpc.js
├── logger.js
├── mailer.js
├── oauth.js
├── package.json
├── public
├── css
│ └── style.css
├── index.html
└── js
│ └── script.js
├── request.js
├── session.js
└── user.js
/android/src/.gitignore:
--------------------------------------------------------------------------------
1 | app/src/main/assets/app
2 |
3 | # Built application files
4 | build/
5 |
6 | # Local configuration file (sdk path, etc)
7 | local.properties
8 |
9 | # Gradle generated files
10 | .gradle/
11 |
12 | # Signing files
13 | .signing/
14 |
15 | # User-specific configurations
16 | .idea/libraries/
17 | .idea/workspace.xml
18 | .idea/tasks.xml
19 | .idea/.name
20 | .idea/compiler.xml
21 | .idea/copyright/profiles_settings.xml
22 | .idea/encodings.xml
23 | .idea/misc.xml
24 | .idea/modules.xml
25 | .idea/scopes/scope_settings.xml
26 | .idea/vcs.xml
27 | *.iml
28 |
29 | # OS-specific files
30 | .DS_Store
31 | .DS_Store?
32 | ._*
33 | .Spotlight-V100
34 | .Trashes
35 | ehthumbs.db
36 | Thumbs.db
37 |
--------------------------------------------------------------------------------
/android/src/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
17 |
18 |
--------------------------------------------------------------------------------
/android/src/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/android/src/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.application'
2 |
3 | android {
4 | compileSdkVersion 19
5 | buildToolsVersion "25.0.3"
6 |
7 | defaultConfig {
8 | applicationId "com.example.agitodo"
9 | minSdkVersion 19
10 | targetSdkVersion 19
11 | }
12 |
13 | buildTypes {
14 | release {
15 | minifyEnabled true
16 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
17 | }
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/android/src/app/src/main/java/com/example/agitodo/Logger.java:
--------------------------------------------------------------------------------
1 | package com.example.agitodo;
2 |
3 | import android.util.Log;
4 |
5 | public class Logger {
6 | static boolean debug = false;
7 |
8 | public void info(String msg) {
9 | if (debug) {
10 | Log.i("Agitodo", msg);
11 | }
12 | }
13 |
14 | public void error(String msg) {
15 | if (debug) {
16 | Log.e("Agitodo", msg);
17 | }
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/android/src/app/src/main/res/drawable-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/android/src/app/src/main/res/drawable-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/src/app/src/main/res/drawable-ldpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/android/src/app/src/main/res/drawable-ldpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/src/app/src/main/res/drawable-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/android/src/app/src/main/res/drawable-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/src/app/src/main/res/drawable-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/android/src/app/src/main/res/drawable-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/src/app/src/main/res/drawable-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/android/src/app/src/main/res/drawable-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/src/app/src/main/res/layout/about.xml:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
10 |
11 |
15 |
16 |
--------------------------------------------------------------------------------
/android/src/app/src/main/res/layout/main.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/android/src/app/src/main/res/menu/main_menu.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
--------------------------------------------------------------------------------
/android/src/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Agitodo
4 | Copyright © 2013 P. Asimakopoulos
5 | • jQuery & jQuery Mobile are copyright
6 | (c) 2010, 2014 jQuery Foundation, Inc. | jquery.org/license\n•
7 | CryptoJS is copyright (c) 2009-2013 Jeff Mott |
8 | code.google.com/p/crypto-js/wiki/License\n• XDate is copyright
9 | (c) 2011 Adam Shaw, http://arshaw.com/xdate/ |
10 | github.com/arshaw/xdate/blob/master/MIT-LICENSE.txt
11 |
12 | Ok
13 |
14 |
--------------------------------------------------------------------------------
/android/src/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 | buildscript {
3 | repositories {
4 | jcenter()
5 | }
6 | dependencies {
7 | classpath 'com.android.tools.build:gradle:2.3.2'
8 | }
9 | }
10 |
11 | allprojects {
12 | repositories {
13 | jcenter()
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/android/src/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/android/src/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/android/src/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Sun May 28 18:55:15 BST 2017
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
7 |
--------------------------------------------------------------------------------
/android/src/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
--------------------------------------------------------------------------------
/core/.gitignore:
--------------------------------------------------------------------------------
1 | *.zip
2 |
--------------------------------------------------------------------------------
/core/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/core/favicon.ico
--------------------------------------------------------------------------------
/core/font/ubuntu-r-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/core/font/ubuntu-r-webfont.ttf
--------------------------------------------------------------------------------
/core/font/ubuntu-r-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/core/font/ubuntu-r-webfont.woff
--------------------------------------------------------------------------------
/core/img/check-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/core/img/check-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/core/img/icon-256.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/core/img/icon-256.png
--------------------------------------------------------------------------------
/core/img/star-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/large.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/large.png
--------------------------------------------------------------------------------
/lib/CryptoJS v3.1.2/components/evpkdf-min.js:
--------------------------------------------------------------------------------
1 | /*
2 | CryptoJS v3.1.2
3 | code.google.com/p/crypto-js
4 | (c) 2009-2013 by Jeff Mott. All rights reserved.
5 | code.google.com/p/crypto-js/wiki/License
6 | */
7 | (function(){var b=CryptoJS,a=b.lib,f=a.Base,k=a.WordArray,a=b.algo,l=a.EvpKDF=f.extend({cfg:f.extend({keySize:4,hasher:a.MD5,iterations:1}),init:function(a){this.cfg=this.cfg.extend(a)},compute:function(a,b){for(var c=this.cfg,d=c.hasher.create(),g=k.create(),f=g.words,h=c.keySize,c=c.iterations;f.lengthe&&(b=a.finalize(b));b.clamp();for(var f=this._oKey=b.clone(),g=this._iKey=b.clone(),h=f.words,j=g.words,d=0;d>>2]|=a[c]<<
8 | 24-8*(c%4);e.call(this,d,b)}else e.apply(this,arguments)}).prototype=b}})();
9 |
--------------------------------------------------------------------------------
/lib/CryptoJS v3.1.2/components/mode-cfb-min.js:
--------------------------------------------------------------------------------
1 | /*
2 | CryptoJS v3.1.2
3 | code.google.com/p/crypto-js
4 | (c) 2009-2013 by Jeff Mott. All rights reserved.
5 | code.google.com/p/crypto-js/wiki/License
6 | */
7 | CryptoJS.mode.CFB=function(){function g(c,b,e,a){var d=this._iv;d?(d=d.slice(0),this._iv=void 0):d=this._prevBlock;a.encryptBlock(d,0);for(a=0;a>>2]|=c<<24-8*(b%4);a.sigBytes+=c},unpad:function(a){a.sigBytes-=a.words[a.sigBytes-1>>>2]&255}};
8 |
--------------------------------------------------------------------------------
/lib/CryptoJS v3.1.2/components/pad-iso10126-min.js:
--------------------------------------------------------------------------------
1 | /*
2 | CryptoJS v3.1.2
3 | code.google.com/p/crypto-js
4 | (c) 2009-2013 by Jeff Mott. All rights reserved.
5 | code.google.com/p/crypto-js/wiki/License
6 | */
7 | CryptoJS.pad.Iso10126={pad:function(a,c){var b=4*c,b=b-a.sigBytes%b;a.concat(CryptoJS.lib.WordArray.random(b-1)).concat(CryptoJS.lib.WordArray.create([b<<24],1))},unpad:function(a){a.sigBytes-=a.words[a.sigBytes-1>>>2]&255}};
8 |
--------------------------------------------------------------------------------
/lib/CryptoJS v3.1.2/components/pad-iso97971-min.js:
--------------------------------------------------------------------------------
1 | /*
2 | CryptoJS v3.1.2
3 | code.google.com/p/crypto-js
4 | (c) 2009-2013 by Jeff Mott. All rights reserved.
5 | code.google.com/p/crypto-js/wiki/License
6 | */
7 | CryptoJS.pad.Iso97971={pad:function(a,b){a.concat(CryptoJS.lib.WordArray.create([2147483648],1));CryptoJS.pad.ZeroPadding.pad(a,b)},unpad:function(a){CryptoJS.pad.ZeroPadding.unpad(a);a.sigBytes--}};
8 |
--------------------------------------------------------------------------------
/lib/CryptoJS v3.1.2/components/pad-iso97971.js:
--------------------------------------------------------------------------------
1 | /*
2 | CryptoJS v3.1.2
3 | code.google.com/p/crypto-js
4 | (c) 2009-2013 by Jeff Mott. All rights reserved.
5 | code.google.com/p/crypto-js/wiki/License
6 | */
7 | /**
8 | * ISO/IEC 9797-1 Padding Method 2.
9 | */
10 | CryptoJS.pad.Iso97971 = {
11 | pad: function (data, blockSize) {
12 | // Add 0x80 byte
13 | data.concat(CryptoJS.lib.WordArray.create([0x80000000], 1));
14 |
15 | // Zero pad the rest
16 | CryptoJS.pad.ZeroPadding.pad(data, blockSize);
17 | },
18 |
19 | unpad: function (data) {
20 | // Remove zero padding
21 | CryptoJS.pad.ZeroPadding.unpad(data);
22 |
23 | // Remove one more byte -- the 0x80 byte
24 | data.sigBytes--;
25 | }
26 | };
27 |
--------------------------------------------------------------------------------
/lib/CryptoJS v3.1.2/components/pad-nopadding-min.js:
--------------------------------------------------------------------------------
1 | /*
2 | CryptoJS v3.1.2
3 | code.google.com/p/crypto-js
4 | (c) 2009-2013 by Jeff Mott. All rights reserved.
5 | code.google.com/p/crypto-js/wiki/License
6 | */
7 | CryptoJS.pad.NoPadding={pad:function(){},unpad:function(){}};
8 |
--------------------------------------------------------------------------------
/lib/CryptoJS v3.1.2/components/pad-nopadding.js:
--------------------------------------------------------------------------------
1 | /*
2 | CryptoJS v3.1.2
3 | code.google.com/p/crypto-js
4 | (c) 2009-2013 by Jeff Mott. All rights reserved.
5 | code.google.com/p/crypto-js/wiki/License
6 | */
7 | /**
8 | * A noop padding strategy.
9 | */
10 | CryptoJS.pad.NoPadding = {
11 | pad: function () {
12 | },
13 |
14 | unpad: function () {
15 | }
16 | };
17 |
--------------------------------------------------------------------------------
/lib/CryptoJS v3.1.2/components/pad-zeropadding-min.js:
--------------------------------------------------------------------------------
1 | /*
2 | CryptoJS v3.1.2
3 | code.google.com/p/crypto-js
4 | (c) 2009-2013 by Jeff Mott. All rights reserved.
5 | code.google.com/p/crypto-js/wiki/License
6 | */
7 | CryptoJS.pad.ZeroPadding={pad:function(a,c){var b=4*c;a.clamp();a.sigBytes+=b-(a.sigBytes%b||b)},unpad:function(a){for(var c=a.words,b=a.sigBytes-1;!(c[b>>>2]>>>24-8*(b%4)&255);)b--;a.sigBytes=b+1}};
8 |
--------------------------------------------------------------------------------
/lib/CryptoJS v3.1.2/components/pbkdf2-min.js:
--------------------------------------------------------------------------------
1 | /*
2 | CryptoJS v3.1.2
3 | code.google.com/p/crypto-js
4 | (c) 2009-2013 by Jeff Mott. All rights reserved.
5 | code.google.com/p/crypto-js/wiki/License
6 | */
7 | (function(){var b=CryptoJS,a=b.lib,d=a.Base,m=a.WordArray,a=b.algo,q=a.HMAC,l=a.PBKDF2=d.extend({cfg:d.extend({keySize:4,hasher:a.SHA1,iterations:1}),init:function(a){this.cfg=this.cfg.extend(a)},compute:function(a,b){for(var c=this.cfg,f=q.create(c.hasher,a),g=m.create(),d=m.create([1]),l=g.words,r=d.words,n=c.keySize,c=c.iterations;l.length
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/action-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/alert-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/alert-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/back-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/back-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/bars-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/bars-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/carat-d-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/carat-d-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/carat-l-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/carat-l-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/carat-r-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/carat-r-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/carat-u-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/carat-u-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/check-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/check-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/cloud-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/cloud-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/eye-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/eye-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/forward-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/forward-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/heart-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/heart-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/location-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/location-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/lock-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/lock-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/mail-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/mail-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/minus-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/minus-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/navigation-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/navigation-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/recycle-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/recycle-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/shop-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/shop-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/star-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/star-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/video-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/css/themes/default/images/icons-svg/video-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/demos/favicon.ico
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/listview-autodividers-linkbar/autodividers-linkbar.css:
--------------------------------------------------------------------------------
1 | #sorter li {
2 | height: 3.8%;
3 | padding: 0;
4 | font-size: 8px;
5 | padding-left: 5px;
6 | line-height: 1.8em;
7 | text-align: left;
8 | }
9 | #sorter li span {
10 | margin-top: 8%;
11 | display: block;
12 | }
13 | #sorter{
14 | position: fixed;
15 | top: 60px;
16 | right: 0;
17 | width: 20px;
18 | z-index: 1;
19 | }
20 | #sorter ul{
21 | height: 100%;
22 | }
23 | #sortedList{
24 | padding-right: 35px;
25 | }
26 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/navigation-php-redirect/redirect-target.php:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
8 | Redirect Target
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
Redirect Target
21 |
22 |
23 |
Content
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/navigation-php-redirect/source.php:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/page-events/docs.html:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/page-events/docs.php:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/popup-image-scaling/popup-image-scaling.js:
--------------------------------------------------------------------------------
1 | $( document ).on( "pagecreate", function() {
2 | $( ".photopopup" ).on({
3 | popupbeforeposition: function() {
4 | var maxHeight = $( window ).height() - 60 + "px";
5 | $( ".photopopup img" ).css( "max-height", maxHeight );
6 | }
7 | });
8 | });
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/tabs/ajax-content-ignore.html:
--------------------------------------------------------------------------------
1 | I am ajax tab content i was pulled in from ajax-content.php
2 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/demos/theme-classic/images/ajax-loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/demos/theme-classic/images/ajax-loader.gif
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/ajax-loader.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/ajax-loader.gif
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/action-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/action-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/action-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/action-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/alert-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/alert-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/alert-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/alert-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/arrow-d-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/arrow-d-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/arrow-d-l-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/arrow-d-l-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/arrow-d-l-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/arrow-d-l-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/arrow-d-r-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/arrow-d-r-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/arrow-d-r-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/arrow-d-r-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/arrow-d-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/arrow-d-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/arrow-l-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/arrow-l-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/arrow-l-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/arrow-l-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/arrow-r-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/arrow-r-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/arrow-r-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/arrow-r-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/arrow-u-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/arrow-u-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/arrow-u-l-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/arrow-u-l-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/arrow-u-l-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/arrow-u-l-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/arrow-u-r-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/arrow-u-r-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/arrow-u-r-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/arrow-u-r-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/arrow-u-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/arrow-u-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/audio-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/audio-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/audio-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/audio-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/back-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/back-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/back-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/back-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/bars-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/bars-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/bars-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/bars-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/bullets-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/bullets-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/bullets-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/bullets-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/calendar-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/calendar-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/calendar-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/calendar-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/camera-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/camera-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/camera-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/camera-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/carat-d-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/carat-d-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/carat-d-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/carat-d-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/carat-l-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/carat-l-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/carat-l-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/carat-l-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/carat-r-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/carat-r-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/carat-r-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/carat-r-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/carat-u-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/carat-u-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/carat-u-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/carat-u-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/check-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/check-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/check-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/check-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/clock-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/clock-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/clock-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/clock-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/cloud-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/cloud-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/cloud-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/cloud-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/comment-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/comment-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/comment-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/comment-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/delete-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/delete-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/delete-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/delete-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/edit-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/edit-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/edit-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/edit-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/eye-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/eye-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/eye-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/eye-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/forbidden-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/forbidden-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/forbidden-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/forbidden-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/forward-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/forward-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/forward-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/forward-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/gear-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/gear-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/gear-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/gear-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/grid-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/grid-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/grid-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/grid-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/heart-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/heart-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/heart-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/heart-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/home-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/home-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/home-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/home-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/info-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/info-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/info-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/info-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/location-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/location-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/location-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/location-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/lock-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/lock-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/lock-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/lock-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/mail-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/mail-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/mail-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/mail-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/minus-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/minus-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/minus-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/minus-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/navigation-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/navigation-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/navigation-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/navigation-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/phone-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/phone-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/phone-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/phone-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/plus-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/plus-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/plus-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/plus-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/power-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/power-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/power-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/power-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/recycle-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/recycle-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/recycle-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/recycle-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/refresh-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/refresh-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/refresh-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/refresh-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/search-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/search-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/search-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/search-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/shop-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/shop-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/shop-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/shop-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/star-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/star-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/star-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/star-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/tag-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/tag-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/tag-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/tag-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/user-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/user-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/user-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/user-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/video-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/video-black.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-png/video-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/jquery.mobile-1.4.5/images/icons-png/video-white.png
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/action-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/action-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/alert-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/alert-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/arrow-d-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
38 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/arrow-d-l-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
38 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/arrow-d-r-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
38 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/arrow-d-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
38 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/arrow-l-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
38 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/arrow-l-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
38 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/arrow-r-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
38 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/arrow-r-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
38 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/arrow-u-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
38 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/arrow-u-l-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
38 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/arrow-u-r-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
38 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/arrow-u-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
38 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/back-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/back-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/bars-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/bars-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/carat-d-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/carat-d-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/carat-l-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/carat-l-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/carat-r-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/carat-r-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/carat-u-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/carat-u-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/check-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/check-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/cloud-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/cloud-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/edit-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
38 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/eye-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/eye-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/forward-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/forward-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/heart-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/heart-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/home-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
38 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/location-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/location-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/lock-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/lock-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/mail-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/mail-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/minus-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/minus-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/navigation-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/navigation-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/plus-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
38 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/recycle-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/recycle-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/search-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/search-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/shop-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/shop-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/star-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/star-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/video-black.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
8 |
--------------------------------------------------------------------------------
/lib/jquery.mobile-1.4.5/images/icons-svg/video-white.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
--------------------------------------------------------------------------------
/lib/xdate-0.8/README.mkd:
--------------------------------------------------------------------------------
1 | XDate
2 | =====
3 |
4 | A Modern JavaScript Date Library.
5 |
6 | XDate is a thin wrapper around JavaScript's native
7 | [Date](https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date)
8 | object and provides enhanced functionality for parsing, formatting, and manipulating dates.
9 | It implements the same methods as the native Date, so it should seem very familiar.
10 |
11 | Also, it is non-destructive to the DOM, so it can safely be included in third party libraries
12 | without fear of side effects.
--------------------------------------------------------------------------------
/lib/xdate-0.8/build/compiler.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/lib/xdate-0.8/build/compiler.jar
--------------------------------------------------------------------------------
/lib/xdate-0.8/build/externs.js:
--------------------------------------------------------------------------------
1 | var module;
2 | var define;
--------------------------------------------------------------------------------
/lib/xdate-0.8/changelog.txt:
--------------------------------------------------------------------------------
1 |
2 | version 0.8 (3/30/13)
3 | - now an AMD module (thx colonelchlorine)
4 | - fixed setUTCWeek edge case bug (issue 18, thx timruffles)
5 | - fixed preventOverflow bug (issue 19)
6 |
7 | version 0.7 (3/10/12)
8 | - setWeek/setUTCWeek behavior change
9 | (moves date to Monday 00:00:00 of given week)
10 | - fix bug with custom parsers (issue 8)
11 |
12 | version 0.6 (2/12/12)
13 | - setWeek and setUTCWeek methods (issue 5)
14 | - now a Node.js package (issue 3)
15 |
16 | version 0.5 (10/24/11)
--------------------------------------------------------------------------------
/lib/xdate-0.8/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name" : "xdate",
3 | "version": "0.8.0",
4 | "author": "Adam Shaw",
5 | "homepage": "http://arshaw.com/xdate/",
6 | "description": "A Modern JavaScript Date Library",
7 | "bugs": {
8 | "url": "https://github.com/arshaw/xdate/issues"
9 | },
10 | "repository" : {
11 | "type": "git",
12 | "url": "https://github.com/arshaw/xdate.git"
13 | },
14 | "main": "./src/xdate.js"
15 | }
--------------------------------------------------------------------------------
/lib/xdate-0.8/test/nothing.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/lib/xdate-0.8/version.txt:
--------------------------------------------------------------------------------
1 | 0.8
--------------------------------------------------------------------------------
/qt/.gitignore:
--------------------------------------------------------------------------------
1 | build-debug
2 | build-release
3 | agitodo/agitodo.pro.user
4 | agitodo/res/index.html
5 | agitodo/res/script.js
6 |
--------------------------------------------------------------------------------
/qt/agitodo/agitodo.pro:
--------------------------------------------------------------------------------
1 | #-------------------------------------------------
2 | #
3 | # Project created by QtCreator 2017-05-28T20:06:42
4 | #
5 | #-------------------------------------------------
6 |
7 | QT += core gui webkitwidgets network
8 |
9 | greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
10 |
11 | TARGET = agitodo
12 | TEMPLATE = app
13 |
14 |
15 | SOURCES += main.cpp\
16 | mainwindow.cpp \
17 | filesys.cpp \
18 | javascriptinterface.cpp \
19 | server.cpp
20 |
21 | HEADERS += mainwindow.h \
22 | filesys.h \
23 | javascriptinterface.h \
24 | server.h
25 |
26 | FORMS += \
27 | mainwindow.ui
28 |
29 | RESOURCES += \
30 | agitodo.qrc
31 |
32 | CONFIG(release, debug|release): DEFINES += QT_NO_DEBUG_OUTPUT
33 |
--------------------------------------------------------------------------------
/qt/agitodo/agitodo.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | res/error.html
4 | res/icon-128.png
5 | res/index.html
6 | res/license.txt
7 | res/ok.html
8 | res/script.js
9 | res/thirdparties.txt
10 |
11 |
12 |
--------------------------------------------------------------------------------
/qt/agitodo/main.cpp:
--------------------------------------------------------------------------------
1 | #include "mainwindow.h"
2 | #include
3 | #include
4 |
5 | int main(int argc, char *argv[])
6 | {
7 | QApplication a(argc, argv);
8 | MainWindow w(QFileInfo(a.applicationFilePath()).canonicalPath());
9 | w.show();
10 |
11 | return a.exec();
12 | }
13 |
--------------------------------------------------------------------------------
/qt/agitodo/res/error.html:
--------------------------------------------------------------------------------
1 | Agitodo%1
Error acquiring authorization code. Please close this window...
2 |
--------------------------------------------------------------------------------
/qt/agitodo/res/icon-128.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/qt/agitodo/res/icon-128.png
--------------------------------------------------------------------------------
/qt/agitodo/res/license.txt:
--------------------------------------------------------------------------------
1 | Copyright © 2013 P. Asimakopoulos
2 |
--------------------------------------------------------------------------------
/qt/agitodo/res/ok.html:
--------------------------------------------------------------------------------
1 | Agitodo%1
Authorization code acquired. Please close this window...
2 |
--------------------------------------------------------------------------------
/qt/agitodo/res/thirdparties.txt:
--------------------------------------------------------------------------------
1 | Third-party software
2 |
3 | ⚫ This software uses the Qt GUI Toolkit 5.0, which is covered by the following license:
4 |
5 | Qt is available under the LGPL (version 2.1).
6 |
7 | The Qt Toolkit is Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies) and other contributors.
8 |
9 | Contact: http://www.qt-project.org/legal
10 |
11 | Reference: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
12 |
13 | ⚫ jQuery & jQuery Mobile are copyright (c) 2010, 2014 jQuery Foundation, Inc. | jquery.org/license
14 |
15 | ⚫ CryptoJS is copyright (c) 2009-2013 Jeff Mott | code.google.com/p/crypto-js/wiki/License
16 |
17 | ⚫ XDate is copyright (c) 2011 Adam Shaw, http://arshaw.com/xdate/ | github.com/arshaw/xdate/blob/master/MIT-LICENSE.txt
18 |
--------------------------------------------------------------------------------
/qt/agitodo/server.h:
--------------------------------------------------------------------------------
1 | #ifndef SERVER_H
2 | #define SERVER_H
3 |
4 | #include
5 | #include
6 |
7 | class FileSys;
8 |
9 | class Server : public QObject
10 | {
11 | Q_OBJECT
12 | public:
13 | QString code;
14 | QString error;
15 | explicit Server(QObject *parent = 0);
16 | ~Server();
17 |
18 | bool open();
19 | bool isListening();
20 |
21 | private:
22 | int MAX_WAIT;
23 |
24 | FileSys *sys;
25 | QTcpServer *tcpServer;
26 | QHash buffers;
27 | QTimer *timer;
28 |
29 | private Q_SLOTS:
30 | void newConnection();
31 | void disconnected();
32 | void readyRead();
33 | void close();
34 |
35 | signals:
36 | void dataReceived(QByteArray);
37 | };
38 |
39 | #endif // SERVER_H
40 |
--------------------------------------------------------------------------------
/qt/custom/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Agitodo
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/small.png
--------------------------------------------------------------------------------
/www/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules/
2 | app/
3 | log/
4 |
--------------------------------------------------------------------------------
/www/logger.js:
--------------------------------------------------------------------------------
1 | var path = require("path");
2 | var fs = require("fs");
3 |
4 | var logFile = path.join(__dirname, "log/agitodo.log");
5 |
6 | function log(level, msg) {
7 | var fields = [];
8 | fields.push("[" + new Date().toISOString() + "]");
9 | fields.push(level);
10 | fields.push(typeof msg === "string" ? msg : JSON.stringify(msg));
11 |
12 | // 432 --> 0660 (octal)
13 | fs.appendFile(logFile, fields.join(" ") + "\n", {
14 | "mode": 432
15 | }, function(err) {
16 | if (err) {
17 | console.log(err);
18 | }
19 | });
20 | }
21 |
22 | module.exports = {
23 | info: function(msg) {
24 | log("INFO", msg);
25 | },
26 | warning: function(msg) {
27 | log("WARNING", msg);
28 | },
29 | error: function(msg) {
30 | log("ERROR", msg);
31 | }
32 | };
33 |
--------------------------------------------------------------------------------
/www/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "agitodo",
3 | "version": "1.6.0",
4 | "author": "P. Asimakopoulos",
5 | "license" : "GPL-3.0",
6 | "private": true,
7 | "dependencies": {
8 | "express": "4.x",
9 | "cookie-parser": "",
10 | "body-parser": "",
11 | "morgan": "",
12 | "mysql": "",
13 | "nodemailer": "",
14 | "nodemailer-sendmail-transport": ""
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/www/public/css/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/pasimako/agitodo/03779d77adebfdffe93bfa14a6d1d2824cb5357e/www/public/css/style.css
--------------------------------------------------------------------------------
/www/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | Agitodo | To-do list & Calendar
7 |
8 |
9 |
10 |
11 |
12 |
13 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------