Page 1 of 1
Several site qualms
Posted: 19 Aug 2006, 02:39
by AF
First of all I'm loading up pages hundreds of times a day from this site and each time I'm loading useless data such as css comments etc. Bloat, unnecessary stuff like comments tabs etc.
The phpbb style isnt right, look on the main page at the image filling the table squares, one is broken.
You need javascript to view the main page for some reason. Displaying it in a java Swing browser through AFLobby shows the site with lots of ">" at the start of every line and messages saying you need javascript.
Saving the site to disk also messes up the formatting too.
Posted: 19 Aug 2006, 02:52
by SwiftSpear
Comments and tabs are there so people editing the site can understand the webcode.
Posted: 19 Aug 2006, 04:05
by Gnomre
It's time to consider upgrading your connection if you're bitching about comments in css...
Posted: 19 Aug 2006, 17:22
by iamacup
i guess hes trying to manipulate it with his lobby..... but thats a guess.
Posted: 19 Aug 2006, 17:45
by AF
I can load it fine but:
those comments make up a large amount of bandwidth when you take into account the sheer number of times it's sent out across the web.
And yes comments are useful but, I doubt it's useful for people who're just surfing the site, so why cant they be taken out in that version of the files?
Posted: 19 Aug 2006, 19:13
by Tobi
If anything, optimize the slowest 10%, not the fastest 10%: a few comments...
You can win much more by putting shared stylesheets in separate documents or by using a server & browser that can gzip the data before sending and gunzip it after receiving.
In any case, as long as there's no problems on our side regarding bandwidth then this discussion is just utterly and entirely useless. (And even if we have a problem then we wouldn't start by removing comments from stylesheets, removing e.g. images is far more effective...)
Posted: 19 Aug 2006, 19:20
by AF
javascript being used on the main page, why?
Posted: 19 Aug 2006, 19:21
by Tobi
Protecting e-mail address from spam bots.
Seriously tho, one look at the javascript or surrounding html should have told you that.
Posted: 19 Aug 2006, 22:37
by mehere101
I found something out about the swing browser: it doesn't have a proper html 4 implementation. You have to look at some other way to display html if you want a partially functioning web browser.
Posted: 20 Aug 2006, 01:19
by AF
I only wanted to display the main page, but it looks like I need another solution.
Posted: 20 Aug 2006, 01:22
by Dragon45
Bujust launch the chosen brwoser 'inside' AF lobby?
Posted: 20 Aug 2006, 01:26
by AF
it's java not c/c++
Posted: 20 Aug 2006, 05:31
by FuzionMonkey
Well, the site could use a re-doing anyway.
Posted: 20 Aug 2006, 07:36
by mr sharpoblunto
mehere101 wrote:I found something out about the swing browser: it doesn't have a proper html 4 implementation. You have to look at some other way to display html if you want a partially functioning web browser.
not only that, it doesn't support CSS 1 properly, only a select subset, let alone CSS 2
Posted: 20 Aug 2006, 08:44
by Buggi
FuzionMonkey wrote:Well, the site could use a re-doing anyway.
LOL!!!
Anything else any one wants for free? I mean, c'mon... This site hasn't had an update in well over a year not counting the new logo at the top.
Posted: 20 Aug 2006, 16:28
by AF
I've offered to redo ti myself, I even set up a dev site, it's not as hard as people make out.......
The vast majority of work involved is aesthetics, the actual site functionality can be redone very veyr quickly unless you start from scratch.
Posted: 20 Aug 2006, 18:56
by FoeOfTheBee
I've noticed some other unnecessary characters in the css files.
Code: Select all
.header {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 18px;
font-weight: bold;
}
that last semi-colon is unnecessary, the site would be faster if the code were:
Code: Select all
.header {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 18px;
font-weight: bold
}
Also all the spaces after colons, before the curly-brace, and in the font-family list
Code: Select all
.header{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-size:18px;
font-weight:bold
}
And the tabs and linebreaks
Code: Select all
.header{font-family:Verdana,Arial,Helvetica,sans-serif;font-size:18px;font-weight:bold}
Much better.
please, please, do not take this post seriously
Posted: 20 Aug 2006, 21:05
by FuzionMonkey
Foe OfTheBee wrote:I've noticed some other unnecessary characters in the css files.
Code: Select all
.header {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 18px;
font-weight: bold;
}
that last semi-colon is unnecessary, the site would be faster if the code were:
Code: Select all
.header {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 18px;
font-weight: bold
}
Also all the spaces after colons, before the curly-brace, and in the font-family list
Code: Select all
.header{
font-family:Verdana,Arial,Helvetica,sans-serif;
font-size:18px;
font-weight:bold
}
And the tabs and linebreaks
Code: Select all
.header{font-family:Verdana,Arial,Helvetica,sans-serif;font-size:18px;font-weight:bold}
Much better.
please, please, do not take this post seriously
Much better my ass.
http://www.w3.org/
But it is more optimized.
http://www.cleancss.com/ is pretty helpful.
Posted: 20 Aug 2006, 21:11
by Dragon45
It's a semicolon. Stop bitching about it. It cant be more than a byte or two of data >_<
Edit: Whoops, apparently, he specifially said ' do not take this post seriously '
I phail :`(
Posted: 20 Aug 2006, 23:41
by jcnossen
Hehe, fun, I actually got annoyed before reading the small text
