[Zope] Grant Opened for a PhD / Post-doc related to ZODB in Paris]

2009-01-29 Thread Vincent Pelletier
Hi,

Paris City and Paris Regional Governments are financing a grant for 
someone to do a PhD or a post-doc related to ZODB. The scientific topic 
is related to transaction management in ZODB and distributed 
environments, following the works of Adya's thesis.
  http://www.python.org/~jeremy/weblog/030514.html

There will also be some potential applications to ERP5 and Plone.

This grant is open for any nationality and is only based on scientific 
skills and motivations.

If you are interested, please contact Jean-Paul Smets .

Regards,
--
Vincent Pelletier
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] ZODB & Zope 2.8 ZRDB/TM : "raise" + "except: pass"

2008-02-09 Thread Pelletier Vincent
(woops, forgot to cc the list when answering)

Le Vendredi 8 Février 2008 22:41, vous avez écrit :
> Where does this "cleanup" code comes from -- from your application?

Yes (explanation folows).

> "try: ... except: ..." are extremely dangerous -- never use them.
>
> If you think you need something like this, always use
>
>try: ...
>except ConflictError: raise
>except: 

What it does with more details is:
- fetch a task from a task list and put it in "being processed" state
- execute the task
- update the task list: delete task if successfull, otherwise put it back to a 
"pending" state

Task execution request is generated by timerserver.

Tasks are executed in a loop (no need to wait for next timerserver poll if 
application knows it still have tasks to process), and to make a task's 
result independant from other tasks' success, I must commit/abort during the 
transaction depending on task success.

So I need to intercept conflict error from the "execute the task" phase, 
otherwise I will get tasks in a "being processed" state, causing them to 
stall untill state gets fixed by hand.

As task list is shared among multiple Zope instances (to paralelize task 
execution) I need to make modifications to this list visible to other nodes 
as soon as possible, to prevent multiple nodes from processing the same task.

All suggestions improving those design choices are welcome.

> In my Zope 2.8.1, this does not happen -- probably a bug that
> has been introduced later.

Mmh, the code was here from revision 3436, which is an initial import:
http://svn.zope.org/ZODB/trunk/src/transaction/_transaction.py?rev=3436&view=markup
(see below "def register")

Note that the problem was triggered by a bug in my application: I was trying 
to use a connection not yet registered with transaction manager after the 
transaction failed to commit and before aborting it...
Transaction class does detect this as a problem, but only after modifying its 
data (the "append" I mentioned). And it is worsened by TM hiding the 
exception raised in Transaction.

> I would check whether the problematic code is still in the
> current Zope version. If so, I would file a bug report.

Code I think should be canged is still in Zope 2 trunk (TM.py), and still in 
transaction trunk (_transaction.py), so I'll bugreport.

-- 
Vincent Pelletier
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists -
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


[Zope] ZODB & Zope 2.8 ZRDB/TM : "raise" + "except: pass"

2008-02-08 Thread Pelletier Vincent
Hi.

I triggered a bad behaviour in Zope 2.8 Transaction class:

try:
  
   <- raises conflict error from ZODB's tpc_vote
except:
  
  raise

Here,  uses a transaction-registered connection which is not used 
before, hence not registered to transaction manager.

So that connection tries to register by calling 
Shared/DC/ZRDB/TM.py:TP._register. Which ends up calling "join" on a
  status = Status.COMMITFAILED
transaction, which raises TransactionFailedError in _prior_operation_failed.

Note that before raising, Transaction.register did
  adapter.objects.append(obj)

The raise is caught in TM._register, which prevents it from setting
  self._registered = 1

A second use of the connection will cause TM to call Transaction.register 
again because
  if not self._registered:
evaluates to True.

But this time, Transaction.register will not raise, since
  if adapter is None:
now evaluates to False.
As it does not raise, TM will set
  self._registered = 1

