"; $fin_intertitre = ""; // retourne le sous-titre en fonction de la langue choisie function titrerub($descriptif, $languechoisie) { $mestitres = explode("$", $descriptif); $count = count($mestitres); $i=0; $trouve=FALSE; while ($i<=$count && $trouve==FALSE) { $montitre = explode("=", $mestitres[$i]); if (trim($montitre[0]) == trim($languechoisie)) { $titre = $montitre[1]; $trouve = TRUE ; } $i = $i + 1; } return $titre; // return $mestitres[1]; } function ami_top($titre) { $titre = ereg_replace("\#T", "Site Top", $titre); $titre = ereg_replace("\#A", "Site Ami", $titre); return $titre; } function cleanquotes($in) { return ereg_replace("'", "\'", ereg_replace("\"", "'", $in)); } function encoder_mail($texte) { $i = 0; $fin = ""; while ($c = substr($mail, $i, 1)) { $fin .= "&#" . ord($c) . ";"; $i++; } $aff = eregi_replace("&", "&", $fin); return $aff; } function chiffre($unites,$genre=''){ if ($unites==1 AND $genre=='fem'){$retour="une";} if ($unites==1 AND $genre!='fem'){$retour="un";} if ($unites==2){$retour="deux";} if ($unites==3){$retour="trois";} if ($unites==4){$retour="quatre";} if ($unites==5){$retour="cinq";} if ($unites==6){$retour="six";} if ($unites==7){$retour="sept";} if ($unites==8){$retour="huit";} if ($unites==9){$retour="neuf";} return $retour; } function chiffre_sans($unites){ if ($unites==2){$retour="deux";} if ($unites==3){$retour="trois";} if ($unites==4){$retour="quatre";} if ($unites==5){$retour="cinq";} if ($unites==6){$retour="six";} if ($unites==7){$retour="sept";} if ($unites==8){$retour="huit";} if ($unites==9){$retour="neuf";} return $retour; } function chiffre_et($unites, $genre=''){ if ($unites==1 AND $genre=='fem'){$retour=" et une";} if ($unites==1 AND $genre!='fem'){$retour=" et un";} if ($unites==2){$retour="-deux";} if ($unites==3){$retour="-trois";} if ($unites==4){$retour="-quatre";} if ($unites==5){$retour="-cinq";} if ($unites==6){$retour="-six";} if ($unites==7){$retour="-sept";} if ($unites==8){$retour="-huit";} if ($unites==9){$retour="-neuf";} return $retour; } function chiffre_dix($unites){ if ($unites==0){$retour="dix";} if ($unites==1){$retour="onze";} if ($unites==2){$retour="douze";} if ($unites==3){$retour="treize";} if ($unites==4){$retour="quatorze";} if ($unites==5){$retour="quinze";} if ($unites==6){$retour="seize";} if ($unites==7){$retour="dix-sept";} if ($unites==8){$retour="dix-huit";} if ($unites==9){$retour="dix-neuf";} return $retour; } function chiffre_et_dix($unites){ if ($unites==0){$retour="-dix";} if ($unites==1){$retour=" et onze";} if ($unites==2){$retour="-douze";} if ($unites==3){$retour="-treize";} if ($unites==4){$retour="-quatorze";} if ($unites==5){$retour="-quinze";} if ($unites==6){$retour="-seize";} if ($unites==7){$retour="-dix-sept";} if ($unites==8){$retour="-dix-huit";} if ($unites==9){$retour="-dix-neuf";} return $retour; } function dizaines($dizaines,$unites,$genre=''){ if ($dizaines==0){ $retour=chiffre($unites,$genre); } if ($dizaines==1){ $retour=chiffre_dix($unites); } if ($dizaines==2){ $retour="vingt".chiffre_et($unites,$genre); } if ($dizaines==3){ $retour="trente".chiffre_et($unites,$genre); } if ($dizaines==4){ $retour="quarante".chiffre_et($unites,$genre); } if ($dizaines==5){ $retour="cinquante".chiffre_et($unites,$genre); } if ($dizaines==6){ $retour="soixante".chiffre_et($unites,$genre); } if ($dizaines==7){ $retour="soixante".chiffre_et_dix($unites); } if ($dizaines==8 & $unites>0){ $retour="quatre-vingt-".chiffre($unites,$genre); } if ($dizaines==8 & $unites==0){ $retour="quatre-vingts"; } if ($dizaines==9){ $retour="quatre-vingt-".chiffre_dix($unites); } return $retour; } function par3($lavaleur,$demille,$genre='masc',$type=''){ if (strlen($lavaleur)==1){$lavaleur="00".$lavaleur;} if (strlen($lavaleur)==2){$lavaleur="0".$lavaleur;} $centaines=substr($lavaleur,0,1); $dizaines=substr($lavaleur,1,1); $unites=substr($lavaleur,2,1); if ($centaines>1){ $cent="cents"; } if ($demille=="mille"){ $cent="cent"; } if ($dizaines+$unites>0){ $cent="cent"; } if (($demille=="million" OR $demille=="milliard") AND $centaines+$dizaines+$unites>1){ $demille=$demille."s"; } if ($centaines+$dizaines+$unites>0){ $demille=" ".$demille; }else{ $demille=""; } if ($centaines>0){ $retour=chiffre_sans($centaines)." $cent ".dizaines($dizaines,$unites,$genre); }else{ $retour=dizaines($dizaines,$unites,$genre); } if (trim($retour)=="un" & trim($demille)=="mille"){ $retour=""; } if (trim($retour)=="un" AND $type=='date'){ $retour="premier"; if($genre=='fem') $retour="première"; } if($genre=='fem' AND $retour=="un") $retour="une"; return $retour.$demille; } function en_lettres($lavaleur,$genre='masc',$type=''){ $lavaleur=strrev($lavaleur); $unites=par3(strrev(substr($lavaleur,0,3)),"","$genre","$type"); $milliers=par3(strrev(substr($lavaleur,3,3)),"mille"); $millions=par3(strrev(substr($lavaleur,6,3)),"million"); $milliards=par3(strrev(substr($lavaleur,9,3)),"milliard"); return trim("$milliards $millions $milliers $unites"); } function jour_en_lettres($lavaleur){ return en_lettres($lavaleur,'','date'); } function en_lettres_fem($lavaleur){ return en_lettres($lavaleur,'fem',''); } function enlettres($lenombre,$unite='',$unites='',$entre='',$apres='',$apress=''){ $lenombre=ereg_replace(",",".",$lenombre); $lenombre=explode(".",$lenombre); $entier=$lenombre[0]; if ($entier>1 & strlen($unite)>0){ $unite=$unites; } $virgule=$lenombre[1]; if ($virgule>1 & strlen($apres)>0){ $apres=$apress; } if ($entier==0 OR $virgule==0){ $entre=""; } if ($entier==0){ $unite=""; } $entier=en_lettres($entier); if ($virgule==0){ $apres=""; } $virgule=en_lettres($virgule); return trim("$entier $unite $entre $virgule $apres"); } function ombrer($image) { $chemin = ""; if (empty($image)) return $image; if(!is_readable($image)) { $chemin = "IMG/"; if(!is_readable($chemin . $image)) { $chemin = "IMG/gif/"; if(!is_readable($chemin . $image)) { $chemin = "IMG/png/"; if(!is_readable($chemin . $image)) { $chemin = "IMG/jpg/"; if(!is_readable($chemin . $image)) return $image; } } } } $taille = GetImageSize($chemin . $image); $texte = "
"; return $texte; } ?> Rassemblement International pour la Promotion de l’Hydrospeed - Lançamento oficial da RIPH International
Lançamento oficial da RIPH International
fr en es it pt nl
Página de abertura do sítio Porque? Objectivos Quem? ser membro RIPH
 

