├── .gitignore ├── .htaccess ├── LICENSE ├── README.md ├── bubblegum ├── app.html ├── css │ ├── bootstrap4-bubblegum.4.3.1.css │ ├── bootstrap4-bubblegum.4.3.1.min.css │ └── fontawesome-all.5.6.3.css ├── form.html ├── index.html ├── js │ ├── bootstrap.4.3.1.min.js │ ├── jquery-3.3.1.slim.min.js │ └── popper.1.14.7.min.js. └── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.svg │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.svg │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.eot │ ├── fa-solid-900.svg │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ └── fa-solid-900.woff2 ├── changelog.txt ├── cron.php ├── db_mysql.sql ├── db_postgresql.sql ├── favicon ├── favicon.ico ├── manifest.json ├── tabby-16.png ├── tabby-180.png ├── tabby-192.png ├── tabby-32.png ├── tabby-512.png └── tabby-monochrome.svg ├── index.php ├── resources ├── activities.php ├── init.php ├── install.php ├── people.php ├── recurring.php ├── transactions.php ├── uiblocks.php └── users.php ├── screenshots ├── screenshot_1_landing.png ├── screenshot_2_install.png ├── screenshot_3_people.png ├── screenshot_4_activities.png └── screenshot_5_reminder.png ├── tabby-monochrome.svg ├── tabby.png ├── tabby.svg ├── templates ├── adminconfirm.php ├── box_config.php ├── button_merge.html ├── buttons.html ├── confirm_delete.php ├── emptynav.html ├── error.php ├── footer.php ├── form_activity.php ├── form_install.php ├── form_people.php ├── form_people_edit.php ├── form_profile.php ├── form_recurring.php ├── form_recurring_edit.php ├── form_remind.php ├── header.php ├── index.html ├── login.html ├── nav.html ├── register.html ├── success.php ├── table_merge.php ├── table_people.php ├── table_recurring.php └── tokennav.php └── upgrade.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/README.md -------------------------------------------------------------------------------- /bubblegum/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/app.html -------------------------------------------------------------------------------- /bubblegum/css/bootstrap4-bubblegum.4.3.1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/css/bootstrap4-bubblegum.4.3.1.css -------------------------------------------------------------------------------- /bubblegum/css/bootstrap4-bubblegum.4.3.1.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/css/bootstrap4-bubblegum.4.3.1.min.css -------------------------------------------------------------------------------- /bubblegum/css/fontawesome-all.5.6.3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/css/fontawesome-all.5.6.3.css -------------------------------------------------------------------------------- /bubblegum/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/form.html -------------------------------------------------------------------------------- /bubblegum/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/index.html -------------------------------------------------------------------------------- /bubblegum/js/bootstrap.4.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/js/bootstrap.4.3.1.min.js -------------------------------------------------------------------------------- /bubblegum/js/jquery-3.3.1.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/js/jquery-3.3.1.slim.min.js -------------------------------------------------------------------------------- /bubblegum/js/popper.1.14.7.min.js.: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/js/popper.1.14.7.min.js. -------------------------------------------------------------------------------- /bubblegum/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /bubblegum/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /bubblegum/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /bubblegum/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /bubblegum/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /bubblegum/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /bubblegum/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /bubblegum/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /bubblegum/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /bubblegum/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /bubblegum/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /bubblegum/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /bubblegum/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /bubblegum/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /bubblegum/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/bubblegum/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/changelog.txt -------------------------------------------------------------------------------- /cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/cron.php -------------------------------------------------------------------------------- /db_mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/db_mysql.sql -------------------------------------------------------------------------------- /db_postgresql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/db_postgresql.sql -------------------------------------------------------------------------------- /favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/favicon/favicon.ico -------------------------------------------------------------------------------- /favicon/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/favicon/manifest.json -------------------------------------------------------------------------------- /favicon/tabby-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/favicon/tabby-16.png -------------------------------------------------------------------------------- /favicon/tabby-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/favicon/tabby-180.png -------------------------------------------------------------------------------- /favicon/tabby-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/favicon/tabby-192.png -------------------------------------------------------------------------------- /favicon/tabby-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/favicon/tabby-32.png -------------------------------------------------------------------------------- /favicon/tabby-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/favicon/tabby-512.png -------------------------------------------------------------------------------- /favicon/tabby-monochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/favicon/tabby-monochrome.svg -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/index.php -------------------------------------------------------------------------------- /resources/activities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/resources/activities.php -------------------------------------------------------------------------------- /resources/init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/resources/init.php -------------------------------------------------------------------------------- /resources/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/resources/install.php -------------------------------------------------------------------------------- /resources/people.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/resources/people.php -------------------------------------------------------------------------------- /resources/recurring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/resources/recurring.php -------------------------------------------------------------------------------- /resources/transactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/resources/transactions.php -------------------------------------------------------------------------------- /resources/uiblocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/resources/uiblocks.php -------------------------------------------------------------------------------- /resources/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/resources/users.php -------------------------------------------------------------------------------- /screenshots/screenshot_1_landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/screenshots/screenshot_1_landing.png -------------------------------------------------------------------------------- /screenshots/screenshot_2_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/screenshots/screenshot_2_install.png -------------------------------------------------------------------------------- /screenshots/screenshot_3_people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/screenshots/screenshot_3_people.png -------------------------------------------------------------------------------- /screenshots/screenshot_4_activities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/screenshots/screenshot_4_activities.png -------------------------------------------------------------------------------- /screenshots/screenshot_5_reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/screenshots/screenshot_5_reminder.png -------------------------------------------------------------------------------- /tabby-monochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/tabby-monochrome.svg -------------------------------------------------------------------------------- /tabby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/tabby.png -------------------------------------------------------------------------------- /tabby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/tabby.svg -------------------------------------------------------------------------------- /templates/adminconfirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/adminconfirm.php -------------------------------------------------------------------------------- /templates/box_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/box_config.php -------------------------------------------------------------------------------- /templates/button_merge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/button_merge.html -------------------------------------------------------------------------------- /templates/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/buttons.html -------------------------------------------------------------------------------- /templates/confirm_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/confirm_delete.php -------------------------------------------------------------------------------- /templates/emptynav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/emptynav.html -------------------------------------------------------------------------------- /templates/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/error.php -------------------------------------------------------------------------------- /templates/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/footer.php -------------------------------------------------------------------------------- /templates/form_activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/form_activity.php -------------------------------------------------------------------------------- /templates/form_install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/form_install.php -------------------------------------------------------------------------------- /templates/form_people.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/form_people.php -------------------------------------------------------------------------------- /templates/form_people_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/form_people_edit.php -------------------------------------------------------------------------------- /templates/form_profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/form_profile.php -------------------------------------------------------------------------------- /templates/form_recurring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/form_recurring.php -------------------------------------------------------------------------------- /templates/form_recurring_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/form_recurring_edit.php -------------------------------------------------------------------------------- /templates/form_remind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/form_remind.php -------------------------------------------------------------------------------- /templates/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/header.php -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/nav.html -------------------------------------------------------------------------------- /templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/register.html -------------------------------------------------------------------------------- /templates/success.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/success.php -------------------------------------------------------------------------------- /templates/table_merge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/table_merge.php -------------------------------------------------------------------------------- /templates/table_people.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/table_people.php -------------------------------------------------------------------------------- /templates/table_recurring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/table_recurring.php -------------------------------------------------------------------------------- /templates/tokennav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/templates/tokennav.php -------------------------------------------------------------------------------- /upgrade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertvandepoel/tabby/HEAD/upgrade.php --------------------------------------------------------------------------------