The Linux Signpost project page

Url

http://linuxsignpost.org/

Team

Help

Please contact project leader if you wish to help out, have any errors to report or any suggestions. All help is greatly appreciated

Software

Todo

To be added

To be fixed

Development

Back log

This can be solved by adding a column (alert) to the User table and making a perl script that makes a summary of software to be approved and sends it out to the administrators(Role 4) where alert is set to 1, once every day by using a cron job.

Same can be done for the translators(Role 2) but we need to know which language the translator can translate. THink we can solve this by adding a new table (?UserLocale) that is linked to the User and Locale table. If software is added and there is a missing translation there every translators that is able to translate it will be informed.

Release 25.08.2010

Rejected

Howtos

mysqldump --single-transaction -u win2lin_admin -p win2lin | gzip > win2lin.sql.gz

gunzip win2lin.sql.gz mysql -u win2lin_admin -p win2lin \. win2lin.sql

Kde: select Id,Name From Software where (Name like 'K%' or Name like 'k%') and ?WindowsVersion<>1 and Id<>38;

update Software set ?IsKdeSoftware=1 where (Name like 'K%' or Name like 'k%') and ?WindowsVersion<>1 and Id<>38;

Gnome:

select Id,Name From Software where (Name like 'G%' or Name like 'g%') and ?WindowsVersion<>1; Update Software set ?IsGnomeSoftware=1 where (Name like 'G%' or Name like 'g%') and ?WindowsVersion<>1;