

That's a way to fix it as well I guess. :)
I tried fixing up the regular-expression to exclude the part after the decimal-point, but that just ended up making it even more ugly and led to even more problems (damn I wish the js-plasmoid-api had a xml-parser).
I like your fix better. :) I'll upload a new version shortly. - May 30 2010
Yeah I realized that it was broken for some cases, and had fixed some of them locally for me already, but I didn't want to push out a new version before I had fixed them all.
I'll give your version a try and see if everything's fixed. - May 30 2010

Plasma 4 Extensions by msan 26 comments

Plasma 4 Extensions by fpuelz 813 comments
if [ ! -d plasma-dataengine-publictransport-* ]
I don't see a reason for this not to work. - Apr 02 2010

Plasma 4 Extensions by fpuelz 813 comments
A simple
sed -i s/\.7/\.8\.1/g install.sh
fixes that.
And if you're like me and prefer su over sudo, you can make it use su -c with another
sed -i s/sudo\ make\ install/su\ -c\ \"make\ install\"/g */install.sh - Apr 02 2010

Plasma Comic Sources by mfuchs 2 comments
diff -crB 92107-questionable_content/contents/code/main.es qc_neu/contents/code/main.es
*** 92107-questionable_content/contents/code/main.es 2009-02-07 15:19:55.000000000 +0100
--- qc_neu/contents/code/main.es 2009-08-11 14:17:13.000000000 +0200
***************
*** 51,56 ****
--- 51,62 ----
return;
}
+ re = new RegExp("<div id=\"news\">[<br/>\\s]*(.+)</div>\\s<script type=\"text/javascript\">");
+ match = re.exec(data);
+ if (match != null) {
+ comic.additionalText = match[1];
+ }
+
re = new RegExp("href=\"([^\"]+)\">Merchandise</a>");
match = re.exec(data);
if (match != null) { - Aug 11 2009
I'd be very glad if you could fix this. :) - Jan 22 2008