[geeklog-devtalk] geeklog-devel digest, Vol 1 #501 - 7 msgs

geeklog-devel-request at lists.geeklog.net geeklog-devel-request at lists.geeklog.net
Fri Feb 4 13:00:02 EST 2005


Send geeklog-devel mailing list submissions to
geeklog-devel at lists.geeklog.net

To subscribe or unsubscribe via the World Wide Web, visit
http://lists.geeklog.net/listinfo/geeklog-devel
or, via email, send a message with subject or body 'help' to
geeklog-devel-request at lists.geeklog.net

You can reach the person managing the list at
geeklog-devel-admin at lists.geeklog.net

When replying, please edit your Subject line so it is more specific
than "Re: Contents of geeklog-devel digest..."


Today's Topics:

1. Remote authentication (Dirk Haun)
2. Re: Remote authentication (Tony Bibbs)
3. Re: Remote authentication (Tony Bibbs)
4. Re: Dynamic Comments... (Vincent Furia)
5. Re: Dynamic Comments... (Blaine Lang)
6. Time flys (Dwight Trumbower)
7. Re: Dynamic Comments... (Vincent Furia)

--__--__--

Message: 1
From: "Dirk Haun" <dirk at haun-online.de>
To: <geeklog-devel at lists.geeklog.net>
Date: Thu, 3 Feb 2005 22:57:05 +0100
Organization: Terra Software Systems
Subject: [geeklog-devel] Remote authentication
Reply-To: geeklog-devel at lists.geeklog.net

Just checking:

Is anyone following the discussion about remote authentication over on
geeklog-devtalk? Any input from the GL2 perspective?

bye, Dirk


--
http://www.haun-online.de/
http://www.macosx-faq.de/


--__--__--

Message: 2
Date: Thu, 03 Feb 2005 20:45:35 -0600
From: Tony Bibbs <tony at tonybibbs.com>
To: geeklog-devel at lists.geeklog.net
Subject: Re: [geeklog-devel] Remote authentication
Reply-To: geeklog-devel at lists.geeklog.net

Well, the GL2 framework makes it easy to snap in custom authentication.
We also have Auth_Enteripse which does just this. It's a much more
robust (and complicated) method of remote authentication. It won't be
included in Gl2 by default, though, the Auth_Enterprise client will be
included by default.

All the Auth_Enterprise code is PHP5 which is why I haven't said much.
If you wanted to do something like this in PHP4 and 1.3.x, feel free to
look at what I have for Account Managers in CVS...wouldn't be too hard
to rewrite.

--Tony

Dirk Haun wrote:


>Just checking:

>

>Is anyone following the discussion about remote authentication over on

>geeklog-devtalk? Any input from the GL2 perspective?

>

>bye, Dirk

>

>

>

>



--__--__--

Message: 3
Date: Thu, 03 Feb 2005 21:00:37 -0600
From: Tony Bibbs <tony at tonybibbs.com>
To: geeklog-devel at lists.geeklog.net
Subject: Re: [geeklog-devel] Remote authentication
Reply-To: geeklog-devel at lists.geeklog.net

Clarification below.

Tony Bibbs wrote:


> Well, the GL2 framework makes it easy to snap in custom

> authentication. We also have Auth_Enteripse which does just this.

> It's a much more robust (and complicated) method of remote

> authentication. It won't be included in Gl2 by default, though, the

> Auth_Enterprise client will be included by default.

>

> All the Auth_Enterprise code is PHP5 which is why I haven't said

> much. If you wanted to do something like this in PHP4 and 1.3.x, feel

> free to look at what I have for Account Managers in CVS...wouldn't be

> too hard to rewrite.


I'm not implying to rewrite the Auth_Enterprise code at all. Rather, I
was suggesting the current method in CVS for GL2 is pretty clean (and
simple) for separating out the authentication stuff.

--Tony

--__--__--

Message: 4
Date: Thu, 3 Feb 2005 23:29:57 -0500
From: Vincent Furia <vfuria at gmail.com>
To: geeklog-devel at lists.geeklog.net
Subject: Re: [geeklog-devel] Dynamic Comments...
Reply-To: geeklog-devel at lists.geeklog.net

On Mon, 31 Jan 2005 21:44:03 +0100, Niels Leenheer <niels at creatype.nl> wrote:

> However, I can see a couple of problems with the code you are currently

> using.

>

> First of all, you are using a single XMLHttpRequest object without

> protecting

> it from being called more than once. As a result it is possible to

> interrupt an

> ongoing request. Try clicking on quickly on multiple triangles after

> each other,

> without waiting for one to finish loading. Only the request clicked on

> last will

> be honoured, the other ones will be 'loading' indefinately.

>

