extension

Updating a Safari Extension?

Hi there, I'm writing a simple Safari Extension, and I'm trying to figure out how to get the update mechanism working. Apple's documentation here is delightfully vague: http://developer.apple.com/safari/library/documentation/Tools/Conceptual/SafariExtensionGuide/UpdatingExtensions/UpdatingExtensions.html And here's my manifest, based...

writing an extension for Safari 5

As of Monday 7th June 2010 Safari (v5) supports Extensions. Some already exist such as the Gmail Checker & the upcoming Coda Notes by Panic. So my question... Where would one begin if one intends to develop an application for Safari 5? Thanks in advance for any feedback! ...

Getting started on thunderbird extensions

Hello there,       I have beein using Tunderbird for many years now and now i am interested in developing some of my own extensions.       I looked over the documentation on their official website but found little suport for getting started at this.       I have some experience with python, perl, php and would like if you can...

Problems replacing a Python extension module while Python script is executing

I'm trying to solve the following problem: Say I have a Python script (let's call it Test.py) which uses a C++ extension module (made via SWIG, let's call the module "Example"). I have Test.py, Example.py, and _Example.so in the same directory. Now, in the middle of running Test.py, I want to make a change to my Example module, recomp...

Safari extensions: style of selectbox like safari's bookmark folders

Hey guys, I'm developing an extension for Safari 5 at the moment. In my extension, I use an additional toolbar, with selectboxes in it. Now, it would be great to style these like the folders in the bookmarks toolbar look. I know that it would be possible to replace my select with a completely styleable ul-list or somethin like that, b...

Adding extensions to a stdlib class in a ruby on rails project

Hey, where would I place additions to stdlib classes in a rails project? Let's say something like: class Date def foo 'foo' end end I thought about the initializer folder but it somehow felt wrong. Ideas? ...

Re-send POST request easily - what tools?

I am looking for an easy way to re-send POST request to the server within the browser mainly for debug purposes. Say you have a XHR request which contains POST parameters that is to be send to the server. After having changed the script on the server side, you would like to resent the very same request for analyzing the output. What too...

Does Ruby 1.9 load extensions from .dll files on Windows?

I have made a C Ruby extension on windows using microsoft visual c++ 2008 express, and put the .dll I compiled into the diectory ruby loads extensions from and required it, and it said the file couldn't be found. I read somewhere that ruby 1.9 doesn't load extensions from dlls; only so's. Is this true, or did I forget to do something? ...

Is VS what's the name of the dropdowns with classes, functions, etc under the tabs?

I am developing an extension, and I need to read the value of these two dropdowns, but I don't know what they are called. Any idea or guess? ...

Business Intelligence Development Studio encounter error on Rendering

I try to develop a data processing extension for SSRS 2008 in order to access database through an entity framework. But when I copy and register the extension in BI Development Studio, it gives me an error message while loading the extension". I built it with targeting framework 4.0 by using Visual Studio 2010 because my data model class...

safari extension development: overflow the borders of an extension bar

Hey guys, In my safari 5 extension, there is an additional extension bar. now, only a selectbox can appear outside this bar. Using CSS with position:fixed/absolute, I can't create an overlay outside this extension bar. Is there any posibility to create some div or something like that, that can appear above the tab bar and so on? Thank...

Is there any tutorial for beginners on creating basic apache http server extension?

Is there any tutorial for beginners on creating basic apache http server extension? ...

A simple Python extension in C

I am trying to create a simple python extension module. I compiled the following code into a transit.so dynamic module #include <python2.6/Python.h> static PyObject* _print(PyObject* self, PyObject* args) { return Py_BuildValue("i", 10); } static PyMethodDef TransitMethods[] = { {"print", _print, METH_VARARGS, ""}, {NULL,...

Google maps Unirgy_StoreLocator extension for Magento

hi,has anyone used Unirgy_StoreLocator extension for Magento? i've got the Google map showing up but how can i change the default map location and zoom value? thanks. ...

Debugging a Visual Studio 2010 extension or addin, always gives me LoaderLock...

Title says it all. I'm trying to write an extension for VS2010, but I get this every time: Hit F5 to start debugging A new instance of visual studio starts up I can see a bunch of DLLs loading in the debug host while the new instance is starting It then fails with a "LoaderLock". When I continue after that, the new instance is fully...

Chrome.tabs.getSelected() doesn't work. What am I doing wrong ?

Hi there ! I'm building my first GC extension, and I am having a problem using this function. I would like to get the url of the current tab, and to do so (after some google research, of course), I use the chrome.tabs.getSelected() function. Here it is in my code : ... socket.onopen = function(msg){ log("Welcome - status " + this.ready...

Return Activetab index for Safari 5 Extension

I'm trying to make an extension that closes all tabs but the active tab for the current window in Safari. I have gotten this far as to close all tabs but index 1. But I need to insert the activetab index and exclude that from the closings. If I get the answer I'd put it in the extension and publish it. <!DOCTYPE HTML> <script> safari.ap...

Safari Extension safari.application error

Hi, I'm making an extension for safari I created a context item with command = showNote In debugger I get the follwing error TypeError: Result of expression 'safari.application' [undefined] is not an object on line 8(the last line) are there any things you need to include or call before this works? main.js function showNote(event){...

How to link PHP 5.3 (FastCGI) to cURL with Lighttpd on Mac OS X?

I installed lighttpd, php5 +fastcgi, and php5-curl earlier this morning using MacPorts. I have been able to get the former two working fine, but I can't seem to get PHP to see the installed cURL extension. I did not change the install path for cURL - it is now at /opt/local/lib/php/extensions/no-debug-non-zts-20090626/curl.so. I've adde...

Safari 5 Extension Validating Event

I want to Validate this toolbar item if there are more than 2 windows open. I know for tabs event.target.disabled = event.target.browserWindow.tabs.length < 2; works. But event.target.disabled = event.target.browserWindows.length < 2; doesn't. How can I validate so the toolbar item is enabled only if more than one...