This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Twitterbridge stops working completely | |
- the daemons, I'm using activemq, emit many DB error messages in the logfile, no notices go out or in | |
- avatar lookups giving failures in finding avatars | |
- upgrading becomes quite an excercise with a bigger database, it takes quite a while (not a bug) | |
- upgrade fails with DB error ('already exists') No clue on what already exists. | |
- file inclusion errors (Realtime_channel is one example) and different logic in lookup for CLI php scripts | |
- there is still something wrong with ssl configuration, not sure what, I have forced my local installation to off with a little patch. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; Register a new input method | |
(register-input-method | |
"MyTeX" "UTF-8" 'quail-use-package | |
"\\" "Personalized TeX input method" | |
"~/.emacs.d/mytex-inputmethod") | |
(defun mrb/set-input-method() | |
(interactive) | |
(setq default-input-method "MyTeX") | |
;; Toggle only if it not active yet |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(register-input-method | |
"MyTeX" "UTF-8" 'quail-use-package | |
"\\" "Personalized TeX input method" | |
"~/.emacs.d/mytex-inputmethod") | |
(defun mrb/set-input-method() | |
(interactive) | |
(setq default-input-method "MyTeX") | |
;; Toggle only if it not active yet | |
(if (not current-input-method) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Many servers don't support encryption or have invalid or self-signed | |
-- certificates. You can list domains here that will not be required to | |
-- authenticate using certificates. They will be authenticated using DNS. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grep INCOMING ERROR debug.log | sort | uniq -c | |
grep: ERROR: No such file or directory | |
424 debug.log:INCOMING ERROR: height > getBestHeight | |
3857 debug.log:INCOMING ERROR: invalid signature | |
4 debug.log:INCOMING ERROR: invalid token | |
4792 debug.log:INCOMING ERROR: invalid transaction id | |
8 debug.log:INCOMING ERROR: message too big | |
1 debug.log:INCOMING ERROR: missing 'y' entry | |
Roughly from : 2014-02-15 09:00 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Modified lisp/ox-latex.el | |
diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el | |
index cea21be..844f2cd 100644 | |
--- a/lisp/ox-latex.el | |
+++ b/lisp/ox-latex.el | |
@@ -349,7 +349,7 @@ the toc:nil option, not to those generated with #+TOC keyword." | |
:type 'string) | |
(defcustom org-latex-hyperref-template | |
- "\\hypersetup{\n pdfkeywords={%k},\n pdfsubject={%d},\n pdfcreator={%c}}\n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[12:34:50] IMAP4> 335 UID FETCH 2009 BODY.PEEK[] | |
[12:34:50] IMAP4< [FETCH data - 1024 bytes] | |
[12:34:50] IMAP4< [FETCH data - 916 bytes] | |
imap-thread.c:2592:imap fetch_content run - end 23 | |
imap-thread.c:404:generic_cb | |
** (claws-mail:28816): WARNING **: [12:34:50] IMAP error on localhost: FETCH error | |
imap.c:539:unlocking session 0x1c20e40 | |
folder.c:4621:Folder HSD wants sync |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/plugins/Realtime/RealtimePlugin.php b/plugins/Realtime/RealtimePlugin.php | |
index 25b009f..cff0bcb 100644 | |
--- a/plugins/Realtime/RealtimePlugin.php | |
+++ b/plugins/Realtime/RealtimePlugin.php | |
@@ -145,7 +145,7 @@ class RealtimePlugin extends Plugin | |
public function onEndShowStylesheets(Action $action) | |
{ | |
- $action->cssLink(self::staticPath(__CLASS__, 'css/realtimeupdate.css'), | |
+ $action->cssLink(self::staticPath(str_replace('Plugin','',__CLASS__), 'css/realtimeupdate.css'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# We use a jinja2 sandboxed environment to render mako templates. | |
# Note that the rendering does not cover all the mako syntax, in particular | |
# arbitrary Python statements are not accepted, and not all expressions are | |
# allowed: only "public" attributes (not starting with '_') of objects may | |
# be accessed. | |
# This is done on purpose: it prevents incidental or malicious execution of | |
# Python code that may break the security of the server. | |
from jinja2.sandbox import SandboxedEnvironment | |
mako_template_env = SandboxedEnvironment( | |
block_start_string="<%", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2014-02-21 14:11:25,451 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued) | |
2014-02-21 14:11:25,467 DEBUG [mediagoblin.tools.routing] endpoint: mediagoblin.oauth view_func: mediagoblin.oauth.views:authorize | |
/usr/local/mediagoblin/mediagoblin/local/lib/python2.7/site-packages/SQLAlchemy-0.8.1-py2.7-linux-i686.egg/sqlalchemy/engine/default.py:471: SAWarning: Unicode type received non-unicode bind param value. | |
processors[key](compiled_params[key]) | |
2014-02-21 14:12:07,766 DEBUG [paste.httpserver.ThreadPool] Added task (0 tasks queued) |