From: Javi <ja...@gs...> - 2004-03-09 17:06:16
|
Hi. > Fine! So you are the maintainer of the MySQL-plugin! There are several > things to manage: > - you should be subscribed to the lcd4linux-devel mailing list Done :) > - you will get a developer access for the SourceForge CVS. Do you > already have a account on SourceForge? If not, please get one, and tell > me your username. My SF username is "javistolz". I've never used CVS, so I don't know how it works. I'll read the official docs. I attach the first release of plugin_mysql. A sample layout could be: ################ Variables { minute 60000 } Layout testMySQL { Row1 { Col1 'mySQLtest1' } Row2 { Col1 'mySQLtest2' } } Widget mySQLtest1 { class 'Text' #expression mySQLquery('server','login',password','database','query') expression mySQLquery('192.168.0.25','johnSmith','topSecret','myShop','SELECT orders_id FROM orders WHERE orders_status = 1') width 20 align 'R' prefix 'New Orders:' update minute } Widget mySQLtest2 { class 'Text' expression mySQLstatus('192.168.0.25','johnSmith','topSecret') width 20 align 'M' prefix 'Server:' update minute } ################ Please send comments,feedback and corrections. Bye Javier. |