summaryrefslogtreecommitdiffstats
path: root/service
AgeCommit message (Expand)Author
2015-03-22fix scrutinizer warningsBernhard Posselt
2015-03-21add migrate command, fix #185Bernhard Posselt
2015-03-21add a search parameter to the find all queriesBernhard Posselt
2015-02-17add status api route5.2.4Bernhard Posselt
2015-01-23fix #711Bernhard Posselt
2015-01-18first stab at intelligent containerBernhard Posselt
2014-11-20better debugBernhard Posselt
2014-11-20log failed update only onceBernhard Posselt
2014-11-05update picofeed, add max size setting, fix #642Bernhard Posselt
2014-10-30backwards compability for locationBernhard Posselt
2014-10-30also set the feed locationBernhard Posselt
2014-10-27only update unread per article count if its bigger than the current oneBernhard Posselt
2014-10-27allow to turn of autopurgeBernhard Posselt
2014-10-22add cachingBernhard Posselt
2014-10-21first try to set indention limit at 80 characters in phpBernhard Posselt
2014-10-21convert tabs indention to indention with 4 spaces because of mixing of both v...Bernhard Posselt
2014-10-21move config class into config folderBernhard Posselt
2014-10-08fix type issues with mappersBernhard Posselt
2014-09-29require libxmlBernhard Posselt
2014-09-25log as error instead of debug because debug does not write to log3.105Bernhard Posselt
2014-09-23catch all exceptions for feed update to not stop on db errorsBernhard Posselt
2014-06-26style fixesBernhard Posselt
2014-06-26style fixesBernhard Posselt
2014-06-25style fixesBernhard Posselt
2014-05-29order by pubdateBernhard Posselt
2014-05-23implement #137 serversideBernhard Posselt
2014-05-16add delete method for imapper since service depends on itBernhard Posselt
2014-05-15rename businesslayer to serviceBernhard Posselt
, "bit": "#8541FF", "field": "cyan", "group": "ansiblue", "username": "blue", } DOC = { "doccommand": "bold", "dockey": "#E6DB74", "code": "#aaaaaa", "h2": "bold #33aa33", } GROUP = { "group.cluster": "#E6DB74", "group.connection": "#E6DB74", "group.generic": "#E6DB74", "group.geo": "#E6DB74", "group.hash": "#E6DB74", "group.hyperloglog": "#E6DB74", "group.list": "#E6DB74", "group.pubsub": "#E6DB74", "group.server": "#E6DB74", "group.set": "#E6DB74", "group.sortedset": "#E6DB74", "group.stream": "#E6DB74", "group.string": "#E6DB74", "group.transactions": "#E6DB74", } STYLE_DICT = { # User input (default text). "": "", # Prompt. "rprompt": "bg:#ff0066 #ffffff", "hostname": "", "index": "#ff0000", "trailing-input": "bg:#ff0000 #000000", "password": "hidden", "success": "#00ff5f bold", "queued": "#32CD32 bold", "error": "#ff005f bold", "type": "#888", "channel": "#888", # FIXME # colors below copied from mycli project, ~~love~~ # bottom-toolbar "bottom-toolbar": "bg:#222222 #aaaaaa", "bottom-toolbar.on": "bg:#222222 #ffffff", "bottom-toolbar.off": "bg:#222222 #888888", "bottom-toolbar.loaded": "bg:#222222 #44aa44", "bottom-toolbar.since": "bg:#222222 #bc7a00", "bottom-toolbar.complexity": "bg:#222222 #666666", "bottom-toolbar.group": "bg:#222222 #d2413a bold", # completion "completion-menu.completion.current": "bg:#ffffff #000000", "completion-menu.completion": "bg:#008888 #ffffff", "completion-menu.meta.completion.current": "bg:#44aaaa #000000", "completion-menu.meta.completion": "bg:#448888 #ffffff", "completion-menu.multi-column-meta": "bg:#aaffff #000000", "scrollbar.arrow": "bg:#003333", "scrollbar": "bg:#00aaaa", "selected": "#ffffff bg:#6666aa", "search": "#ffffff bg:#4444aa", "search.current": "#ffffff bg:#44aa44", "search-toolbar": "noinherit bold", "search-toolbar.text": "nobold", "system-toolbar": "noinherit bold", "arg-toolbar": "noinherit bold", "arg-toolbar.text": "nobold", } BOTTOM_TOOLBAR_TOKEN = { # redis token f"bottom-toolbar.{token}": f"bg:#222222 {token_style}" for token, token_style in REDIS_TOKEN.items() } style.update(STYLE_DICT) style.update(BOTTOM_TOOLBAR_TOKEN) style.update(DOC) STYLE = merge_styles([override_style, Style.from_dict(style)])