So now there is a connection which is set as registered, but which will not be 
commited nor aborted by transaction.
Worse, as TM checks self._registered before registering to transaction, the 
connection will never be registered again.

-- 
Vincent Pelletier
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


Re: [Zope] MySql connector error

2007-08-27 Thread Pelletier Vincent
Le Samedi 25 Août 2007 17:07, Kevin a écrit :
> Intermittently, I recieve an error *Shouldn't load state for 0xf5f137
> when the connection is closed
> *

This means there is somewhere a reference to a persistent object which keeps 
it past transaction commit, which is a bad behaviour.

> I implemented this object because the standard mysql database adapter
> would fail if the connection was idle for some time with a similar kind
> of error.

I *think* the error you previously got was not the same, but a "conection 
closed" from regular ZMySQLDA. It is because only the query is protected 
against such error (it causes a reconnection & query retry), but not the 
BEGIN query, which is of course issued first and causes the error to go up 
uncatched. I have a ZMySQLDA version which fixes this problem (an another 
tricky one), and it should get merged into upstream version in near future.
You can grab it on:

http://svn.erp5.org/erp5/trunk/products/ZMySQLDA/

Just one remark: a bug has been found in this version which causes problems if 
multiple connections with the same id exist in different places, due to a 
pooling mechanism used to fix the tricky bug. It will work just fine if you 
use site-scope unique ids - as it works for me - but you will get troubles if 
that's not the case.

-- 
Vincent Pelletier
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists -
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


[Zope] ZODB FileStorage inspection tool: treenalyser

2007-07-24 Thread Pelletier Vincent
Hi.

I created a ZODB FileStorage inspection tool which originaly derived from 
netspace.py (as of zope 2.8.8). I was especially interested in actual object 
content, so this script offers the possibility to hex dump objects, and 
exports some more knobs (recursion depth, subtree selection, more verbosity 
levels) as parameters and adds some features (python-friendly path rendering, 
recursion depth error handled).
I removed the pack-before-use feature as I consider it out of place (packing 
considered a read-only operation doesn't mean it should be made available in 
every tool doing read-only operations...).

You can get it from the following SVN repository:

https://svn.erp5.org/public/erp5/trunk/utils/treenalyser.py

ViewVC available at:

http://svn.erp5.org/erp5/trunk/utils/treenalyser.py

-- 
Vincent Pelletier

PS: Yeah, its name is bad... Feel free to propose any better naming.
___
Zope maillist  -  Zope@zope.org
http://mail.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://mail.zope.org/mailman/listinfo/zope-announce
 http://mail.zope.org/mailman/listinfo/zope-dev )


[Zope] Burning pages

2001-01-18 Thread Vincent Stoessel

Hello,
can Zope pages be exported as html pages. I want to burn some pages out
that do not change often and thus do not need to be dynamic.
Thanks.
-- 
Vincent Stoessel [EMAIL PROTECTED]
Internet Applications Engineer
IDEV http://www.idev.com
V: 301 495 7345 x129


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] Trouble installing ZMySQLTDA

2001-01-18 Thread Vincent Stoessel

Yeah,
  the entire contents are;


from Products.ZMySQLDA.db import *
from Shared.DC.ZRDB.TM import TM

class DB(DB, TM):

 _p_oid=_p_changed=_registered=None

 def _begin(self, *ignored):
 self.db.query("BEGIN")

 def _finish(self, *ignored):
 self.db.query("COMMIT")

 def _abort(self, *ignored):
self.db.query("ROLLBACK")

 def query(self, *args):
self._register()
return apply(DB.query, (self,)+args)

does this look OK?




Andy Dustman wrote:

