extensions. logging. enabled?
I am trying to help a Firebug user with some kind of install problem. I
want to try installing while extensions. logging. enabled was true, but
when I test it myself there is no logging information. Any hints?
jjb
|
3/12/2010 10:10:19 PM
|
0
|
John J Barton <johnjbar...@johnjbarton.com>
|
|
BindException: Address already in use: Cannot bind
hi all,
i have using java to create a socket in java and wrapt it to a firefox
extension .
when i open my firefox ,it's show the msg :
uncaught exception: java.net.BindException: Address already in use: Cannot
bind
but i find the port is using by firefox when i start it .
can i using java to create a socket on client side ?
any idea?
|
3/11/2010 7:18:27 PM
|
0
|
george tovrea <george.tov...@gmail.com>
|
thunderbird: json-rpc
Hello,
I'm working on a extension which has to access a web service with
json-rpc. Since it doesn't seem be an integrated API with
thunderbird, which library should I use?
Do you know of any extension which solves the same problem ?
code.google.com/p/json-xml-rpc/ => I need it cross-domain :(
http://jabsorb.org/
https://wiki.mozilla.org/User:Harthur/BugzillaRPC
http://www.dojotoolkit.org/
http://trac.mochikit.com/wiki/MochiKitJsonRpc
...
I'm not sure which libraries are recommended for a thunderbird
extension, or if any of it are OK as long as use it with
evalI
|
3/10/2010 10:45:09 PM
|
0
|
=?ISO-8859-1?Q?C=E9sar_Fern=E1ndez?= <ce...@pk2.org>
|
autoCompleteSearch, nsLoginManager and nsFormFillController
Hoi!
The context for this question is a gecko >= 1.9.1 extension/add-on written in Javascript that has some components, some modules (.jsm), and some .js in chrome/content.
I am wondering if there is a known way to have nsFormFillController [1] interact with a custom version of nsLoginManager [2] ?
For example, let's say I have a component called nsMyLoginManager.js in components/ and I would like to have it interact with nsFormFillController for autoCompleteSearch, etc.
Based on the "Yuck. This is called directly by satchel:" [3] comment in nsLoginManager.js, I take it that what
|
3/10/2010 6:09:10 PM
|
0
|
"Andreas Imhof" <gecko.develo...@gmx.ch>
|
When did "install-global-extension" actually disappear?
According to the documentation, the "install-global-extension" command
line flag was removed with Gecko 1.9.2, which would correspond to
Firefox 3.6 in the Windows world. However, I've got a copy of Firefox
3.5.5 and that command line flag has already been removed (including
it causes Firefox to not install anything).
Is there any documentation about this flag, and exactly which versions
of Firefox require it, and exactly which versions of Firefox require
that it not be there?
Thanks,
Chris
|
3/10/2010 3:55:33 PM
|
0
|
Chris Shearer Cooper <chris.shearer.coo...@gmail.com>
|
embed flash (youtube) in iframe in XUL
Hallo!
In my addon I have a popup including an iframe to show some html
content - which works fine !
However, unfortunately I was not able to embed flash content (youtube
videos) in that iframe ...
I googled quite a bit and did not find a real answer - so I wanted to
ask if that is possible at all?
And if yes, any hint what I am doing wrong is highly appreciated (see
my code below ) !
Many thanks,
LG
Georg
Here is the XUL:
<popupset>
<panel id="myext-content" noautohide="false" noautofocus="true">
<iframe id="myext-content-iframe"
sr
|
3/10/2010 3:54:59 PM
|
0
|
Georg Holzmann <...@mur.at>
|
Drag & Drop in Linux
Hello,
In my extension the user can reorder toolbar buttons/tabs via drag and
drop, works fine in all Mozilla Mail Apps (TB, SM, Postbox) under
Windows, but its temperamental under Ubuntu. I realized the problem was
when i clicked in the center of the button (the button label) it was
behaving erratically but when (carfully) dragging the button from the
area outside the label it behaves as expected (as in Windows). Is it
possible to disable the (built in?) dragging for the labels contained in
the buttons, so that the button itself is dragged, instead?
thanks in advance
Axel
|
3/9/2010 10:46:24 PM
|
0
|
Axel Grude <axel.gr...@gmaiI.com>
|
The inner workings of JS
There are certain things in JS that invoke a special procedure in the
browser.
window.location.reload() forces the document to refresh.
window.location = "http://newloc.com" redirects the document to a new
page.
Can anyone point me to a place in the Mozilla code repository where
such special actions are scripted?
I am mainly interested in the latter assignment. All other variable
assignments just silently work, but when
you assign a new value to the window.location, then something wakes up
in the codebase and decides to
actually change the location of the document (which also ca
|
3/9/2010 7:48:07 PM
|
2
|
Jeff <hardi.per...@gmail.com>
|
Thunderbird: Changing Folder context menu per folder
I'm trying to implement a next context-menu item for the Thunderbird
that only appears on specific folders. Basically, I would like to
emulate the behavior of the "Empty Trash" or "Delete" context menu items
that only appear for folders where they apply.
I've been able to hide/show the menu item when the user left-clicks on a
given folder by capturing the "select" event:
window.document.getElementById('folderTree').addEventListener("select",
gTestPlugin.hideShowMenu, false);
but this doesn't work properly if the user only right-clicks on a given
folder without selecting it firs
|
3/9/2010 7:05:00 PM
|
0
|
Mike Edenfield <kut...@kutulu.org>
|
Name of little icons in list view?
I'm using and developing a small TB extension for the vtiger CRM.
A nice suggestion for a small feature was to add a little flag to
indicate if a message had been added to the CRM already.
I am thinking of doing something similar to the way TB marks messages as
"forwarded" or "replied" to in the main list view. Or if that isn't
possible, then create a new column similar to the "star" column.
What are these icons/areas of TB called so I know what to look for on
the MDC?
Also, any suggestions on the best, or an alternative, way to do this
would be gratefully received.
TI
|
3/9/2010 1:18:25 PM
|
0
|
"Alan Lord (News)" <alansli...@gmail.com>
|
passing javascript object to xpcom c++ method
Hi, Can I pass javascript object to xpcom c++ method? Consider this:
I have defined this pure javascript object:
var Obj={
hello:function(Hstring){
alert(Hstring);
}
}
I would pass this object as, in parameter to a method of my xpcom
component written in c++ and call, within, the method hello('prova').
How can I do this?,
|
3/9/2010 11:08:17 AM
|
4
|
emilio <bistru...@gmail.com>
|
Is there a shortcut to figure out the number of open windows?
From some of the examples posted on the MDC site, I've put together
the following to count the number of open windows:
var wm = Components.classes['@mozilla.org/appshell/window-mediator;
1'].getService(Components.interfaces.nsIWindowMediator);
var en = wm.getEnumerator("");
i = 0;
while (en.hasMoreElements()) {
i++;
en.getNext();
}
print(i);
Is there an easier/simpler way of doing this? I basically just need to
know if the current window is the ONLY window.
|
3/8/2010 3:41:25 PM
|
0
|
Chris Bloom <chrisblo...@gmail.com>
|
Overwrite JS function from native chrome?
I need to overload one of the native functions in the download
manager. If I open the DM in a new tab and use a Firefox console, I
can overwrite the function with a test function and it works as
expected. However, when I do the same thing from my overlay, it
doesn't appear to overwrite anything. Is it a problem with load order?
Is there a better way to go about this? I basically need to change how
the native function works, or somehow disable it and replace it with
my own.
|
3/7/2010 6:49:43 AM
|
3
|
Chris Bloom <chrisblo...@gmail.com>
|
loli bbs, bbs loli, young loli bbs
*
*
* Hi, Bob! Some vids here ;) http://doiop.com/secretwmvs
*
*
loli bbs
bbs loli
best loli bbs
bbs index loli
bbs loli preteen
bbs loli board
kidz loli bbs
loli bbs sven
loli photo bbs
bbs loli index
loli bbs girl
bbs loli free
preteen bbs loli
loli nude bbs
loli bbs blog
loli preteen bbs
loli bbs tgp
loli bbs board
young loli bbs
loli bbs nonude
little loli bbs
loli bbs pics
bbs loli dream
teeny porn loli bbs
pthc bbs loli
|
3/6/2010 3:38:05 PM
|
0
|
elitomofusuy15998 <elitomofusuy15...@gmail.com>
|
Re: Installing extensions programmatically on FF3.6
Sorry, Forgot to CC to list
:-(
Best,
Oliveiros
----- Original Message -----
From: "Oliveiros" <oliveiros.cristina@marktest.pt>
To: "Neil" <neil@parkwaycc.co.uk>
Sent: Friday, March 05, 2010 11:40 AM
Subject: Re: Installing extensions programmatically on FF3.6
> Howdy, Neil.
>
> Thank you for your e-mail.
>
> I always used that switch, so I am not aware of other methods. Could you
> please kindly provide me a couple of pointers to documentation about them?
>
> I found https://developer.mozilla.org/en/Installing_extensions where is
> said that an extension can be ins
|
3/5/2010 11:45:10 AM
|
1
|
"Oliveiros" <oliveiros.crist...@marktest.pt>
|
Firefox Extension in C++ possible?
Is it possible to do a Firefox extension in C++ (dll) or does it have
to be done in Javascript?
|
3/5/2010 1:30:14 AM
|
2
|
tomwg123 <tomwg...@gmail.com>
|
Adding a column to urlbar's autocomplete popup
Hi Again -
This group was helpful before, so I figured I'd send this one your way
as well :)
I see in "chrome://global/content/bindings/
autocomplete.xml#autocomplete-result-popup" that there is a method for
adding a column to the urlbar's popup (called "addColumn", of
course). I'm intrigued by this, and would like to know how to
implement it - but can't really find much about it.
I see (in the same file) that the image and comment columns are added
using this method, but that implementation doesn't explain a few
things:
1) Position of the column relative to the others
2)
|
3/4/2010 7:30:21 PM
|
0
|
craigpierce <craigpie...@gmail.com>
|
openDialog screen location
Hi All,
I have a Firefox extension where I have to open a modal dialog that needs to
be positioned in a particular position within the current web page. The
dialog is about 50 pixels in height; but I need to position it on the top
left corner of the browser document and it has to be the width of the
current document. I am having trouble positioning the dialog to that
particlar location. Does anybody know a way to get this to happen? I have
done this with regular windows; but it seems that there is another couple
steps with a modal dialog that I am not aware of.
Thanks,
To
|
3/4/2010 6:15:07 PM
|
1
|
"Tom" <...@gigasoftdevelopment.com>
|
Installing extensions programmatically on FF3.6
Dear List,
To install an extension programmatically I used to have firefox run with =
-install-global-extension switch plus the path to the .xpi file.
It doesn't seem to be working on FireFox 3.6
Doesn't it work this way no longer?
Actually, I've googled with -install-global-extension and couldn't find =
no references to it.
Could you please kindly help me on this?
Many Thanks in advance
Best,
Oliveiros d'Azevedo Cristina
|
3/4/2010 5:26:21 PM
|
1
|
"Oliveiros" <oliveiros.crist...@marktest.pt>
|
how to know user have opend window for firefox?
hi all,
how to know user have open a window?
i want to active firstUse function when user open window first time ,but
it's won't invoke firstUse function when user open the second window
without close the first one window .
it's my code :
var popup = {
count: 0,
firstUse: function() {
alert("running this function");
},
open: function() {
this.count++;
if (typeof(this.firstUse) == "function") {
this.firstUse();
this.firstUse = null; // destroy method
}
alert("this is y
|
3/4/2010 1:29:33 PM
|
1
|
"george.tovrea" <george.tov...@gmail.com>
|
problem with addeventlistener in thunderbird
hi
i'm using the function
<script >
window.addEventListener("unload", autoExportOnClose, false);
</script>
in my xul overlay for thunderbird to start my automatic export from
lightning.
but it doesn't work with failure...
Fehler: [Exception... "'[JavaScript Error: "autoExportPrefs is not
defined" {file: "chrome://autoexport/content/autoExport.js" line:
116}]' when calling method:
[calIOperationListener::onOperationComplete]" nsresult: "0x80570021
(NS_ERROR_XPC_JAVASCRIPT_ERROR_WITH_DETAILS)" location: "JS frame ::
file:///D:/11%20AppData/Thunderbird/Steffen/extensions/
|
3/3/2010 4:51:33 PM
|
0
|
Steff <st...@sunbird-kalender.de>
|
window.onload
Hi all,
Can I using "window.onload " in firefox extension ?
Cheers,
George
|
3/3/2010 3:30:34 PM
|
2
|
"george.tovrea" <george.tov...@gmail.com>
|
How to add help button into extension's preference window?
Hi there,
how can I add help button into prefwindow? I have found "http://
groups.google.com/group/mozilla.dev.extensions/browse_thread/thread/
91146e31b7978ab0/c96877fae1045894", but it doesn't work for me.
Regards,
Zbynek
|
3/3/2010 3:06:47 PM
|
0
|
zmichl <zbynek.mi...@nic.cz>
|
java.lang.NullPointerException
Hi all ,
What's meant about the error msg
"Error : uncaught exception: java.lang.NullPointerException"
Any help will be appreciated !
Best regards,
Galuschka
|
3/3/2010 6:17:20 AM
|
2
|
"galuschka" <galuschka.christ...@gmail.com>
|
XML filter is applied to non-XML value function import() {[native code]}
Hi all ,
I have a error :
XML filter is applied to non-XML value function import() {[native code]}
The error line is
" Components.utils.import.('resource://jsModule/XPCOMUtils.js');"
Anybody knows what's happening !!
Cheers,
Galuschka
|
3/3/2010 3:55:36 AM
|
1
|
"george.tovrea" <george.tov...@gmail.com>
|
How does the URL Bar know to navigate or search?
Hi All -
So I'm new to extensions development, and I built the Foobar Firefox
extension. Short descriptor: it integrates the search bar into the
url bar.
One hurdle I can't seem to jump is that of knowing whether the string
in the url bar is a search string or something that requires
navigation (url, IP, local/network resource, etc).
The normal Firefox url bar seems to know the difference between URLs,
IPs, network machine names, my localhost, file:, chrome:, etc. How?
Can someone please point me in the right direction? The path to a
Firefox file (like browser.jar/content/br
|
3/2/2010 11:09:20 PM
|
2
|
craigpierce <craigpie...@gmail.com>
|
How to signature the update.rdf
My plugin should update from custom server, for example, while from my
localhost, I'm use next code in plugin install.rdf
<em:updateURL>http://localhost/update.rdf</em:updateURL>
<em:updateKey>MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDK426erD/
H3XtsjvaB5+PJqbhj
Zc9EDI5OCJS8R3FIObJ9ZHJK1TXeaE7JWqt9WUmBWTEFvwS+FI9vWu8058N9CHhD
NyeP6i4LuUYjTURnn7Yw/IgzyIJ2oKsYa32RuxAyteqAWqPT/J63wBixIeCxmysf
awB/zH4KaPiY3vnrzQIDAQAB</em:updateKey>
Next, fill out the 2 fields in the update.rdf placed on the server:
em:updateHash
Should be something like this
"sha1:78fc1d2887eda35b4ad2e3a0b60120ca27
|
3/1/2010 9:33:00 AM
|
5
|
Roman Pshenichny <4elove4e...@gmail.com>
|
Determine what initiated the onLocationChange()
I am trying to figure out a way to determine whether the change of the
location of a tab document is triggered by javascript found in one of
the (sub)documents of that tab or is it caused by the user clicking a
bookmark on the toolbar or manually entering the URL into the
addressbar or something similar.
Right now i'm looking into https://developer.mozilla.org/En/Listening_to_events_on_all_tabs
but i can't figure out a way to differentiate between the causes of
the change of location.
Is it possible somehow?
|
2/28/2010 3:56:38 PM
|
0
|
Jeff <hardi.per...@gmail.com>
|
How to change text within mouse selection?
Dear newsgroup,
I am dealing with little problem. I want this feature in my extension:
when user selects text with mouse, I want to change some of words in
that selection.
First I've come with this solution:
var odst = selObj.toString(); // get selection's text
var range = selObj.getRangeAt(0); // get range
range.deleteContents(); // delete range
odst = convert_paragraph(odst); // replace some words
// create new node
var newNode = document.createTextNode(odst);
range.insertNode(newNode); // add to the old place
but this didn't work well (broke new lines and format
|
2/27/2010 4:36:33 PM
|
1
|
MyOwnClone <tomas.vyma...@gmail.com>
|
thnderbird addon and parsing the email message to replace the headers
hello,
I want to replace some headers fields in the email message received in
the inbox. is there any javascript MIME parser to achieve this. or if
there is any other technique then let me know.
Regards
Hrishikesh
|
2/27/2010 10:34:50 AM
|
0
|
Hrishikesh <kalehri...@gmail.com>
|
Track the URL
I am writing a firefox extension and one of its jobs is to track URLS
requested by the user.How to do this?wats the event handler to be
invoked to track each time the user visitsa a new page?
|
2/26/2010 5:59:35 AM
|
1
|
raga <ragavende...@gmail.com>
|
Missing image on personalize window
Hi!
I have a question, I'm developing an extension, the problem I found is
when I go to personaliz window and drag the button to it window, the
image disapear and only shows the text of the button.
The chrome.manifest is this:
overlay chrome://browser/content/browser.xul chrome://xxx/content/xxx-overlay.xul
content xxx chrome/content/
style chrome://global/content/customizeToolbar.xul chrome://xxx/skin/xxx-overlay.css
skin xxx classic/1.0 chrome/skin/classic/
locale xxx en-US chrome/locale/en-US/
locale xxx es-AR chrome/locale/es-AR/
locale xxx de-DE chrome/locale/de-DE/
lo
|
2/25/2010 3:30:48 PM
|
0
|
Agus <aar...@gmail.com>
|
add new function in javascript
Hello to every one!
I want to call my java code through javascript and these code as follows :
// We are in the global Firefox script scope, so only use our own unique
global names; best to have at most one
// global in the global namespace
var java_demo = {
LiveConnect : {},
onMenuItemCommand : function () {
Components.utils['import']('resource://javaDemo/LiveConnectUtils.js',
this.LiveConnect);
var jars = ['URLSetPolicy.jar', 'Test.jar','ServerTest.jar'];
var [loader,urls] = this.LiveConnect.initWithPrivs(java,
'jav
|
2/25/2010 2:14:50 PM
|
0
|
"george.tovrea" <george.tov...@gmail.com>
|
Fail to compile "WebLock": relocation R_X86_64_PC32 against `NS_GetServiceManager' can not be used when making a shared object; recompile with -fPIC
I need to compile WebLock (https://developer.mozilla.org/en/
Creating_XPCOM_Components%3aStarting_WebLock) agaist xulrunner. I have
already built xulrunner in success, while when I compile WebLock
agaist it, I get the following error:
-------
relocation R_X86_64_PC32 against `NS_GetServiceManager' can not be
used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
-------
The following part describe the platform I used, the xulrunner I used
and so on. It's
an instruction for you to get the same environment and built it with
the same confi
|
2/25/2010 8:52:05 AM
|
1
|
606PE <tiger.pub...@gmail.com>
|
Fial to compile "WebLock" (XPCOM component example): relocation R_X86_64_PC32 against `NS_GetServiceManager' can not be used when making a shared object; recompile with -fPIC
I need to compile WebLock (https://developer.mozilla.org/en/
Creating_XPCOM_Components%3aStarting_WebLock) agaist xulrunner. I have
already built xulrunner in success, while when I compile WebLock
agaist it, I get the following error:
-------
relocation R_X86_64_PC32 against `NS_GetServiceManager' can not be
used when making a shared object; recompile with -fPIC
/usr/bin/ld: final link failed: Bad value
-------
The following part describe the platform I used, the xulrunner I used
and so on. It's
an instruction for you to get the same environment and built it with
the same confi
|
2/25/2010 8:49:02 AM
|
0
|
606PE <tiger.pub...@gmail.com>
|
Can XUL overlays replace non-empty elements?
I am working on a Thunderbird 3.0.* extension that changes the message
header input system in the compose window. My new header editor is
totally different from the normal one. I thus need to either replace
the default header editor with my new one or remove the default editor
and insert my new one.
Is it possible to replace or remove non-empty elements with a XUL
overlay?
If not, it there some other way I should be going about this? I know
about chrome overrides, but I'd like to avoid that method if at all
possible as it's a maintenance nightmare.
|
2/25/2010 3:13:45 AM
|
0
|
Sam Hanes <ava...@gmail.com>
|
Overlays: insert box around existing element / clone browser element
Hi anybody,
I have a problem I can not resolve by my own but I need a solution.
I am writing a thunderbird (version 2.0.0.23) add-on and for that I
would like to have a box on the right-hand side of the browser element
which is been used for displaying the content of the mail.
Have a look at the thunderbird document tree:
http://img713.imageshack.us/img713/2459/messagepaned.png
So I would like to have a hbox around the vbox (id=messagepanebox)
the browser element is contained in but there is none ... that means I
would need to insert a hbox around a existing element. In the XUL
|
2/24/2010 9:05:09 PM
|
0
|
heynest <stephanheyne-...@yahoo.de>
|
Sidebar Toolbars
I am interested in making an extension that integrates toolbars into a
sidebar. Is this available?
|
2/24/2010 5:46:42 PM
|
0
|
jamvaru <jamv...@gmail.com>
|
Performance Issues with firefox 3.6 by using my extension
Hi,
Anybody is testing your own extension with Firefox 3.6 ? Anyone is getting
performance issues? In particular I'm getting lot's of lock during its
usage. Also sometimes without any extension it seems to became locked some
times. Any important changes in Firefox3.6 that can causes this ? Any help
would be welcome. I'm using firefox 3.6 in ubuntu 10.04.
Thanks.
--=20
Felipe Frechiani de Oliveira
Vit=F3ria - ES
|
2/24/2010 1:09:53 PM
|
0
|
Felipe Frechiani <felip...@gmail.com>
|
Find updates for extension
--_004_6AB151AD074C18409E0CA3CD8D43123027865C1040EXVMBX01712ex_
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: base64
RmlyZWZveCBwZXJpb2RpY2FsbHkgY2hlY2tzIGZvciB1cGRhdGVzIGZvciBpbnN0YWxsZWQgZXh0
ZW5zaW9ucy4NClRoZXJlIGlzIOKAnEZpbmQgdXBkYXRlc+KAnSBidXR0b24gaW4gYWRkLW9ucyBk
aWFsb2cuDQpFYWNoIGV4dGVuc2lvbiBoYXMgb25seSBvbmUgdXBkYXRlVVJMIHdoaWNoIGlzIHF1
ZXJpZWQgYnkgdGhlIGJyb3dzZXIuDQoNCkhvdyBjYW4gSSBkaXN0aW5ndWlzaCBpbiB0aGUgc2Vy
dmVyIHNpZGUgYmV0d2VlbiBwZXJpb2RpY2FsbHkgcmVxdWVzdCBvciBieSB1c2VyIGRlbWFuZD8g
KEnigJltIHVzaW5nIHNlcnZlciBzaWRlIGxvZ2ljcyB0byBidWlsZCBkeW5hbWljI
|
2/24/2010 1:00:57 PM
|
0
|
Ilia Fainshtroy <I...@conduit.com>
|
where should I get started?
hi, all
I want to build an extension which help user to extract
information in a web page. User may select a td and mark it as author
of the article and click on span and mark it as title... After "teach"
it, my extension can "learn" some pattern and extract information from
similar web page. To achieve this, I need to know how to capture mouse
event, like inspect element in firebug. That is I need to know which
element is clicked by mouse. Also I need to get postion information
such as left top width of element which help me analyze the web page.
firebug and dom inspector are sim
|
2/24/2010 12:25:29 PM
|
0
|
fancyerii <fancye...@gmail.com>
|
send values to firefox extension from web pages
hi,
how can I send some argument to my firefox extension from another pc without
firewall ?
any idea ?
Any help will be appreciated !!
cheers,
Galuschka
|
2/24/2010 11:19:20 AM
|
0
|
"galuschka" <galuschka.christ...@gmail.com>
|
Getting HTML contents of active window messes up address bar?
Hi all,
I'm developing an extension. It places a button on the toolbar, and when
this button is clicked, the content of the active window (ie the tab which
has focus) is parsed.
That part works fine, but the address shown in the URL bar becomes
'stuck': when I switch to another tab, the URL from that previous tab
shows in the address bar. If I switch to another tab, it still shows the
URL from the tab I was in when I clicked the button in my toolbar.
Similarly, if I open a new tab, the URL shows in the address bar. The
contents of the tabs is fine, just the URL in the address bar
|
2/24/2010 10:13:50 AM
|
0
|
"Peter Smith" <p...@linuxbox.co.uk>
|
Browser transparancy
--_004_6AB151AD074C18409E0CA3CD8D43123027864DE879EXVMBX01712ex_
Content-Type: text/plain; charset="utf-8"
Content-Transfer-Encoding: base64
V2hlbiBJIGNyZWF0ZSBhIDxicm93c2VyPiBlbGVtZW50IGFuZCBwdXQgaXQgb24gYSB0b29sYmFy
LCBpZiB0aGUgYnJvd3NlcuKAmXMg4oCcdHlwZeKAnSBhdHRyaWJ1dGUgaXMgZW1wdHksIHRoZSBi
cm93c2VyIGNhbiBiZSB0cmFuc3BhcmVudCAoaWYgY29udGFpbmluZyBIVE1MIGlzKSDigJMgYnV0
IHRoZW4gdGhlIEhUTUwgaGFzIGFjY2VzcyB0byB0aGUgY2hyb21lV2luZG93LiBJZiBJIHNldCB0
aGUgdHlwZSBhdHRyaWJ1dGUgdG8g4oCcY29udGVudOKAnSBvciDigJxjb250ZW50LXByaW1hcnni
gJ0gKGluIG9yZGVyIHRvIHByZXZlbnQgdGhlIEhUTUwgYWNjZXNzaW5nIHRoZSBja
|
2/23/2010 4:42:18 PM
|
0
|
Ilia Fainshtroy <I...@conduit.com>
|
Overwriting native functions for documents
for example, window.alert() is easly overwritable.
however, window.location.reload() can't be overwritten.
if you do window.location.reload = function(){ } from chrome or the
document itself, it has no effect. calling the function still reloads
the page
how is this "read-only" state of the function achieved?
how can it be broken? the aim is to disable this function, so that
calling it from the document has no effect.
|
2/23/2010 2:22:02 PM
|
0
|
Jeff <hardi.per...@gmail.com>
|
Altering javascript before execution
Hello!
I want to intercept javascript on a site and replace a couple of lines
in it before it's execution. I using for this a code that I found in
extension Pirate Questing (it is listed below this post). But this
code works a bit of strange: it works and replaces required lines in
javascript file if I opened it in browser (for example, if I opened an
URL http://www.example.com/example.js), but it doesn't works on the
same javascript file if I opened a web page where this javascript has
been included using tag <script type="text/javascript" src="http://
www.example.com/example.js"></s
|
2/22/2010 8:16:55 PM
|
0
|
CountZero <countzero1...@gmail.com>
|
Listening to document variable changes and possibly blocking them.
Is there a way to watch variable assignments from chrome code?
I tried https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Object/watch
win.watch("location", function(a, b, c){}) and all possible
variations, but none of these watches seemed to ever fire. i attached
the watches from chrome code before the location was changed.
It is said on that page that JS debugger possesses similar
functionality and refers one to the Venkman manual. i don't see
anything related to that functionality in the jsdIDebuggerService IDL
code.
Am i missing something? Is there a w
|
2/22/2010 5:53:24 PM
|
0
|
Jeff <hardi.per...@gmail.com>
|
Menus, css, and Mac OS X
I am adding an option to my extension to remove "Subscribe to this page"
menuitems from the Bookmarks Menu to work around a bug that occurs when
using the extension with Firefox 3.6 (and prior; no longer occurs in 3.7).
'Anonymosity' at http://forums.mozillazine.org/viewtopic.php?f=38&t=882355
seems to indicate that this does not work on Mac OS. Does that still apply,
and would it apply to a css file loaded by an extension or only to css
loaded by userChrome.css?
Stylesheet gets loaded by chrome.manifest:
style chrome://browser/content/browser.xul
chrome://stayopenmenu/content
|
2/22/2010 5:00:55 PM
|
0
|
"custom.firefox.lady" <pleasere...@NG.invalid>
|
Understanding PC, lineToPc, pcToLine and isLineExecutable (jsdIDebuggerService)
I attached a onScriptCreated hook to the debugger service to listen to
scripts being compiled.
I use this code to dump it to the console: http://pastebin.mozilla.org/704042
I tested it on this HTML:
http://pastebin.mozilla.org/704043
And the result looks like this:
http://pastebin.mozilla.org/704041
Why does the pretty printed source (script.functionSource) duplicate
the function declaration of q()?
Why, when function b() is compiled, does the output say that the 1st
executable line is the 3rd line, whereas if you look at the pretty
printed source of function b(), the 2nd li
|
2/21/2010 6:14:03 PM
|
0
|
Jeff <hardi.per...@gmail.com>
|
canvas drawWindow, security and HTML
I've been toying with canvas drawWindow.
drawWindow is not available to unsecured code... but I wanted to
explore that. I wrote the following code:
<html>
<head>
<style>
#nic {
display: none;
}
</style>
<script >
function render() {
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
var n = document.getElementById("nic").contentWindow;
var c = document.getElementById("main");
var ctx = c.getContext("2d");
ctx.drawWindow(n, 0, 0, 300, 300, "rgb(255.255.255)");
}
</script>
</head>
<body>
<h1>HELLO!</
|
2/21/2010 1:46:54 AM
|
0
|
nic <ferrier...@googlemail.com>
|
jar files
A (hopefully simple) Question - I have some background images that I am
attaching at runtime via javascript and a rule, like this:
col = 1 .. 20
if (nTabStyle==0)
sColFolder="striped";
else
sColFolder="cols";
QuickFolders.Styles.setElementStyle(ss, '.toolbar-flat
toolbarbutton[label*="' + folderLabel + '"]','background-image',
'url("' + sColFolder + '/tabcol-' + col + '.png")',true);
The user has a choice of 20 colors and 2 styles which are represented by
the folders striped & cols and 20 contained png files each.
To cut down on file handles/ fragmentation I would li
|
2/20/2010 11:06:13 PM
|
0
|
Axel Grude <axel.gr...@gmaiI.com>
|
marvendas@gmail.com Kit completo de Solenoides ( solenoid ) + chicote Para Cambio automatico 01M hidramatico Audi A3 Vw Golf gti turbo 28792
Contato: marvendas@gmail.com
marvendas @ gmail.com
marvendas no gmail.com
Kit completo de solenoides para Volkswagem e Audi.
O kit contem:
5 solenoides
2 Epc ( solenoides de pressao )
1 Chicote
Serve para qualquer modelo VW ou Audi fabricados de 1995 ate hoje com o cambio automatico de 4 marchas � 01M
Pre�o: R$ 1900.00
Temos outras tipos de solenoides e artigos importados, nao deixe de fazer uma consulta antes de comprar!
Audi a3 automatico
Audi a3 1.8 t automatico
Audi a3 1.8 turbo automatico
VW Golf gti automatico
VW Golf 2.0 automatico
VW Golf 1.8 turbo auto
|
2/20/2010 4:04:01 PM
|
0
|
kit solenoites audi solenoid.chicote<kit.solenoites.a...@solenoid.chicote.com>
|
Difference between TYPE_TOPLEVEL_START and TYPE_FUNCTION_CALL in jsdICallHook
I am not sure about what's the difference.
I did some testing and it seems TOPLEVEL is only fired when the
scripts in a document (external JS file or a JS written directly to a
document's HTML) is first evaluated.
The FUNCTION_CALL is fired when a function is called. That seems
intuitive.
if all the JS would be wrapped in a master function, say, main(), then
the TOPLEVEL would account for a call to that function?
|
2/20/2010 12:26:43 PM
|
0
|
Jeff <hardi.per...@gmail.com>
|
loadURI
If i have an extension that is opening a webpage using loadURI()
var wm =
Components.classes['@mozilla.org/appshell/window-mediator;1'].getService(Components.interfaces.nsIWindowMediator);
var content =
wm.getMostRecentWindow("navigator:browser").document.getElementById('content');
content.loadURI(url);
Will that uri be loaded into the chrome privileged scope or will it be
as secure as a person opening a tab on their own and going to the same url?
|
2/19/2010 11:00:35 PM
|
0
|
Brenden <fivehe...@gmail.com>
|
Names of components in Firefox GUI
I'm new to Firefox extension development. I want to add button in
toolbar as well as menu items in Firefox menus. Where can I get the
names of components in Firefox?
For example, Tools menu in Firefox has name "menu_ToolsPopup"
Where can I get a list of all such names for menus, toolbars, status
bar etc.?
|
2/19/2010 10:32:48 AM
|
0
|
Abhijeet Pathak <pathak....@gmail.com>
|
Java exception using robot in firefox extension
Hi,
I got a problem with my first firefox extension - based on code of
screengrab extension I
tried to make an extension for making screenshots of flash games.
Let's say, user has a button which can start and pause making of
screenshots. Everything works fine, until java throws exception:
"java.lang.reflect.InvocationTargetException" - after that, no matter
what I do, I can't get my extension to work again. I have to restart
firefox to make screenshots again.
From what I discovered, java memory usage goes up while extension
beign used, until java uses around 256 MB or ram - and the
|
2/19/2010 9:46:57 AM
|
0
|
Marcin w <wutek...@gmail.com>
|
where can i find simple example of Mozilla plug-in that mimic firebug element inspection function
Hello all
im interested to learn how does firebug implement the "element
inspection function" i do not have experience in firefox development
but i am experience developer . im trying to avoid divining into
firebug source code . because im need only in this function . what
will be the fastest way to learn how to do this ?
|
2/19/2010 8:20:44 AM
|
0
|
umen <meiry...@gmail.com>
|
Accessing firefox toolbars, menubar, title bar
Hi,
I am developing an XPCOM component in C++. I want to access firefox
toolbars, menubar, title bar from C++ code. I can get pointer to
nsIWebBrowser but it is associated with firefox client area (as I
read
on Mozilla). So how can I get access to these elements.
In fact I have developed a firefox extension in which I have added a
toolbarbutton. I want to access this toolbarbutton in my C++
component
code. This toolbarbutton is written in XUL. So the question is how to
access XUL elements from C++? Which interfaces should be implemented?
I am quite confused. Please help me out.
Tha
|
2/19/2010 6:56:01 AM
|
0
|
veeru <abhaykumar....@gmail.com>
|
Objective C plugin sample?
I know that this is the extensions list, but I don't see a general Add-
ons list or a Plugins list... If someone could point me in that
direction, that would be helpful as well...
I'm trying to re-write an old image-viewing plugin for the mac. The
old version uses QuickDraw (I said it was old) and resources (really
really old) and so it doesn't work in Firefox 3.6 (which is why I'm re-
writing it)
I know some Objective C, and so I figure I'm going co re-write this in
that using new-fangled Mac routines and nibs, etc. However, I don't
know how to start. I've got the BasicPlugin exa
|
2/18/2010 8:05:42 PM
|
0
|
"bpos...@gmail.com" <bpos...@gmail.com>
|
detect html elements that are created runtime Options
hi ,
I want to detect the html elements which are inserted into DOM tree
using javascript. is it possible to find such elements from firefox
extension? I tried
https://developer.mozilla.org/en/Creating_Sandboxed_HTTP_Connections
but i think it doesn;t serve any purpose in this case.
Regards
Hrishikesh
|
2/18/2010 7:02:05 PM
|
0
|
Hrishikesh <kalehri...@gmail.com>
|
How to block HTTP requests if they require authentication (401)
I tried listening to the http-on-examine-response and then calling
nsIRequest::cancel and ::suspend, but neither worked the way i wanted.
The problem is that those requests force the opening of the user/pass
prompt. I want to cancel that chain of 401 -> prompt -> new request -
before the prompt is created.
Thus i need to cancel the HTTP request as soon as some data comes from
the server indicating that they want authentication (error code 401).
http-on-examine-response seems too late. Is there another way i could
do it?
|
2/18/2010 4:44:38 PM
|
0
|
Jeff <hardi.per...@gmail.com>
|
Setting label of prefpane dynamically?
Hi all,
I'm creating a <prefwindow> which sets the label attribute of its
<prefpane>s using JavaScript after the page is fully loaded.
But however, it seems that this doesn't work, the labels in the
toolbar stays the same as they ware assigned using XUL.
Any suggestions on how to work around it?
Thanks,
Ryan Li
|
2/18/2010 11:59:44 AM
|
0
|
Ryan Li <r...@ryanium.com>
|
Smar Card and Firefox Extension
I have been trying to provide communication between a smart card
reader and an extension,is it possible?I will be so glad if anybody
gives me some advices.
|
2/18/2010 11:28:37 AM
|
0
|
=?ISO-8859-1?Q?OR=C7UN?= <orcunkucukk...@gmail.com>
|
client-server communication - really struggling
Hi,
I am really struggling to get this sorted out. This is my first addon
(except few hello worlds). All I need is to have data going back and
forth between an extension and the server (secure frontpage
server, .NET web app) both of which I will be developing. I have been
googling from weeks and posted few times but could not get anything
working. I would REALLY appreciate if someone can throw some light.
Thanks,
Hiren
|
2/17/2010 7:45:47 PM
|
0
|
Hirenada <hiren.ades...@gmail.com>
|
jsdIDebuggerService onScriptCreated hook not firing for scripts in tab documents
i can see a lot of scripts from chrome:// being compiled in the hook,
but for some reason, scripts compiled in the documents that users
browse on the web do not go through the hook.
i can see them being executed in the onCall hook. they are scripts
like all others - each has a unique tag associated with them etc.
interrupt and execution hooks fire for those scripts, the
onScriptCreated doesnt, for some reason.
any idea what could be wrong? are there any flags i might have
incorrectly configured that could cause this?
|
2/17/2010 1:53:19 PM
|
0
|
Jeff <hardi.per...@gmail.com>
|
Controls do not appear in sidebar
Hi,
I'm writing a sidebar, and it appears and hides well. However, when I
add controls (such as the OK1 button in the code below) , they appear
outside the
sidebar, as part of the whole FF window.
Any ideas?
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="chrome://MySidebar/skin/overlay.css" type="text/
css"?>
<!DOCTYPE window SYSTEM "chrome://MySidebar/locale/MySidebar.dtd">
<window id="MySidebar-overlay"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/
there.is.only.xul">
onload="alert('onload');"
windowtype="MySi
|
1/19/2010 2:55:59 PM
|
0
|
"ismi_nomatter" <ismi_nomat...@hotmail.com>
|
Re: nsIXULAppInfo - Application Name Variations --- and versions also!??
[19.01.2010 05:56] �Philip Chee� wrote:
??? for what reason ever, my TB3 does show your answer .. I had to go
to
http://groups.google.com/group/mozilla.dev.extensions/browse_thread/thread/c04d712d5d5f9064
>:o
OK, that's very much what I'm doing with Reminderfox. Here is the code,
hope it helps the one or other:
Comments/ suggestions very much welcomed ;-)
G�nter
/**
* Checks for the messenger version (TB2, TB3, SM, PB)
* and sets the global parameters 'gRmFx_Messenger' and 'gRmFx_AB3'
*
* @return gRmFx_Messenger
*/
rmFxMsg.whichMessenger = function () {
// =
|
1/19/2010 10:49:04 AM
|
0
|
gNeandr <neandr...@SPAM_gmx_._de>
|
Debugging firefox extension using Venkman
It's my understanding that Venkman is able to debug extensions but
when I try to to to view my overlay.js script that is part of the
extensions , the interactive session window just displays
!! Error loading URL <chrome://browser/content/browser.xul ->
chrome://myExtension/content/overlay.js:[Exception... "Access to
restricted URI denied code: "1012 nsresult: "0x805303f4
(NS_ERROR_DOM_BAD_URI)" location: "chrome://venkman/content/venkman-
url-loader.js Line: 54"].
Why can't it access my script?
|
1/18/2010 9:58:55 PM
|
1
|
Don <theklepping...@yahoo.com>
|
nsIXULAppInfo - Application Name Variations
Hi I found a peculiarity with some Linux users their APplication name
was "Mozilla-Thunderbird". I have some code in my extension that
branches to different code versions depending on the App it runs in, I
am using this function
Application: function() {
if (null==this.mAppName) {
var appInfo = Components.classes["@mozilla.org/xre/app-info;1"]
.getService(Components.interfaces.nsIXULAppInfo);
this.mAppName=appInfo.name;
}
return this.mAppName;
}
and then compare the result to 'Thunderbird', 'SeaMonkey' and 'Postbox'
Is there a list of Application name
|
1/18/2010 4:43:00 PM
|
1
|
Axel Grude <axel.gr...@gmaiI.com>
|
importNode fails with NS_ERROR_UNEXPECTED
This does not seem to be https://bugzilla.mozilla.org/show_bug.cgi?id=460460
..
One of the documents (original source of the imported node) is created
through:
var parser = Cc["@mozilla.org/xmlextras/domparser;1"].createInstance
(Ci.nsIDOMParserJS);
parser.init(null, uri, uri);
var document = parser.parseFromStream(stream, channel.contentCharset,
stream.available(), "text/xml");
The other one through Cc["@mozilla.org/xml/xml-document;
1"].createInstance(Ci.nsIDOMDocument).implementation.createDocument
("", "root", null).
During addon initialization the node is imported flawless
|
1/18/2010 3:23:57 PM
|
0
|
Knuckles <knucks...@gmail.com>
|
Problem with prefwindow in TB3
Hello
I have a pref window opened from a button on Account Settings
\Copies&Folders
Here is the XUL of the prefwindow
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<!DOCTYPE prefwindow SYSTEM "chrome://messagearchiveoptions/locale/
prefwindow.dtd">
<prefwindow id="messagearchiveoptionsPreferences" xmlns="http://
www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
title="&prefwindow.title" style="height: 300px">
<prefpane id="pane1" label="&pane1.title;"
onpaneload="granularitySwitch();">
<preferences>
<preference id="pref_keepstructure"
name="ext
|
1/18/2010 3:23:16 PM
|
0
|
Christophe <c.scherm...@gmail.com>
|
disable X button
Hi all,
Is there a way to disable or to remove the X button in the upper-right
corner of a window or at least to intercect the closing of a window and
to stop it?
Thanks,
Andrea Turbati
--
-------------------------------------------------
Dott. Andrea Turbati
AI Research Group PhD student,
Dept. of Computer Science, Systems and Production
University of Roma, Tor Vergata
Via del Politecnico 1 00133 ROMA (ITALY)
tel: +39 06 7259 7332 (lab)
e_mail: turbati@info.uniroma2.it
home page: http://art.uniroma2.it/turbati/
--------------------------------------
|
1/18/2010 1:32:50 PM
|
0
|
Andrea Turbati <turb...@info.uniroma2.it>
|
Automatically upgrade mozilla extension
I can only upgrade my extension by selecting the 'find updates' button
on the add-ons page and then running the upgrade. On my server I have
my upgraded xpi file and update.rdf. Is it possible to have the
upgrade\installation perform automatically without any user
interaction.
In reading other posts, they seem to mention using the mozilla AMO
site, is this the only way to perform an automatic upgrade
installation.
Regards,
EM
|
1/18/2010 10:09:26 AM
|
0
|
enda man <emann...@gmail.com>
|
Access to Components.* from a Web Worker
What I'm trying to do: have a chrome: webpage create a web worker to offload
computationally intensive work from the main thread. This work involves
accessing XPCOM components (specifically, the places database).
What I did before (and worked): have the same work on the chrome: webpage itself.
My problem: when using the same code inside the worker, I get an error that
"Components is not defined".
The MDC page ( https://developer.mozilla.org/En/Using_web_workers ) suggests
that in an add-on, I need to be careful because I could access a lot more
components and interfaces, whi
|
1/16/2010 10:37:13 AM
|
0
|
Gijs Kruitbosch <gijskruitbo...@gmail.com>
|
Returning an array to javascript from C++ XPCOM
Hi All,
I have got an extension where I am instantiating a C++ XPCOM component and
calling it from javascript in Firefox 3.0 and above. The goal is that I want
to return an array of interfaces. Each interface contains a set of
properties (atrributes) that I need to access from javascript. It seems that
I am having problems with the return value (IDL out --- nsIArray) and I am
not able to access this properly. I have provided a simple example of what I
am trying to do. I am not sure I am creating the array properly and would
appreciate any advise. I tried enumeration and that a
|
1/16/2010 2:26:01 AM
|
0
|
"Tom" <news.mozilla.org>
|
Error loading custom javascript module from js XPCOM component
Hi all,
I have defined a simple javascript module (mymod.jsm):
var EXPORTED_SYMBOLS = ["foo"];
var foo = "bar";
and the chrome manifest has a resource entry:
resource mymodules modules/
The module is correctly placed in {addonroot}/modules/mymod.jsm and I
can enter resources://mymodules/mymod.jsm in the address bar and the
file will be loaded as expected. When the component is referenced in
non-component js code, it loads without error.
However, when I attempt to use the module in a XPCOM component:
Components.utils.import("resources://mymodules/mymod.jsm");
|
1/16/2010 2:11:01 AM
|
0
|
Gareth <garethrh...@googlemail.com>
|
arguments.callee -- supported??
My understanding the 'arguments.callee' has been marked as deprecated
since 1.4/1.5?
Using it with current MOZ code wouldn't throw an error.
I'm looking for how to get from within a JS function the information
about 'who is the caller'.
I was told that 'arguments.callee' could show/give it!??
Any advice? Or alternative ??
|
1/15/2010 6:41:54 PM
|
0
|
gNeandr <neandr...@SPAM_gmx_._de>
|
can't get browser.contentDocument
In a xulrunner application, I have a hidden browser defined like this:
<window id="main-window">
<!-- ###### PANEL OVERLAY ###### -->
<popupset id="glider-panel-popupset" />
<broadcasterset>
<broadcaster id="glider-panel-display" />
<broadcaster id="glider-date-display-yes" disabled="true" />
<broadcaster id="glider-date-display-no" disabled="true" />
</broadcasterset>
<browser id="glider-hidden-browser" collapsed="true" />
</window>
I am trying to load some HTML code into the browser, like this:
var browser = document.getElementById("glider-hid
|
1/15/2010 7:01:08 AM
|
0
|
"Susan Crayne" <susancra...@yahoo.com>
|
Connecting a listbox with preferences values
Hi
I try to define the preferences of a firefox extensions with a
listbox.
If I understand the doc correctly that should be possible without
having to add (build the listbox) or to store the values back in the
prefences with javascript.
I'm fiddling with
<code>
<prefpane label=3D"test">
<preferences>
<preference id=3D"fcb" name=3D"extensions.filteredclipboard.list"
type=3D"string"/>
</preferences>
<listbox id=3D"thelist" preference=3D"fcb">
<listhead>
<listheader label=3D"Label"/>
<listheader label=3D"Regex"/>
<listheader label=3D"Substitute"/>
|
1/14/2010 2:34:52 PM
|
1
|
=?ISO-8859-1?Q?Fran=E7ois_R?= <rapp...@gmail.com>
|
Release Notes after Extension Update?
Hi all,
As some extensions(I can't remember which) do, I want to open a tab for
the users to read the release notes after updating the extension.
I'm currently using version stored in prefs to detect whether a new
version is installed, and I use gBrowser in JavaScript to open a new tab.
However, gBrowser sometimes doesn't work.
I remember reading that there's a convenient way to do this, but I can't
find it.
Could you give some suggestions?
Regards,
Ryan Li
|
1/14/2010 10:13:53 AM
|
0
|
Ryan Li <r...@ryanium.com>
|
automatic updates at AMO
I'm trying to get automatic updates working for my extension hosted at
addons.mozilla.org:
https://addons.mozilla.org/en-US/firefox/addon/45777
It appears that the only thing I am supposed to do is leave out the
updateURL in install.rdf and use correct version strings:
https://developer.mozilla.org/en/Install_Manifests#updateURL
However that doesn't work for me. I tried installing an old version
and doing a manual update check. Firefox made a request to this URL:
https://versioncheck.addons.mozilla.org/update/VersionCheck.php?reqVersion=
=3D1&id=3Dgpxdown@geocaching.com&version=3D0.
|
1/14/2010 9:53:19 AM
|
4
|
"Marek 'MMx' Ludha" <mlu...@gmail.com>
|
Freeing result from calICalendarManager::GetCalendars
Hi there,
I'm currently trying to fix up the Funambol SyncML plugin for
Thunderbird. Some comments in the bugtracker where a crash of it was
reported [1] already proved extremly helpful!
There's one thing left: It was pointed out, that the result of
GetCalendars (from a calIcalendarManager) has to be freed manually.
I'm not sure how to do this.
calICalendar** calendars;
calManager->GetCalendars(&count,&calendars);
How can I free the calendars array? Are the calICalendars pointed to
reference counted? Is it suffient to just delete [] the array or do I
have to loop through it
|
1/13/2010 10:38:18 PM
|
1
|
dfoerster <da...@dfoerster.de>
|
Need help setting homepage and blocking plugin notifications for a kiosk extension
I have been developing a web kiosk extension for Firefox that suits
our lab environment. After studying the developer documentation and
other kiosk extensions I've been able to piece together a fairly solid
kiosk environment that is secure while still being an accessible web
browser. However, a few things just don't seem to work as desired and
I could use some help:
1) Homepage and Welcome Page:
I set "browser.startup.homepage" to our desired site via a JavaScript
function, which shows in about:config but it does not apply until the
browser has been restarted. Since the kiosk user p
|
1/13/2010 9:43:45 PM
|
4
|
Lizard <lizardwhos...@gmail.com>
|
rapidshare ecm2001 titanium crack torrent rapidshare download jW=>bv.y*q
We can crack or emulate any protection type: Dongle,
Hardlock, Hasp, Serial, Password, Hasp4, Flexlm, Sentinel,
Wibu, Eutron Smartkey, Hasphl, Proteq, All the Protections!!
email = yshowsoft@???
email = yshowsoft at gmail.com
ecm2001 titanium download
ecm2001 titanium rapidshare
titanium ecm2001 torrent
ecm2001 titanium crack
ecm2001 titanium v 5.3
titanium ecm2001 v 5.4
titanium ecm2001 v 5.5
titanium ecm2001 v 6.0
titanium ecm2001 v 6.1
ecm2001 v 6.2
ecm2001 v 6.3
ecm2001 v5.3
ecm2001 v5.4
ecm2001 v5.5
ecm2001 v6.0
ecm2001 v6.1
ecm2001 v6.2
ecm2001 v6.3
I
|
1/13/2010 9:32:39 PM
|
0
|
ecm2001 winols cpwin rapidshare torrent<ecm2001.win...@free-downloads.com>
|
Bug in selectFolder / ensureRowIsVisible found! :)
Hi fellow co-developers!
I have found a bug in Thunderbird's folderPane.js which affects only TB3!
When I try to select a folder that is a direct child of a collapsed
Smart Folder (such as Inbox, Sent, Drafts, Junk, Trash etc.) then the
toggle that ensures the folder is visible fails:
selectFolder: function ftv_selectFolder(aFolder) {
274 // "this" inside the nested function refers to the function...
275 // Also note that openIfNot is recursive.
B 276 let tree = this;
- 277 function openIfNot(aFolderToOpen) {
- 278 let index = tree.ge
|
1/12/2010 10:53:08 PM
|
1
|
Axel Grude <axel.gr...@gmaiI.com>
|
Wait for Venkman to load before running my extension
I want to test a non-trivial extension and it is imperative that I am
able to debug the tests when necessary. I have them running from the
command line by creating a dummy FF profile that has two extensions
installed 1) my extension under test and 2) venkman. I run the tests
via firefox -myextensionname -venkman (omitting the -venkman when I
want the tests to run without a debugger). The problem is that my
tests will start running and may contain errors way before venkman
even starts up.
Is there a way to make venkman load first, and then have my tests run?
Thanks in advance
|
1/12/2010 2:01:23 AM
|
2
|
Min Huang <reti...@gmail.com>
|
get access to to toolbar
Hi,
My extension contains one toolbar and one sidebar. I need to get access
to the toolbar in my javascript codes. Can anyone show me how to do that?
Thanks a lot!
Pengyu
|
1/11/2010 11:38:58 PM
|
0
|
hongpengyu <hongp...@brandeis.edu>
|
Creating preferences dynamically
Let's say I have a hypothetical extension that has a statusbarpanel
that shows a greeting that includes the name of the website the
browser is visiting, something like "Welcome to example.com". The
first part of the greeting is stored as a preference. Easy enough.
But now the user wants to have multiple greetings for different
websites: "Welcome to " is fine for most sites, but they want "Be
careful! It's " to appear when the visit evil.com, and "I work for "
to show up when they visit myjob.com. Is this possible to do within
the Mozilla prefs system? Specifically, to allow the us
|
1/11/2010 4:44:21 PM
|
3
|
Adam Bender <aben...@gmail.com>
|
how does downloadhelper work?
Dear Firefox Users,
I am wondering how Video DownloadHelper works:
https://addons.mozilla.org/en-US/firefox/addon/3006
How does it know that an mp3 is playing in the browser? How does it know
that I'm loading a youtube video? How does it know if a flash app (or maybe
even an html 5 app) is playing an mp3?
It would be most appreciated if someone could point me in the right
direction. What should I be looking up?
Thank you for your time.
-Sean
|
1/10/2010 11:12:47 AM
|
0
|
Sean Neilan <s...@seanneilan.com>
|
Image Zoom shortcuts
The Image Zoom keyboard shortcuts (Ctrl + /.,) stopped working. Why?
emf
--
It ain't THAT, babe! - A radical reinterpretation
https://files.nyu.edu/emf202/public/bd/itaintmebabe.html
|
1/10/2010 12:27:51 AM
|
1
|
Eustace <emf...@gmail.com>
|
Thunderbird 3 - tree column display/hide
Hi,
I'm trying to display and hide a custom column in the threadTree of
Thunderbird. With TB2 it worked as it did with the last beta and rc
builds of TB3. Using the TB3 final, the column is hidden all the time -
regardless of my manipulation of the hidden attribute of the treecol.
Whenever I'm adding some blocking code (alerts) in the line after the
removeAttribute('hidden') (or the setAttribute('hidden', 'false')), my
column is shown - but immediately after that, the column is hidden again.
I also tried to change the column id and manually examined the
localstore.rdf in order t
|
1/9/2010 8:06:19 PM
|
0
|
Florian Stoffel <fstof...@gmx.de>
|
Local file drag'n'drop onto a HTML element
Hello,
I'm trying to detect the event when a local file is dragged and
dropped onto a HTML element (textarea) inside a page in Firefox. I
need to obtain dropped file's full path.
I used the 'drop' handler with my extension @Firefox 3.5 but it's
impossible to obtain file name: event.dataTransfer.getData('text/
plain') returns an empty string for local files.
Then I have updated to 3.6 RC1 and ran the official example below. In
that case I am able to obtain short file name, file's content even but
not file's full path:
https://developer.mozilla.org/En/DragDrop/DataTransfer#Exam
|
1/9/2010 1:44:46 PM
|
0
|
Pavel Vlasov <zee...@gmail.com>
|
Theme on Vista (menulist ugly)
Hi All,
I have run into a rather ugly theme issue on Windows Vista (FF 3.0.17). I
have a toolbar with several input controls (multiple textbox's and one menu
list). The alignment and color combination look great on Windows XP; but the
menulist looks absolutely horrible on Windows Vista.
On Vista the alignment (height) of the menulist is bad and the color is gray
instead of white. This looks really ugly because the other controls (textbox
controls) are white and sized properly. The menulist on Vista just looks out
of place and ugly.
I notice that this is a common problem that I h
|
1/8/2010 4:41:53 PM
|
0
|
"Tom" <...@gigasoftdevelopment.com>
|
SeaMonkey : add bookmarks to parent folder?
Hi, I'm trying to add a bookmark to a parentFolder and I can't, also I
can't find documentation on this.
Any ideas?
Thanks
The code looks like:
parentFolder = BookmarksUtils.getNewBookmarkFolder();
var newFolder = gBookmarksService.createFolderInContainer('my new
folder', parentFolder, 0);
gBookmarksService.createBookmarkInContainer('the title..', 'http://
www.example.com/', null, '', 'UTF-8', null, newFolder , null);
|
1/8/2010 7:21:43 AM
|
0
|
"Roberto Bouzout (tito)" <tito.bouz...@gmail.com>
|
Use Weave in my extension
Hi,
I'm trying to integrate the Weave sync functionality in my extension, but I can figure out how my extension can rely on another extension that I have to extend. How can I be sure that the Weave extension is loaded before mine ? I have understood how I can use the API to hook my datastore, but I'm missing the glue part between my extension and Weave. Is there any code I can look at ?
Thanks
Didier
|
1/7/2010 8:07:08 PM
|
0
|
Didier Ernotte <did...@ernotte.com>
|
Mozilla Desktop Environment
I just read a discussion from a few years ago about making a Mozilla-
based desktop environment. With the focus going toward web
applications, I think that is pretty exciting. As we know, Google has
their Chrome OS, but I think Mozilla is a much better platform. That
is why this past month I have started on a prototype.
I have been able to make a semi-functioning taskbar, but that is about
it. I have come to the point where it's probably time for me to lay
out the plans in detail. The purpose of this post is to bounce some
ideas off some more experience people and motivate myself to
|
1/7/2010 7:41:20 PM
|
0
|
Timothy Mahoney <timboguyd...@gmail.com>
|
Do we need extension dependencies?
Ever since Firefox 2 we have vaguely supported a form of extension
dependency. That is marking an extension as requiring particular
versions of another extension.
The support is currently very limited and when a user tries to use an
add-on that depends on something they don't have they are pretty much
left in the cold. While we tell them it requires something we don't tell
that what it requires or give them any easy way to download and install it.
Given this poor implementation it is perhaps no surprise that very few
extensions make use of the feature (something like 50 liste
|
1/7/2010 6:50:28 PM
|
10
|
Dave Townsend <dtowns...@mozilla.com>
|
Double-checking that users will not be left behind come 3.6
Hello everyone,
I've been testing my company's addon with 3.6 for some time now and
have found that it works without problems. A little while ago I
updated the compatibility string on AMO to show 3.6. When Firefox 3.6
is released for the masses, and our addon shows on AMO as "compatible
with 3.6," users will not have to do anything else to continue using
it, correct? I am assuming that when Firefox "checks for
compatibility" (as it does with version upgrades) it will see this and
mark it as usable?
This is the first major version change I've been around for and my
forum post on M
|
1/7/2010 7:51:59 AM
|
0
|
Tom <tom.core...@gmail.com>
|
drag/drop using titlebar broken in FF 3.6.5
We have developed an extension called gliider, based on a popup. We have
created the ability to drag the popup by the tab, which is an invisible
titlebar XUL element. In version 3.5.6 (Mozilla/5.0 (Windows; U; Windows NT
6.0; en-US; rv:1.9.1.6) Gecko/20091201 Firefox/3.5.6 (.NET CLR 3.5.30729)),
the dragging works as expected. In Firefox 3.6b5, the popup follows the
mouse,
but when the mouse button is released, the popup jumps back to its original
location. I will attach an xpi, as well as a few specific files where the
relevant code is located. This also happens on Mac OS/X, w. v
|
1/6/2010 9:43:22 PM
|
0
|
"Susan Crayne" <susancra...@yahoo.com>
|
my first add-on: some generic and some specialized questions
hi, i am working on my first add-on: displaying the contact photo in
thunderbird 3 while reading an e-mail
(https://addons.mozilla.org/de/thunderbird/addon/58034). please have a
look at it (there is not much source code...) and try to help me ;-)
i'm new to xul and the mozilla platform, so my questions may have
obvious solutions. i have been working on this (and reading the xul
reference) for the past four days, now it is functional, but i'm not yet
satisfied with it.
1. the headers area is made of <vbox>es, so i have to put the image into
<hbox id="msgHeaderView">, which i
|
1/6/2010 8:13:12 PM
|
2
|
=?ISO-8859-15?Q?Samuel_M=FCller?= <samuel.muel...@leven.ch>
|