Nouveau produit d’import/export CSV pour Archetypes
by ebr
12 08 2008Makina Corpus a réalisé un produit d’import/export CSV Plone 3 pour tous les types de contenus Archetypes.
Plus d’information ici.
Categories : francais, plone
Makina Corpus a réalisé un produit d’import/export CSV Plone 3 pour tous les types de contenus Archetypes.
Plus d’information ici.
Vu que le WE prochain (du 8 au 10 Aout 2008) a lieu partout dans le monde, le 1er Ubuntu Global bug jam je me lance pour proposer d'en organiser 1 à toulouse... Ben oui je tente de montrer l'exemple ;)
Et déjà c'est quoi un Global Bug Jam ? C'est l'occasion pour un groupe de personnes de se regrouper dans la joie et la bonne humeur pour corriger des bugs Ubuntu... Bien sur les bugs abordés seront simples (une catégorie spéciale doit etre proposée...) histoire de permettre à tout le monde de participer à améliorer la future version Intrepid Ibex. Et puis c'est quand même plus sympa de faire ça en vrai dans la même pièce, plutot que tous derrière un PC dans la même ville...
Je propose donc d'organiser ça Vendredi 8 Aout vers 20h30... Donc surtout si vous êtes intéressés pour y participer merci de laisser un commentaire ici.. Pour le moment il ne manque que des participants ET un endroit pour le faire... Bref si vous avez des idées...
Bugfixes and new translations.
To upgrade from previous version, run the following scripts:
* MAJOR FIX to get the last user who has locked the module
* New $url_hosted_link and $url_hosted_name variables to set in
localconfig.inc.php
* FIX Sending of emails to the committers on ‘Ready to commit’
* New Brazilian Portuguese translation by Leonardo Ferreira Fontenelle
* New Czech translation by Lucas Lommer (#237486)
* FIX #237472 reported by Lucas Lommer
VARCHAR > 255 needs MySQL 5.0.3 or later
I was needing for a big customer of my company a mechanism that fires some action on certain transitions.
Thus I was quite happy to notice that the next version of trac (0.11) provides a way to customizes workflows. And thanks to the Advanced Ticket Workflow Plugin, to fulfill me need.
BUT, since there is always a but... it was not working ....
After quite some time and a lot of debugging I figured out why : the brand new workflow system was bugged, and the transition action can only be fired on a "non status change" transition. I have pointed it out to the developer of the plugin, explaining him the files that were in cause... Fortunately it has been modified in the trac sources right now... Thanks to me, like it is said :)
There are a great web site and some tools about this subject (thanks to Intel and their great developers)
http://www.lesswatts.org
The first step is to remove some useless services or rarely used, I chosen the following ones :
apt-get remove bluz-utils hplip* scim* tracker*
update-rc.d -f pcmcia remove, for mysql, apache2, postgresql-8.3 (it’s easy to launch when necessary)
You can really check the impact of your changes with bootchart and view the result with eog /var/log/bootchart/*.png (my laptop starts in 27 seconds).
In gnome-session-properties, I also unchecked Applet Tracker, Evolution Alarm Notifier, Bluetooth Manager (don’t forget to save in the third tab).
You can measure the number of wakeups per second with the wonderful PowerTop ($ sudo powertop), on my computer the main guilty was the proprietary nvidia driver (around 60 fps like the refresh rate of my screen), I added the following line in my xorg.conf to resolve that issue (~ 2 wps after) :
Option “OnDemandVBlankInterrupts” “true”
I also blacklisted some modules in /etc/modprobe.d/blacklist
blacklist pcmcia
blacklist yenta_socket
blacklist rsrc_nonstatic
With no Wifi and no USB mouse connected, with my GNOME Desktop, a gnome-terminal and Emacs, I have only 20 wakeups per second (not bad :).
I wrote a little script to test some more aggressive settings if they works fine I will add them to sysctl.conf:
# By setting this to ‘1′, under light load scenarios, the process
# load is distributed such that all the cores in a processor package
# are busy before distributing the process load to other processor
# packages.
echo 1 > /sys/devices/system/cpu/sched_mc_power_saving
# From 500 by default
echo 1500 > /proc/sys/vm/dirty_writeback_centisecs
# SATA
echo min_power > /sys/class/scsi_host/host0/link_power_management_policy
# Sound
echo 1 > /sys/module/snd_hda_intel/parameters/power_save
I don’t use the laptop_mode or hdparm because I don’t want to stress my hard drive with too many spin up and down. It’s not necessary to insert the ‘noatime’ option in fstab with Ubuntu Hardy Heron because the new ‘relatime’ option is already activated.
Currently working on PDF generation, I’ve noticed that drawing a big PNG image with transparency (about 600×800, 150kB) brings the script computation up to 20 seconds. I’ve raised the bug in the Zend Framework issue tracker and for now, don’t forget to remove transparency in your background image if you can.
See the bug at : http://framework.zend.com/issues/browse/ZF-3392