extensions

Git Extensions not showing all files to commit at once

I'm Using Git Extensions GUI for GIT on Windows. With a new project with some hundred files, not all new files are shown for a commit, I have to to multiple Commits to get all the files.. is there somewhere a option, a limit to set this behaviour? (yes, I know .gitignore, the files are not ignored, but only shown in chunks of ca. 20 fil...

Are there any extensions for either Boost.Test or cppUnit which could provide HTML outputs etc?

Hi, I am involved in development of unit level test cases for our project. There are both managed code and native C++ code. After some study I chose NUnit for managed code. I would either use Gallio or FireBenchmarks which is an extension to provide HTML outputs and charts etc. Do we have extensions like this for cppUnit or Boost.Tes...

How do I: Visual Studio Syntax Highlighting Extension

I want to develop an extension for VS2010 that will allow me make some additional features to syntax-highlighting. I installed the SDK, how do I start from? Please give a little snippet (or a link to code) where I can see how to start. Note: do I have to check the whole block of code, or the SDK tells me on each word what it is, how i...

Visual Studio - Extension to manage loaded and unloaded projects

I'm pretty sure I've seen a visual studio extension that allowed to manage loaded and unloaded projects in a solution. For example you could create a group X that would contain projects A and C and a group Y that would contain projects B and C. When selecting a group, it would load/unload the appropriate projects. Did I dream that t...

Simple syntax for getting a member of a type in extension method (C#)

I'm trying to write an extension method that will give me the MemberInfo representing a member of a given type, using lambda expressions. Ideally, I'd like to be able to write var info = MyType.GetMember(m => m.MyProperty); or, also acceptable var info = typeof(MyType).GetMember(m => m.MyProperty); or even var info = typeof(MyType...

using jQuery in Safari Extension

Hi, I am trying to make a simple Safari 5 Extension that just injects a custom javascript. Any ideas how can I make use of jQuery in this custom script, please? I only know it's possible, because it is mentioned on one of WWDC videos, but I don't know how to do it. Thanks ...

@ shows solution navigator instead of typing an @

I can't seem to find a question on this, but it might be because I'm unable to find a good way to search for it... I recently updated my installation of Visual Studio 2010 Pro Power Tools, and now every time I type @ in a code window, I get a search window of some sort opened instead of the @ symbol in my code. I can't find the key sett...

What are your top Visual Studio 2010 extensions?

Possible Duplicates: Best VS2010 Extensions Visual Studio 2010 - recommended extensions I've just discovered JSEnhancements for Visual Studio 2010 and it's left me wondering what other "indispensable" extensions and add-ins there are that I might benefit from. What are your key productivity extensions for Visual Studio 201...

C#-like extension methods in PHP?

I like the way in C# where you can write an extension method, and then do things like this: string ourString = "hello"; ourString.MyExtension("another"); or even "hello".MyExtention("another"); Is there a way to have similar behavior in PHP? ...

Assigning UTI to file type

I'm trying to add UTI for a pair of file types, matching by extension. I think I've got it setup properly - at the very least, the file extension -> UTI mapping is recognized (I declared it as an imported type in info.plist). However, when I try to get the UTI off of my test file, I get back a dynamic UTI. Here's the sample code I'm usin...

Dark Theme for Visual Studio 2010 With Productivity Power Tools

There's a lot of new things going on in the Productivity Power Tools extensions, and I find that many of the new features come with very weird color combinations, that many times make the text completely illegible. I assume this is because I've previously set a dark theme for Visual Studio, and some, but not all, of the settings that aff...

Extending the extension manager.

I want to extend the extension manager in Visual Studio 2010. I'd rather know if that is at all possible before I get into it, but am unable to find anything about it. All the extensibility options I've read about mention nothing about being able to actually change the function of an existing VS2010 tool like the extension manager. I'd...

PHP include file extensions?

For required/included files in PHP, is it better to use .inc extensions vs .inc.php vs .php extensions? ...

Visual Studio 2010 - Only View Output of a Specific Category

In Visual Studio 2010, it would be beneficial to only view the output of a given debug category.. I.E. Debug.WriteLine("debugging", "category1"); Debug.WriteLine("debugging2", "category2"); We have numerous developers developing on the same project and theres a lot going on in the output window that we dont need to see... if we could...

How to change the selected item in a Firefox Extension's Menulist?

I'm writing a firefox extension and I have a menulist of links that should be automatically (upon load) set to the last link it was set before I closed it. It just keep being set to the first menu item. I've tried using setAttribute('selectedIndex', 1), but that doesn't work. What am I doing wrong? Some sample code: <menulist> <menu...

Open TFS Query results in VS 2010 with all nodes collapsed by default

When I open a TFS Query with hierarchical results in Visual Studio 2010, the nodes are expanded by default. I can click the button to collapse them, but is there a setting or extension that will open query results with all nodes collapsed by default? ...

default location of MediaWiki extensions directory

I recently install MediaWiki on Ubuntu 10.04 using all the default settings. I'm looking to install an extension. Where is the extensions directory located by default? Thanks! ...

Is there a 64-bit version of Visual Studio Extensions for WSS 3.0 for Visual Studio 2005?

We have to do some Sharepoint development on a 64-bit machine using Visual Studio 2005. However from initial searches, it looks like 64-bit support was added in a version (1.3 that only supports Visual Studio 2008. When trying to install the 32-bit 1.1 version (the one that works with Visual Studio 2005), it gives an error saying the pa...

Multiple basename() extensions

Hello everyone. We have: $path = "/home/httpd/html/index.php"; $file = basename($path); // $file is set to "index.php" $file = basename($path, ".php"); // $file is set to "index" $file = 'index'; // the result How can we query a multiple file extensions? Instead of $file = basename($path, ".php"); something...

Firefox extensions: are cross-domain JSON calls allowed?

Hi All, Can a Firefox extension/add-on make a cross-domain JSON request? Normally for in-page javascript this is not allowed, forcing a JSONP work-around. Thanks Richard. ...