Ok, j'ai posté ma demande de recrutement.
102 2004-11-05 12:08
Re: PunBB 1.2 development source (277 replies, posted in PunBB 1.2 discussion)
I have a question to Rickard:
What's the utility of $lang_register['Pass info 2'] in lang/.../register.php ?
It isn't in a file!
103 2004-11-02 12:34
Re: Poll: What browser do you use? (101 replies, posted in General discussion)
Firefox 1.0PR to see the web in all its beauty.
IE 6 for testing the "shit" (sorry but I have only this word in english to say "daube") which it makes with the CSS.
104 2004-11-02 12:28
Re: Style (7 replies, posted in Archive)
Répare tes tables et si ça ne fonctionne pas, réinstalle PunBB.
Pour centrer, tu dois mettre dans ta feuille de style CSS : text-align:center dans le body, text-align:left et margin:auto dans TABLE.punmain, TABLE.punplain et TABLE.punspacer.
105 2004-11-01 19:56
Re: Style (7 replies, posted in Archive)
Pour faire que les utilisateurs ne peuvent pas changer de style, tu n'as qu'a en mettre qu'un dans style/.
Pour changer le style de tous les utilisateurs, lance cet commande dans phpMyAdmin :
UPDATE `users` SET `style` = 'ton_style' ;
Pour la taille du forum, change le width dans la feuille de style CSS dans TABLE.punmain, TABLE.punplain et TABLE.punspacer.
Je ne comprends pas ta troisième question ?!?
106 2004-11-01 15:56
Re: PunBB 1.2 - What's to come (300 replies, posted in PunBB 1.2 discussion)
Thank you very much, but I want the translation which is understood best, not to make a book like Prust.
It's a big debate which to have to choose between a word purely French-speaking or drawn from English.
I must as say as your link is very good.
107 2004-11-01 15:45
Re: PunBB 1.2 development source (277 replies, posted in PunBB 1.2 discussion)
Rickard must replace :
if ($num_users > 0)
By :
if (@$num_users > 0)
Edit: To be valid with E_ALL.
108 2004-11-01 15:41
Re: Style (7 replies, posted in Archive)
La préfèrence dans le panneau d'admin est celle pour les Guest (Invités) et c'est celle qui est mise par défaut à l'inscription. Pour changer le style dans ton compte, clique sur Profil.
Pour les styles :
http://www.punres.org/viewforum.php?id=2
109 2004-11-01 11:35
Re: PunBB 1.2 - What's to come (300 replies, posted in PunBB 1.2 discussion)
About the french translation, indeed, it's and old version, pretty done (but I would have prefer courriel instead of e-mail : it's a french translation, isn't it ?), but not complete at this time for 1.1.5.
I don't know if someone is working on it ?
For "courriel", I think many people understand "e-mail". It's like "newsletter" and "infolettre", "newsletter" is more known.
And for the french translation, I work on it and I think that all the people who want it can work above.
110 2004-10-31 20:13
Re: PunBB 1.2 - What's to come (300 replies, posted in PunBB 1.2 discussion)
For the smilies in 1.2, the smile and the wink are very deformed.
I created a version not deformed and (I find) more beautiful :
,
111 2004-10-31 19:56
Re: PunBB 1.2 - What's to come (300 replies, posted in PunBB 1.2 discussion)
I have already make the beginning of the translation for PunBB 1.2 (I think that there are not many differences in the final compared to the dev).
Certain translation are not very right, I corrected them.
112 2004-10-31 19:09
Re: PunBB 1.2 - What's to come (300 replies, posted in PunBB 1.2 discussion)
Yes but what's the address of Mata Jean-Paul and Denis Labat ?
I'd like to continue the french translation.
113 2004-10-31 18:27
Re: PunBB 1.2 - What's to come (300 replies, posted in PunBB 1.2 discussion)
Is the french translation made by Xiutecutli ? I think that yes but I'm not sure.
Now, there is a big confusion in my spirit. lol
114 2004-10-31 11:26
Re: PunBB 1.2 - What's to come (300 replies, posted in PunBB 1.2 discussion)
Good ! You make a fantastic forum !
I want to help you. Why not I make the french traduction with Xiutecutli ?
115 2004-10-31 07:52
Re: Link to the profile on username (4 replies, posted in Feature requests)
Yes, I think it's possible with this code :
<?php
$pun_root = './';
require $pun_root.'include/common.php';
$username = $_GET['username'];
$show_group = -1;
$sort_by = 'username';
$sort_dir = 'ASC';
// Create any SQL for the WHERE clause
$where_sql = array();
$like_command = ($db_type == 'pgsql') ? 'ILIKE' : 'LIKE';
if ($username != '')
$where_sql[] = 'username '.$like_command.' \''.$db->escape(str_replace('*', '%', $username)).'\'';
if ($show_group > -1)
$where_sql[] = ($show_group == 0) ? 'status<1' : 'status='.$show_group;
$start_from = 0;
// Grab the users
$result = $db->query('SELECT id, username FROM '.$db->prefix.'users WHERE id>1'.(!empty($where_sql) ? ' AND
'.implode(' AND ', $where_sql) : '').' ORDER BY
'.$sort_by.' '.$sort_dir.' LIMIT '.$start_from.', 50') or error('Unable to fetch user list', __FILE__, __LINE__, $db->error());
$user_data = $db->fetch_assoc($result);
echo '<a href="profile.php?id='.$user_data['id'].'">'.pun_htmlspecialchars($user_data['username']).'</a>';
?>
( For test this code, place him in script_name.php and go to script_name.php?username=I_want_this_username. )
But it use a lot of DB queries. I don't know how to make lighter.
Why not in PunBB 1.2 ?
116 2004-10-30 19:58
Re: Link to the profile on username (4 replies, posted in Feature requests)
Good idea, lol ! And for the last poster ?
117 2004-10-30 16:17
Topic: Link to the profile on username (4 replies, posted in Feature requests)
Hello, (sorry for my bad english, I speak french)
Can you create a link on the username to the profile of the user ?
- At the left of "Logged in as".
- At the bottom of date of the last post by...
Sorry, I did not make a research, I don't know the terms in english.
That's possible ? It's very useful to go fast to the profile.