2,301

(15 replies, posted in Feature requests)

Hmm, I'm not sure how accessible it is.
http://www.w3.org/TR/html401/struct/links.html

W3C wrote:

12.1.4 Link titles

The title attribute may be set for both A and LINK to add information about the nature of a link. This information may be spoken by a user agent, rendered as a tool tip, cause a change in cursor image, etc.

Thus, we may augment a previous example by supplying a title for each link:

<BODY>
...some text...
<P>You'll find a lot more in <A href="chapter2.html"
       title="Go to chapter two">chapter two</A>.
<A href="./chapter2.html"
       title="Get chapter two.">chapter two</A>.
See also this <A href="../images/forest.gif"
       title="GIF image of enchanted forest">map of
the enchanted forest.</A>
</BODY>

I think if the first few words of a topic are spoken for every topic, you would annoy anyone using a screen reader tongue

2,302

(11 replies, posted in PunBB 1.2 discussion)

Moved to PunBB Discussion, since this is a bit more of a general interest topic wink

2,303

(11 replies, posted in PunBB 1.2 discussion)

No, I think they're in alphabetical order by name (the problem is that case sensitive sorting is being done) wink

2,304

(15 replies, posted in Feature requests)

Hmm, I think that should be easy to make as an extension for 1.3 smile

2,305

(11 replies, posted in PunBB 1.2 discussion)

That's what you have there: the problem is the number of modifications.

2,306

(27 replies, posted in PunBB 1.2 discussion)

Tjalve wrote:
Smartys wrote:
Tjalve wrote:

SVN anon checkout broken?

just get:
Error * PROPFIND request failed on '/browser/branches/punbb-1.3-dev' PROPFIND of '/browser/branches/punbb-1.3-dev': 200 Ok (http://dev.punbb.org)

or am I just a nabb?

/browser is Trac
http://dev.punbb.org/svn/punbb/branches/punbb-1.3-dev/
That's SVN

ah, but anonymous access isn't working, asks for password.

It works fine for me, are you checking out?

2,307

(11 replies, posted in PunBB 1.2 discussion)

Punres, like you were doing: I would use the search at the top though.

Moved to Modifications

2,309

(11 replies, posted in PunBB 1.2 discussion)

Plugins are available for download on the PunBB downloads page.

2,310

(27 replies, posted in PunBB 1.2 discussion)

Tjalve wrote:

SVN anon checkout broken?

just get:
Error * PROPFIND request failed on '/browser/branches/punbb-1.3-dev' PROPFIND of '/browser/branches/punbb-1.3-dev': 200 Ok (http://dev.punbb.org)

or am I just a nabb?

/browser is Trac
http://dev.punbb.org/svn/punbb/branches/punbb-1.3-dev/
That's SVN

2,311

(2 replies, posted in PunBB 1.2 troubleshooting)

Install the language pack, then users can choose in their profile

Thanks wink

Hmm, what do you plan on using it for?

FIND

punbbtopics

REPLACE WITH

'.$db->prefix.'topics

http://wiki.punres.org/Last_post%27s_su … orum_index
Do the stuff that fpouget says, not the other stuff.

2,316

(38 replies, posted in PunBB 1.2 bug reports)

MattF wrote:
Smartys wrote:

However, as you might have guessed, we're looking for a bit more robust solution than that tongue

Aye. That's why I made sure I mentioned the hackish temporary put on bit with the hack question. big_smile

I'll focus my attention back on the definitions bit then. smile

Cheers again,

Matt

lol tongue
I know, I was just providing a hackish workaround tongue

2,317

(38 replies, posted in PunBB 1.2 bug reports)

No, it will simply reduce the likelihood of a race condition. A real hackish fix would be to simply keep the line as is but remove the "or error..." bit after. Then add a unique constraint just like MySQL has now. That way, you could never have duplicates: if the script tried to insert them, it would continue without erroring out.
However, as you might have guessed, we're looking for a bit more robust solution than that tongue

2,318

(7 replies, posted in PunBB 1.2 discussion)

Not without modifying the code.

2,319

(27 replies, posted in PunBB 1.2 discussion)

I'm not exactly sure what you mean. 1.3 is what I was talking about.

2,320

(27 replies, posted in PunBB 1.2 discussion)

The answer has not changed, it will be done when it is done. If you want an idea of what still needs to happen, you can see it here: http://dev.punbb.org/report/3

Edit: I changed the report so that you can see the tickets by milestone (look for 1.3 milestone)

2,321

(7 replies, posted in PunBB 1.2 discussion)

Moved to PunBB Discussion
Set the guest group as unable to read the forum. Then disable registration: you can add users using the user management plugin. Alternately, enable registration but set the default group for new users as unable to read the forum. Then, manually approve users by putting them in the "real" members group, which allows them to read the board.

2,322

(3 replies, posted in PunBB 1.2 troubleshooting)

Probably not a bug. Without seeing the actual site, we can't necessarily tell what the issue is though.

Closed, not a bug

http://www.novell.com/coolsolutions/feature/595.html

2,325

(6 replies, posted in Programming)

Moved to Programming

http://dev.mysql.com/doc/refman/5.0/en/ … table.html
so this should work

insert into db2.tableA (a,b,c,d) SELECT a, b, c, d FROM db1.tableA