Looking for help: Uniformizing the ScummVM webpages

General chat related to ScummVM, adventure gaming, and so on.

Moderator: ScummVM Team

Post Reply
User avatar
dhewg
ScummVM Porter
Posts: 166
Joined: Wed Jun 04, 2008 8:41 pm

Post by dhewg »

billwashere wrote: I don't care, I simply do what I'm told
Also, what else needs uniformizing?
http://buildbot.scummvm.org/
http://article.gmane.org/gmane.games.devel.scummvm/8845

do eeeeet :wink:
billwashere
Posts: 63
Joined: Sat Feb 14, 2009 8:43 am
Location: Australia

Post by billwashere »

Quick question. Is there a easy tutorial to set up buildbot so I can test my templates?
User avatar
dhewg
ScummVM Porter
Posts: 166
Joined: Wed Jun 04, 2008 8:41 pm

Post by dhewg »

billwashere wrote:Quick question. Is there a easy tutorial to set up buildbot so I can test my templates?
depends, i'd say. if you're familiar with python it should be straight forward. if you're on windows, i can't assist much i'm afraid, i only know it from linux.

its probably easier if we just test it on the buildbot box. either hop on irc or attach something here. i can copy the files over and we see what happens ;)
fingolfin
Retired
Posts: 1452
Joined: Wed Sep 21, 2005 4:12 pm

Post by fingolfin »

I think billwashere said on IRC that he's using Ubuntu? Any progress with that stuff?

On an unrelated side note (more direct at dhweg, I guess ;): Would it be possible to tweak our buildbot so that it turns the revision SHA-1 ids into hyperlinks? E.g.. on http://buildbot.scummvm.org/console?category=master, it lists stuff like "bd82ebd080bf..." in the first column. That could be turned into a hyperlink to <https://github.com/scummvm/scummvm/commit/bd82ebd080bf>. Presto, basic integration with github achieved :).
billwashere
Posts: 63
Joined: Sat Feb 14, 2009 8:43 am
Location: Australia

Post by billwashere »

A slow progress on buildbot with uni and everything. I have a problem with the db. I get a whole stack of errors with "trail buildbot"
billwashere
Posts: 63
Joined: Sat Feb 14, 2009 8:43 am
Location: Australia

Post by billwashere »

I finally got buildbot to work enough to skin it.

http://scummvm.comlu.com/buildbot-scummvm-0.0.1.zip

Hopefully it works :wink:
fingolfin
Retired
Posts: 1452
Joined: Wed Sep 21, 2005 4:12 pm

Post by fingolfin »

Cool, thanks! I'll see if I can convince somebody to give it a try.
billwashere
Posts: 63
Joined: Sat Feb 14, 2009 8:43 am
Location: Australia

Post by billwashere »

Is there anything else that needs to be done besides phpbb3 skin?
User avatar
md5
ScummVM Developer
Posts: 2250
Joined: Thu Nov 03, 2005 9:31 pm
Location: Athens, Greece

Post by md5 »

billwashere wrote:Is there anything else that needs to be done besides phpbb3 skin?
A phpbb3 skin would be awesome :)

Next thing to do would be the web page, especially the downloads section. There was a WIP version with jQuery and CSS-based layouts, but it has been abandoned, sadly
User avatar
dhewg
ScummVM Porter
Posts: 166
Joined: Wed Jun 04, 2008 8:41 pm

Post by dhewg »

thx, buildbot stuff is online. its... colorful :)
fingolfin
Retired
Posts: 1452
Joined: Wed Sep 21, 2005 4:12 pm

Post by fingolfin »

Hmm, to me it looks as if there is some CSS lacking? For me it looks like this: Image (on Mac OS X, with Firefox 4)
billwashere
Posts: 63
Joined: Sat Feb 14, 2009 8:43 am
Location: Australia

Post by billwashere »

Hmm, to me it looks as if there is some CSS lacking? For me it looks like this:
Looks like someone forgot to replace layout.html

EDIT: Upon closer inspection, the css is correct but the template is still the old one.
User avatar
dhewg
ScummVM Porter
Posts: 166
Joined: Wed Jun 04, 2008 8:41 pm

Post by dhewg »

looks like buildbot cached some files, restarted it and it looks different and better now!

there's a visible gap on the top:
Image
Chromium 11.0.696.43 (81213) Ubuntu 11.04

thanks for your work, i like it :)
billwashere
Posts: 63
Joined: Sat Feb 14, 2009 8:43 am
Location: Australia

Post by billwashere »

there's a visible gap on the top:
A known forum layout bug in webkit.

Replace in layout.html (lines 22 - 26)

Code: Select all

    &#123;% block header %&#125;
<table align="center" border="0" cellpadding="0" cellspacing="0" width="90%">
        <tbody>
            <tr>
                <td>
with

Code: Select all

    &#123;% block header %&#125;
<table align="center" border="0" cellpadding="0" cellspacing="0" width="90%">
        <tbody>
            <tr>
                <td style="width&#58; 199px;">
also in http://buildbot.scummvm.org/builds.html the css needs to be changed to default.css
User avatar
dhewg
ScummVM Porter
Posts: 166
Joined: Wed Jun 04, 2008 8:41 pm

Post by dhewg »

nice, works!
Post Reply