lunedì, settembre 17, 2007

Backup dei dati

Avevo già segnalato a suo tempo un buon prodotto, ma ho "scoperto" un altroottimo prodotto: SyncBack, freeware in lingua italiana, è un prodotto completo e semplicissimo da usare in grado di effettuare anche backup via FTP e quindi utile pe sincronizzare interi spazi web con le copie in locale.

lunedì, settembre 10, 2007

Hack per CSS

I browser non rispondno sempre allo stesso modo ai css e spesso si tratta di fare in modo che tutti faccinao nella stessa maniera: qui un prontuario riportato anche di seguito

Default paragraphs in this page have yellow background.
Note: "All" == IE5+/Win, Op6+, Moz, IE5/Mac, Saf (, Konq?, iCab?)

IE5/Mac only
/*\*//*/ selector { property: value; } /**/
If this has blue background then the rule is applied.

IE5/Mac only
* html>body selector { property: value; }
If this has blue background then the rule is applied.

IE6-/Win only
/*\*/ * html selector { property: value; } /**/
If this has blue background then the rule is applied.

IE5.5-/Win only
* html selector { property: value; p\roperty: normal-value; }
If this has blue background then the rule is applied.


IE5.5-/Win only

selector { property: value; p\roperty: normal-value; }
If this has blue background then the rule is applied.

IE7 only
*+html selector { property: value; }
If this has blue background then the rule is applied.

All except IE5/Mac
/*\*/ selector { property: value; } /**/
If this has blue background then the rule is applied.

All except IE5/Mac
@media all { selector { property: value; } }
If this has blue background then the rule is applied.

All except IE6-/Win

html>body selector { property: value; }
If this has blue background then the rule is applied.

IE 6, 5.5 /Win only
* html selector { property/**/: value; }
If this has blue background then the rule is applied.

All except IE6/Win
selector { property /**/: value; }
If this has blue background then the rule is applied.

All except IE5.5/Win

selector { property: /**/value; }
If this has blue background then the rule is applied.

Op7+ only (and Saf 3?)
@media all and (min-width: 0px) { selector { property: value; } }
If this has blue background then the rule is applied.

Saf 3 only?
body:first-of-type selector { property: value; }
If this has blue background then the rule is applied.

domenica, settembre 09, 2007

Jquery.... e le interfacce

Avevo già usato il potente framework javascript Jquery per fare chiamate Ajax, ma ultimamente sto apprezando i vari plugin che permettono di gestire, anche pesantemente, le interfacce grafiche. Tra questi segnalo i due ultimi usati e cioè:

Impromptu che permette di rivisitare la grafica delle finestre di conferme.

FCKeditor plugin: si tratta di un plug in che permette di agganciare FCKeditor a una qualunque textarea. FCK va scaricato a parte, ma il bello, a mio giudizio, è che il codice sorgente viene sgravato di un po' di righe. N.B.: l'url del plug in non funziona se si accede con un browser la cui lingua di default sia l'italiano: questo perché il plug in cerca di caricare la localisation italiana, non presente però sul server.