extension

Button in popup that get selected text - Chrome extension

Hello, In my popup.html in my chrome extension I have a button that will get the selected text in de webpage and put it in my textarea in the popup.html. First I select text in a webpage I click on my extension. An popup will show with a textarea and a button. When I Push the button the selected text will show in my textarea. is so...

Does file extension case matter on assembly source files with .asm extensions?

My goal is to have a rule that file.asm should be built exactly the same as file.ASM (or similar variations e.g. file.[aA][sS][mM]). I would like to avoid stepping on a convention that I'm unaware of. Case-sensitive File Extension Convention Examples: Assembly Files with .S and .s extensions are treated differently under GNU Assembler...

Magento extension giving problem at time of install

Hello all! I am using extension in magento "J2TRememberMe", but at installation it's giving me problems. It's showing a message like: "Failed to download magento-community/J2TRememberMe within preferred state "stable", latest release is version 1.0, stability "beta", use "channel://connect.magentocommerce.com/community/J2TRememberMe-1....

Syntax error while creating a google chrome extension

I keep getting a syntax error everytime I try to load the follow manifest.json: { "name":"Reada", "version":"1.0", "description":"An extension to enable functionality of Arc90's readability", "background_page":"noway.html", "browser_action":{ "default_icon":"hello.png" } "permissions":"tabs" } Line 7, column 1, syntax error. ...

about config preferences and js

I wonder if it is possible to get values of certain preferences set in about:config using javascript? Incentive is to get value of preferences set in firefox addon i've created when user lands on addon front end. Basically, I'm trying to identify users landing on FE without asking them to login explicitly. ...

Examples and extension in Nuxeo

Hi guys, I'm trying to set up Nuxeo's examples, but I can't get them working. Does someone succeed in compiling and deploying them ? I know it uses JAX-RS, but I'm still trying to set up a project with Eclipse to generate bundles, and I'm quite lost. I would be very happy if someone could give me a compiling project, or a link for a s...

Gtk+ and OpenGL bindings

Simple and short: What is the most advanced OpenGL binding for GTK+? I would prefer a widget which allows me to use it similar to QGLWidget. Note: I stumbled upon gtkglext, gtkglarea and clutter. I read the first two have shortcomings/ serious issues. ...

Suggestions on where to start lerning how to make firefox Plugins?

Hi Guys; I haven't had any experience on building plugin's, need guidance on where to start specifically for firefox. ...

The xdebug extension is not loaded

Hi guys, I've got xdebug installed fine (showing up in phpinfo()) but I'm trying to get it to work with PHPUnit's code coverage functionality. It keeps telling me "The XDebug extension is not loaded". I've got phpunit working fine with WAMP. When i run php -m i don't see xdebug listed in neither php modules nor zend modules which point...

How to download a file without extension in C#

Okay so I want to download a file from a website, but the file is lacking an extension. (it's an image file, I know this much, but the link does not provide the actual extension) When I use webrequest, or webclient to download the file I get a "404 file not found" exception. WebClient wc = new WebClient(); Stream strm ...

magento extension "remember me" not working

Hello All! I am using one of extension for magento,its link provided below. http://www.magentocommerce.com/magento-connect/j2t-design/extension/1709/j2t-remember-me-checkbox is anyone have tried this extension? actually its not working, although I have made all necessary changes and updation for it, and from magento site also I have no...

WinAPI: Call context menu entry provided by shell extension

The software Dropbox provides an shell extension which adds context menu items to all files in a specific folder. One of these generates a public link to view the selected file. In a C# tool I want to call this entry without any user interaction. I want to achieve the same behavior as if the user clicked on the context menu item of a se...

How do I remove a specific extension from files recursively using a bash script

I'm trying to find a bash script that will recursively look for files with a .bx extension, and remove this extension. The filenames are in no particular format (some are hidden files with "." prefix, some have spaces in the name, etc.), and not all files have this extension. I'm not sure how to find each file with the .bx extension (i...

How do I pass variables using 'file?x=3' instead of 'file.php?x=3' ?

Possible Duplicate: How come some site urls do not include a file extension? Hi there, I was wondering how I can pass a variable to my PHP script using the following syntax: http://example.com/script?variable=value It seems I have to include .php after the script name or it won't work, but YouTube for example doesn't have th...

Creating protocol handler in new Firefox ?

I just came to know that Forefox no longer support XPCOM component for creating extensions .. I want to create an extension which will handle my protocol which will collect information from different sources via my NPRUNTIME plugin and render webpage accordingly .. in past I used to create protocol handler by implementing nsIProtocolHand...

Safari Extension HTML editing...

Hi! I am working on a safari extension that will need to edit the HTML of the webpage currently being viewed. How do I edit the HTML of the currently viewed webpage within the safari extension workspace?? Thanks! --G P.S: Random question -- I just noticed a "Community wiki" checkbox. What does it do? ...

How can I dynamically load perl extensions in an embeded perl interpreter?

I am embeding perl interpreter in my C code (what fun!). I need to dynamically load perl extensions (an extension that extends perl, written in C). When I run a perl script (using my embeded perl interpreter) that needs to use that extension, it will work! ...

Linq rollup with sequence id

I'm trying to get the running total by using extension. And it is working now. public static IEnumerable<TResult> Rollup<TSource, TKey, TResult>( this IEnumerable<TSource> source, Func<TSource, TKey> keySelector, TResult seed, Func<TSource, TResult, TResult> projection) { if (!source.Any()...

MediaWiki Extension question / suggestion

Complete beginner here. I want to create a new tab on each page that has a custom action. When clicked, it takes you to a new page which has custom HTML on it along with the text or the original article. So far I could create a new Tab and could give a custom action mycustomaction to it. I am pasting what I did so far here. Please let m...

Python Extension Can't Use library_dirs

WHen specifying library_dirs in a Python distutils.core.Extension I get this error when trying to build: /Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/distutils/dist.py:263: UserWarning: Unknown distribution option: 'library_dirs' warnings.warn(msg) Why is this? I am using Python 2.5 on Mac OS X. ...