Michael Bemmerl
Michael Bemmerl
> Weird, BTW: No matter what I pass on with `$newItem->setId($url)`, all UUID for every Entry remain the same?! Is there any reason for that and how I could fix...
You're right, this is indeed not the OOP way. There's some discussion on this topic in #3 also. Patches are always welcome. :smile:
A IMHO simpler approach would be to use a derived class for each type of feed: ``` php class RSS2FeedWriter extends FeedWriter { function __construct() { parent::__construct(RSS2); } } ```...
Yes, I have the same opinion: The base class should be independent from any feed type and offering just functions for the core XML stuff. Are there some new feed...
I'm using "a" to "z" as variables. To achieve this I had to remove "e" as the Euler's number constant. And since I was already into it, I implemented a...
I saw that, thanks. Still, removing unwanted constants and functions is a nice feature, IMHO.
The GPL is primarily designed for software, while Creative Commons supports all kinds of creative works, from images to music. Check out [choosealicense.com](https://choosealicense.com/non-software/). May I suggest [CC-BY 4.0](https://creativecommons.org/licenses/by/4.0/)?
Do you have UTF-8 or ISO 8819-\* data in your database? Because this is still the problem on the [main OSB installation](http://openstreetbugs.schokokeks.org/). The content in this database is a mixture...
@nattomi, do you have utf8 as the default server character set or did you set that manually? Because the `create-database.sql` is missing collations, which means the server's default collations would...
@nattomi: I'm not a python guru, but isn't the "u'Fert\u0151boz" intended behaviour when print'ing dictionaries with unicode strings? Try this script here: https://gist.github.com/2363259 You'll see that the dictionary has the...