Comunicado de imprensa - Dezembro 2002

Criação da RIPH, Rassemblement International pour la Promotion de l’Hydrospeed

(Associação Internacional para a Promoção do Hydrospeed)

Historial

2000
Graças ao sítio internet DreamNev.org, os apaixonados da natação nas águas bravas (hydrospeed) dos mais variados países reencontram-se em redor de uma paixão comum: a natação nas águas bravas ou hydrospeed. A sua lista de membros permite manter os contactos e criar uma rede de nadadores.

2001
Os nadadores da equipa Suíça de Hydrospeed participam pela primeira vez numa competição organizada em França. Estes mesmos nadadores suíços encontram-se com nadadores franceses nos Alpes durante três dias em Junho e participam no encontro organizado pela associação Água Viva - Mergulho de Orléans na Dora Baltea, Itália, em Julho.

Abril de 2002
A equipa Suíça de Hydrospeed organiza o primeiro encontro internacional de hydrospeed que agrupa os nadadores franceses e nadadores suíços nos Alpes.

Agosto de 2002
No rio "Gens de Terre" em pleno Quebeque, 5 amigos nadadores de água viva da Suíça, do Canadá e de França fazem uma expedição de 5 dias e decidem criar, entre duas descidas, uma associação internacional para promover e desenvolver o hydrospeed pelo mundo: nasceu a RIPH