This was a big problem, I didn't quite use the solution you suggested
(I couldn't quite get it to work), but I did (if I may say so) a
ingenous little workaround.


>

> Secondly, there is a bug in the XMLHttpRequest implementation of Opera,

> which basically requeres and extra check inside the onreadystatechange

> function, otherwise it will be called multiple times after each other,

> but only the first time with the proper responseText.

>

OK, changed the code around to account for this. Hopefully it will
work with Opera now.

Thanks for all the suggestions Niels. Anyone else see any problems
(http://vfuria.dyndns.org:8080/article.php?story=geeklog-1.3.10rc2&mode=dynamic#comments)

Thanks,
Vinny

--__--__--

Message: 5
From: "Blaine Lang" <geeklog at langfamily.ca>
To: <geeklog-devel at lists.geeklog.net>
Subject: Re: [geeklog-devel] Dynamic Comments...
Date: Fri, 4 Feb 2005 00:07:51 -0500
Reply-To: geeklog-devel at lists.geeklog.net

This is real a neat feature Vinny - nice work.
I like the fact that now I can collapse it again once I view the comment.

Do you have any code that you can send me or direct me to better understand
how this is being done.
I see immediate use for this in some of my projects.

Blaine
----- Original Message -----
From: "Vincent Furia" <vfuria at gmail.com>
To: <geeklog-devel at lists.geeklog.net>
Sent: Thursday, February 03, 2005 11:29 PM
Subject: Re: [geeklog-devel] Dynamic Comments...


On Mon, 31 Jan 2005 21:44:03 +0100, Niels Leenheer <niels at creatype.nl>
wrote:

> However, I can see a couple of problems with the code you are currently

> using.

>

> First of all, you are using a single XMLHttpRequest object without

> protecting

> it from being called more than once. As a result it is possible to

> interrupt an

> ongoing request. Try clicking on quickly on multiple triangles after

> each other,

> without waiting for one to finish loading. Only the request clicked on

> last will

> be honoured, the other ones will be 'loading' indefinately.

>

This was a big problem, I didn't quite use the solution you suggested
(I couldn't quite get it to work), but I did (if I may say so) a
ingenous little workaround.


>

> Secondly, there is a bug in the XMLHttpRequest implementation of Opera,

> which basically requeres and extra check inside the onreadystatechange

> function, otherwise it will be called multiple times after each other,

> but only the first time with the proper responseText.

>

OK, changed the code around to account for this. Hopefully it will
work with Opera now.

Thanks for all the suggestions Niels. Anyone else see any problems
(http://vfuria.dyndns.org:8080/article.php?story=geeklog-1.3.10rc2&mode=dynamic#comments)

Thanks,
Vinny
_______________________________________________
geeklog-devel mailing list
geeklog-devel at lists.geeklog.net
http://lists.geeklog.net/listinfo/geeklog-devel


--__--__--

Message: 6
Date: Thu, 03 Feb 2005 23:59:53 -0600
From: Dwight Trumbower <dwight at trumbower.com>
To: geeklog-devel at lists.geeklog.net
Subject: [geeklog-devel] Time flys
Reply-To: geeklog-devel at lists.geeklog.net

Sorry Tony for not responding to the database questions. I just glanced
at all the emails since 12/1/04. I will try to look at the ddl this
week. You might need to kick me a few more times.

--__--__--

Message: 7
Date: Fri, 4 Feb 2005 09:06:01 -0500
From: Vincent Furia <vfuria at gmail.com>
To: geeklog-devel at lists.geeklog.net
Subject: Re: [geeklog-devel] Dynamic Comments...
Reply-To: geeklog-devel at lists.geeklog.net

Blaine,

I'll be checking it all into CVS soon.

Current ToDo List for dynamic comments:
* get new images that better match the professional theme (Simon? Anyone?)
* create a $_CONF variable to disable dynamic comments and implement
the disable in the code

-Vinny

On Fri, 4 Feb 2005 00:07:51 -0500, Blaine Lang <geeklog at langfamily.ca> wrote:

> This is real a neat feature Vinny - nice work.

> I like the fact that now I can collapse it again once I view the comment.

>

> Do you have any code that you can send me or direct me to better understand

> how this is being done.

> I see immediate use for this in some of my projects.

>

> Blaine

> ----- Original Message -----

> From: "Vincent Furia" <vfuria at gmail.com>

> To: <geeklog-devel at lists.geeklog.net>

> Sent: Thursday, February 03, 2005 11:29 PM

> Subject: Re: [geeklog-devel] Dynamic Comments...

>

> On Mon, 31 Jan 2005 21:44:03 +0100, Niels Leenheer <niels at creatype.nl>

> wrote:

> > However, I can see a couple of problems with the code you are currently

> > using.

> >

> > First of all, you are using a single XMLHttpRequest object without

> > protecting

> > it from being called more than once. As a result it is possible to

> > interrupt an

> > ongoing request. Try clicking on quickly on multiple triangles after

> > each other,

> > without waiting for one to finish loading. Only the request clicked on

> > last will

> > be honoured, the other ones will be 'loading' indefinately.

> >

> This was a big problem, I didn't quite use the solution you suggested

> (I couldn't quite get it to work), but I did (if I may say so) a

> ingenous little workaround.

>

> >

> > Secondly, there is a bug in the XMLHttpRequest implementation of Opera,

> > which basically requeres and extra check inside the onreadystatechange

> > function, otherwise it will be called multiple times after each other,

> > but only the first time with the proper responseText.

> >

> OK, changed the code around to account for this. Hopefully it will

> work with Opera now.

>

> Thanks for all the suggestions Niels. Anyone else see any problems

> (http://vfuria.dyndns.org:8080/article.php?story=geeklog-1.3.10rc2&mode=dynamic#comments)

>

> Thanks,

> Vinny

> _______________________________________________

> geeklog-devel mailing list

> geeklog-devel at lists.geeklog.net

> http://lists.geeklog.net/listinfo/geeklog-devel

>

> _______________________________________________

> geeklog-devel mailing list

> geeklog-devel at lists.geeklog.net

> http://lists.geeklog.net/listinfo/geeklog-devel

>



--__--__--

_______________________________________________
geeklog-devel mailing list
geeklog-devel at lists.geeklog.net
http://lists.geeklog.net/listinfo/geeklog-devel


End of geeklog-devel Digest



More information about the geeklog-devtalk mailing list