extensions

Does anyone know if there is a Chrome plugin for making FireFox extensions work in Chrome?

Does anyone know if there is a Chrome plugin for making FireFox extensions work in Chrome? Just curious because Chrome does appear to run faster, but I love my FF plugins, especially for development. I'm guessing maybe there isn't because of XUL. ...

IIS7 Request Mapping, File Extensions

I have a website that used to have .dsp file extensions for all pages. There are alot of other sites referencing mine that reference the pages like that, but my pages are all actually .aspx pages. In IIS5, I was able to configure this to work. My problem is I've recently switched from IIS5 to IIS7, and I have no idea how to map these ...

Using Firebug From Within a Firefox Extension's code

Does anyone know how I can use firebug from an overlay.js script in a Firefox extension? I'm on Snow Leopard (just in case it makes a difference). I'm developing an extension but it's taking me forever because I have no visibility into my javascript objects. Thanks! ...

Which most common extensions are there (or used) to ANSI C?

You can put a link to comparison matrix or lists of extensions available to main compilers. If none of this is available, you could write a list of extension you use or like in your favorite compiler. ...

Approach question regarding Generics in C#

Say you have a group of objects you're creating to handle some XML parsing and all of them take the exact same object, XElement ... as such public class User { public User(XElement xmlElement) { Id = xmlElement.GetElementValue("UserId"); } public string Id { get; set; } } What I would like to do is a method...

build python program with extensions using py2exe

I'm having a hard time finding py2exe recipes, especially for cases that require c extensions. The following recipe works fine without the "ext_modules" part. With it I get "NameError: name 'Extension' is not defined. from distutils.core import setup import py2exe import matplotlib import os s = os.popen('svnversion') version = s.r...

MSBuild Extension Pack: Credentials for File/Folder tasks?

Good afternoon, say is it possible to provide credentials (username/pw) for file or folder activities (e.g. removecontent) with the MSBuild Extension Pack? As in.. the build user is not necessary the one I want to use to deleted/work with on certain folders/files I need to modify/delete (e.g. remotely on UNC shares). Is this doable? I ...

Good resources for learning to develop Firefox Extensions.

I am looking for good resources to learn to develop Firefox extensions. Resources can be either books or tutorials on the net. Prefer basic tutorials as I am a newbie in the world of Firefox extensions but I have experience in Software Development so programming is not an issue. ...

Google Chrome - Alphanumeric hashes to identify extensions

Google Chrome is using alpha numeric hashes as identifiers for the Chrome extensions. For eg. "ajpgkpeckebdhofmmjfgcjjiiejpodla" is the identifier for XMarks Bookmark Sync extension. Which algorithm is in use here to generate such strings? How are they ensuring uniqueness? ...

Making an extension for multiple versions of Visual Studio

I have a feeling that the Visual Studio SDK is targeted heavily towards the version of Visual Studio it is created for, so I'm wondering how to do this in the best way possible. I currently only have Visual Studio 2008, but people using Visual Studio 2010 have begun wanting to use my tool as well, and I want to help them out. There were ...

Materilizing related entities from SPs using EF Extensions

I have a stored procedure that returns a collection of my entity class objects. Since I want my navigation properties populated as well I'm using EF Extensions and I've written my own Materializer class. But. My entity class has a navigation property of Type that points to a different entity. Stored procedure of course returns an ID fro...

mysql aggregate UDF (user defined function) in C

I need to write an aggregate extension function (implemented in C) for mySQL 5.x. I have scoured the documentation (including browsing sql/udf_example.c) but I do not find anything that is brief, to the point and shows me just what I need to do. This is the problem: I have a C struct (Foo) I have a C function that takes an array of t...

Extensionless Page Requests

I have a customer of ours that sent out a publication referring to my site but they used the wrong address...they did not provide a page name...it looks like this: mywebsite.org/Resources/toolkits/bridging when it should have been mywebsite.org/Resources/toolkits/bridging/default.aspx Is there a way to tell ASP.NET to default to th...

Is it possible to disable the php gettext extension in .htaccess or php runtime ?

Hi, I am using a shared hosting, i need to disable gettext extension for my application due i need to redeclare _(). Is it possible to disable an extension on php runtime or vie .htaccess ? ...

How Big a Security Risk are Browser Extensions?

One of the more powerful features of modern day browsers is the ability for software developers to write browser extensions to enhance, modify and tweak the pages visited by the user. As more of our lives migrate onto the browser, aren't we potentially exposing ourselves to a massive privacy and security holes created by the installatio...

Communication between the Options page and Background Page in Google Chrome

Hi All, I am trying out a simple Google Chrome extension, in which I need to communicate between the options page and the background page for getting/setting the options. I have tried chrome.extension.sendRequest(..) and chrome.extension.onRequest.addListener(..) but with no success! Am I missing something? Or should I post my code? ...

Accessing Current Tab DOM Object from "popup.html"?

I'm developing an extension for Google Chrome browser. I could not figure out how to access the current tab DOM object from the "popup.html" page. any suggestions? ...

Compose e-mail via URL-params (googlemail)

I'm working on an extension for chrome, where i need to compose gmail messages from URL. Anyone knows how i set the recipient and the subject via URL-Param?? Is there a better approach to do that or is this even possible? Thx ...

Remove Path From File Name

I'm developing a program that needs to parse the file name into a TTextField. How to remove the file extension I've already know(or think that I can do like this): var FName: String; FPath: String; begin FPath := OpenDialog1.FileName; FName := ChangeFileExt(FPath, ''); end; But how can I remove the file path from FName? ...

What does ARB mean in the opengl functions?

This should be easy one, i just havent found any reference to that. ...