Author Topic: wierd ff8 stuff  (Read 11628 times)

J*** H*******

  • Guest
wierd ff8 stuff
« Reply #25 on: 2002-01-23 15:50:00 »
Message.

mirex

  • *
  • Posts: 1645
    • View Profile
    • http://mirex.mypage.sk
wierd ff8 stuff
« Reply #26 on: 2002-01-24 11:17:00 »
Im using IE5 on W2k.

btw: i was looking on sourcecode and there is
<TD BGCOLOR=BLACK><FONT class=spoiler> bg color is black, its ok, but in text styles file i cant find 'spoiler' style. Maybe that is problem ?

Or maybe im going into something i dont understand :) ?

The SaiNt

  • *
  • Posts: 1300
    • View Profile
wierd ff8 stuff
« Reply #27 on: 2002-01-24 12:01:00 »
Quote

On 2002-01-24 07:17, mirex wrote:
Im using IE5 on W2k.

btw: i was looking on sourcecode and there is
<TD BGCOLOR=BLACK><FONT class=spoiler> bg color is black, its ok, but in text styles file i cant find 'spoiler' style. Maybe that is problem ?

Or maybe im going into something i dont understand :) ?

Try clearing your cache.
[edited] 1 2002-01-24 13:02

PurpleSmurf

  • *
  • Posts: 763
    • View Profile
wierd ff8 stuff
« Reply #28 on: 2002-01-24 21:36:00 »
mirex: are you goging to View->Source? cause thats the html. the spolier code is in the php files, it's something like this "http://forums.qhimm.com/includes/bbcode.php" or maybe .tpl. and i don't really know the phpBB 1.4x file structure and i'm sure it's in a different area. oh, and only qhimm and sain have access to those as far as i know. oh and don't goto to that it won't show you anything.

ficedula

  • *
  • Posts: 2178
    • View Profile
    • http://www.ficedula.co.uk
wierd ff8 stuff
« Reply #29 on: 2002-01-24 21:46:00 »
No - styles are declared in CSS files. PHP files can't do anything that's *not* visible to you - otherwise how on earth would your browser know how to render it! "Hmm, my psychic powers tell me the computer wanted this to be black!".

Darkness

  • *
  • Posts: 2181
    • View Profile
    • http://www.x0r.net
wierd ff8 stuff
« Reply #30 on: 2002-01-24 22:03:00 »
i dont think you can see decision structures and the like.

The SaiNt

  • *
  • Posts: 1300
    • View Profile
wierd ff8 stuff
« Reply #31 on: 2002-01-25 01:00:00 »
Quote

On 2002-01-24 17:36, PurpleSmurf wrote:
mirex: are you goging to View->Source? cause thats the html. the spolier code is in the php files, it's something like this "http://forums.qhimm.com/includes/bbcode.php" or maybe .tpl. and i don't really know the phpBB 1.4x file structure and i'm sure it's in a different area. oh, and only qhimm and sain have access to those as far as i know. oh and don't goto to that it won't show you anything.

Here's how phpBB2 works.
phpBB2 uses .tpl(template) files to include it's HTML, the files are included into the generated HTML file so you end up downloading msg text + HTML(template) together everytime you view a page.

Here's how things work here on Qhimm's Forums:-

We run a very strange version of phpBB here ;)
Certain common HTML information is stored in .JS files so you don't end up downloading them everytime you decide to view them. (JS files are cached)
You won't notice the advantage of this if you view just one page. In fact, just viewing one page might make you d/l more than needed.
I use this method to improve on the current gzip compression method. Since the board  "compresses" information across many pages instead of a single one, you save download time. ;)
In an ideal situation, all HTML is stored into JS files, so you only d/l the msg data. I haven't found the time to do that yet though, only a small amount of html uses .JS files at the moment. ;)

The styles are stored in a .CSS file.

Spoiler tags, code tags, etc are stored in PHP files which in turn parse the message BEFORE it is downloaded. Therefore, what you see has already been parsed on the server.