gitextract_6m_aa8ts/ ├── .editorconfig ├── .gitignore ├── README.md ├── buildtar.php ├── composer.json ├── composer.sh └── src/ ├── .htaccess ├── COPYRIGHT ├── LICENSE ├── api.php ├── config-sample.php ├── content/ │ ├── index.html │ ├── js/ │ │ ├── index.html │ │ └── jquery.ui.touch-punch.js │ ├── mytinytodo.js │ ├── mytinytodo_api.js │ └── theme/ │ ├── dark.css │ ├── images/ │ │ ├── COPYRIGHT │ │ ├── index.html │ │ └── svg2base64.php │ ├── index.html │ ├── markdown.css │ ├── print.css │ ├── style.css │ └── style_rtl.css ├── db/ │ └── .htaccess ├── docker-config.php ├── export.php ├── ext/ │ ├── .htaccess │ ├── CustomCSS/ │ │ ├── .htaccess │ │ ├── extension.json │ │ ├── lang/ │ │ │ ├── en.json │ │ │ ├── pl.json │ │ │ └── ru.json │ │ └── loader.php │ ├── _examples/ │ │ └── CustomSmartSyntax/ │ │ ├── .htaccess │ │ ├── extension.json │ │ └── loader.php │ ├── backup/ │ │ ├── .htaccess │ │ ├── class.backup.php │ │ ├── class.check.php │ │ ├── class.controller.php │ │ ├── class.download.php │ │ ├── class.restore.php │ │ ├── extension.json │ │ ├── lang/ │ │ │ ├── en.json │ │ │ └── ru.json │ │ └── loader.php │ ├── index.html │ ├── notifications/ │ │ ├── .htaccess │ │ ├── class.controller.php │ │ ├── class.observer.php │ │ ├── class.sender.php │ │ ├── class.telegramapi.php │ │ ├── cli-notify.php │ │ ├── extension.json │ │ ├── lang/ │ │ │ ├── de.json │ │ │ ├── en.json │ │ │ └── ru.json │ │ └── loader.php │ └── updater/ │ ├── .htaccess │ ├── class.controller.php │ ├── class.updater.php │ ├── extension.json │ ├── lang/ │ │ ├── de.json │ │ ├── en.json │ │ └── ru.json │ └── loader.php ├── feed.php ├── includes/ │ ├── .htaccess │ ├── api/ │ │ ├── AuthController.php │ │ ├── ExtSettingsController.php │ │ ├── ListsController.php │ │ ├── TagsController.php │ │ └── TasksController.php │ ├── class.config.php │ ├── class.db.mysql.php │ ├── class.db.mysqli.php │ ├── class.db.postgres.php │ ├── class.db.sqlite3.php │ ├── class.dbconnection.php │ ├── class.dbcore.php │ ├── class.lang.php │ ├── class.sessionhandler.php │ ├── classes.php │ ├── common.php │ ├── filters.php │ ├── index.html │ ├── lang/ │ │ ├── _percent.php │ │ ├── ar.json │ │ ├── bg.json │ │ ├── ca.json │ │ ├── cz.json │ │ ├── da.json │ │ ├── de.json │ │ ├── el.json │ │ ├── en-rtl.json │ │ ├── en.json │ │ ├── es-mx.json │ │ ├── es.json │ │ ├── et.json │ │ ├── fa.json │ │ ├── fr.json │ │ ├── he.json │ │ ├── hu.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── lt.json │ │ ├── mk.json │ │ ├── nl.json │ │ ├── no.json │ │ ├── pl.json │ │ ├── pt-br.json │ │ ├── pt-pt.json │ │ ├── readme.md │ │ ├── ro.json │ │ ├── ru.json │ │ ├── sk.json │ │ ├── sl.json │ │ ├── sr.json │ │ ├── sv.json │ │ ├── th.json │ │ ├── tr.json │ │ ├── uk.json │ │ ├── vi.json │ │ ├── zh-cn.json │ │ └── zh-tw.json │ ├── markup.commonmark.php │ ├── markup.parsedown.php │ ├── markup.php │ ├── notifications.php │ ├── smartsyntax.php │ ├── theme.php │ └── version.php ├── index.php ├── init.php ├── mtt-edit-settings.php ├── mtt-emergency.php ├── settings.php └── setup.php