Changeset 60824 in spip-zone
- Timestamp:
- Apr 30, 2012, 2:55:10 PM (9 years ago)
- Location:
- _plugins_/relecture
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/relecture/base/relecture_declarations.php
r60754 r60824 80 80 'type' => 'commentaire', 81 81 'field' => array( 82 "id_commentaire"=> "bigint(21) NOT NULL", 83 "id_relecture" => "bigint(21) NOT NULL", 84 "id_emetteur" => "bigint(21) NOT NULL", 85 "repere" => "varchar(32) DEFAULT '' NOT NULL", 86 "texte" => "text DEFAULT '' NOT NULL", 87 "reponse" => "text DEFAULT '' NOT NULL", 88 "date_crea" => "bigint(21) NOT NULL", 89 "date_modif" => "bigint(21) NOT NULL", 90 "date_cloture" => "datetime DEFAULT '0000-00-00 00:00:00' NOT NULL", 91 "statut" => "varchar(10) DEFAULT '' NOT NULL", 92 "maj" => "timestamp"), 82 "id_commentaire" => "bigint(21) NOT NULL", 83 "id_relecture" => "bigint(21) NOT NULL", 84 "id_emetteur" => "bigint(21) NOT NULL", 85 "id_organisateur" => "bigint(21) NOT NULL", 86 "element" => "varchar(10) DEFAULT '' NOT NULL", 87 "repere" => "varchar(255) DEFAULT '' NOT NULL", 88 "texte" => "text DEFAULT '' NOT NULL", 89 "reponse" => "text DEFAULT '' NOT NULL", 90 "date_crea" => "datetime DEFAULT '0000-00-00 00:00:00' NOT NULL", 91 "date_modif" => "datetime DEFAULT '0000-00-00 00:00:00' NOT NULL", 92 "date_cloture" => "datetime DEFAULT '0000-00-00 00:00:00' NOT NULL", 93 "statut" => "varchar(10) DEFAULT '' NOT NULL", 94 "maj" => "timestamp"), 93 95 'key' => array( 94 96 "PRIMARY KEY" => "id_commentaire", -
_plugins_/relecture/prive/squelettes/contenu/relecture.html
r60762 r60824 6 6 .accordion({ header: 'h5' }) 7 7 .accordion({ collapsible: true }) 8 .accordion({ active: false }) 9 .accordion({ autoHeight: false }) 10 .accordion({ fillSpace: true }); 8 .accordion({ active: false }); 11 9 }); 12 10 //]]> -
_plugins_/relecture/relecture_pipelines.php
r60757 r60824 14 14 $page = _request('exec'); 15 15 if ($page == 'relecture') { 16 $scripts[] = "jquery.ui.widget";17 16 $scripts[] = "jquery.ui.accordion"; 18 17 }
Note: See TracChangeset
for help on using the changeset viewer.