= 1073741824) {$taille = round($taille / 1073741824 * 100) / 100 . " G".$size_unit;} elseif ($taille >= 1048576) {$taille = round($taille / 1048576 * 100) / 100 . " M".$size_unit;} elseif ($taille >= 1024) {$taille = round($taille / 1024 * 100) / 100 . " K".$size_unit;} else {$taille = $taille . " ".$size_unit;} if($taille==0) {$taille="-";} return $taille; } function date_modif($fichier) { $tmp = filemtime($fichier); return date("d/m/Y H:i",$tmp); } function slash() { global $prefix, $racine; if(ereg("\\\\",$racine)){$slash="\\";} else {$slash="/";} return $slash; } function deldir($location) { if(is_dir($location)) { $all=opendir($location); while ($file=readdir($all)) { if (is_dir($location.slash().$file) && $file <> ".." && $file <> ".") { deldir($location.slash().$file); if(file_exists($location.slash().$file)){rmdir($location.slash().$file); } unset($file); } elseif (!is_dir($location.slash().$file)) { unlink($location.slash().$file); unset($file); } } closedir($all); rmdir($location); } else { unlink($location); } } function enlever_controlM($fichier) { $fic=file($fichier); $fp=fopen($fichier,"w"); while (list ($cle, $val) = each ($fic)) { $val=str_replace(CHR(10),"",$val); $val=str_replace(CHR(13),"",$val); fputs($fp,"$val\n"); } fclose($fp); } function traite_nom_fichier($nom) { global $prefix, $max_caracteres; $nom=stripslashes($nom); $nom=str_replace("'","",$nom); $nom=str_replace("\"","",$nom); $nom=str_replace("\"","",$nom); $nom=str_replace("&","",$nom); $nom=str_replace(",","",$nom); $nom=str_replace(";","",$nom); $nom=str_replace("/","",$nom); $nom=str_replace("\\","",$nom); $nom=str_replace("`","",$nom); $nom=str_replace("<","",$nom); $nom=str_replace(">","",$nom); $nom=str_replace(" ","_",$nom); $nom=str_replace(":","",$nom); $nom=str_replace("*","",$nom); $nom=str_replace("|","",$nom); $nom=str_replace("?","",$nom); $nom=str_replace("é","e",$nom); $nom=str_replace("è","e",$nom); $nom=str_replace("ç","c",$nom); $nom=str_replace("@","",$nom); $nom=str_replace("â","a",$nom); $nom=str_replace("ê","e",$nom); $nom=str_replace("î","i",$nom); $nom=str_replace("ô","o",$nom); $nom=str_replace("û","u",$nom); $nom=str_replace("ù","u",$nom); $nom=str_replace("à","a",$nom); $nom=str_replace("!","",$nom); $nom=str_replace("§","",$nom); $nom=str_replace("+","",$nom); $nom=str_replace("^","",$nom); $nom=str_replace("(","",$nom); $nom=str_replace(")","",$nom); $nom=str_replace("#","",$nom); $nom=str_replace("=","",$nom); $nom=str_replace("$","",$nom); $nom=str_replace("%","",$nom); $nom=str_replace("ä","ae",$nom); $nom=str_replace("Ä","Ae",$nom); $nom=str_replace("ö","oe",$nom); $nom=str_replace("Ö","Oe",$nom); $nom=str_replace("ü","ue",$nom); $nom=str_replace("Ü","Ue",$nom); $nom=str_replace("ß","ss",$nom); if (strlen($nom)> $max_caracteres) { $ext = substr($nom, (strrpos($nom,'.') + 1)); $nom = substr ($nom,0,$max_caracteres-4); $nom = $nom.".".$ext; } return $nom; } //----------------------------------------------------------------------------------------------------------------------------------------- // MAIN //----------------------------------------------------------------------------------------------------------------------------------------- //----------------------------------------------------------------------------------------------------------------------------------------- // DEPLACER / MOVE //----------------------------------------------------------------------------------------------------------------------------------------- function moveFile($fic, $dest) { //$rep=stripslashes($rep); $fic=stripslashes($fic); $dest=stripslashes($dest); if($dest!="") {$destination=$dest.slash();} $destination.=basename($fic); if(file_exists($fic)) {copy($fic,$destination);} if($fic!=$destination) {if(file_exists($fic)) {unlink($fic);}} $messtmp= "\n"; $messtmp.= sprintf(_GALFILEMOVED, $fic)." "; $err=0; if($dest=="") {$messtmp.= "/";} else {$messtmp.= "$dest";} $messtmp.= "\n"; $messtmp.= "\n"; if ($err!=0) return $messtmp; else return $err; } //----------------------------------------------------------------------------------------------------------------------------------------- // SUPPRIMER / DELETE //----------------------------------------------------------------------------------------------------------------------------------------- function deleteFile($rep, $fic) { $rep=stripslashes($rep); $fic=stripslashes($fic); $messtmp=""; $a_effacer=$fic; if(file_exists($a_effacer)) { if(is_dir($a_effacer)){deldir($a_effacer);$messtmp.=sprintf(_GALFILEDELETED, $fic);} else {unlink($a_effacer); $messtmp.=sprintf(_GALFILEDELETED2, $fic);} } else {$messtmp.=_GALFILEDELETED3;} $messtmp.=""; return $messtmp; } //----------------------------------------------------------------------------------------------------------------------------------------- // RENOMMER / RENAME //----------------------------------------------------------------------------------------------------------------------------------------- function renameFile($fic) { $err=""; $rep=stripslashes($rep); $fic=stripslashes($fic); $nom_fic=basename($fic); $messtmp=""; $fic_new=traite_nom_fichier($fic_new); $old=$racine.slash().$fic; $new=dirname($old).slash().$fic_new; if($fic_new=="") { $messtmp.= _GALFILERENAMED; $err=1; } else if(file_exists($new)) { $messtmp.=sprintf(_GALFILERENAMED1, $fic_new); $err=1; } else { rename($old,$new); $messtmp.=sprintf(_GALFILERENAMED2, $fic, $fic_new); } $messtmp.=""; if ($err!=0) return $messtmp; else return "OK"; } //----------------------------------------------------------------------------------------------------------------------------------------- // CREER UN REPERTOIRE / CREATE DIR //----------------------------------------------------------------------------------------------------------------------------------------- function makeDir($rep, $nomdir) { $rep=stripslashes($rep); //$nomdir=traite_nom_fichier($nomdir); if($nomdir=="") { $err=1; return _GALFILECREATED; } else if(file_exists("$rep/$nomdir")) { $err=2; return _GALFILECREATED1; } else { umask(000); $ret = @mkdir("$rep/$nomdir",0777); if ($ret) { $messtmp = sprintf(_GALFILECREATED2, $nomdir); $messtmp.=""; if($rep=="") {$messtmp.="/";} else {$messtmp.="$rep";} $messtmp.=""; $err=0; return "OK"; } else { $err=1; return _GALCREATECATERROR; } } } //----------------------------------------------------------------------------------------------------------------------------------------- // UPLOAD //----------------------------------------------------------------------------------------------------------------------------------------- function UploadFile($rep, $userfile, $userfile_name, $userfile_size) { $rep=stripslashes($rep); if($rep!=""){$rep_source=$rep;} $destination=$rep_source; if ($userfile_size!=0) {$taille_ko=$userfile_size/1024;} else {$taille_ko=0; $err=1; return _GALUPLOADERROR; } if ($userfile=="none") {$err=2; return _GALUPLOADERROR2;} if ($userfile!="none" && $userfile_size!=0) { $userfile_name=traite_nom_fichier($userfile_name); if (!@move_uploaded_file($userfile, "$destination/$userfile_name")) { $err=3; return _GALUPLOADERROR3; } else { /* if(eregi("\.txt","$userfile_name") ||eregi("\.html","$userfile_name") ||eregi("\.htm","$userfile_name") ||eregi("\.php","$userfile_name") ||eregi("\.php3","$userfile_name") ||eregi("\.htaccess","$userfile_name") ||eregi("\.htpasswd","$userfile_name") ||eregi("\.pl","$userfile_name") ||eregi("\.cgi","$userfile_name") ||eregi("\.js","$userfile_name") ) { enlever_controlM("$destination/$userfile_name"); } */ @chmod("$destination/$userfile_name",0664); $message = sprintf(_GALFILEUPLOADED1, $userfile_name, $rep); $err=0; return "OK"; } } } ?> Baladre

   Inicio  |  Chat  |  Foros  |  Envia Noticias  |  Tu Cuenta  
 Menú Principal

