= 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 . [>>]

kAHTeakTxikitu

Agregado
Mar 30 2011
Visitas
316

K-AHT-EAK TXIKITU

| Format: JPEG | Tamaño: 640x454

azkenaRamon

Agregado
Mar 22 2011
Visitas
292

Presentación libros Ramón

| Format: JPEG | Tamaño: 396x248

charla carcel canarias

Agregado
Mar 16 2011
Visitas
304

| Format: JPEG | Tamaño: 800x1131

cartelManiMadrid12 3

Agregado
Mar 03 2011
Visitas
338

Mani Madrid 12 de Marzo 2011

| Format: JPEG | Tamaño: 500x353

aes2011

Agregado
Feb 23 2011
Visitas
401

[Barakaldo] Cartel prestaciones 2011

| Format: JPEG | Tamaño: 519x850

carnavalGanomal

Agregado
Feb 22 2011
Visitas
386

Cartel Carnavales en Gamonal (Burgos)

| Format: JPEG | Tamaño: 561x800

cartelencuentrocoia

Agregado
Feb 18 2011
Visitas
388

Cartel Encuentro en Coia

| Format: JPEG | Tamaño: 561x800

recortes2ACRR

Agregado
Jan 26 2011
Visitas
371

| Format: JPEG | Tamaño: 600x852

recortesACRR

Agregado
Jan 26 2011
Visitas
380

| Format: JPEG | Tamaño: 600x852

presupuestosjustos

Agregado
Jan 26 2011
Visitas
364

[Barakaldo] Por unos Presupuestos...

| Format: JPEG | Tamaño: 530x768

sida

Agregado
Jan 17 2011
Visitas
351

SIDA

| Format: JPEG | Tamaño: 122x144

gore

Agregado
Jan 17 2011
Visitas
452

Presentación del libro "Capitalismo Gore"...

| Format: JPEG | Tamaño: 509x720

recortes

Agregado
Jan 03 2011
Visitas
394

Los presupuestos del Ayuntamiento de...

| Format: JPEG | Tamaño: 492x365

kampanada

Agregado
Dec 23 2010
Visitas
573

Cartel El Parke da la Kampanada

| Format: JPEG | Tamaño: 566x800

juguetes02

Agregado
Dec 22 2010
Visitas
442

[Sestao] Campaña contra los juguetes...

| Format: JPEG | Tamaño: 800x566

jugetes01

Agregado
Dec 22 2010
Visitas
451

[Sestao] Campaña contra los juguetes...

| Format: JPEG | Tamaño: 566x800

gastos001

Agregado
Dec 21 2010
Visitas
362

Concentración en Bilbo contra el gasto...

| Format: JPEG | Tamaño: 500x528

cartellangabetu

Agregado
Dec 13 2010
Visitas
486

Cartel concentración Asambleas de...

| Format: JPEG | Tamaño: 800x566

espetxea

Agregado
Dec 10 2010
Visitas
368

JORNADAS DE SENSIBILIZACION SOCIAL. “La...

| Format: JPEG | Tamaño: 1169x826

xativa01

Agregado
Dec 10 2010
Visitas
338

Cartel

| Format: JPEG | Tamaño: 339x479


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

:
 

HunterGay


   Baladre
baladre@coordinacionbaladre.org