PDA

View Full Version : My thoughs on Ca Evo 2.


Reiji Kurosaky
25 Apr 07, 22:51
I don't like the new header...its so thin now.

I don't like the circle images, I think the square ones were better.

The new way the categories are organized is very good, I like that.

The only thing I don't like is the "very thin" header and the small images.

Oh and the logo is beautiful.

This is just my opinion, thanks for a great style anyway.

CyberAlien
25 Apr 07, 23:06
I don't like the new header...its so thin now.
Unlike previous version, header doesn't have fixed width, so if you put larger logo it will expand up to 165 pixels high.

I don't like the circle images, I think the square ones were better.
I think new ones are way better, but I'll put old ones in images directory too, so you could replace images any time.

CyberAlien
26 Apr 07, 00:08
Few bbcode tests if you don't mind...
I'm testing new bbcode display, please tell me if you see any bugs with following text:
Test quote
$files = array();
$res = opendir('styles');
while(($file = readdir($res)) !== false)
{
$list = explode('.', $file);
if(count($list) == 2 && $list[1] == 'php' && preg_match('/^[a-zA-Z0-9_]+$/', $list[0]))
{
$files[] = $list[0];
}
}
closedir($res);
sort($files);

$styles = array();
$list = array();
for($i=0; $i<count($files); $i++)
{
$style = false;
include('styles/' . $files[$i] . '.php');
if($style !== false)
{
$style['file'] = $files[$i];
if(strlen($style['dir']))
{
$list[$style['dir']][] = $style;
}
$styles[$files[$i]] = true;
}
}

$files = array();
$res = opendir('styles');
while(($file = readdir($res)) !== false)
{
$list = explode('.', $file);
if(count($list) == 2 && $list[1] == 'php' && preg_match('/^[a-zA-Z0-9_]+$/', $list[0]))
{
$files[] = $list[0];
}
}
closedir($res);
sort($files);

<if condition="$show['moderatedattachment']">
<div class="bbcode-rounded bbcode-rounded-attach">
<div class="bbcode-rounded-header"><div><span></span></div></div>
<div class="bbcode-rounded-author">$vbphrase[attachments_pending_approval]:</div>
<div class="bbcode-rounded-content">
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
$post[moderatedattachments]
</table>
</div>
<div class="bbcode-rounded-footer"><div><span></span></div></div>
</div>
</if>

Test quote
$files = array();
$res = opendir('styles');
while(($file = readdir($res)) !== false)
{
$list = explode('.', $file);
if(count($list) == 2 && $list[1] == 'php' && preg_match('/^[a-zA-Z0-9_]+$/', $list[0]))
{
$files[] = $list[0];
}
}
closedir($res);
sort($files);

$files = array();
$res = opendir('styles');
while(($file = readdir($res)) !== false)
{
$list = explode('.', $file);
if(count($list) == 2 && $list[1] == 'php' && preg_match('/^[a-zA-Z0-9_]+$/', $list[0]))
{
$files[] = $list[0];
}
}
closedir($res);
sort($files);

<if condition="$show['moderatedattachment']">
<div class="bbcode-rounded bbcode-rounded-attach">
<div class="bbcode-rounded-header"><div><span></span></div></div>
<div class="bbcode-rounded-author">$vbphrase[attachments_pending_approval]:</div>
<div class="bbcode-rounded-content">
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
$post[moderatedattachments]
</table>
</div>
<div class="bbcode-rounded-footer"><div><span></span></div></div>
</div>
</if>

Reiji Kurosaky
26 Apr 07, 06:17
Look at the right side when there is a scroll in the code...the right border moves with the scroll.

CyberAlien
26 Apr 07, 09:45
Fixed, and IE bugs are also fixed. Now need to figure out how to make inline editor update bbcode dhtml...