· Quiénes somos
· Colectivos
· Publica tus Noticias
· Chuletero
· Enlaces Favoritos
· Documentos
· Galería imágenes
· Recomiéndanos
· Tu Cuenta
· Estadísticas
· Lo Más Leido
· Administración

 Noticias Anteriores

Wednesday, 13 March
· La ley del OVNI
Sunday, 10 March
· Nuevo punto de información de Derechos Sociales en Canarias
· Concentración contra la precariedad de las mujeres. 8 de marzo de Argitan Barakaldo
Friday, 08 March
· 100 euros por pedir justicia
· [Galiza] La pobreza se combate desde abajo
· [Alambique] No nos vale
Wednesday, 06 March
· Campamento Dignidad: un ámbito contra el capitalismo
· Nuevo juicio. Continúa la represión en el Parke
· Presentación de la Renta Básica de las Iguales en Irun, Gipuzkoa
Friday, 01 March
· Todo fue por las niñas

Artículos Viejos

 Nuestros Temas

· Todas las Categorías
· Capitalismo global
· Enredando por el Mundo
· IlP RBis Extremadura
· Menores
· Mujeres
· Nosotras
· Renta Básica
· Tablón de Anuncios
· Tinto de Verano
· ZAMBRA
· [SOS Parke]

[< Inicio Galería | TOP 10 | Enviar >]
1337 imágenes

