Recent content by mnmr

  1. mnmr

    Homepage Userbridge Forum/Homepage disabled

    I'm not able to log in on the home page. Is that a separate account I need to create or is my forum account supposed to work there also?
  2. mnmr

    Homepage Userbridge Forum/Homepage disabled

    It doesn't seem to work for me. I can log in on the forum page, but when I navigate to the wiki page it shows the login box in the top corner (and editing functionality is of course also not available)..
  3. mnmr

    [WiP] Repair & Update Unit Tests

    I would recommend that you take a look at NSubstitute before settling on Moq. It has superior syntax (much more readable) and you can find many articles on Google from people explaining how to migrate from Moq to NSubstitute. One example here (shows a few examples side-by-side for the two...
  4. mnmr

    WebEpg development

    I'm afraid I don't know anything about the code or what you're trying to achieve, and without context it's hard to give concrete advice. But it sounds like there are multiple consumers of the file format you are producing, so before introducing breaking changes you should consider whether these...
  5. mnmr

    WebEpg development

    The parsing question is really rather simple: the feed provider will have some sort of documentation on the content of the feed, and you will most likely need to support a variety of formats. If you parse a date string and it doesn't include TZ info, then you need to have that from somewhere...
  6. mnmr

    WebEpg development

    Good points with DST. My vote goes to UTC also.
  7. mnmr

    WebEpg development

    I'll second that, although it might still make sense to store local times in the database (it'll save a lot of unnecessary conversions, as the clock is also in local time - easier for both tv-engine and ui). The important thing is to have a convention and sticking to it.
  8. mnmr

    WebEpg development

    Overall, I'm with Tony on this one, but do have a few remarks: Working with a DateTime without knowing the associated time zone is much like reading a text file without knowing the encoding (you could get garbage or you could get the correct data, but you wouldn't know which one it was)...
  9. mnmr

    Cannot add network share

    You could also open a command prompt and type "net view" to have windows enumerate the machines it can find. If it doesnt see it, MP wont either.
  10. mnmr

    Cannot add network share

    I can add that I didn't have any issues finding my NAS (a Synology DS-1813), so it sounds more like a firewall issue or perhaps network browsing has been disabled on the NAS. The device you see in Other Devices is probably the built-in media server on the NAS. The samba (windows file sharing)...
  11. mnmr

    [fixed] Error parsing HTTP headers

    That looks great. I think the extensions class should be moved to a separate file and made public, since it's kind of a generic utility method rather than something internal to the HttpMessage. The byte[] optimization we can return to if performance is an issue :)
  12. mnmr

    Testbuilds for Native MP2 TV - Updated for 10th AE Update 1 (2014-09-13)!

    That is a good point, and worth considering before anybody makes any changes. However, as MP cannot predict what channels you'll be recording, it seems reasonable that it would show worst-case scenarios (i.e. calculated disk usage based on that). If you then watch a channel that takes less...
  13. mnmr

    [fixed] Error parsing HTTP headers

    The error is in the unit test code: string fullRequest = string.Join(delimiter, requestHeaders.ToArray()); This inserts the delimiter between items, not after each item. Thus, to have the header end with two delimiters you need an extra "" item in the headers list. Alternatively you could...
  14. mnmr

    Durchgäniges Schauen aufeinander folgender Aufnahmen möglich?

    Wenn die sendungen auf dem gleichen kanal gesendet werden sollte MP das selbst ausrechnen können (aber natürlich muss jemand die logik dafür schreiben)..
  15. mnmr

    MP 1.6 installation and setup report

    I've spent quite a bit of time over the recent weeks to try out different HTPC solutions, and thought I'd share my thoughts on the process - especially since I'm pretty happy with the result ;-) I bought one of the new Intel NUC's and a HDHomeRun-4DC tuner and installed Windows 8.1 (64-bit) and...
Top Bottom