Dezembro de 2002
Lançamento oficial da RIPH International.

Porquê a RIPH?

Cada vez mais os nadadores reencontram-se em redor de valores comuns ligados à prática do hydrospeed. Este espírito resume-se frequentemente em duas palavras: prazer e segurança.

Vindos de vários países e regiões, muitos deles desejam consolidar estes contactos e desenvolver uma dinâmica em redor da prática do hydrospeed e da descoberta de novos terrenos de jogo e de novos praticantes (sob o motto "Free Ride, Free Style") criando assim uma associação.

A RIPH International considera-se um movimento federativo e não uma entidade susceptível de entrar em conflitos com estruturas ou organizações já existentes.

Os seus objectivos são simples:
- Favorecer o desenvolvimento do hydrospeed (ou natação nas águas bravas) em todos os países.
- Organizar encontros internacionais.
- Harmonizar dos regulamentos para a formação e competições.
- Assegurar uma comunicação internacional entre os praticantes.
- Desenvolver um sistema de reconhecimento mútuo face às diversas formações existentes.
- Incitar à protecção do ambiente e dos lugares ligados à prática do hydrospeed.
- Proporcionar o acesso ao hydrospeed ao maior número de pessoas, em especial os jovens.
- Promover acções e regras de segurança.

A RIPH International empreenderá, para o efeito, todas as acções que julgará necessárias à persecução dos seus objectivos.

Concretamente

Actualmente, vários sítios Internet que promovem o hydrospeed têm o rótulo RIPH.

Está a ser lançado em várias línguas (Francês, Inglês, Espanhol, Italiano, Alemão Neerlandês e Português) um sítio Internet que apresenta a RIPH e os seus estatutos. Está a ser lançada uma campanha de e-mails junto de contactos conhecidos e identificados para anunciar o nascimento da RIPH International.

Pelo menos um país estabelece a sua estrutura RIPH: a Suíça.

Subsequentemente, os encontros internacionais serão rotulados RIPH (encontro na Suíça em Maio de 2003, encontro em Espanha em Junho de 2003…)

Na prática

A RIPH é uma associação internacional que tem a sua sede na Suíça.

Os membros da RIPH são instituições nacionais, ou seja associações ou federações nacionais que trabalham para o desenvolvimento do hydrospeed.

A RIPH International é composta por um Comité Directivo e por uma Assembleia de Membros, sendo cada membro o representante de uma instituição nacional.

Os membros fundadores são:

O presidente Raphaël BESSON
O Vice-Presidente Patrice PONSIN
O chefe técnico Fred SANJOU
O secretário Denis MORIN
O tesoureiro Marco ETTINGER
Os responsáveis pelas relações internacionais Niko MILLOT
Daniel CHATELAIN

A versão completa dos estatutos da RIPH International está disponível em: http://www.riph.net.

Porquê o hydrospeed?

A palavra hydrospeed em França é do domínio público há alguns meses mas pertenceu inicialmente à empresa Méritor. Foi retido na designação da associação porque é muito mais mediática e mais vasta que natação nas águas bravas (NAV).

A palavra hydrospeed ou as suas variantes (hydrospeedo) são utilizadas um pouco em todo o mundo.

Pierre Simon, responsável pela empresa Méritor deu autorização para utilizar a palavra hydrospeed na designação da associação.

 

Página de abertura do sítio
 
 
 
 
[ - Outros sítios - Página de abertura do sítio - Admin ]
 
 

::

  ::