> On Wed, 17 Jan 2001, Vinny wrote:
> 
> 
>> Ok, it's Vinny again,
>> 
>> 
>> I am trying to get
>> 
>> ZMySQLTDA up and running. After installation ZMySQLTDA
>> appears in the Product folder but gives a 'broken' status instead
>> of "installed"
>> I have MySQL-python-0.3.0 installed.
>> 
>> Has this worked OK for anyone else?
> 
> 
> It seems to work OK for me, though I just pushed out version 2.0.2.
> 
> http://dustman.net/andy/python/ZMySQLDA/2.0.2
> 
> 
>>File 
>> "/usr/local/Zope-2.2.5-linux2-x86/lib/python/Products/ZMySQLTDA/db.py", 
>> line 4, in ?
>>  class DB(DB, TM):
>> NameError: DB
> 
> 
> Is this line at the top of that file?:
> 
> from Products.ZMySQLDA.db import *


-- 
Vincent Stoessel [EMAIL PROTECTED]
Internet Applications Engineer
IDEV http://www.idev.com
V: 301 495 7345 x129


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




Re: [Zope] High Performance Zope

2001-01-17 Thread Vincent Stoessel

Doh!
I meant to say 200-300,000 pageviews per day.
Thanks for all the responses so far.

Vincent Stoessel wrote:

> Hello All,
> How does Zope respond under heavy load? can Zserver handle
> serving out 200-300 zope pages per day on a busy website?
> Would it be better to use pcgi to plug it into apache?
> Thanks in advance.


-- 
Vincent Stoessel [EMAIL PROTECTED]
Internet Applications Engineer
IDEV http://www.idev.com
V: 301 495 7345 x129


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] High Performance Zope

2001-01-16 Thread Vincent Stoessel

Hello All,
How does Zope respond under heavy load? can Zserver handle
serving out 200-300 zope pages per day on a busy website?
Would it be better to use pcgi to plug it into apache?
Thanks in advance.
-- 
Vincent Stoessel [EMAIL PROTECTED]
Internet Applications Engineer
IDEV http://www.idev.com
V: 301 495 7345 x129


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] Zope from a php perspective

2001-01-16 Thread Vincent Stoessel

Hello All,
I have starting testing Zope as a potential
CMS for some production websites. I think I understand the
basic of to create and edit pages in the Zope system.
I haver a few questions for those more experieced with
this system. I am very familiar with php so I need someone
to translate these concepts for me.


include_path : I understand that you can automatically
include objects into pages by referencing their id, I also understand
that Zope automatically searches up the parent chain till it finds a 
matching object. But what if I want to include something outside of the
tree? or just wanted a central repositories of object that I wanted to
be able access from anywhere.

i.e




carscolors
| 
|
ford 
 red
|
toyota

if cars and colors are on seperate branches, how an I
"cross" the brnches to access objects.


Publishing tools:
I'm going to be doing some news related sites, are there
tools specially made for this type of project?
I'm using 2.2.5 , does Ztemplates and Zpublisher automatically
come with this version? They are not listed in the "products"
folder in the management screen.

Where can I find the the full docs on
Ztemplates and Zpublisher?

comment: I find the Zope website hard to extract info from.
I suggest a seperate section for ducumentation of the core
functionality and another section for additional add-on
modules (products?)

Thanks you,
Vinny










-- 
Vincent Stoessel [EMAIL PROTECTED]
Internet Applications Engineer
IDEV http://www.idev.com
V: 301 495 7345 x129


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] ZMailIn - alternatives?

2000-11-19 Thread Vincent - D. Ertner

Hi Zope,

I tried to install ZMailIn but due to several
x-envelope-to-header problems from different providers I think
it'll not become a viable way of getting articles into the
system.

Is there any alternative to ZMailIn?

Cheers,

