extensions

call popup.html javascript function from background page

How to call javascript function in popup.html from background page ( in chrome extensions)? ...

MS Ajax extensions setup file

I can't find MS Ajax extensions setup file anywhere, maybe someone has it for ASP.NET 2.x? ...

Best VS2010 Extensions

What are in your opinion the "must have" Visual Studio 2010 extensions? OData Protocol Visualizer is fine Solid Softfare Xplorer isn't free, but looks very nice ...

Android Browser Extensions

Is it possible to write "extensions" for the webkit based browser found on Android devices? i.e. extensions akin to Google Chrome's ? ...

What's the best way to mix Ruby and other languages? (Especially C++)

Hi, I'm learning Ruby, and I'm starting to play with building extensions in C. I have Programming Ruby The Pragmatic Programmers' Guide and so I can follow that for the basic nuts and bolts. What I was wondering is if there already existed some nifty frameworks/whatever to help interoperability between Ruby and other languages, with C++...

how to clear XFixes regions

Hi, I'm writing some low level code for X11 platform. To achieve best data copying performance I use XFixes/XDamage extensions. How can I clear the contents of XFixes region after one refresh cycle? Or do they clean themselves after I use XFixesSetPictureClipRegion? My code is something like that: Display xdpy; XShamPixmap pixmap_; ...

Most useful MSVC++ non-standard macros

The standard includes macros line __LINE__ & __FILE__, and C99 adds __FUNCTION__ which is technically not part of C++ yet. What additional ones does MSVC++ add which are useful/cool? I found __FUNCTION__ is supported but are there any other totally MS-specific ones worth knowing about? ...

Has anyone got OverviewMargin to compile with VS2010 RTM?

As I am severely addicted to rockscroll, I'm looking for an replacement for VS2010, I tried downloading OverviewMargin, and it works, but I wanted to have a look at the code to see if I could adapt it to behave more like rockscroll, but I can't get it to compile. Has anyone managed to get it to compile with the latest version for VS2010...

C#/XNA extensions setting instance properties

I'm making an extension to the Vector2 class. In my main code, I can say Vector2 v=new Vector2(); v.X=2; But in my extension, I can't. public static void SetToThree(this Vector2 vector) { vector.X=3; } v.SetToThree() doesn't change v. When I go line by line through the code, in the extension vector's X direction is cha...

Visual Studio 2010 - recommended extensions

What are your recommended extensions for Visual Studio 2010? (Please indicate if its free or not) Free: PowerCommands - useful extensions for the Visual Studio 2010 adding additional functionality to various areas of the IDE. DevExpress CodeRush Xpress AnkhSVN - Subversion Support for Visual Studio. Ghost Doc - Simplify your XML C...

Trying to use jquery ui in google chrome extension in the content level

The problem is that the scope of the content script is on the web page that your plugin is suppose to be used at. So the css background:url(images/ui-bg_inset-hard_100_fcfdfd_1x100.png) becomes url('http://webpageforplugin/images/ui-bg_inset-hard_100_fcfdfd_1x100.png') in order for this to work as far as i understood i need to have it t...

How to enable core PHP extension in Linux?

I'm trying to understand the process for enabling an a core extension (dom) in php. When I run phpinfo, I see '--disable-dom' in the configure command. Am I supposed to re-install PHP? ...

Compiling Gearman extension for PHP on OS-X Snow Leopard with Zend Server Community Edition

I was wondering if anyone else has figured out how to solve this problem. Whether I install the extension via PECL or compile it by hand, I get the same error: PHP Warning: PHP Startup: Unable to load dynamic library '/usr/local/zend/lib/php_extensions/gearman.so' - dlopen(/usr/local/zend/lib/php_extensions/gearman.so, 9): no suitable...

How do I compile python extensions for Mac OS X 10.5, on Mac OS X 10.6?

I'm trying to compile a variety of python extensions (pycrypto, paramiko, subvertpy...) on Mac OS X 10.6, such that they will be compatible with Mac OS X 10.5 and its built-in python 2.5, for including in a product installer targetted at Mac OS X 10.5. I'm really not sure how to go about this. I dug around on Google and found a question...

Issue converting Sitecore Item[] using ToList<T>

Working with Sitecore and Linq extensions. I am trying to convert to from an item array to the list using the following piece of code: Item variationsFolder = masterDB.SelectSingleItem(VariationsFolderID.ToString()); List<Item> variationList = variationsFolder.GetChildren().ToList<Item>(); However I keep getting this error whenever I...

Include websphere extensions section in application.xml

Hi, Can you help me by explaining how to include WebSphere Extensions section in application.xml if WebSphere Extensions is not present ...

Error compiling Visual Studio 2010 EditorClassifier Extension Template

I'm trying to create an Editor Classifier Template project and run it. When I attempt to build I get an error message stating: "Error trying to read the VSIX manifest file 'extension.vsixmanifest'. Exception has been thrown by target of invocation." Any thoughts? I've tried googling this but didn't have any luck. I am working with Vis...

Visual Studio 2010 Editor UndoHistory

I am trying to write an extension that can access the TextUndoHistory of an VS editor. Do I have to implement ITextUndoHistory and ITextUndoTransaction myself or is there something that I can hook into using the SDK? Thanks, Nick ...

Question about the ITextUndoHistory that gets returned from TryGetHistory

Everytime the IWpfTextView's TextBuffer changes I am trying to get the history's redostack and undostack and simply checking the count. When doing this I am encountering a "Method not supported exception" when trying to access the two stacks. Am I retrieving the history incorrectly or does VS not want me seeing/editing the contents of ...

Google Chrome Extension error:Unexpected token ILLEGAL

I wrote a extension and works fine in Chrome v4.*. These days my chrome update to v5.0, then I found the extension doesn't work any more. I use the developer tools found this error bellow: Uncaught SyntaxError: Unexpected token ILLEGAL who knows what's the problem? ...