Tony Lee | 5 Jan 03:50

Re: Midgard book: reviewers needed

Hi Henri,

Going through this process will be a great help for the whole community.
Having an edited reference for Midgard users a dream come true!

So as technical reviewer or not I'll be hang out to read anything you
have. And you know you can depend on me to represent the lowest common
denominator  Since it generally takes me longer (and a lot more
questions) than everyone else to figure out what's going on 

Regards

Tony

> We would need 1-2 technical reviewers familiar with Midgard and
> MidCOM for the editing process. Essentially you read the chapters
> when the drafts are ready and send comments.
> Reviewers will receive free copies of the book and will be credited
> in the book as Technical reviewers.
Piotras | 7 Jan 12:45

Re: [Aegir CMS 0000623]: Topic symlink would be great

dev@... wrote:

> Aegir has article symlinks. Why not make the same "midcom.symlink" "GUID"
> parameter creation for topics as well?
> =============================================================

BTW , Does this feature lets the same article be used with 
mgd_list_topic_article($X); and mgd_list_topic_articles($Y) ?

Piotras
Marcin Soltysiak | 7 Jan 12:47
Picon
Gravatar

Re: Re: [Aegir CMS 0000623]: Topic symlink would be great

> > Aegir has article symlinks. Why not make the same "midcom.symlink"
"GUID"
> > parameter creation for topics as well?
> > =============================================================
>
> BTW , Does this feature lets the same article be used with
> mgd_list_topic_article($X); and mgd_list_topic_articles($Y) ?

With a bit of imagination, YES :-)

<?
$topic=mgd_list_topic_artcles($x);
while($x->fetch()){

 if($guid=$x->parameter("midcom.symlink","GUID")){
  $art=mgd_get_object_by_guid($quid);
 }else{
  $art=mgd_get_article($x->id);
 }
?>
<[article_routine]>
<?
} //end of while
?>

Solt
Piotras | 7 Jan 13:15

Re: Re: [Aegir CMS 0000623]: Topic symlink would be great

"Marcin Soltysiak" <olga@...> wrote:

> > > Aegir has article symlinks. Why not make the same "midcom.symlink"
> "GUID"
> > > parameter creation for topics as well?
> > > =============================================================
> >
> > BTW , Does this feature lets the same article be used with
> > mgd_list_topic_article($X); and mgd_list_topic_articles($Y) ?
> 
> With a bit of imagination, YES :-)
> 
> <?
> $topic=mgd_list_topic_artcles($x);
> while($x->fetch()){
> 
>  if($guid=$x->parameter("midcom.symlink","GUID")){
>   $art=mgd_get_object_by_guid($quid);
>  }else{
>   $art=mgd_get_article($x->id);
>  }
> ?>
> <[article_routine]>
> <?
> } //end of while
> ?>

Does that mean that symlink feature work bidirectional way?
Creating symlink from article X to Y makes automagically 
symlink from Y to X?
(Continue reading)

Marcin Soltysiak | 7 Jan 13:22
Picon
Gravatar

Re: Re: [Aegir CMS 0000623]: Topic symlink would be great

> > > > Aegir has article symlinks. Why not make the same "midcom.symlink"
> > "GUID"
> > > > parameter creation for topics as well?
> > > > =============================================================
> > >
> > > BTW , Does this feature lets the same article be used with
> > > mgd_list_topic_article($X); and mgd_list_topic_articles($Y) ?
> > 
> > With a bit of imagination, YES :-)
> 
> Does that mean that symlink feature work bidirectional way?
> Creating symlink from article X to Y makes automagically 
> symlink from Y to X?

Ah! Now I get. No it is not.
Solt
Tarjei Huse | 7 Jan 13:33
Picon
Favicon
Gravatar

[Fwd: Re: Accidentially deleted last mail from you]

Who should be contacted when www.m-p.org is  down?

tarjei
-----Forwarded Message-----
From: torben@...
To: Tarjei Huse <tarjei@...>
Subject: Re: Accidentially deleted last mail from you
Date: Wed, 07 Jan 2004 13:24:36 +0100

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi Tarjei,

- --- On 07.01.04 Tarjei Huse wrote:

> =) I just wanted to say that www.midgard-project.org was down.

I can't help you there, I have no access to the server in question.
bugs.m-p.org was down, because Nathan rebooted this morning, but that is
solved. Any Problems with www.m-p.org are best directed to Henri as far as
I know. You might CC this to dev@ though...

Live long and prosper!
Torben Nehmer

- -- 
Torben Nehmer, Guenzburg, Bavaria, Germany
http://www.nathan-syntronics.de, mailto:torben@...
PGP Public Key: https://www.link-m.de/pgp/t.nehmer.asc
(Continue reading)

Alexey Zakhlestine | 8 Jan 11:51
Picon
Favicon

Re: [Fwd: [ANNOUNCE] PHP 5 Beta 3 Released!]

On Mon, 22 Dec 2003 15:28:14 +0200, Henri Bergius <henri.bergius@...> wrote:

Henri> -----BEGIN PGP SIGNED MESSAGE-----
Henri> Hash: SHA1
Henri> 
Henri> Any ideas how difficult midgard-php will be to port?
Henri> 
Henri> We should start planning this ASAP, not being able to run
Henri> with PHP4 for over six months after it was released was
Henri> very bad for Midgard...

there is some information about ZEND-2 internals here:
http://cvs.php.net/co.php/ZendEngine2/OBJECTS2_HOWTO?login=2&r=1.5

--

-- 
Alexey Zakhlestine
E-mail: cheshire@...
URL: http://web.peterlink.ru/

Public GPG-Key: http://andersen.peterlink.ru/public.asc
Piotras | 8 Jan 12:26

Re: [Fwd: [ANNOUNCE] PHP 5 Beta 3 Released!]

Alexey Zakhlestine <cheshire@...> wrote:

> Henri> We should start planning this ASAP, not being able to run
> Henri> with PHP4 for over six months after it was released was
> Henri> very bad for Midgard...
> 
> 
> there is some information about ZEND-2 internals here:
> http://cvs.php.net/co.php/ZendEngine2/OBJECTS2_HOWTO?login=2&r=1.5

I did not have much time to look at Zend2 sources in details. I just had 
a look at this when I was looking for some magic way to allow using 
update objects without user being authenticated. 
Briefly: if we can not use current sources with new Zend2 API to make
objects , we have no any other choice like to rewrite midgard-php module.
And this is big problem as we have no designed new midgard library , 
and midgard-php should be one of the future possibilities.

Piotras
Piotras | 8 Jan 12:47

Re: [Fwd: [ANNOUNCE] PHP 5 Beta 3 Released!]

Alexey Zakhlestine <cheshire@...> wrote:

> there is some information about ZEND-2 internals here:
> http://cvs.php.net/co.php/ZendEngine2/OBJECTS2_HOWTO?login=2&r=1.5

Quick searching.
I did not found any changelog informations about any changes made to:

 add_property_unset()
  (defined in header files , but not used in any extension available in source)

 object_init_ex
 add_property_string
 add_property_long
 zend_hash_*
 getThis

All above are highly used in all PHP extensions , so I really doubt if there is no
backward compatibility for them. Besides most OOP changes looks like 
PHP objects related , while for Zend2 these are still hash arrays (and that's good).
Besides , do not forget that midgard objects ARE NOT real PHP objects. 

Piotras 
Alexey Zakhlestine | 8 Jan 12:50
Picon
Favicon

Re[2]: [Fwd: [ANNOUNCE] PHP 5 Beta 3 Released!]

On Thu, 8 Jan 2004 12:47:57 +0100, Piotras <pp@...> wrote:

Piotras> Besides , do not forget that midgard objects ARE NOT real PHP objects. 

is it good or bad? :)

--

-- 
Alexey Zakhlestine
E-mail: cheshire@...
URL: http://web.peterlink.ru/

Public GPG-Key: http://andersen.peterlink.ru/public.asc

Gmane