Paul wrote:

Templating has been discussed before a number of times. The answer was no, not in the forseeable future anyway, and not using the Smarty templating engine. My feeling is if a template system is going to be used then the program needs to be designed from the ground up to use it and use its own templating system rather than a third party offering.

You right I just begin to realize how much work involved in this process. For now it seems that I wont do this.

thank you all.

Dr.Jeckyl wrote:

i'd wait for 1.3 to take anything on seriously. it's a much bigger change than just some bug fixes so your modification most likely won't be compatible. but good luck none-the-less.

The current version of punbb is one of the most stable forum exist (try compare it to to phpbb) even if some additional functionality will be added in the new version I think it wont be that hard to implement them in the smarty based project (since moving to smarty make the code much more easy to edit).

Daniel

'Smarty' is a template engine. Moving to this platform will make the develop of new skins really easy than now and also make the code more easy to read.

If someone see this project important and have the knowledge to help me finish it fester he/she welcome to email me:
333222@gmail.com

Anyway I gave this fork project the name 'TLSM' as the name of the father project that will use it.

I'll release the code once it'll be ready and I might open cvs more than one developer join me.

(right now it might take me about a week to two month it's all depends on how hard the process will become or how much time I'll have to spend on other commitments).

Daniel Shkuri

Tobi wrote:

How did you set the width?
And where?

I set the width in another css file in:  ../style.css (before the forum root folder)

style.css:

body {width: 100%;
margin:0;
padding:0;
text-align: center;
direction:rtl;
width: 99%
}

#container {margin: 0 auto;
width: 790px;
height: 100%;
text-align: right;
position: relative;
overflow: none;}

main.tpl:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html dir="<pun_content_direction>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<pun_char_encoding>" />
<pun_include "headcontent.php">
<pun_head>
<link rel="stylesheet" type="text/css" href="../style.css" />
</head>
<body>
<div id="container">pagebody
        <img src="../images/b_01.gif" alt="logo" class="logo">
        <img src="../images/b_02.jpg" alt="" class="logob">
        <pun_include "printmenudiv.php">
<div class="pagebody">
    <div id="punwrap">
    <div id="pun<pun_page>" class="pun">

    <div id="brdheader" class="block">
        <div class="box">
            <div id="brdtitle" class="inbox">
                <pun_title>
                <pun_desc>
            </div>
            <pun_navlinks>
            <pun_status>
        </div>
    </div>

    <pun_announcement>

    <pun_main>

    <pun_footer>

    </div>
    </div>
</div></div>
</div></body>
</html>

thank you

http://img317.imageshack.us/img317/9633/untitled2copy8rv.th.jpg
Hi after configuring the body width to 800px the forum not look right on firefox (Under i.e. every thing fine).
can some one figure how to solve this problem?