Changeset 619228
- Timestamp:
- 10/30/2012 09:42:56 PM (13 years ago)
- Location:
- pafacile
- Files:
-
- 6 edited
- 30 copied
-
tags/2.4.5 (copied) (copied from pafacile/trunk)
-
tags/2.4.5/PAFacileBackend.php (copied) (copied from pafacile/trunk/PAFacileBackend.php)
-
tags/2.4.5/PAFacileFrontend.php (copied) (copied from pafacile/trunk/PAFacileFrontend.php)
-
tags/2.4.5/PAFacileUpdateManager.php (copied) (copied from pafacile/trunk/PAFacileUpdateManager.php)
-
tags/2.4.5/alboPretorio/dettaglio.php (copied) (copied from pafacile/trunk/alboPretorio/dettaglio.php)
-
tags/2.4.5/alboPretorio/elenco.php (copied) (copied from pafacile/trunk/alboPretorio/elenco.php)
-
tags/2.4.5/alboPretorio/stampa.php (copied) (copied from pafacile/trunk/alboPretorio/stampa.php)
-
tags/2.4.5/bandi/dettaglio.php (copied) (copied from pafacile/trunk/bandi/dettaglio.php)
-
tags/2.4.5/bandi/elenco.php (copied) (copied from pafacile/trunk/bandi/elenco.php)
-
tags/2.4.5/db.php (copied) (copied from pafacile/trunk/db.php) (1 diff)
-
tags/2.4.5/definitions.php (copied) (copied from pafacile/trunk/definitions.php) (1 diff)
-
tags/2.4.5/doSave.php (copied) (copied from pafacile/trunk/doSave.php) (1 diff)
-
tags/2.4.5/google-analytics/index.php (copied) (copied from pafacile/trunk/google-analytics/index.php)
-
tags/2.4.5/incarichiProfessionali/dettaglio.php (copied) (copied from pafacile/trunk/incarichiProfessionali/dettaglio.php)
-
tags/2.4.5/incarichiProfessionali/elenco.php (copied) (copied from pafacile/trunk/incarichiProfessionali/elenco.php)
-
tags/2.4.5/organigramma/dettaglio.php (copied) (copied from pafacile/trunk/organigramma/dettaglio.php)
-
tags/2.4.5/organigramma/elenco.php (copied) (copied from pafacile/trunk/organigramma/elenco.php)
-
tags/2.4.5/public-contents/AlboPretorio.php (copied) (copied from pafacile/trunk/public-contents/AlboPretorio.php)
-
tags/2.4.5/public-contents/BandiGare.php (copied) (copied from pafacile/trunk/public-contents/BandiGare.php) (1 diff)
-
tags/2.4.5/public-contents/Delibere.php (copied) (copied from pafacile/trunk/public-contents/Delibere.php)
-
tags/2.4.5/public-contents/Determine.php (copied) (copied from pafacile/trunk/public-contents/Determine.php)
-
tags/2.4.5/public-contents/Incarichi.php (copied) (copied from pafacile/trunk/public-contents/Incarichi.php)
-
tags/2.4.5/public-contents/Ordinanze.php (copied) (copied from pafacile/trunk/public-contents/Ordinanze.php)
-
tags/2.4.5/public-contents/Organi.php (copied) (copied from pafacile/trunk/public-contents/Organi.php)
-
tags/2.4.5/readme.txt (copied) (copied from pafacile/trunk/readme.txt) (2 diffs)
-
tags/2.4.5/toSendIt.php (copied) (copied from pafacile/trunk/toSendIt.php)
-
tags/2.4.5/toSendItPAFacileContents.php (copied) (copied from pafacile/trunk/toSendItPAFacileContents.php)
-
tags/2.4.5/toSendItPAFacilePages.php (copied) (copied from pafacile/trunk/toSendItPAFacilePages.php)
-
tags/2.4.5/tosendit-pa.php (copied) (copied from pafacile/trunk/tosendit-pa.php) (3 diffs)
-
tags/2.4.5/welcome.php (copied) (copied from pafacile/trunk/welcome.php)
-
trunk/db.php (modified) (1 diff)
-
trunk/definitions.php (modified) (1 diff)
-
trunk/doSave.php (modified) (1 diff)
-
trunk/public-contents/BandiGare.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/tosendit-pa.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pafacile/tags/2.4.5/db.php
r611965 r619228 200 200 id_ufficio mediumint(9) NOT NULL, 201 201 oggetto tinytext NOT NULL, 202 descrizione tinytext NOT NULL,202 descrizione longtext NOT NULL, 203 203 data_pubblicazione date NOT NULL, 204 204 data_scadenza datetime NOT NULL, -
pafacile/tags/2.4.5/definitions.php
r611965 r619228 3 3 #define('TOSENDIT_PAFACILE_DB_VERSION', '1.4.6'); 4 4 #define('TOSENDIT_PAFACILE_DB_VERSION', '1.5.0'); 5 define('TOSENDIT_PAFACILE_DB_VERSION', '1.5.1'); 5 #define('TOSENDIT_PAFACILE_DB_VERSION', '1.5.1'); 6 define('TOSENDIT_PAFACILE_DB_VERSION', '1.5.2'); 6 7 7 8 # Azioni amministrarive -
pafacile/tags/2.4.5/doSave.php
r611965 r619228 186 186 if(is_array($decAT["$table.$key"])){ 187 187 $info = $decAT["$table.$key"][0]; 188 $rVal = call_user_func _array( $decAT["$table.$key"][1], $rVal );189 $value = call_user_func _array( $decAT["$table.$key"][1], $value );188 $rVal = call_user_func( $decAT["$table.$key"][1], $rVal ); 189 $value = call_user_func( $decAT["$table.$key"][1], $value ); 190 190 }else{ 191 191 $info = $decAT["$table.$key"]; 192 192 } 193 if($rVal!='') $from = " da <strong>$rVal</strong>"; 194 if($value!='') $to = " a <strong>$value</strong>"; 195 else $to= " a vuoto"; 193 $from = ($rVal!='')?" da <strong>$rVal</strong>":''; 194 $to = ($value!='')?" a <strong>$value</strong>":" a vuoto"; 196 195 197 196 $action = ($rVal!='')?'modificato':'impostato'; -
pafacile/tags/2.4.5/public-contents/BandiGare.php
r611965 r619228 233 233 $urlBandi = get_permalink($permalinks['bandi_id']); 234 234 # Since V 2.4.4 - Bugfix: Problema nel link all'ufficio 235 $urlUfficio.='?o Id=';235 $urlUfficio.='?oid='; 236 236 237 237 $arrayInfoHeader = array(); -
pafacile/tags/2.4.5/readme.txt
r611965 r619228 4 4 Requires at least: 3.4 5 5 Tested up to: 3.4.2 6 Stable tag: 2.4. 46 Stable tag: 2.4.5 7 7 8 8 Plugin per la gestione delle informazioni on-line che ogni amministrazione deve pubblicare (linee guida per i requisiti minimi per i siti delle PA). 9 9 10 10 == Description == 11 12 **NOTA:** La versione 2.4.5 è una versione di aggiornamento urgente legata alla dimensione di un campo nella banca dati che ne limita l'utilizzo in alcuni contesti 11 13 12 14 PAFacile è un plugin sviluppato dalla [toSend.it](http://tosend.it) per venire incontro alle esigenze della Pubblica Amministrazione e degli Enti Locali creando uno strumento semplice da usare e facile da manutenere e intuitivo nella sua configurazione. … … 70 72 71 73 == Changelog == 74 75 = 2.4.5 (2012-10-30) = 76 * **Update:** Cambiato il tipo di dato da TINYTEXT a LONGTEXT per il campo descrizione nella tabella bandi. 77 * **Bugfix:** Modificato *call_user_func_array* in *call_user_func* nella gestione del log attività. 78 * **Bugfix:** Il link al dettaglio dell'ufficio riportava un carattere errato nella sezione bandi. 79 72 80 73 81 = 2.4.4 (2012-10-13) = -
pafacile/tags/2.4.5/tosendit-pa.php
r611965 r619228 3 3 * @package toSend.it 4 4 * @author toSend.it di Luisa Marra 5 * @version 2.4. 45 * @version 2.4.5 6 6 */ 7 7 /* … … 10 10 Description: Gestisce le informazioni on-line che qualunque PA deve pubblicare secondo quanto specificato nelle linee guida per i requisiti minimi per i siti delle PA emanate dal Governo nel 2010 11 11 Author: toSend.it di Luisa Marra 12 Version: 2.4. 412 Version: 2.4.5 13 13 Author URI: http://toSend.it 14 14 */ … … 16 16 #define('TOSENDIT_PAFACILE_VERSION', '2.3'); 17 17 #define('TOSENDIT_PAFACILE_VERSION', '2.4.3'); 18 define('TOSENDIT_PAFACILE_VERSION', '2.4.4'); 18 #define('TOSENDIT_PAFACILE_VERSION', '2.4.4'); 19 define('TOSENDIT_PAFACILE_VERSION', '2.4.5'); 19 20 20 21 # è PAFacile in un installazione di default -
pafacile/trunk/db.php
r611965 r619228 200 200 id_ufficio mediumint(9) NOT NULL, 201 201 oggetto tinytext NOT NULL, 202 descrizione tinytext NOT NULL,202 descrizione longtext NOT NULL, 203 203 data_pubblicazione date NOT NULL, 204 204 data_scadenza datetime NOT NULL, -
pafacile/trunk/definitions.php
r611965 r619228 3 3 #define('TOSENDIT_PAFACILE_DB_VERSION', '1.4.6'); 4 4 #define('TOSENDIT_PAFACILE_DB_VERSION', '1.5.0'); 5 define('TOSENDIT_PAFACILE_DB_VERSION', '1.5.1'); 5 #define('TOSENDIT_PAFACILE_DB_VERSION', '1.5.1'); 6 define('TOSENDIT_PAFACILE_DB_VERSION', '1.5.2'); 6 7 7 8 # Azioni amministrarive -
pafacile/trunk/doSave.php
r611965 r619228 186 186 if(is_array($decAT["$table.$key"])){ 187 187 $info = $decAT["$table.$key"][0]; 188 $rVal = call_user_func _array( $decAT["$table.$key"][1], $rVal );189 $value = call_user_func _array( $decAT["$table.$key"][1], $value );188 $rVal = call_user_func( $decAT["$table.$key"][1], $rVal ); 189 $value = call_user_func( $decAT["$table.$key"][1], $value ); 190 190 }else{ 191 191 $info = $decAT["$table.$key"]; 192 192 } 193 if($rVal!='') $from = " da <strong>$rVal</strong>"; 194 if($value!='') $to = " a <strong>$value</strong>"; 195 else $to= " a vuoto"; 193 $from = ($rVal!='')?" da <strong>$rVal</strong>":''; 194 $to = ($value!='')?" a <strong>$value</strong>":" a vuoto"; 196 195 197 196 $action = ($rVal!='')?'modificato':'impostato'; -
pafacile/trunk/public-contents/BandiGare.php
r611965 r619228 233 233 $urlBandi = get_permalink($permalinks['bandi_id']); 234 234 # Since V 2.4.4 - Bugfix: Problema nel link all'ufficio 235 $urlUfficio.='?o Id=';235 $urlUfficio.='?oid='; 236 236 237 237 $arrayInfoHeader = array(); -
pafacile/trunk/readme.txt
r611965 r619228 4 4 Requires at least: 3.4 5 5 Tested up to: 3.4.2 6 Stable tag: 2.4. 46 Stable tag: 2.4.5 7 7 8 8 Plugin per la gestione delle informazioni on-line che ogni amministrazione deve pubblicare (linee guida per i requisiti minimi per i siti delle PA). 9 9 10 10 == Description == 11 12 **NOTA:** La versione 2.4.5 è una versione di aggiornamento urgente legata alla dimensione di un campo nella banca dati che ne limita l'utilizzo in alcuni contesti 11 13 12 14 PAFacile è un plugin sviluppato dalla [toSend.it](http://tosend.it) per venire incontro alle esigenze della Pubblica Amministrazione e degli Enti Locali creando uno strumento semplice da usare e facile da manutenere e intuitivo nella sua configurazione. … … 70 72 71 73 == Changelog == 74 75 = 2.4.5 (2012-10-30) = 76 * **Update:** Cambiato il tipo di dato da TINYTEXT a LONGTEXT per il campo descrizione nella tabella bandi. 77 * **Bugfix:** Modificato *call_user_func_array* in *call_user_func* nella gestione del log attività. 78 * **Bugfix:** Il link al dettaglio dell'ufficio riportava un carattere errato nella sezione bandi. 79 72 80 73 81 = 2.4.4 (2012-10-13) = -
pafacile/trunk/tosendit-pa.php
r611965 r619228 3 3 * @package toSend.it 4 4 * @author toSend.it di Luisa Marra 5 * @version 2.4. 45 * @version 2.4.5 6 6 */ 7 7 /* … … 10 10 Description: Gestisce le informazioni on-line che qualunque PA deve pubblicare secondo quanto specificato nelle linee guida per i requisiti minimi per i siti delle PA emanate dal Governo nel 2010 11 11 Author: toSend.it di Luisa Marra 12 Version: 2.4. 412 Version: 2.4.5 13 13 Author URI: http://toSend.it 14 14 */ … … 16 16 #define('TOSENDIT_PAFACILE_VERSION', '2.3'); 17 17 #define('TOSENDIT_PAFACILE_VERSION', '2.4.3'); 18 define('TOSENDIT_PAFACILE_VERSION', '2.4.4'); 18 #define('TOSENDIT_PAFACILE_VERSION', '2.4.4'); 19 define('TOSENDIT_PAFACILE_VERSION', '2.4.5'); 19 20 20 21 # è PAFacile in un installazione di default
Note: See TracChangeset
for help on using the changeset viewer.