473,396 Members | 1,749 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

pyxpcom

hg
Hi,

Can one tell me what the status of this project is ?. I did google ...
but not much out there.

Regards,

hg
Nov 27 '06 #1
6 1464
hg wrote:
Hi,

Can one tell me what the status of this project is ?. I did google ...
but not much out there.
PyXPCOM source is in the main Mozilla CVS tree. It is being maintained by Mark
Hammond (the original developer of the extension). There isn't a lot of
activity on it, I think, because:
1. Mark did such a good job of implementing it the first time around that it
needs very little work :)
2. It is very high learning curve to get into playing with PyXPCOM because
there are no conveniently packaged builds of PyXPCOM for current (or any)
versions of Firefox or Mozilla.

Interestingly, Mark is currently working *full* support for Python in the
Mozilla code base, i.e. being able to use Python anywhere you can currently
use JavaScript (in <scripttags in XUL and HTML). Look for "nsdom" and
Python. Note that it is still very much in development phase, is only part of
the Mozilla trunk (I believe) -- hence only really applies to Firefox versions
well beyond FF2.

The pyxpcom mailing list is here:
http://listserv.activestate.com/mail...stinfo/pyxpcom

PyXPCOM is heavily used in Komodo
(<http://www.activestate.com/Products/Komodo/>, the IDE that I work on at
ActiveState).

Regarding #2 (from above): Mark started some discussion a while back about the
what it would take to provide builds of PyXPCOM. The answer is that it would
probably be very hard.
http://aspn.activestate.com/ASPN/Mai...yxpcom/3167613
Cheers,
Trent

--
Trent Mick
tr****@activestate.com
Nov 28 '06 #2
hg
Trent Mick wrote:
hg wrote:
>Hi,

Can one tell me what the status of this project is ?. I did google ...
but not much out there.

PyXPCOM source is in the main Mozilla CVS tree. It is being maintained
by Mark Hammond (the original developer of the extension). There isn't a
lot of activity on it, I think, because:
1. Mark did such a good job of implementing it the first time around
that it needs very little work :)
2. It is very high learning curve to get into playing with PyXPCOM
because there are no conveniently packaged builds of PyXPCOM for current
(or any) versions of Firefox or Mozilla.

Interestingly, Mark is currently working *full* support for Python in
the Mozilla code base, i.e. being able to use Python anywhere you can
currently use JavaScript (in <scripttags in XUL and HTML). Look for
"nsdom" and Python. Note that it is still very much in development
phase, is only part of the Mozilla trunk (I believe) -- hence only
really applies to Firefox versions well beyond FF2.

The pyxpcom mailing list is here:
http://listserv.activestate.com/mail...stinfo/pyxpcom

PyXPCOM is heavily used in Komodo
(<http://www.activestate.com/Products/Komodo/>, the IDE that I work on
at ActiveState).

Regarding #2 (from above): Mark started some discussion a while back
about the what it would take to provide builds of PyXPCOM. The answer
is that it would probably be very hard.
http://aspn.activestate.com/ASPN/Mai...yxpcom/3167613
Cheers,
Trent
Thanks,

My need is as follows: I have developed an activex component to access a
smart card on the client side / do some web site logon.

Are xpcom / pyxpcom advanced/stable enough for such an implementation
under Linux / Windows ?

Regards,

hg


Nov 28 '06 #3
My need is as follows: I have developed an activex component to access a
smart card on the client side / do some web site logon.

Are xpcom / pyxpcom advanced/stable enough for such an implementation
under Linux / Windows ?
You mean to provide the equivalent functionality for Firefox that your activex
component does for IE? Yes, xpcom and pyxpcom are quite stable, however
putting together a Firefox extension that gets PyXPCOM itself up and running
in a client's Firefox install will be quite challenging.

Trent

--
Trent Mick
tr****@activestate.com
Nov 28 '06 #4
hg
Trent Mick wrote:
>My need is as follows: I have developed an activex component to access a
smart card on the client side / do some web site logon.

Are xpcom / pyxpcom advanced/stable enough for such an implementation
under Linux / Windows ?

You mean to provide the equivalent functionality for Firefox that your
activex component does for IE? Yes, xpcom and pyxpcom are quite stable,
however putting together a Firefox extension that gets PyXPCOM itself up
and running in a client's Firefox install will be quite challenging.

Trent
Exactly ... are you saying I need to distribute Firefox compiled
differently in order to achieve that ?

This is less a python issue clearly if that is the case: would I have
the same issues to resolve if I were to write the module in C++ ?

Thanks,

hg
Nov 29 '06 #5
hg wrote:
Trent Mick wrote:
>>My need is as follows: I have developed an activex component to access a
smart card on the client side / do some web site logon.

