51

(38 replies, posted in PunBB 1.2 discussion)

Sander D. wrote:

? PunBB isn't using XML, so you're not using the advantages of XHTML.

XHTML is a specification of a document type in XML.

So, yes, it does.

XHTML 1.0 (this specification) is the first document type in the XHTML family. It is a reformulation of the three HTML 4 document types as applications of XML 1.0 [XML]. It is intended to be used as a language for content that is both XML-conforming and, if some simple guidelines are followed, operates in HTML 4 conforming user agents.

-------------------------------------------------------

Sander D. wrote:

? It needs more code. Compare an XHTML page to the smaller HTML page. The difference is more than 2 kilobytes, and that will be more on other pages. I thought you didn't want to have huge HTML pages?

as soon as you style the output of your pages to look the same in all modern browsers, the difference is dramatic, but not in the way that you propose.

the power of xhtml + css is well documented and really without argument these days.


-------------------------------------------------------

Sander D. wrote:

? You aren't using it the right way; XHTML should have the MIME type "application/xhtml+xml" and now that's "text/html". But you shouldn't use "application/xhtml+xml" either, because some browsers don't accept it.

from the top of this page you're looking at right now...

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

<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>PunBB.org Forums / Why XHTML?</title>

and from the page at the w3.org you linked

This document summarizes the best current practice for using various Internet media types for serving various XHTML Family documents. In summary, 'application/xhtml+xml' SHOULD be used for XHTML Family documents, and the use of 'text/html' SHOULD be limited to HTML-compatible XHTML 1.0 documents. 'application/xml' and 'text/xml' MAY also be used, but whenever appropriate, 'application/xhtml+xml' SHOULD be used rather than those generic XML media types.

so, there's nothing wrong with 'text/html' for xhtml 1.0 strict.

what's wrong with the way it's implemented here?

52

(137 replies, posted in News)

should probably change this paragraph on the about page...

http://punbb.org/about.php


Some features that I have so far chosen not to implement are: private messaging, file attachments in posts, definable user groups, polls, post preview, linking to off-site avatars, advanced text formatting controls, subforums etc etc. Some of these features might still get implemented, just not in the near future.

yay for groups and preview!

53

(5 replies, posted in PunBB 1.2 discussion)

http://www.dnsmadeeasy.com
has been the DNS host of choice for most of the TextDrive peoples when they've needed an offsite host.

highly recommended.

$5/year for their smallest managed plan

http://www.dnsmadeeasy.com/s0306/price/dns.html

54

(1 replies, posted in PunBB 1.2 discussion)

that's two years old



EDIT: and resolved before punbb went to 1.0 - it was an issue with 1.0beta2

55

(20 replies, posted in PunBB 1.2 discussion)

Gary13579 wrote:

odd, the forums are running very fast, yet textdrive.com is extremly slow...


just for the record - as i understand it...

textdrive.com is hosted on it's own mothership of a server

hosted sites are (currently) on two other shared servers.

being the site of a developer, punbb.org might have it's own special corner reserved somewhere.

so, just because textdrive.com is fast/slow/whatever - might have no bearing on this site.

why aren't the indexes created in the CREATE TABLE command?

MySQL Manual CREATE INDEX wrote:

Normally, you create all indexes on a table at the time the table itself is created with CREATE TABLE. See section 13.2.6 CREATE TABLE Syntax. CREATE INDEX allows you to add indexes to existing tables.

http://dev.mysql.com/doc/mysql/en/CREATE_TABLE.html