Vince

 '''
 ô¿ô
  -



___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] PHP/Zope Guru

2000-11-08 Thread Vincent - D. Ertner

Hi folks,

first of all I'd like to apologize for crossposting this message. I'm
well aware of the fact that this isn't they way it should be done, but
I considered this the probably most promising alternative. Enough
about this.

I want to setup a major database project. It is supposed to cover the
administration (entering, changing, deleting) of recordsets, as well
als a search engine (resultspace narrowed by several different
criteria chosen from a form) ending up in resultlists and detailed
views of the recordsets.

I started with PHP (LAMP) and then came across Zope. Zope impresses me
and I like the simple concept of PHP.

There I am now considering the pros and cons ... and then a thought
stroke my mind: Why not ask the pros professionals?

So I finally decided to create this awful crossposting ... so: Are
there any pros who already dealt with a similar matter?

Any detailed information on how and *why* one or the other solution
rulez would be highly appreciated and helpful, as I have to argue the
decision for one or the other system with the initiators of the
project.

Thanx for reading a lot, hope hearing from u pals soon ...

Cheers,

Vince

 '''
 ô¿ô
  -



___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] PHP and Zope

2000-11-02 Thread Vincent - D. Ertner

Hi Zopers,

I learned PHP and now discovered Zope. So I'd like to put a
simple question:

What's the best way to incorporate the advantages of PHP and
Zope? Should I focus on one and forget the other?

Okay, these are two questions and I honestly doubt that anyone
would suggest to drop Zope ;-)))

Anyway: Please gimme some starting hints on my way to the perfect
content managed web site!

Thanx in advance!

Cheers,

Vince

 '''
 ô¿ô
  -



___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] PHP-Pages

2000-10-29 Thread Vincent - D. Ertner

Hi Zope,

I wondered, whether it's possible and sensible to have php-Pages
in Zope sites ... any thoughts and comments on this matter?

Cheers,

Vince

 '''
 ô¿ô
  -



___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] Zope And Workflow Tool

2000-09-22 Thread Vincent



Hi,
 
 
Does somebody have any 
information about any Zope Workflow Product ? Maybe is there some Work on the 
subject.
 
Thanks
 
Vincent
 


[Zope] List of object's name in a ZClass

2000-08-28 Thread Vincent



Hi,
 
In a Zope folder, I have 
:
  - 1 instance of a 
personnal ZClass A
    - 10 or more instances of 
ZClass B
  - a DTML 
document
 
I would like to call a DTML 
method (which is implemented in the ZClass A) from the DTML document to display 
a list of all instances names of ZClasse B
 
If somebody know how to do 
that...
 
Thanks for 
all


[Zope] dedicated folder for each user

2000-08-28 Thread Vincent

Hi,

is it possible to creat automatically a folder with the name of the logged
user ?

Thanks Vincent


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] ZClass and Custom Personal Zclass included

2000-08-25 Thread Vincent

Hi,

I created a ZClass named 'Z1' and another one classed 'Z2',
I defined a Property Sheet 'P1' into Z2, how is it possible to declared a
property inside P1 of the type Z1 ?

Thanks


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] ZClass Property : DTML Document ?

2000-08-25 Thread Vincent

Dow do I create a ZClass Property of the type : DTML Document ?

Thanks

Vincent

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] building a Python module on Winnt

2000-08-24 Thread Vincent



Hi,
 
How can I build a python module 
on Windows NT ?
 
Thanks
 
Vincent


[Zope] Zope as an NT service in "developement mod"

2000-08-24 Thread Vincent

Does somebody know how to launch Zope as an NT service in development mode
(I need to pass the -D parameter)

Thanks

Vincent

PS : I got my answer for my previous question (Thanks again)


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] ZClass and external Methods

2000-08-24 Thread Vincent

Hi,

I just would like to call from a DTMl document an external method defined in
a ZClass.
   - I created an instance of this ZClass  -> Ztest (for example),
   - But I can't call the external method : -> 
If somebody knows where I am wrong ;-)

Thansk again

Vincent


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] Declaration of a sheet property as a personnalise class...

2000-08-18 Thread Vincent

Hi,

I would like to add a new property to a ZClass that I created.

Right now, I can choose between int, date, text, selection..., How can I
choose another ZClass I created in the same product ?

