As I worked on tbNotes extension I needed to add item to the message header view (see the picture). I didn’t found any usefull informations on MDC or Google so I look into the Thunderbird‘s sources (msgHdrViewOverlay.js) file and there I founded it. Solution is simple: Code placed in overlays.xul: <!– Message header view overlay [...]
Posts tagged Development
MySQL Trick: GROUP_CONCAT
Today I discovered and firstly used MySQL aggregate function GROUP_CONCAT and it’s really usefull in same cases. Consider structure database like this: ┌───────────────────────────────┐ ┌───────────────────────┐ │ eshop_items │ │ eshop_items_to_genres │ ├───────────────────────────────┤ ├───────────────────────┤ │ * ID [INTEGER] |—-| item_ID [INTEGER] │ │ title [VARCHAR] │ │ genre_ID [INTEGER] |—-┐ │ image [VARCHAR] │ └───────────────────────┘ | │ [...]
Venkman JavaScript Debugger for Komodo Edit
Today I’ve noticed on ActiveState Community web that was released Venkman JavaScript Debugger with Komodo Edit/IDE support – this is really great for debugging your Komodo’s extensions. As on Firefox – the only thing you need to do is uncheck Exclude browser files in Venkman’s debug menu. As usual here are some screens: