Enfin : the beta version is ready, only the documentation is incomplete

This commit is contained in:
sparkyx 2006-06-28 00:13:25 +00:00
parent 21518b1cdf
commit 91de7ee101
374 changed files with 6621 additions and 3576 deletions

View file

@ -0,0 +1,20 @@
drop function action_gestion_replace_newline() cascade;
create or replace function action_gestion_replace_newline ()
returns trigger
as
$body$
declare
modified action_gestion%rowtype;
begin
modified:=NEW;
modified.ag_comment:=replace(modified.ag_comment,'%0A','');
modified.ag_comment:=replace(modified.ag_comment,'%0D','');
return modified;
end;
$body$ language plpgsql;
create trigger tr_ag_comment_replace before insert or update on action_gestion
for each row execute procedure action_gestion_replace_newline();