Thanks

Vincent


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] Python function within a ZClass...

2000-08-16 Thread Vincent

Is it possible to access Python function within a ZClass ?

If yes, how should I do that ?

Thanks

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] Python class and ZClass

2000-08-16 Thread Vincent

Hi,

I would like to subclass a Python class with a ZClass.

I mean that my DTML document will declare ZClass and I would like to be able
to access the method declared in the python class (parent of the ZClass).

Does anybody knows how to do that ?

PS : I read a paper call "SubClassing from Custom Python classes", but I did
not understood everything, so if somebody can give me an example or the main
steps to solve my problem...

Thank you very very much

Vincent


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] Zope Server as an NT service

2000-08-08 Thread Vincent

Does somebody know how to start Zope as an NT service ?

As usual, The answer is probably in the documentation but I can't figure
where is the answer...

Thanks.

Vincent


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] Authentification with the SAM of NT (Security Account Manager)

2000-08-07 Thread Vincent

Hi,

Does anyone know if Zope allows authentification of a user with the SAM
(Security Account Manager) of Windows NT ?

I mean :

  -> The user types his login/password
  -> and then, zope asks the SAM if this user does exists (or not).

Thanks.

Vincent


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] different pages depending of the role....

2000-08-03 Thread Vincent

Hi,

is it possible with Zope, to display different pages depending on the roles
of the logged people ?

Thanks

Vincent

PS : If it is in a documentation, which one ? Thanks again


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] form to a email in a correct presentation ?

2000-08-01 Thread Vincent Maton

Thank you a lot for your help, it's very kind of you.
Now with your idea, I get the date separetely but I need to get the first
date with
00-09-10    
and the second date as the same
00-09-17    
and the next as the same and always like that...
Can you help me to correct this ???

Thank you very much,

Best regards,
Vincent.

This is my actual code with your idea :





To:<[EMAIL PROTECTED]>
To:<[EMAIL PROTECTED]>
From:
Subject: Disponibilités de l'arbitre 

Les disponibilités de l'arbitre :


  
  
  
  

  



  







And this is what I get :

Les disponibilités de l'arbitre :


  John Bar ()
  Paris-club ()
  [EMAIL PROTECTED] ()
  01 02 55 32 38 ()


  00-09-10
['', '', '', '', '', '', '', '', '', '', '', '']
['', '', '', '', '', '', '', '', '', '', '', '']
  00-09-17
['', '', '', '', '', '', '', '', '', '', '', '']
['', '', '', '', '', '', '', '', '', '', '', '']



___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] HTML in Mail -> It is working

2000-07-31 Thread Vincent

All good, it is working :






From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: hejka5
MIME-Version: 1.0


Hello !
Here we have some HTML tags.




It is working




___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] Info SendMail + doctype

2000-07-31 Thread Vincent



OK,
 
Following my 
previous Mail about HTML in the body of 
emails...
 
I tryed several of your answers, but it doesn't 
work.
My Oultook just displays evrything (included the 
, , etc...), eventhough I often receive mail with an HTML 
content (so my client is well configured).
 
If you have other solution, I'm really interested (I 
begin to be despaired).
 
Thnaks to all of you
 
Vincent
 


[Zope] In fact, it was HOW can I write an email with HTML inside... ;-)

2000-07-28 Thread Vincent



Thanks
 


[Zope] email with HTML inside with ZOPE

2000-07-28 Thread Vincent



Hi,
 
I would like to know 
if it is possible to send an email with HTML code in the mail using zope 
?
 
Vincent


[Zope] Netscape & Open session with NT active user

2000-07-28 Thread Vincent


Hi,

In fact, it is not just a question about Zope, it is a question about
Netscape :

When you protect a directory and ask for a password, I would like to know if
Netscape is able to access to the parameters of the loged user (under NT).

PS : In fact, I would like that the users do not need to enter twice their
login/password.

