platal.git
16 years agoClose #743: Warning when editing subscription of a non-X.
Florent Bruneau [Sun, 9 Dec 2007 17:46:08 +0000 (18:46 +0100)]
Close #743: Warning when editing subscription of a non-X.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoDon't show an empty identity if neither name nor firstname are defined for
Florent Bruneau [Sun, 9 Dec 2007 17:41:46 +0000 (18:41 +0100)]
Don't show an empty identity if neither name nor firstname are defined for
the user.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoSearching mentors in advanced search works back. (Closes #741)
Florent Bruneau [Sun, 9 Dec 2007 17:33:27 +0000 (18:33 +0100)]
Searching mentors in advanced search works back. (Closes #741)

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoCloses #742: Saved subdomain not preselected when editing profile.
Florent Bruneau [Sun, 9 Dec 2007 17:09:17 +0000 (18:09 +0100)]
Closes #742: Saved subdomain not preselected when editing profile.

16 years agoReally reactive address.
Florent Bruneau [Sat, 1 Dec 2007 17:28:45 +0000 (18:28 +0100)]
Really reactive address.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoIE suxx (onclick instead of onchange...)
Florent Bruneau [Sat, 1 Dec 2007 16:56:19 +0000 (17:56 +0100)]
IE suxx (onclick instead of onchange...)

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix another payment count issue.
Florent Bruneau [Thu, 29 Nov 2007 21:03:50 +0000 (22:03 +0100)]
Fix another payment count issue.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix payment count in some specific cases.
Florent Bruneau [Tue, 27 Nov 2007 19:19:33 +0000 (20:19 +0100)]
Fix payment count in some specific cases.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agotypo
Stéphane Jacob [Fri, 23 Nov 2007 12:33:49 +0000 (13:33 +0100)]
typo

16 years ago1921 is the oldest promotion we have
Stéphane Jacob [Fri, 23 Nov 2007 11:53:32 +0000 (12:53 +0100)]
1921 is the oldest promotion we have

16 years agoAllow HTTP for manageurs and e-confiance.
Florent Bruneau [Wed, 21 Nov 2007 14:22:15 +0000 (15:22 +0100)]
Allow HTTP for manageurs and e-confiance.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix moderation form.
Florent Bruneau [Tue, 20 Nov 2007 22:11:13 +0000 (23:11 +0100)]
Fix moderation form.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoI hate having a profile looking like a draft.
Florent Bruneau [Thu, 15 Nov 2007 18:50:47 +0000 (19:50 +0100)]
I hate having a profile looking like a draft.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoCloses #729: Fix positioning of addresses on public profile.
Florent Bruneau [Thu, 15 Nov 2007 18:23:12 +0000 (19:23 +0100)]
Closes #729: Fix positioning of addresses on public profile.

Use iteration number instead of internal id of the addresses to select left
or right.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoAnother payment computation bug.
Florent Bruneau [Thu, 15 Nov 2007 12:18:21 +0000 (13:18 +0100)]
Another payment computation bug.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoDo not store payments on multiple SQL entry.
Florent Bruneau [Thu, 15 Nov 2007 12:03:26 +0000 (13:03 +0100)]
Do not store payments on multiple SQL entry.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoTypo
Florent Bruneau [Tue, 13 Nov 2007 20:09:53 +0000 (21:09 +0100)]
Typo

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoAdd a step function to the profiler to easily switch to another event of the same...
Florent Bruneau [Sat, 10 Nov 2007 23:36:19 +0000 (00:36 +0100)]
Add a step function to the profiler to easily switch to another event of the same category.

Before:                                     After:
PlProfiler::start("Machin", "truc");        PlProfiler::start("Machin", "truc");
do_truc();                                  do_truc();
PlProfiler::stop("Machin");
PlProfiler::start("Machin", "bidule");      PlProfiler::step("Machin", "bidule");
do_bidule();                                do_bidule();
PlProfiler::stop("Machin");                 PlProfiler::stop("Machin);

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoOops, wrong order.
Florent Bruneau [Sat, 10 Nov 2007 22:39:21 +0000 (23:39 +0100)]
Oops, wrong order.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoAdd a new PlProfiler tool based on PlBacktrace.
Florent Bruneau [Sat, 10 Nov 2007 22:36:50 +0000 (23:36 +0100)]
Add a new PlProfiler tool based on PlBacktrace.

To use:
Just add
PlProfiler::start("category", "event");
PlProfiler::stop("category");

so, if you want both to profile a loop and each step of the loop:
PlProfiler::start("my loop");
for ($i = 0 ; $i < 2000 ; ++$i) {
  PlProfiler::start("my step", $i);
  do_sth();
  PlProfiler::stop("my step");
}
PlProfiler::stop("my loop");

The result will be displayed as a backtrace by category.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoOnly 1 SQL query to build the list of events in the main page.
Florent Bruneau [Sat, 10 Nov 2007 19:18:15 +0000 (20:18 +0100)]
Only 1 SQL query to build the list of events in the main page.
(was at least 4, at most 8)

This implies we fetch all the data (even the text of the events the user
marked as read), but this is lighter than doing multiple queries.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix session init when the user have no last connection.
Florent Bruneau [Sat, 10 Nov 2007 17:54:43 +0000 (18:54 +0100)]
Fix session init when the user have no last connection.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoJust a bit of fun...
Florent Bruneau [Sat, 10 Nov 2007 17:22:49 +0000 (18:22 +0100)]
Just a bit of fun...

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoAdd a small command line tool to get information about a user.
Florent Bruneau [Sat, 10 Nov 2007 15:12:49 +0000 (16:12 +0100)]
Add a small command line tool to get information about a user.

Just run ./getuser.sh "fields" "Name" ["promo"] eg.:
./getuser.sh user_id "F B" 2003 will output

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoSmall fixes of the axletter.
Florent Bruneau [Sat, 10 Nov 2007 11:14:24 +0000 (12:14 +0100)]
Small fixes of the axletter.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoNicer NL edition form
Florent Bruneau [Thu, 8 Nov 2007 21:57:05 +0000 (22:57 +0100)]
Nicer NL edition form

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoMinor improvement of keynote skin
Florent Bruneau [Thu, 8 Nov 2007 21:52:46 +0000 (22:52 +0100)]
Minor improvement of keynote skin

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoBuild carnet notification email using PlMailer wiki capability.
Florent Bruneau [Mon, 5 Nov 2007 22:26:05 +0000 (23:26 +0100)]
Build carnet notification email using PlMailer wiki capability.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoset utf8 as default for all new tables in x4dat
Pascal Corpet [Sun, 4 Nov 2007 16:09:30 +0000 (17:09 +0100)]
set utf8 as default for all new tables in x4dat

16 years agoPack html generated by the MiniWiki in <html><body> in mails.
Florent Bruneau [Sun, 4 Nov 2007 15:07:08 +0000 (16:07 +0100)]
Pack html generated by the MiniWiki in <html><body> in mails.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix #735: Encoding of list description in member edition form.
Florent Bruneau [Sat, 3 Nov 2007 16:38:11 +0000 (17:38 +0100)]
Fix #735: Encoding of list description in member edition form.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoUse bootstrap to initialize NbIns and NbValid
Florent Bruneau [Sat, 3 Nov 2007 16:25:34 +0000 (17:25 +0100)]
Use bootstrap to initialize NbIns and NbValid
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoSwitch the request number to a dynamic variable.
Florent Bruneau [Sat, 3 Nov 2007 16:25:11 +0000 (17:25 +0100)]
Switch the request number to a dynamic variable.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoAdd a 'bootstrap' method to globals to initialize dynamic variables.
Florent Bruneau [Sat, 3 Nov 2007 16:23:58 +0000 (17:23 +0100)]
Add a 'bootstrap' method to globals to initialize dynamic variables.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoBootstrap useful dynamic variable when needed.
Florent Bruneau [Sat, 3 Nov 2007 14:37:24 +0000 (15:37 +0100)]
Bootstrap useful dynamic variable when needed.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoUpdate Makefile:
Florent Bruneau [Sat, 3 Nov 2007 12:26:51 +0000 (13:26 +0100)]
Update Makefile:
* Add .htaccess in uploads/temps/
* Update banana build (since it is not packaged anymore)
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoxhtml validation, and small skin improvements.
Florent Bruneau [Sat, 3 Nov 2007 11:22:30 +0000 (12:22 +0100)]
xhtml validation, and small skin improvements.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoRemove useless text.
Florent Bruneau [Sat, 3 Nov 2007 11:06:12 +0000 (12:06 +0100)]
Remove useless text.
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoChange perms on xnet stay on the current page.
Florent Bruneau [Fri, 2 Nov 2007 22:57:47 +0000 (23:57 +0100)]
Change perms on xnet stay on the current page.

This make this thing very easy to use, just select the permission and see
what the current page looks like.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoSkin layout improvements.
Florent Bruneau [Fri, 2 Nov 2007 22:53:01 +0000 (23:53 +0100)]
Skin layout improvements.
-> remove breadcrumb (it didn't contains any 'new' information)
-> move the 'change my permission' form in the menu
-> place plwizard's tab on the top of the 'body' part
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoSmall improvement.
Florent Bruneau [Fri, 2 Nov 2007 20:30:07 +0000 (21:30 +0100)]
Small improvement.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoBetter look for tabs on X.net
Florent Bruneau [Fri, 2 Nov 2007 20:13:30 +0000 (21:13 +0100)]
Better look for tabs on X.net

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix a notice
Florent Bruneau [Fri, 2 Nov 2007 20:12:42 +0000 (21:12 +0100)]
Fix a notice

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix link to banana message on x.net.
Florent Bruneau [Fri, 2 Nov 2007 16:56:33 +0000 (17:56 +0100)]
Fix link to banana message on x.net.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoRemove deprecated old-fashing tabs skinning
Florent Bruneau [Fri, 2 Nov 2007 16:47:03 +0000 (17:47 +0100)]
Remove deprecated old-fashing tabs skinning

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoDon't show NNTP client notice on X.net (link are not valid).
Florent Bruneau [Fri, 2 Nov 2007 16:46:22 +0000 (17:46 +0100)]
Don't show NNTP client notice on X.net (link are not valid).

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoUgly port of plwizard skinning to X.net.
Florent Bruneau [Fri, 2 Nov 2007 16:45:13 +0000 (17:45 +0100)]
Ugly port of plwizard skinning to X.net.
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoAdded support for ML archives for PlWizard powered banana
Florent Bruneau [Fri, 2 Nov 2007 16:25:00 +0000 (17:25 +0100)]
Added support for ML archives for PlWizard powered banana

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoPort profile page and have lighter code to handle the wall thing
Florent Bruneau [Fri, 2 Nov 2007 16:04:57 +0000 (17:04 +0100)]
Port profile page and have lighter code to handle the wall thing

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFirst fast port of banana to PlWizard
Florent Bruneau [Fri, 2 Nov 2007 13:03:26 +0000 (14:03 +0100)]
First fast port of banana to PlWizard
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoUse {$global->..->NbIns} instead of {insert name="getNbIns"}
Florent Bruneau [Thu, 1 Nov 2007 20:14:16 +0000 (21:14 +0100)]
Use {$global->..->NbIns} instead of {insert name="getNbIns"}

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoCache the NbNotifs in session data.
Florent Bruneau [Thu, 1 Nov 2007 10:39:10 +0000 (11:39 +0100)]
Cache the NbNotifs in session data.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoAdd banana in __autoload to be sure session data are correctly handled.
Florent Bruneau [Sun, 28 Oct 2007 23:13:07 +0000 (00:13 +0100)]
Add banana in __autoload to be sure session data are correctly handled.
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoDo not add text in verbose checkdb message.
Florent Bruneau [Sun, 28 Oct 2007 23:12:19 +0000 (00:12 +0100)]
Do not add text in verbose checkdb message.
The verbose state is already indicated in the mail subject, so there's no
need of a reminder two lines below. This avoid void mail to be sent when no
db check failed in verbose mode.

Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoOops forgot one file.
Pascal Corpet [Sun, 28 Oct 2007 23:01:57 +0000 (00:01 +0100)]
Oops forgot one file.

16 years agoUses new dynamic config to store number of subscribers so we don't
Pascal Corpet [Sun, 28 Oct 2007 22:58:58 +0000 (23:58 +0100)]
Uses new dynamic config to store number of subscribers so we don't
recalculate it on each page.

16 years agoAdds a dynamic configuration ini file.
Pascal Corpet [Sun, 28 Oct 2007 22:52:03 +0000 (23:52 +0100)]
Adds a dynamic configuration ini file.

16 years agoAdd a where clause to table editor
Pascal Corpet [Sun, 28 Oct 2007 20:07:43 +0000 (21:07 +0100)]
Add a where clause to table editor

16 years agoSet an alt in icon when there is a title
Pascal Corpet [Sun, 28 Oct 2007 20:05:53 +0000 (21:05 +0100)]
Set an alt in icon when there is a title

16 years agoOops, fix 45319df (default value for baseurl)
Florent Bruneau [Sun, 28 Oct 2007 18:15:29 +0000 (19:15 +0100)]
Oops, fix 45319df (default value for baseurl)
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoDon't hide emails for connected user.
Florent Bruneau [Sun, 28 Oct 2007 18:11:34 +0000 (19:11 +0100)]
Don't hide emails for connected user.

This causes a large speedup for pages with a lot of emails (ML, banana...)
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoAccept a default value for baseurl
Florent Bruneau [Sun, 28 Oct 2007 17:55:08 +0000 (18:55 +0100)]
Accept a default value for baseurl
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoPHP's gc sucks
Florent Bruneau [Sun, 28 Oct 2007 16:14:03 +0000 (17:14 +0100)]
PHP's gc sucks
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix an error in error_handler making debug a bit harder
Florent Bruneau [Sun, 28 Oct 2007 12:29:15 +0000 (13:29 +0100)]
Fix an error in error_handler making debug a bit harder
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoRemove BDD warning for region in entreprise addresses
Florent Bruneau [Sun, 28 Oct 2007 09:47:17 +0000 (10:47 +0100)]
Remove BDD warning for region in entreprise addresses

16 years agoBegin promo statistics at 1930 - fix picture title
Raphaël Marichez [Fri, 26 Oct 2007 09:53:57 +0000 (11:53 +0200)]
Begin promo statistics at 1930 - fix picture title

Signed-off-by: Raphaël Marichez <falco@gentoo.org>
16 years agoUse auth-groupex instead for auth-groupesx.php for Xnet authentication.
Florent Bruneau [Wed, 24 Oct 2007 20:52:22 +0000 (22:52 +0200)]
Use auth-groupex instead for auth-groupesx.php for Xnet authentication.
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix a missing urlencode in group auth that leads to some encoding failures
Florent Bruneau [Wed, 24 Oct 2007 20:31:40 +0000 (22:31 +0200)]
Fix a missing urlencode in group auth that leads to some encoding failures
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoClose #732: Adapt subscription text to the sex of the subscriber
Florent Bruneau [Wed, 24 Oct 2007 18:24:37 +0000 (20:24 +0200)]
Close #732: Adapt subscription text to the sex of the subscriber
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix wiki text in RSS
Florent Bruneau [Tue, 23 Oct 2007 19:24:52 +0000 (21:24 +0200)]
Fix wiki text in RSS
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix double html_entities in event admin form
Florent Bruneau [Tue, 23 Oct 2007 19:14:31 +0000 (21:14 +0200)]
Fix double html_entities in event admin form
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix edition of non well geolocalized jobs
Florent Bruneau [Mon, 22 Oct 2007 18:25:18 +0000 (20:25 +0200)]
Fix edition of non well geolocalized jobs
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix the edition of event subscription for non member
Florent Bruneau [Mon, 22 Oct 2007 18:16:42 +0000 (20:16 +0200)]
Fix the edition of event subscription for non member
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix the link to update status of non-comers
Florent Bruneau [Mon, 22 Oct 2007 16:58:04 +0000 (18:58 +0200)]
Fix the link to update status of non-comers

16 years agoDo not escape address fields for Macs since that introduces '\'s when importing VCard...
Olivier Le Floch [Sun, 21 Oct 2007 00:16:34 +0000 (02:16 +0200)]
Do not escape address fields for Macs since that introduces '\'s when importing VCards in Address Book.  Keep old behaviour for Windows, pending reports that the same bug exists for Windows.

16 years agoFix banana profile update
Florent Bruneau [Fri, 19 Oct 2007 21:28:22 +0000 (23:28 +0200)]
Fix banana profile update

16 years agobundesverdienstkreuz
Stéphane Jacob [Sat, 20 Oct 2007 12:11:04 +0000 (14:11 +0200)]
bundesverdienstkreuz

16 years agotypo
Stéphane Jacob [Fri, 19 Oct 2007 10:21:50 +0000 (12:21 +0200)]
typo

16 years agoAuto-cleanup profile event table
Florent Bruneau [Thu, 18 Oct 2007 21:46:37 +0000 (23:46 +0200)]
Auto-cleanup profile event table
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoList updated fields in carnet notification (only rss and panel for now,
Florent Bruneau [Thu, 18 Oct 2007 19:34:34 +0000 (21:34 +0200)]
List updated fields in carnet notification (only rss and panel for now,
email may come later)
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoAdd missing 'check_redirect'
Florent Bruneau [Thu, 18 Oct 2007 17:33:28 +0000 (19:33 +0200)]
Add missing 'check_redirect'
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix emails on payment return
Florent Bruneau [Thu, 18 Oct 2007 09:42:05 +0000 (11:42 +0200)]
Fix emails on payment return
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix issues with geoloc
Florent Bruneau [Thu, 18 Oct 2007 08:42:15 +0000 (10:42 +0200)]
Fix issues with geoloc
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix page kill notification
Florent Bruneau [Tue, 16 Oct 2007 20:46:07 +0000 (22:46 +0200)]
Fix page kill notification
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix count of non subscribers
Florent Bruneau [Tue, 16 Oct 2007 20:32:08 +0000 (22:32 +0200)]
Fix count of non subscribers
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoSome cleanup
Florent Bruneau [Tue, 16 Oct 2007 19:20:30 +0000 (21:20 +0200)]
Some cleanup

16 years agotrivial: fix "Orange" validation email subject
Raphaël Marichez [Tue, 16 Oct 2007 16:35:28 +0000 (18:35 +0200)]
trivial: fix "Orange" validation email subject

16 years agoFix validation comment emails
Florent Bruneau [Mon, 15 Oct 2007 20:31:28 +0000 (22:31 +0200)]
Fix validation comment emails
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoDon't show warning mx on the front page if the user has another valid
Florent Bruneau [Sat, 13 Oct 2007 10:15:58 +0000 (12:15 +0200)]
Don't show warning mx on the front page if the user has another valid
redirection
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix group subscription query link update
Florent Bruneau [Sat, 13 Oct 2007 07:02:06 +0000 (09:02 +0200)]
Fix group subscription query link update
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix Notification sender (I don't understand how it has been broken...)
Florent Bruneau [Sat, 13 Oct 2007 06:53:49 +0000 (08:53 +0200)]
Fix Notification sender (I don't understand how it has been broken...)
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoDo allow to have all redirection disable on the web interface
Florent Bruneau [Wed, 10 Oct 2007 20:16:27 +0000 (22:16 +0200)]
Do allow to have all redirection disable on the web interface

16 years agoTypo
Florent Bruneau [Wed, 10 Oct 2007 20:04:05 +0000 (22:04 +0200)]
Typo

16 years agoFix payment comment decoder
Florent Bruneau [Wed, 10 Oct 2007 20:02:12 +0000 (22:02 +0200)]
Fix payment comment decoder

16 years agonbsp for better display in konqueror
Stéphane Jacob [Wed, 10 Oct 2007 13:10:31 +0000 (15:10 +0200)]
nbsp for better display in konqueror

16 years agoRemove autologin on xnet. It leads to a white page
Florent Bruneau [Tue, 9 Oct 2007 14:41:23 +0000 (16:41 +0200)]
Remove autologin on xnet. It leads to a white page
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoRepare carva
Florent Bruneau [Tue, 9 Oct 2007 14:07:58 +0000 (16:07 +0200)]
Repare carva
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoOops
Florent Bruneau [Tue, 9 Oct 2007 07:57:48 +0000 (09:57 +0200)]
Oops
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>
16 years agoFix geodesix link for init file
Pascal Corpet [Mon, 8 Oct 2007 21:57:06 +0000 (23:57 +0200)]
Fix geodesix link for init file

16 years agoPrepare the future...
Florent Bruneau [Mon, 8 Oct 2007 20:36:23 +0000 (22:36 +0200)]
Prepare the future...
Signed-off-by: Florent Bruneau <florent.bruneau@polytechnique.org>