├── assets ├── views │ ├── general │ │ ├── logout.html │ │ ├── about.html │ │ ├── welcome.html │ │ └── login.html │ ├── bookmark │ │ ├── layout.html │ │ ├── add.html │ │ ├── edit.html │ │ └── list.html │ ├── password │ │ ├── layout.html │ │ ├── auth.html │ │ └── list.html │ ├── alerts │ │ └── directive.html │ ├── mail │ │ ├── manage │ │ │ └── list.html │ │ ├── manage.html │ │ ├── auth.html │ │ ├── main │ │ │ ├── read.html │ │ │ └── list.html │ │ ├── main.html │ │ └── send.html │ ├── feed │ │ ├── main │ │ │ ├── item.html │ │ │ ├── queue.html │ │ │ └── list.html │ │ ├── manage │ │ │ ├── edit.html │ │ │ ├── list.html │ │ │ ├── add.html │ │ │ └── update-interval.html │ │ ├── main.html │ │ └── manage.html │ └── paginator │ │ └── directive.html ├── scripts │ ├── mail │ │ ├── controller │ │ │ ├── Mail.js │ │ │ ├── MailAuth.js │ │ │ ├── MailRead.js │ │ │ ├── MailSend.js │ │ │ ├── MailList.js │ │ │ ├── MailReply.js │ │ │ ├── MailBoxes.js │ │ │ └── MailManage.js │ │ ├── factory │ │ │ ├── ActionWrapper.js │ │ │ └── REST.js │ │ └── config.js │ ├── stubs │ │ ├── feed.js │ │ ├── mail.js │ │ ├── pass.js │ │ └── bookmark.js │ ├── feed │ │ ├── controller │ │ │ ├── Feed.js │ │ │ ├── ItemQueueMain.js │ │ │ ├── Items.js │ │ │ ├── Item.js │ │ │ ├── FeedList.js │ │ │ ├── ItemQueue.js │ │ │ ├── FeedManageAutoCleanup.js │ │ │ ├── FeedManageUpdateInterval.js │ │ │ └── FeedManage.js │ │ ├── filter │ │ │ └── SumByKey.js │ │ ├── factory │ │ │ └── REST.js │ │ └── config.js │ ├── general │ │ ├── filter │ │ │ ├── UnixTimeStamp.js │ │ │ └── Base64.js │ │ ├── factory │ │ │ └── REST.js │ │ ├── controller │ │ │ ├── Welcome.js │ │ │ └── Account.js │ │ ├── service │ │ │ ├── InstallWebApp.js │ │ │ ├── Credentials.js │ │ │ └── TemporaryStorage.js │ │ └── config.js │ ├── bookmark │ │ ├── factory │ │ │ └── REST.js │ │ ├── config.js │ │ └── controller │ │ │ └── BookMark.js │ ├── pass │ │ ├── factory │ │ │ ├── REST.js │ │ │ └── ActionWrapper.js │ │ └── config.js │ ├── alerts │ │ └── module.js │ ├── vendor-js │ │ └── angular │ │ │ └── angular-resource.min.js │ └── paginator │ │ └── module.js └── css │ └── app.css ├── database ├── .htaccess └── create.sql ├── public ├── install │ ├── views │ │ ├── footer.phtml │ │ ├── step-finish.phtml │ │ ├── step-database.phtml │ │ ├── header.phtml │ │ └── step-user.phtml │ └── .htaccess ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── api │ └── 1 │ │ └── .htaccess ├── icon │ ├── .htaccess │ └── index.php ├── manifest.webapp └── .htaccess ├── src └── main │ └── Caco │ ├── Mail │ ├── IMAP │ │ ├── Mail.php │ │ ├── MailBoxStatus.php │ │ ├── MailHeader.php │ │ └── Account.php │ ├── MailException.php │ ├── Model │ │ └── MailAccount.php │ ├── SMTP │ │ └── Account.php │ ├── Account.php │ └── AccountMcrypt.php │ ├── MiniARException.php │ ├── CLI │ ├── ICLI.php │ └── AbstractCLI.php │ ├── Bookmark │ ├── Model │ │ └── Bookmark.php │ └── REST.php │ ├── Exports │ ├── Exporter │ │ ├── IXmlExporter.php │ │ ├── BookmarkHtml.php │ │ ├── Xbel.php │ │ ├── Opml.php │ │ └── Atom.php │ └── REST.php │ ├── Feed │ ├── CLI │ │ └── UpdateFeeds.php │ ├── IFeedReader.php │ ├── Model │ │ ├── ItemQueue.php │ │ └── Feed.php │ └── SimplePieFeedReader.php │ ├── Config │ ├── Model │ │ └── Config.php │ ├── REST.php │ └── CLI │ │ └── Manage.php │ ├── Slim │ ├── Auth │ │ ├── Basic.php │ │ ├── Model │ │ │ └── User.php │ │ └── UserManagement.php │ └── JsonView.php │ ├── Password │ ├── Model │ │ └── Container.php │ ├── CLI │ │ └── ChangeServerKey.php │ └── REST.php │ ├── SaltGenerator.php │ ├── Icon │ ├── REST.php │ ├── Model │ │ └── Icon.php │ └── FaviconDownloader.php │ ├── McryptContainer.php │ └── Upgrade │ └── CLI │ └── From2To3.php ├── spec └── api │ ├── auth_spec.js │ ├── config.js │ └── config_spec.js ├── package.json ├── composer.json ├── .gitignore ├── tools.sh ├── cli └── run_cli.php ├── create_archives.sh ├── LICENSE ├── run_tests.sh └── README.md /assets/views/general/logout.html: -------------------------------------------------------------------------------- 1 |