» First speakers disclosed for FOSDEM 2006
- Massimiliano Pala about OpenCA
- Michael Meeks about OpenOffice.org
- Tomasz Kojm about ClamAV
openSUSE, Linux, RPM/packaging, development (Java, C++, PHP, ..) or whatever
<section title="one"> <section title="two"> <para>...</para> </section> </section>
<text:h text:style-name="Heading 1" text:level="1">One</text:h> <text:h text:style-name="Heading 2" text:level="2">Two</text:h> <text:p text:style-name="Text body">...</text:p>Still magnitudes better than MS-XML. For those who had the dubious luck of looking at the HTML that is generated by MS Frontpage, you might see the same parallel as I do with MS-XML. Non-mixed content is awful and not even near (X)HTML. Well, what would we have to expect from Microsoft anyway...
smart install php4=4.4.0-6 apache2-mod_php4=4.4.0-6Posted on the opensuse-packaging list (follow the thread here) and sent to SUSE's php4 package maintainer.
#!/bin/sh y2pmsh source -s | grep -E '^[0-9]+:' | cut -f 1 -d : | while read n; do y2pmsh source --update "$n" doneIt's pretty simple and straightforward, but might be interesting for someone who's not accustomed to shell scripting. If you want the sources to be refreshed every hour, just save the snippet above as /etc/cron.hourly/yast2-refresh Don't forget to make it executable: chmod +x /etc/cron.hourly/yast2-refresh) Obviously, you have to do both steps as root. Update: darix (Marcus Rueckert) came up with a nice script that uses python-expect. It's slightly different, as it just starts the y2pmsh shell and waits for the prompt, then quits:
#!/usr/bin/python import pexpect s = pexpect.spawn("y2pmsh") s.expect ('.*y2pm.*\>') s.sendline ('quit')This way, you only refresh the repositories that are marked as "auto-refresh". Thanks for the tip Marcus :) To use python-expect, first install my python-pexpect package (or use YaST2/smart/apt/yum if you have my repository configured in one of those).