extension

A book for wcf 4.0

Hi, I need some book where I can learn how to extend WCF 4.0 (ie. write some cusom behavior, custom factory etc.) ...

Using Windows 7 Taskbar progress indicator from a Windows Explorer namespace extension

I have a namespace extension and when the user does certain action we display a progress bar in a separate window (Ideally we should use the Windows Explorer built in progress indicator in the address bar, but I'm told that there isn't an API for that from my component vendor). I using the Windows Code Pack 1.1 to get a .NET API. This p...

How to change file extensions using FTP remote?

Hello, how can I change several .xsd extensions to .xml using FTP remote? Thanks in advance ...

Joomla extension to extract/rip content from another site

I want to extract some information from a web site and display it on my site, since this web site does not support RSS or any other means to do it. The information I'm interested in is in a div that has a specific class. I'm looking for a joomla extension that will either use an xslt or xpath provided by me in order to extract this infor...

CFC extends sibling folder

I've seen all kinds of solutions for extending cfcs in parent folders with access to parent files or the CF administration, but I have not seen a workable solution to extend a cfc in a "shared"/sibling folder without access to parent folders. This solution requires access to parent folders? (Not sure what these mappings are, but I have...

How can i extend PHP functionality beyond functions & classes libraries ?

Hello guys, I wanna know how to extend PHP functionality beyond frameworks, functions or classes libraries ? An example about what I am trying to achieve is to be able to create my own operators, make language constructs myself (like foreach, while .. etc). Also there are a lot of built in functions, they are just available globally not ...

XSL Transform cannot invoke user defined Java Method

Hi, I have the following XSL which defines a namespace for my Java Class. In a nutshell I'm trying to point to a different resource bundle depending upon a value in my XML file (I know Resource Bundles are really for internationalization but why re-create the wheel?): <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/...

Typo3: How to count page impressions on every page with an extension

I need to count the page impressions of every page on a typo3 site into the db. So I think I need an extension which is called on every page impression and increase a column 'impressions' in the db of the specific page. I'm new to typo3 and new to extension development as well. Is there a way to include an extbase-extension on every pa...

extension like django-evolution

Hello everybody, i am in search for a extension that is similar to django_-volution. The requirement is to alter the database, whitout deleting the wohle data. I don't know, but for me, this is something so ordinary - doesn't django have a built-in function like that? django_evolution is still in working progress and has some bugs, so...

Eclipse Extension Point for Updating the Classpath

Question Given a Classpath Container I've written as a plugin/extension, how do I add it to the classpath, automatically? Background Ok so I'm an experienced Java Developer but extremely new to writing Eclipse Plugins. I've been googling, following tutorials and reading source code of other plugins for a couple days. I know exactly ...

extbase mapping to an existing table doesn't work

I've extended the pages table and now I want to use some of the data in a domain object called "Tags". So I tried the following in the /Configuration/TypoScript/setup.txt: plugin.myextension.persistence.classes.Tx_myextension_Domain_Model_Tag { mapping { tableName = pages recordType = Tx_myextension_Domain_Model_Tag ...

Upload data:image image without user interaction in a Google Chrome Extension?

I am making sort of a Parental Control Monitor extension thing; for a friend. Would there be any way to upload the images taken using the captureVisibleTab method? The data:file path cannot be saved and checked again, because the parent wouldn't be using the same computer. ...

Mimic `rollup` function on generic list

I have a generic list of type Element, for example. public class Element { public string Country { get; set; } public string City { get; set; } public int Population { get; set; } } With the following data. var elements = new List<Element> { new Element { Country = "Country A", City = "Barrie", Population = 12 }...

VB.NET Extension on Nullable(Of T) object, gives type error

The code I want to work: <Extension()> Public Function NValue(Of T)(ByVal value As Nullable(Of T), ByVal DefaultValue As T) As T Return If(value.HasValue, value.Value, DefaultValue) End Function So basically what I want it to do, is to give along a default value to a nullable object, and depending on if it's null or not, it will g...

Javascript/Chrome extension how to run function?

Hi I try to make a extension for Google Chrome. But i have a problem. I can't get functions in the js file to run. I tried to put a "alert('Hello World') inside the js file and it worked. But how do i start a function? Have been searching and looking into the documents but i can't find anything. This is the javascript i try to run on...

Accessing IExplorerCommandProvider from IShellFolder

Hi. I am writing an Explorer extension for Vista and Windows 7. I read that if you are making a namespace extension you can provide your own commands using IExplorerCommandProvider. This is done in response to IShellFolder::CreateViewObject. I am not writing a namespace extension, but a toolbar that lets you perform operations in Explor...