Pouet features
category: general [glöplog]
Yeah, I was wondering about as well :D
"about that"*, damn :I
Yes, I meant thumbnails. Sorry, that was ambiguous.
Would be really nice with a user->group relation possible in the account-settings. Should be shown when clicking on a user's name. Could also be used in conjunction with users' posts on the BBS.
Even if users have to fill in an ID of the group-table. Can't see anyone would have problems with that. No need for fancyness - just good old plain functionality. Leave the niceness to Apple and the inginuity to Google ;)
what punqtured here suggests is actually the only betterment of pouet i'd really like. And perhaps a more userfriendly forum, but the current BBS has its charm too.
create new table user_group_rel (id int not null primary key auto_increment, user_id int not null, group_id int not null)
<input type='text' name='group_id'>
function add_new_user() {
insert into users ...
$group = new Group();
$group->find($input->group_id);
$user_group_rel = new UserGroupRel();
$user_id = mysql_last_insert_id-stuff-whatever...();
$user_group_rel->user_id = $user_id;
$user_group_rel->group_id = $group->id;
$user_group_rel->save();
That's probably about the work it takes to implement that feature ;)
<input type='text' name='group_id'>
function add_new_user() {
insert into users ...
$group = new Group();
$group->find($input->group_id);
$user_group_rel = new UserGroupRel();
$user_id = mysql_last_insert_id-stuff-whatever...();
$user_group_rel->user_id = $user_id;
$user_group_rel->group_id = $group->id;
$user_group_rel->save();
That's probably about the work it takes to implement that feature ;)
Actually, a simple "group_id" field in the user profile table (which links to http://pouet.net/groups.php?which=$id - like the cdcs) could do the job
wullon: what about being in multiple groups?
I can't think of a single scener in multiple groups.
Ferris: Hi, my name is Kuroto and i'm in RBBS and SMS Power! ;)
Nope, can't think of a single one.
Buuurrrrnnnnn!!!!
well it actually wasn't meant that way, considering my first comment was a joke to begin with.
T$>multiple fields (like CDCs :p)
Still, it's of course a bad way to do this.
Still, it's of course a bad way to do this.
i'd like to see the hours i've lost browsing this website
I think we need a list of what groups ne7 and h2o aren't in, really.
I just noticed the "upcoming parties" box. Has it been there for ages already?
But... maybe the boxes "some stats" and "upcoming parties" could interchange locations?
But... maybe the boxes "some stats" and "upcoming parties" could interchange locations?
also an "actual party" box might be useful.
The upcoming party box is still one day off. (e.g. "today" should be "tomorrow" etc.)
yay rounding. fixed.
although having a day minus to encourage people to work harder on their prods might have been a good idea.
yes
Is it possible to reverse the page counter of the prodlist while in "order=added" mode?
Currently, page 1 is the newest and page N the oldest, which causes all pages from 1 to N to change with each new prod added.
If page 1 would contain the oldest and page N the newest, the page urls would be way more stable.
Currently, page 1 is the newest and page N the oldest, which causes all pages from 1 to N to change with each new prod added.
If page 1 would contain the oldest and page N the newest, the page urls would be way more stable.
i'll look into it tomorrow