how to modify ssl3ext
How to run or test the ssl3ext.c inside Mozilla's Network Security Services? I have my own extension and would like to code it but don't understand how the file will work. ...
How to run or test the ssl3ext.c inside Mozilla's Network Security Services? I have my own extension and would like to code it but don't understand how the file will work. ...
I'd like to be able to change the extension of a url and recieve the model in a different format. e.g. if /products/list returns a html page containing a list of products, then /products/list.json would return them in a json list. Note: I like the simplicity of the ASP.NET MVC REST SDK, it only requires about 5 lines of code to hoo...
So I'm working on a firefox extension that we'll be using internal (thus not terrible worried about security), and I'd like to be able to interact with the functions and values defined in the javascript of a webpage. I'm having trouble reliably finding variable definitions. Take for example gmail, it has a VIEW_DATA list that has email...
From the context of a FireFox extension... Is there some way to be notified of back/forward/goto/reload/etc. "History Events"? I'm not looking for a way to cancel or change them, just to be made aware of them. My best solution thus far has been to hook into the UI elements responsible (menuitems and buttons) for triggering history nav...
Ok, now i have my own function that runs inside or after the NSS_init. This functions return 2 values. Now, my problem is, how to pass this return value to the tls extension inside NSS? I found a file called ssl3ext.c in NSS, but dont have any clue where to start or what to do. So in the end, I have a Http header with additional inform...
It possible turn off soap extension on webmethod ? Something like this : [WebMethod] [SoapExtensionClass] public void func() { if(b) { // turn off soap extension on web method } } ...
Is it possible to use c++ binary in chrome extension ? ...
Is there any Jira extension or plugin that adds rich text for Description field, for comments of issue? Something like COnfluence style. ...
I am closely following the tutorial here as I attempt to create a Firefox extension. I have the following tree for my extension: backtosearch +-chrome +-content backtosearch.xul +-chrome.manifest +-install.rdf I have created a testing profile for FF called "Extension Testing" and have added a file to the profile extens...
I have a working firefox extension that currently consists of a button. When I click that button, my XUL file declares oncommand="test();" which simply is an alert("hi!"); . I am including the file like this: <script type="application/x-javascript" src="chrome://myfirstextension/content/resultscollector.js" /> the resultscollec...
What could be going wrong here? The problem seems to be with the regex match statement. without it the alerts come, but as soon as I put it in everything goes quiet. Thanks so much! the wildcard is simply to help pinpoint the problem, it is NOT the objective, i do need regex. window.addEventListener("load", function() { myExtension.init...
Can sources for discrete ruby extension modules live in the same directory, controlled by the same extconf.rb script? Background: I've a project with two extension modules, foo.so and bar.so which currently live in their own subdirectories like so: myproject/ext/foo/extconf.rb myproject/ext/foo/foo.c myproject/ext/foo/foo.h myproject...
I'm setting up some link_to xml views within a rails app. How can the url display the .xml extension? Need it to appear as: http://localhost:3000/test/1-testing.xml Currently it appears as: http://localhost:3000/test/1-testing ...
Besides buying a third party, what is the best approach to extending the CQWP control to include content from a seperate site collection? ...
I am trying to build a xpi file using Java servlet. If I return the xpi as a zip using the following code in the servlet - response.setContentType("application/zip"); response.setHeader("Content-Disposition","inline;filename=xpitest.xpi;"); Everything works fine with above code. I can save the file to the filesystem and install it. H...
As discussed here, I'm trying to add a WCF endpoint-extension; I've got it working, but I need to include the full assembly details: <extensions> <behaviorExtensions> <add name="protobuf" type="ProtoBuf.ServiceModel.ProtoBehaviorExtension, protobuf-net, Version=1.0.0.275, Culture=neutral, PublicKeyToken=257b51d87d2e4d67"/> ...
Could you please suggest any simple Java statistics packages? I don't necessarily need any of the advanced stuff. I was quite surprised that there does not appear to be a function to calculate the Mean in the java.lang.Math package... What are you guys using for this? EDIT Regarding: How hard is it to write a simple class tha...
We're writing an extension for Google Chrome, which only consists of inserting a Flash object in the HTML content. This FLash object generate public external events that can be trapped in JavaScript. Events are correctly trapped if in a normal HTML page, but inside the Chrome extension, it doesn't work. It's like Chrome is blocking an...
I know vs2008 express didn't. I'm hoping this will change with vs2010. Anyone know? Link me? Edit: Anyone have a primary source? While "As far as I know" answers can be helpful, in this case it still leaves a possibility - which is exactly where I started. ...
I'm developing an extension in Chrome 4 (currently 4.0.249.0) that will show the user's StackOverflow/SuperUser/ServerFault reputation in the status bar. I've designed an options page to get the user's profile IDs and I save them to localStorage and read them well in the extension. It all works great.The problem is I cannot find a (progr...