Thanks


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] form to a email in a correct presentation ?

2000-07-28 Thread Vincent Maton

Hello everybody,

I have a problem, can you tell me if it's possible :

I send a form to an e-mail but I receive it brut, and I would like to
receive it in a good presentation, you can see that I receive on the
attachments with this email on name it "bad_reception" and see what I want
on name it "good_reception".

I hope that it's possible but if it isn't possible tell me.

I thank all of you a lot for all of your help...

Vincent.

 bad_reception.gif
 good_reception.gif


[Zope] Netscape & Open session with NT active user

2000-07-27 Thread Vincent

Hi,

In fact, it is not just a question about Zope, it is a question about
Netscape :

When you protect a directory and ask for a password, I would like to know if
Netscape is able to access to the parameters of the loged user (under NT).

PS : In fact, I would like that the users do not need to enter twice their
login/password.

Thanks

Vincent


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] Call of an SQL Method within a DTML document...

2000-07-27 Thread Vincent

Hi,

How can I call and SQL method within a DTML document (HTML code) ?

Thanks


Vincent

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] SQL and customise screen

2000-07-27 Thread Vincent DELHOMMOIS

Hi,

I would like to use an SQL request to search some data in an access
database.

The request need to be executed when somebody clic on a button (onclick="")

The result need to be displayed on the screen, but not on one line. I must
be able to place the results in different places on the document.

If somebody has any idea.

Vincent - Thanks

PS : At least, I must be able to customise the array display with the search
zope wizard



___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] TR: - I got my answer, Tks - second step (many of You are going to laungh ;-)

2000-07-20 Thread Vincent


Hi,

Thanks a lot for all your answers,

I just write a few examples and It is workgin well.

Thanks again, and very sorry to sent my query to both lists...


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] second step (many of You are going to laungh ;-)

2000-07-20 Thread Vincent

Hi,

I just download Zope today, and I am wondering how I am going to start
toding something.

May somebody tell me whath is the first step to do to put a custom HTML page
into ZOPE ?

(I started the server, I can access the 'manage' tools ->
server:8080/manage),

I guess I need to creat my HTML page with notepad, ultraedit or whatever,
but the next step ?
Creat a ZOPE object linked to this HTML page ? No idea how to do that...


Thanks a lot

Vincent


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] calendar installation

2000-07-19 Thread Vincent Maton

I want to use calendar, I see it on screen but I can't use it because, I
think that I have a problem to install all of calendar like the external
method (I can't istall it, of course i'm not a Python programmer)

Can you tel me How Can I use the "Calendar" ???

Thank you a lot.


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] "just html", help, help, help !!!

2000-07-10 Thread Vincent Maton

Hello,

Can you help me ???

I have one page with a "form", in this page I have an "OnClick" who open a
new page who have some informations and when I "Submit" (I think that I must
use a form also in this page to send the informations to the first page), I
want to receive the informations on the first page, in a input or something
else ???

We are three people for find the answer but we don't find the way, this is
why I call you...

Thank you a lot ...

Vincent.


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] cookies

2000-07-04 Thread Vincent Maton

Hello !!!
can you tell me how can I use the "cookies"

Thank you very much


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] Zope : CGI

2000-07-03 Thread Vincent Maton

Hello everyone,

There is someone who can help me ???

I need a CGI  to transfert the values of the 'Inputs" of a "Form" to a
"e-mail" !!!

Thank's all of you, the specialists...

Vincent.


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] zope:change strings on place

2000-06-06 Thread Vincent Maton

Can you help me ?

I have some dates in a DataBase but I receive them in string after a query
and it's in international format, I would like transform it in french
format.
With , it doesn't work.

Do you know how can I transform it with strings:

I receive : 2000-04-13
I want  : 13-04-2000
or:  13 april 2000 (this one is better but ???)

I thanks you a lot, please help me.

Vincent.


___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )