|
View previous topic :: View next topic |
| Author |
Message |
NanoCaiordo Developer


Offline Joined: Jun 29, 2004 Posts: 3878 Location: Melbourne, AU
|
Posted: Tue Mar 15, 2011 4:25 pm Post subject: 9.2.3.3 |
|
This will be most likely the last 9.x release.
From now on only security fixes will make to 9.x code.
Test dragonflycms.org/Downl...ls/id=540/ and comment here.
If you believe that a bug did not get enough attention, please let me know.
_________________ .:: I met php the 03 December 2003 :: Unforgettable day! ::.
Linux 64bit / Apache 2.2 / PHP 5.4 / MySQL 5.5.22 / v9, v10
Linux 32bit / Apache 2.2 / PHP 5.3.10 / MySQL 5.5.22 / v9, v10
Windows 64bit / IIS 7.5 / PHP 5.3.10 / MySQL 5.5.22 / v9, v10
NanoCaiordo's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) mixed
Last edited by NanoCaiordo on Tue Oct 04, 2011 1:18 am; edited 1 time in total |
|
| Back to top |
|
 |
BrokenCrust 500+ Posts Club


Offline Joined: Sep 06, 2004 Posts: 503
|
Posted: Wed Mar 16, 2011 11:03 am Post subject: Re: 9.2.3.3 |
|
Woot!
What's new? i.e. What do I need to test?
Is this 9.x CVS or RC1 or 9.2.3.3 Final?
BrokenCrust please enter your server specs in your user profile!
|
|
| Back to top |
|
 |
greenday2k Forum Admin


Offline Joined: Aug 11, 2005 Posts: 489 Location: CO
|
|
| Back to top |
|
 |
NanoCaiordo Developer


Offline Joined: Jun 29, 2004 Posts: 3878 Location: Melbourne, AU
|
Posted: Thu Mar 17, 2011 10:11 am Post subject: Re: 9.2.3.3 |
|
Just double checking that all should work as suppose to before an official release, our changelog correctly show most of the changes.
And as mentioned already, if you believe that a bug did not get enough attention (eg reported in forums) let us know.
_________________ .:: I met php the 03 December 2003 :: Unforgettable day! ::.
Linux 64bit / Apache 2.2 / PHP 5.4 / MySQL 5.5.22 / v9, v10
Linux 32bit / Apache 2.2 / PHP 5.3.10 / MySQL 5.5.22 / v9, v10
Windows 64bit / IIS 7.5 / PHP 5.3.10 / MySQL 5.5.22 / v9, v10
NanoCaiordo's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) mixed
|
|
| Back to top |
|
 |
layingback Forum Admin


Offline Joined: Apr 19, 2004 Posts: 1040
|
Posted: Thu Mar 17, 2011 11:13 am Post subject: Re: 9.2.3.3 |
|
Has this one been evaluated? If not, any chance?
I haven't tested, but I think it is simply a matter of changing call to _tpl_include() to add 2nd param of true in INCLUDE code in template_inc.php.
Inclusion now rather than later, should mean that we can rely on <!-- INCLUDE for 10 rather than having to still use the hack. (Will still need to include hack in templates coded for 9.2.x in case running on earlier version).
Thanks!
_________________ Pro_News: The complete module for Dragonfly - now available as version 3.3
layingback's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) 2.6 - 3.6 / 1.3.42 - 2.2.12 / 5.0.92 - 5.1.37 - 5.1.54 / 4.4.49 - 5.2.17 - 5.3 / 9.2.1
|
|
| Back to top |
|
 |
NanoCaiordo Developer


Offline Joined: Jun 29, 2004 Posts: 3878 Location: Melbourne, AU
|
Posted: Thu Mar 17, 2011 12:13 pm Post subject: Re: 9.2.3.3 |
|
dragonflycms.org/Proje...s/id=1122/
Most of the times you wont need to include the same template over and over, so it will include_once. Simply add false to the parameters list and it should work.
_________________ .:: I met php the 03 December 2003 :: Unforgettable day! ::.
Linux 64bit / Apache 2.2 / PHP 5.4 / MySQL 5.5.22 / v9, v10
Linux 32bit / Apache 2.2 / PHP 5.3.10 / MySQL 5.5.22 / v9, v10
Windows 64bit / IIS 7.5 / PHP 5.3.10 / MySQL 5.5.22 / v9, v10
NanoCaiordo's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) mixed
|
|
| Back to top |
|
 |
layingback Forum Admin


Offline Joined: Apr 19, 2004 Posts: 1040
|
Posted: Thu Mar 17, 2011 2:28 pm Post subject: Re: 9.2.3.3 |
|
Any template which repeats can encounter this issue. How to I add false to <!-- INCLUDE pronews/pn_art_foot.html --> ? I.e what is the syntax for parameters? <!-- INCLUDE pronews/pn_art_foot.html false --> stops it working for even the first one. Ditto <!-- INCLUDE pronews/pn_art_foot.html $include='false' -->
_________________ Pro_News: The complete module for Dragonfly - now available as version 3.3
layingback's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) 2.6 - 3.6 / 1.3.42 - 2.2.12 / 5.0.92 - 5.1.37 - 5.1.54 / 4.4.49 - 5.2.17 - 5.3 / 9.2.1
|
|
| Back to top |
|
 |
greenday2k Forum Admin


Offline Joined: Aug 11, 2005 Posts: 489 Location: CO
|
|
| Back to top |
|
 |
layingback Forum Admin


Offline Joined: Apr 19, 2004 Posts: 1040
|
Posted: Fri Mar 18, 2011 8:36 am Post subject: Re: 9.2.3.3 |
|
Thanks for the help, but <!-- INCLUDE pronews/pn_art_foot.html false --> doesn't work - that's my point.
Line 54 of includes/classes/template_enc.php
| Code:: |
preg_match_all('#<!-- INCLUDE ([a-zA-Z0-9\_\-\+\.\/]+?) -->#', $code, $matches);
|
effectively prevents you passing parameters to INCLUDE.
But then maybe it doesn't matter because on line 118:
| Code:: |
case 'INCLUDE':
$temp = array_shift($include_blocks);
$compile_blocks[] = '<?php $this->_tpl_include(\''.$temp."'); ?>";
$this->_tpl_include($temp, false);
break;
|
But I'm suspicious of the 2 calls to _tpl_include, the first without , false, the 2nd with.
Indeed calling this code includes/classes/template.php line 207:
| Code:: |
// Include a seperate template
function _tpl_include($filename, $include = true)
{
$handle = $filename;
$this->filename[$handle] = $filename;
$this->files[$handle] = $this->root . '/' . $filename;
$filename = $this->_tpl_load($handle);
if ($include) {
if ($filename) {
include_once($filename);
return;
}
eval(' ?>' . $this->compiled_code[$handle] . '<?php ');
}
}
|
with , false appears to me to effectively be a no-op.
I see that Bug 1122 was closed as 'Bogus' (!?), but the explanation of when the link is to the top level of the entire documentation, doesn't advance my understanding 1 bit, I'm afraid.
_________________ Pro_News: The complete module for Dragonfly - now available as version 3.3
layingback's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) 2.6 - 3.6 / 1.3.42 - 2.2.12 / 5.0.92 - 5.1.37 - 5.1.54 / 4.4.49 - 5.2.17 - 5.3 / 9.2.1
|
|
| Back to top |
|
 |
BrokenCrust 500+ Posts Club


Offline Joined: Sep 06, 2004 Posts: 503
|
Posted: Fri Mar 18, 2011 11:18 am Post subject: Re: 9.2.3.3 |
|
Is there really no release documentation?
I'm not so interested in what lines of code have changed, but rather a list of fixes and new features.
BrokenCrust please enter your server specs in your user profile!
|
|
| Back to top |
|
 |
NanoCaiordo Developer


Offline Joined: Jun 29, 2004 Posts: 3878 Location: Melbourne, AU
|
Posted: Fri Mar 18, 2011 11:33 am Post subject: Re: 9.2.3.3 |
|
Changes in CVS, no need to add any parameter.
_________________ .:: I met php the 03 December 2003 :: Unforgettable day! ::.
Linux 64bit / Apache 2.2 / PHP 5.4 / MySQL 5.5.22 / v9, v10
Linux 32bit / Apache 2.2 / PHP 5.3.10 / MySQL 5.5.22 / v9, v10
Windows 64bit / IIS 7.5 / PHP 5.3.10 / MySQL 5.5.22 / v9, v10
NanoCaiordo's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) mixed
|
|
| Back to top |
|
 |
NanoCaiordo Developer


Offline Joined: Jun 29, 2004 Posts: 3878 Location: Melbourne, AU
|
Posted: Fri Mar 18, 2011 11:35 am Post subject: Re: 9.2.3.3 |
|
_________________ .:: I met php the 03 December 2003 :: Unforgettable day! ::.
Linux 64bit / Apache 2.2 / PHP 5.4 / MySQL 5.5.22 / v9, v10
Linux 32bit / Apache 2.2 / PHP 5.3.10 / MySQL 5.5.22 / v9, v10
Windows 64bit / IIS 7.5 / PHP 5.3.10 / MySQL 5.5.22 / v9, v10
NanoCaiordo's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) mixed
|
|
| Back to top |
|
 |
BrokenCrust 500+ Posts Club


Offline Joined: Sep 06, 2004 Posts: 503
|
Posted: Fri Mar 18, 2011 11:58 am Post subject: Re: 9.2.3.3 |
|
Thanks Nano that link is most helpful.
Is it possible to make the terminal release of 9.x as 9.3.0 to give clarity?
Also can you explain what "Make the system more user friendly" means in practice?
BrokenCrust please enter your server specs in your user profile!
|
|
| Back to top |
|
 |
NanoCaiordo Developer


Offline Joined: Jun 29, 2004 Posts: 3878 Location: Melbourne, AU
|
Posted: Fri Mar 18, 2011 2:21 pm Post subject: Re: 9.2.3.3 |
|
| Make the system more user friendly, sarah wrote: |
The default settings should all be whatever I want them to. This will be guessed using the intuitive ESP technology
Also it should dispense beer, pie and coffee. Maybe sandwiches in a future version |
It's a joke
_________________ .:: I met php the 03 December 2003 :: Unforgettable day! ::.
Linux 64bit / Apache 2.2 / PHP 5.4 / MySQL 5.5.22 / v9, v10
Linux 32bit / Apache 2.2 / PHP 5.3.10 / MySQL 5.5.22 / v9, v10
Windows 64bit / IIS 7.5 / PHP 5.3.10 / MySQL 5.5.22 / v9, v10
NanoCaiordo's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS) mixed
|
|
| Back to top |
|
 |
BrokenCrust 500+ Posts Club


Offline Joined: Sep 06, 2004 Posts: 503
|
Posted: Fri Mar 18, 2011 4:11 pm Post subject: Re: 9.2.3.3 |
|
LOL. Pies and beers. I look forward to installing it. If after 20 minutes of staring at the screen and thinking about pies, one doesn't turn up - I'll raise a bug report.
BrokenCrust please enter your server specs in your user profile!
|
|
| Back to top |
|
 |
|
|