Changeset 011e337903f128585ded468d9eb44af4da4ab308
- Timestamp:
- 10/02/11 22:16:18 (8 months ago)
- Children:
- daf4d93546742e4c066544a5556291e996ca523e
- Parents:
- 18221a9ef61aa11ec5adaa28690516cb44257a36, 8f58c7d21e0ea861ac11c68763b100679d92efa9
- git-committer:
- Luper Rouch <luper.rouch@…> (10/02/11 22:16:18)
- Files:
-
- 2 added
- 11 edited
-
pyflu/pyflu/__init__.py (modified) (1 diff)
-
pyflu/pyflu/qt/bug_report/__init__.py (modified) (3 diffs)
-
pyflu/pyflu/qt/bug_report/dialog.py (modified) (1 diff)
-
smplayer_context_menu/src/chrome/content/smplayer.js (modified) (1 diff)
-
smplayer_context_menu/src/install.rdf (modified) (1 diff)
-
various/config/awesome/rc-bill.lua (modified) (6 diffs)
-
various/config/awesome/themes/zenburn/icons/eclipse.png (added)
-
various/config/awesome/themes/zenburn/theme.lua (modified) (1 diff)
-
various/config/bill/hosts (modified) (1 diff)
-
various/config/eclipse/dictionnary-en_us (added)
-
various/config/vimrc-linux (modified) (2 diffs)
-
various/config/zshrc (modified) (1 diff)
-
pyflu/pyflu/update/qt.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pyflu/pyflu/__init__.py
r2ea9020 r08bf1a4 5 5 6 6 def version(): 7 return "0.9. 1"7 return "0.9.2" 8 8 -
pyflu/pyflu/qt/bug_report/__init__.py
r613c5fb r08bf1a4 1 1 import sys 2 import thread 3 from PyQt4.QtCore import QObject, pyqtSignal, Qt 2 4 from pyflu.qt.bug_report.dialog import BugReportDialog 3 5 from pyflu.qt.bug_report.tb import install_ext_editor_url_handler … … 6 8 7 9 bug_report_dlg = None 10 tb_sender = None 11 12 13 class TracebackSender(QObject): 14 """ 15 An intermediary to send tracebacks from other threads. 16 """ 17 18 traceback_sent = pyqtSignal(object, object, object, object) 8 19 9 20 10 21 def excepthook(type, value, tb): 11 bug_report_dlg.show()12 bug_report_dlg.add_tb(type, value, tb)22 thread_id = thread.get_ident() 23 tb_sender.traceback_sent.emit(thread_id, type, value, tb) 13 24 14 25 … … 21 32 errors (for example just after the QApplication has been created). 22 33 """ 23 global bug_report_dlg 34 global bug_report_dlg, tb_sender 24 35 settings.BUG_REPORT_EMAIL = bug_report_email 25 36 bug_report_dlg = BugReportDialog(parent) 37 tb_sender = TracebackSender() 38 tb_sender.traceback_sent.connect(bug_report_dlg.add_tb, 39 Qt.QueuedConnection) 26 40 sys.excepthook = excepthook 27 41 install_ext_editor_url_handler() -
pyflu/pyflu/qt/bug_report/dialog.py
r5d9b893 r08bf1a4 35 35 self.traceback_text.clear() 36 36 37 def add_tb(self, type, value, tb): 38 thread_id = thread.get_ident() 37 def add_tb(self, thread_id, type, value, tb): 38 if not self.isVisible(): 39 self.show() 39 40 if thread_id == self.main_thread_id and self.main_traceback is None: 40 41 self.main_traceback = (type, value, tb) -
smplayer_context_menu/src/chrome/content/smplayer.js
r6b9f8c6 rbb8bf09 5 5 smplayer.prefs = Components.classes["@mozilla.org/preferences-service;1"] 6 6 .getService(Components.interfaces.nsIPrefService) 7 .getBranch(" smplayerplaylist.");7 .getBranch("extensions.smplayerplaylist."); 8 8 smplayer.path = smplayer.prefs.getCharPref("location"); 9 9 smplayer.msg = document.getElementById("smplayerplaylistStrings"); -
smplayer_context_menu/src/install.rdf
r6b9f8c6 rbb8bf09 6 6 <Description about="urn:mozilla:install-manifest"> 7 7 <em:id>smplayerplaylist@luperrouch.fr</em:id> 8 <em:version>0.1. 1</em:version>8 <em:version>0.1.2</em:version> 9 9 <em:type>2</em:type> 10 10 <em:optionsURL>chrome://smplayerplaylist/content/options.xul</em:optionsURL> -
various/config/awesome/rc-bill.lua
rcedc35b r5e8a64f 80 80 shifty.config.apps = { 81 81 { match = { "Gvim" }, tag = "dev" }, 82 { match = { "Eclipse" }, tag = "dev" }, 82 83 { match = { "MPlayer" }, float = true }, 83 84 { match = { "xchat", "irssi" }, tag = "chat" }, … … 96 97 { match = { "qjackctl.bin" }, tag = "jack" }, 97 98 { match = { "NX" }, tag = "nx" }, 99 { match = { "Spotify" }, tag = "web" }, 98 100 99 101 { match = { "" }, buttons = awful.util.table.join( … … 141 143 chromiumlauncher = quicklauncher(beautiful.app_chromium, "chromium-browser") 142 144 browserlauncher = quicklauncher(beautiful.app_browser, "nautilus") 145 eclipselauncher = quicklauncher(beautiful.app_eclipse, "/home/flupke/apps/eclipse/eclipse") 143 146 -- }}} 144 147 … … 287 290 chromiumlauncher, 288 291 browserlauncher, 292 eclipselauncher, 289 293 myseparator, 290 294 mytaglist[s], … … 455 459 { rule = { class = "MPlayer" }, 456 460 properties = { floating = true } }, 461 { rule = { class = "VLC" }, 462 properties = { floating = true } }, 457 463 { rule = { class = "pinentry" }, 458 464 properties = { floating = true } }, … … 495 501 -- run_once("chromium-browser") 496 502 run_once("clementine") 497 -- }}} 503 run_once("spotify") 504 run_once("xinput", "set-button-map 'Evoluent VerticalMouse 4' 1 2 3 4 5 6 7 9 10 8 11 12 13 14") 505 run_once("skype") 506 run_once("dropbox", "start") 507 -- }}} -
various/config/awesome/themes/zenburn/theme.lua
r83e11a5 r5e8a64f 143 143 theme.app_chromium = prefix .. "icons/chromium-browser.png" 144 144 theme.app_browser = prefix .. "icons/user-home.png" 145 theme.app_eclipse = prefix .. "icons/eclipse.png" 145 146 -- }}} 146 147 -
various/config/bill/hosts
ra25b687 r8f58c7d 1 127.0.0.1 bill.luper.fr bill localhost.localdomain localhost marcel.delacave.local marcel 2 82.238.202.53 delacave.hd.free.fr 1 127.0.0.1 bill.luper.fr bill localhost.localdomain localhost marcel.delacave.local marcel mam.delacave.local 2 #82.238.202.53 delacave.hd.free.fr 3 81.64.177.54 delacave.hd.free.fr 3 4 4 5 # The following lines are desirable for IPv6 capable hosts -
various/config/vimrc-linux
ra25b687 r7ef2b9f 25 25 set viminfo+=! " make sure it can save viminf 26 26 " None of these should be word dividers, so make them not be 27 set isk+=_,@,% ,#27 set isk+=_,@,% 28 28 set showmatch " blink corresponding parenthese when closing 29 29 " Include python additional libs in path … … 111 111 au FileType rst set tw=79 112 112 au FileType html set tw=0 113 au FileType xhtml set tw=0 114 au FileType htmldjango set tw=0 113 115 au FileType sass set shiftwidth=4 114 116 " Put . back to word dividers for python -
various/config/zshrc
r2adf274 rf3c29f7 71 71 alias scpresume='rsync --partial --progress --rsh=ssh' 72 72 alias socks-git='source $HOME/bin/socks-git' 73 alias ack='ack-grep' 73 74 #if [[ $HOSTNAME == "kamna" ]] { 74 75 # alias emacs='emacs -l ~/.emacs.kamna' -
pyflu/pyflu/update/qt.py
rd8e9cb2 r18221a9 13 13 from pyflu.update.remote import find_patches_groups 14 14 from pyflu.update.version import Version 15 from pyflu.qt.util import get_or_create_app16 15 17 16 … … 81 80 pb.setValue(0) 82 81 pb.setRange(0, length) 83 app = get_or_create_app() 84 app.processEvents() 82 QCoreApplication.processEvents() 85 83 86 84 def update_long_operation(self, index): 87 85 pb = getattr(self, self.progress_bar_name) 88 86 pb.setValue(index) 89 app = get_or_create_app() 90 app.processEvents() 87 QCoreApplication.processEvents() 91 88 92 89 def _download_next(self):
Note: See TracChangeset
for help on using the changeset viewer.