Inicio Galería >> Carteles. panfletos, ..etc

Calendario Palmilla'08 (5)
Por 2º año consecutivo la AVV Los Paraos ha publicado su calendario reivindicativo realizado por los y las peques y jóvenes de Los Movíos. 

Disfruten de esta Obra de Arte


Carteles, panfletos y demás herramientas de difusión.

[<<] . 1 . 2 . 3 . 4 . 5 . 6 . 7 . 8 . 9 . 10 . 11 . 12 . 13 . 14 . 15 . [>>]

PIDSTaucho

Agregado
Mar 10 2013
Visitas
40

Nuevo punto de información de Derechos...

| Format: JPEG | Tamaño: 500x500

Mani16M

Agregado
Feb 19 2013
Visitas
154

[Euskal Herria] Convocada movilización...

| Format: JPEG | Tamaño: 571x800

planfletoAES2013

Agregado
Feb 03 2013
Visitas
98

[Barakaldo] Manifestación contra los...

| Format: JPEG | Tamaño: 800x672

tardeJuegos

Agregado
Jan 30 2013
Visitas
148

Tarde de Juegos SOS PARKE

| Format: PNG | Tamaño: 389x486

STOPREPRESION

Agregado
Jan 30 2013
Visitas
119

Concentración SOS PARKE STOP REPRESIÓN

| Format: PNG | Tamaño: 424x558

2AsambleaRBExtremadura

Agregado
Jan 30 2013
Visitas
162

Sábado 2 de febrero: V Asamblea de la...

| Format: JPEG | Tamaño: 565x799

Txorizada01

Agregado
Jan 26 2013
Visitas
180

Ocupación en Sestao del Servicio Vasco de...

| Format: JPEG | Tamaño: 800x613

Txorizada00

Agregado
Jan 26 2013
Visitas
181

Ocupación en Sestao del Servicio Vasco de...

| Format: JPEG | Tamaño: 585x800

ConcentraLanbide100

Agregado
Jan 24 2013
Visitas
189

Convocada movilización ante las oficinas...

| Format: JPEG | Tamaño: 566x801

MarchaAntorchas

Agregado
Jan 15 2013
Visitas
180

Marcha desde le Parke hasta la Generalitat...

| Format: JPEG | Tamaño: 430x567

octavilla001

Agregado
Jan 08 2013
Visitas
188

Movilización contra los desahucios, los...

| Format: JPEG | Tamaño: 973x688

rebajas2013

Agregado
Jan 03 2013
Visitas
219

Inicio de las Rebajas (sociales y...

| Format: JPEG | Tamaño: 421x583

castañada

Agregado
Dec 26 2012
Visitas
202

[SOS PARKE] 27 DE DICIEMBRE  POUM!...

| Format: JPEG | Tamaño: 713x485

Presu2013

Agregado
Dec 19 2012
Visitas
244

Campaña en Barakaldo por unos...

| Format: JPEG | Tamaño: 587x842

tertuliaParke

Agregado
Dec 11 2012
Visitas
230

III Tertulia social SOS PARKE Estancia...

| Format: JPEG | Tamaño: 850x472

dimisionosolucion

Agregado
Dec 02 2012
Visitas
248

[Asturies] Solución o Dimisión...

| Format: JPEG | Tamaño: 601x850

CadeaHumana

Agregado
Nov 29 2012
Visitas
281

Cadea humana en Coia: Polo dereito a vivir...

| Format: JPEG | Tamaño: 892x618

moviParke100

Agregado
Nov 25 2012
Visitas
296

Próximas movilizaciones del Parke

| Format: JPEG | Tamaño: 601x851

AkanLanbide

Agregado
Nov 23 2012
Visitas
297

Acampando contra la vulneración de...

| Format: JPEG | Tamaño: 817x577

EuskalHerriaMartxan

Agregado
Nov 21 2012
Visitas
293

“Marcha Por un Trabajo Digno y los...

| Format: JPEG | Tamaño: 731x1024


[<<] . 1 . 2 . 3 . 4 . 5 . 6 . 7 . 8 . 9 . 10 . 11 . 12 . 13 . 14 . 15 . [>>]

:
 

HunterGay


   Baladre
baladre@coordinacionbaladre.org