Are xpcom / pyxpcom advanced/stable enough for such an implementation
under Linux / Windows ?
You mean to provide the equivalent functionality for Firefox that your
activex component does for IE? Yes, xpcom and pyxpcom are quite stable,
however putting together a Firefox extension that gets PyXPCOM itself up
and running in a client's Firefox install will be quite challenging.

Trent
Exactly ... are you saying I need to distribute Firefox compiled
differently in order to achieve that ?
No. But you'll have to get comfortable building your own Firefox and then
building the PyXPCOM extension and then packaging the built PyXPCOM bits that
a normal Firefox install does not have already into a Firefox extension. This
would also mean packaging up parts of a Python build and possible needing to
have a custom Python build to (1) get shared library loading to work correct
and (2) ensure there isn't crosstalk between the python that PyXPCOM uses and
possibly other Python installations on the target machine.
This is less a python issue clearly if that is the case: would I have
the same issues to resolve if I were to write the module in C++ ?
A little, yes: I believe you'd need a Firefox build in a development tree to
build a vanilla C++ XPCOM component. However, I am not sure of that.

Mostly, no: You wouldn't need to worry about all the PyXPCOM/Python
build/install issues.
Trent

--
Trent Mick
tr****@activestate.com
Nov 29 '06 #6
hg
Trent Mick wrote:
hg wrote:
>Trent Mick wrote:
>>>My need is as follows: I have developed an activex component to
access a
smart card on the client side / do some web site logon.

Are xpcom / pyxpcom advanced/stable enough for such an implementation
under Linux / Windows ?
You mean to provide the equivalent functionality for Firefox that your
activex component does for IE? Yes, xpcom and pyxpcom are quite stable,
however putting together a Firefox extension that gets PyXPCOM itself up
and running in a client's Firefox install will be quite challenging.

Trent
Exactly ... are you saying I need to distribute Firefox compiled
differently in order to achieve that ?

No. But you'll have to get comfortable building your own Firefox and
then building the PyXPCOM extension and then packaging the built PyXPCOM
bits that a normal Firefox install does not have already into a Firefox
extension. This would also mean packaging up parts of a Python build and
possible needing to have a custom Python build to (1) get shared library
loading to work correct and (2) ensure there isn't crosstalk between the
python that PyXPCOM uses and possibly other Python installations on the
target machine.
>This is less a python issue clearly if that is the case: would I have
the same issues to resolve if I were to write the module in C++ ?

A little, yes: I believe you'd need a Firefox build in a development
tree to build a vanilla C++ XPCOM component. However, I am not sure of
that.

Mostly, no: You wouldn't need to worry about all the PyXPCOM/Python
build/install issues.
Trent
Thanks Trent,

I'll do some testing and bug Mark in the process I'm sure :-)

Regards,

Philippe
Nov 29 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Guyon Morée | last post by:
I recently found out about XPCom and it's python bindings and it sounded very promising. Then I found out that the source of this information was pretty old. I was wondering what the status is...
7
by: mir nazim | last post by:
hi i m in need of a PyXPCOM tutorial. it should explain using python (instead of JavaScript) for creating apps. if any body can point me to some web resources or a printed book . thankz
59
by: Hugh Macdonald | last post by:
I've recently been trying out various different GUI frameworks in Python and was wondering if I could get your input on the pros and cons of the different ones... wxPython: I love the...
4
by: Jakub Fast | last post by:
Hi, Does anybody know how far you can get nowadays with trying to use Python as the script language for XUL instead of JS? Is it possible (even theoretically) to write full-fledged applications...
0
by: Ola Natvig | last post by:
Hi all Lately I've been trying to compile pyXPCOM on my windows machine. But I've successfully compiled mozilla without pyXPCOM but when I adds the pyXPCOM module the build fails with this...
4
by: Kenneth McDonald | last post by:
I'm curious about this because, quite aside their function as web browsers, it is now possible to build some very useable interfaces using browsers with HTML, CSS, and JavaScript. (The biggest...
1
by: Philippe C. Martin | last post by:
Hi, I write this post here because I do not manage to get in touch with mozilla dev people: ******* irc.mozilla.org ReferenceError: irc is not defined ******* I have two questions:
0
by: kenneth.m.mcdonald | last post by:
I'm waiting for PyXPCOM with bated breath, but always have a hard time figuring out what is actually happening with it--the ActiveState mailing list is mostly inactive, and web searches Always...
0
by: Kenneth McDonald | last post by:
Sorry for crossposting to several lists, but from what I can tell, what I want to do may involve several different areas of expertise. (None of which I have :-( ) I'd like to use Gecko as the UI...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.