platal.git
16 years agoplugins ok
Pierre Habouzit (MadCoder [Wed, 15 Dec 2004 15:25:43 +0000 (15:25 +0000)]
plugins ok

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-98

16 years agooopsy
Pierre Habouzit (MadCoder [Wed, 15 Dec 2004 15:22:36 +0000 (15:22 +0000)]
oopsy

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-97

16 years agolast refactoring in include/
Pierre Habouzit (MadCoder [Wed, 15 Dec 2004 15:18:16 +0000 (15:18 +0000)]
last refactoring in include/

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-96

16 years ago3 tons of code refactoring
Pierre Habouzit (MadCoder [Wed, 15 Dec 2004 15:10:07 +0000 (15:10 +0000)]
3 tons of code refactoring

note for anaxagore : there is coding rules.  and they say we indent php with 4 spaces.

update Env::getMixed to return a ref and to return null if not set.

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-95

16 years agocreate env access classes
Pierre Habouzit (MadCoder [Wed, 15 Dec 2004 13:37:19 +0000 (13:37 +0000)]
create env access classes

there is now Env::, Session::, Get::, Post::, Cookie:: classes.
the duplication of code is awful, but is a result of the deficient PHP4 OO design.
it would be a lot better in php5 where 'self' is defined as the current class.

moreover, I used thoses classes in 3 pages for a proof of concept.  code become much much clearer !
So i'll go through the entire site and remove direct accesses to POST/GET/REQUESTS/SESSION/COOKIE

note that PHP is not able to parse Session::get('log')->log(foo)

so for thoses exceptions, you have to do instead :

if (Session::has('log')) {
    $_SESSION->log(foo);
}

which IMHO remains more readable than

if (isset($_SESSION['log'])) {
    $_SESSION->log(foo);
}

purists would even use :
if ($logger = Session::getMixed('log')) {
    $logger->log(foo);
}

or some other form that does not use $_SESSION explicitely

PS: maybe I should create a :
    WIBBLE::callIfExists('log', Array('func', 'arg1', 'arg2', ...))
    but I find that horrible to read.  that's why I did'nt implemented it

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-94

16 years agowibble
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 20:04:33 +0000 (20:04 +0000)]
wibble

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-93

16 years agorefactor code
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 18:39:18 +0000 (18:39 +0000)]
refactor code

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-92

16 years agothe promised refactor. obvious, isn't it ?
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 17:54:40 +0000 (17:54 +0000)]
the promised refactor. obvious, isn't it ?

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-91

16 years agorefactor fiche, to reuse code in other places (like vcard...)
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 17:44:03 +0000 (17:44 +0000)]
refactor fiche, to reuse code in other places (like vcard...)

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-90

16 years agorefactor + validate.pl
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 17:14:57 +0000 (17:14 +0000)]
refactor + validate.pl

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-89

16 years agorefactor
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 16:39:46 +0000 (16:39 +0000)]
refactor

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-88

16 years agodamnit
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 16:32:55 +0000 (16:32 +0000)]
damnit

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-87

16 years agorefactor some code in lists + associated tests
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 16:30:38 +0000 (16:30 +0000)]
refactor some code in lists + associated tests

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-86

16 years agobackport
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 15:29:01 +0000 (15:29 +0000)]
backport

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-85

16 years agoimprove tests
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 11:51:43 +0000 (11:51 +0000)]
improve tests

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-84

16 years agotests are important !
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 10:58:35 +0000 (10:58 +0000)]
tests are important !

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-83

16 years agopage.inc.php is private
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 10:24:42 +0000 (10:24 +0000)]
page.inc.php is private

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-82

16 years agoseparate session from the rest
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 10:22:28 +0000 (10:22 +0000)]
separate session from the rest

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-81

16 years agorefactor
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 01:54:38 +0000 (01:54 +0000)]
refactor

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-80

16 years agowibble
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 01:26:23 +0000 (01:26 +0000)]
wibble

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-79

16 years agowibble
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 01:22:40 +0000 (01:22 +0000)]
wibble

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-78

16 years agosome refactor in list module
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 01:19:01 +0000 (01:19 +0000)]
some refactor in list module

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-77

16 years agorefactor
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 00:43:35 +0000 (00:43 +0000)]
refactor

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-76

16 years agorefactor trezo/gere_operations
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 00:30:28 +0000 (00:30 +0000)]
refactor trezo/gere_operations

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-75

16 years agorefactor
Pierre Habouzit (MadCoder [Mon, 13 Dec 2004 00:00:25 +0000 (00:00 +0000)]
refactor

fiche.php is not the biggest page of the site anymore

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-74

16 years agowibble
Pierre Habouzit (MadCoder [Sun, 12 Dec 2004 22:36:33 +0000 (22:36 +0000)]
wibble

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-73

16 years agowibble
Pierre Habouzit (MadCoder [Sun, 12 Dec 2004 22:34:43 +0000 (22:34 +0000)]
wibble

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-72

16 years agouse get_user_login
Pierre Habouzit (MadCoder [Sun, 12 Dec 2004 22:33:19 +0000 (22:33 +0000)]
use get_user_login

now that we have a tiny wonderful function.
use it everywhere !

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-71

16 years agowibble
Pierre Habouzit (MadCoder [Sun, 12 Dec 2004 19:29:22 +0000 (19:29 +0000)]
wibble

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-70

16 years agorefactor code. get_user_login takes an uid, any alias, or any email address and gives...
Pierre Habouzit (MadCoder [Sun, 12 Dec 2004 19:28:12 +0000 (19:28 +0000)]
refactor code. get_user_login takes an uid, any alias, or any email address and gives one valid alias or false

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-69

16 years agosession + suid simplifications
Pierre Habouzit (MadCoder [Sun, 12 Dec 2004 18:28:36 +0000 (18:28 +0000)]
session + suid simplifications

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-68

16 years agodead code
Pierre Habouzit (MadCoder [Sun, 12 Dec 2004 17:47:00 +0000 (17:47 +0000)]
dead code

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-67

16 years agosome refactor
Pierre Habouzit (MadCoder [Sun, 12 Dec 2004 17:29:46 +0000 (17:29 +0000)]
some refactor

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-66

16 years agooups, tests classes are now in the right place
Pierre Habouzit (MadCoder [Sun, 12 Dec 2004 17:02:34 +0000 (17:02 +0000)]
oups, tests classes are now in the right place

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-65

16 years agoXP arrives ...
Pierre Habouzit (MadCoder [Sun, 12 Dec 2004 17:00:30 +0000 (17:00 +0000)]
XP arrives ...

 * Refactor code to make use of an XOrgError class.
 * track every place in the code that uses errors and make use of the new policy.

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-64

16 years agofix advanced search
Pierre Habouzit (MadCoder [Thu, 9 Dec 2004 18:57:12 +0000 (18:57 +0000)]
fix advanced search

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-63

16 years agoupdates
Pierre Habouzit (MadCoder [Mon, 6 Dec 2004 11:16:07 +0000 (11:16 +0000)]
updates

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-62

16 years agosendmail modifications + emails modularization
Pierre Habouzit (MadCoder [Mon, 6 Dec 2004 11:15:00 +0000 (11:15 +0000)]
sendmail modifications + emails modularization

 * Sendmail moved to emails/send
 * sql + README files

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-61

16 years agobackport
Pierre Habouzit (MadCoder [Sun, 5 Dec 2004 23:50:29 +0000 (23:50 +0000)]
backport

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-60

16 years agochangelog
Pierre Habouzit (MadCoder [Sun, 5 Dec 2004 21:41:27 +0000 (21:41 +0000)]
changelog

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-59

16 years agomodularize emails
Pierre Habouzit (MadCoder [Sun, 5 Dec 2004 21:40:38 +0000 (21:40 +0000)]
modularize emails

 * QUite a lot of work.  not really interesting.
   cleaning, renaming, configuration, ...

 * Still : delete newsletter_pattecassee in favor to a script.
   feed it with the emails, and it treats all alone.  good boy.
   (bin/emails.broken.php)

-> remains : work on sendmail.* + work on module

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-58

16 years agotest commit
Raphael Marichez [Sun, 5 Dec 2004 16:55:22 +0000 (16:55 +0000)]
test commit

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-54

16 years agosome generic functions to display Exalead categories and keywords
Jean-Marc Coic [Sun, 5 Dec 2004 16:52:01 +0000 (16:52 +0000)]
some generic functions to display Exalead categories and keywords

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-53

16 years agobug bestalias homonymes
Raphael Marichez [Sun, 5 Dec 2004 16:32:25 +0000 (16:32 +0000)]
bug bestalias homonymes

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-52

16 years agoupdate clogs + status file
Pierre Habouzit (MadCoder [Sun, 5 Dec 2004 11:24:52 +0000 (11:24 +0000)]
update clogs + status file

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-51

16 years agorationalize globals + money module
Pierre Habouzit (MadCoder [Sun, 5 Dec 2004 11:19:26 +0000 (11:19 +0000)]
rationalize globals + money module

* Core :
    - use a static function to initialize $globals.

* Money :
    - brand new module.
    - remove trezo.operations --> x4dat.money_trezo.
    - corrects a few bugs in interface.

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-50

16 years agoit's a detail, but I feel more comfortable like that
Pierre Habouzit (MadCoder [Sun, 5 Dec 2004 09:38:49 +0000 (09:38 +0000)]
it's a detail, but I feel more comfortable like that

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-48

16 years agomoney module
Pierre Habouzit (MadCoder [Sun, 5 Dec 2004 09:11:37 +0000 (09:11 +0000)]
money module

Working on a reimplemntation of the really suckin' Payment part.
Now all is cleanly implemented into beautifull classes !

Moreover, I guess I've found the nasty bug, that was really our fault here,
and not really the BPLC one : our random generator created rand tokens that
had non alphanumeric values.

/me slaps himself a lot, I was really sure it was my fault, wasn't it ?

---> to resolve the problem in prod,
     just ask Jeremy to make a new debian package of the HEAD libdiogenes
     and put it on djali, period

I've tested with a rand id that had only alphanumeric chars,
and I received our mail (meaning the paiment was successful).

I'me still waiting for the BPLC one

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-47

16 years agobug wrt homonymes
Pierre Habouzit (MadCoder [Sat, 4 Dec 2004 23:40:02 +0000 (23:40 +0000)]
bug wrt homonymes

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-44

16 years agobug wrt homonymes
Pierre Habouzit (MadCoder [Sat, 4 Dec 2004 23:26:46 +0000 (23:26 +0000)]
bug wrt homonymes

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-43

16 years agooups, forgot to remove that damn line
Pierre Habouzit (MadCoder [Sat, 4 Dec 2004 11:35:52 +0000 (11:35 +0000)]
oups, forgot to remove that damn line

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-42

16 years agowibble
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 19:16:29 +0000 (19:16 +0000)]
wibble

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-41

16 years agoforgot some stupid sql files
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 19:12:52 +0000 (19:12 +0000)]
forgot some stupid sql files

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-40

16 years agooups
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 18:23:37 +0000 (18:23 +0000)]
oups

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-39

16 years agomove the rps config away from mailman, and read all from platal.conf
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 17:51:35 +0000 (17:51 +0000)]
move the rps config away from mailman, and read all from platal.conf

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-38

16 years agoupdates about modules
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 17:06:28 +0000 (17:06 +0000)]
updates about modules

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-37

16 years agolet's pretend we saw nothin'
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 16:48:46 +0000 (16:48 +0000)]
let's pretend we saw nothin'

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-36

16 years agolet's pretend we saw nothin'
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 16:47:40 +0000 (16:47 +0000)]
let's pretend we saw nothin'

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-35

16 years agomisc bugfixes + attempt to really separate lists from the rest
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 16:43:30 +0000 (16:43 +0000)]
misc bugfixes + attempt to really separate lists from the rest

* Banana :
    - show formular even after entering the password.

* Mail :
    - already add MailCOnfig because we really need to make @polytechnique.org disappear everywhere
      and make use of $globals->mail->domain instead.

* NewsLetter :
    - use globals->mail->domain

* Lists :
    - Make it a separate module : really ok for the php part.  Needs work for the rpc, but I cannot test atm.

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-34

16 years agodamned opened-but-not-saved buffer
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 13:13:54 +0000 (13:13 +0000)]
damned opened-but-not-saved buffer

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-33

16 years agochangelog and docs
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 13:09:27 +0000 (13:09 +0000)]
changelog and docs

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-32

16 years agodeinterlace lists and newsletter
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 13:06:18 +0000 (13:06 +0000)]
deinterlace lists and newsletter

* Newsletter :
    - closes: #242.

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-31

16 years agocode beautiful
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 12:48:55 +0000 (12:48 +0000)]
code beautiful

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-30

16 years agosome configurations
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 12:24:02 +0000 (12:24 +0000)]
some configurations

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-29

16 years agonewsletter is roughly standalone
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 12:05:27 +0000 (12:05 +0000)]
newsletter is roughly standalone

* Newsletter: roughly standalone.  (see #242)

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-28

16 years agowarnings for next release
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 11:31:02 +0000 (11:31 +0000)]
warnings for next release

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-27

16 years ago$conn does not exists anymore
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 11:23:53 +0000 (11:23 +0000)]
$conn does not exists anymore

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-26

16 years agominor
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 11:23:20 +0000 (11:23 +0000)]
minor

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-25

16 years agomake webredirect (aka carva) be a module
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 11:22:03 +0000 (11:22 +0000)]
make webredirect (aka carva) be a module

* WebRedirect :
    - now standalone !

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-24

16 years agobetter heuristic. now we find «t x m» or «f x m» in the first place
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 10:14:52 +0000 (10:14 +0000)]
better heuristic. now we find «t x m» or «f x m» in the first place

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-22

16 years agobackport
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 09:39:58 +0000 (09:39 +0000)]
backport

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-21

16 years agobackport
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 09:24:35 +0000 (09:24 +0000)]
backport

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-20

16 years agocloses #241
Pierre Habouzit (MadCoder [Fri, 3 Dec 2004 09:22:48 +0000 (09:22 +0000)]
closes #241

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-19

16 years agobackport
Pierre Habouzit (MadCoder [Thu, 2 Dec 2004 22:46:28 +0000 (22:46 +0000)]
backport

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-18

16 years agopackage adjustments
Pierre Habouzit (MadCoder [Thu, 2 Dec 2004 14:14:08 +0000 (14:14 +0000)]
package adjustments

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-17

16 years agochanges on Fiche, normalize Search code
Pierre Habouzit (MadCoder [Thu, 2 Dec 2004 13:46:30 +0000 (13:46 +0000)]
changes on Fiche, normalize Search code

Fiche :
    - Hide the «formation» if the field is empty.

Search :
    - Normalize a lot of stuff.
    - Shorten urls when possible (all hardcoded settings like with_soundex disappeared !).
    - Factorise more bits of code.
    - Prepare search to be an quite independant module.

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-16

16 years agoremove useless :$'s
Pierre Habouzit (MadCoder [Thu, 2 Dec 2004 09:02:22 +0000 (09:02 +0000)]
remove useless :$'s

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-14

16 years agoforgotten add
Pierre Habouzit (MadCoder [Thu, 2 Dec 2004 08:49:07 +0000 (08:49 +0000)]
forgotten add

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-13

16 years agowork on searc, lists modules
Pierre Habouzit (MadCoder [Thu, 2 Dec 2004 08:48:25 +0000 (08:48 +0000)]
work on searc, lists modules

* Search :
    - Begin to create a SearchConfig class, and put all data there.

* Lists :
    - Move file templates into install.d/lists/mail_templates.

* plat/al-devel :
    - Move scripts templates away, into the install.d/platal-dev dir.

+ : re-add carva_redirect.php that was lost ...

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-12

16 years agoforgot the changelog
Pierre Habouzit (MadCoder [Thu, 2 Dec 2004 01:46:34 +0000 (01:46 +0000)]
forgot the changelog

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-11

16 years agosearch + side effect
Pierre Habouzit (MadCoder [Thu, 2 Dec 2004 01:43:36 +0000 (01:43 +0000)]
search + side effect

* Search (closes: #195).

    The heuristic is the following (and I'm quite proud of it, since it gives really good results) :

    compute a mark for each result following that :

    for each litteral token T we give :
        + 100   iff T is exactly the noun or the wife name of the person
        +  10   iff T is exactly his first name
        +   1   iff T is the begininng of the noun/wife name

    Then, we sort the results (better marks go first), and we cut 0 marks.

* Core :

    a bug was introduced wrt auto validation of the pages (scripts->bin)
    I really should write this tiny piece of code into php ...

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-10

16 years agosome files reorganization
Pierre Habouzit (MadCoder [Thu, 2 Dec 2004 00:55:57 +0000 (00:55 +0000)]
some files reorganization

* scripts/ -> bin/
    Now that install.d is designed to receive .sql and all the per module stuff,
    scripts/ has no meaning at all.

    So we rename it into bin.

    A good todo would be to make those scripts independant from their path
    (in order to allow the packaging of those scripts into /usr/lib/platal/bin)

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-9

16 years agosmall modifs to make the sendlogs hook work on murphy
Pierre Habouzit (MadCoder [Wed, 1 Dec 2004 19:59:34 +0000 (19:59 +0000)]
small modifs to make the sendlogs hook work on murphy

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-4

16 years agouse .arch-inventory like .cvsignore worked
Pierre Habouzit (MadCoder [Wed, 1 Dec 2004 19:27:23 +0000 (19:27 +0000)]
use .arch-inventory like .cvsignore worked

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-3

16 years agogive it a try
Pierre Habouzit (MadCoder [Wed, 1 Dec 2004 19:17:05 +0000 (19:17 +0000)]
give it a try

git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-2

16 years agobackport from arch : humlinux fix
x2002marichez [Sun, 5 Dec 2004 01:10:15 +0000 (01:10 +0000)]
backport from arch : humlinux fix

20 years agosyntax error + dinstinction on sex
x2002marichez [Sat, 4 Dec 2004 22:44:25 +0000 (22:44 +0000)]
syntax error + dinstinction on sex

20 years agobackport + merge dev branch
x2002marichez [Thu, 2 Dec 2004 22:29:20 +0000 (22:29 +0000)]
backport + merge dev branch

20 years agopackaging effort state
x2000habouzit [Wed, 1 Dec 2004 14:31:04 +0000 (14:31 +0000)]
packaging effort state

20 years agosome packaging thins for banana
x2000habouzit [Wed, 1 Dec 2004 14:25:43 +0000 (14:25 +0000)]
some packaging thins for banana

20 years agomake banana be a real standalone module
x2000habouzit [Wed, 1 Dec 2004 14:14:29 +0000 (14:14 +0000)]
make banana be a real standalone module

20 years agocorrects parts of the hooks code + hook for banana subscription
x2000habouzit [Wed, 1 Dec 2004 13:13:03 +0000 (13:13 +0000)]
corrects parts of the hooks code + hook for banana subscription

20 years agobe smarter
x2000habouzit [Wed, 1 Dec 2004 12:30:11 +0000 (12:30 +0000)]
be smarter

20 years agosome date stuff
x2000habouzit [Wed, 1 Dec 2004 11:15:12 +0000 (11:15 +0000)]
some date stuff

20 years agodebug
x2000habouzit [Wed, 1 Dec 2004 07:39:54 +0000 (07:39 +0000)]
debug

20 years agocloses #154.
x2000habouzit [Tue, 30 Nov 2004 21:11:38 +0000 (21:11 +0000)]
closes #154.
for manager, DATE_DIFF is only mysql 4.1.1 :(

20 years agospiffy, but I really like the beginning capital and the ending period for changelog.
x2000habouzit [Tue, 30 Nov 2004 19:02:06 +0000 (19:02 +0000)]
spiffy, but I really like the beginning capital and the ending period for changelog.
+ closes #144

20 years agocloses an at least 2 years TODO : lists archives are online
x2000habouzit [Tue, 30 Nov 2004 18:39:18 +0000 (18:39 +0000)]
closes an at least 2 years TODO : lists archives are online
#86

20 years agoarchive rights
x2000habouzit [Tue, 30 Nov 2004 11:30:57 +0000 (11:30 +0000)]
archive rights

20 years agosome comments.
x2000habouzit [Tue, 30 Nov 2004 11:03:43 +0000 (11:03 +0000)]
some comments.
I know it's not perlish, but I vomit perl, and I only use it here, because it's convenient