Merge lp:~dangarner/xibo/379499 into lp:xibo/1.0

Proposed by Dan Garner
Status: Merged
Merged at revision: not available
Proposed branch: lp:~dangarner/xibo/379499
Merge into: lp:xibo/1.0
Diff against target: None lines
To merge this branch: bzr merge lp:~dangarner/xibo/379499
Reviewer Review Type Date Requested Status
Xibo Maintainters Pending
Review via email: mp+7579@code.launchpad.net
To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'client/dotNET/Rss.cs'
2--- client/dotNET/Rss.cs 2009-03-13 09:21:56 +0000
3+++ client/dotNET/Rss.cs 2009-05-24 10:19:36 +0000
4@@ -96,6 +96,9 @@
5 try
6 {
7 wc = new System.Net.WebClient();
8+ wc.Encoding = System.Text.Encoding.UTF8;
9+
10+ System.Diagnostics.Debug.WriteLine("Created at WebClient and set the Encoding to UTF8", "RSS - Refresh local RSS");
11
12 wc.OpenReadCompleted += new System.Net.OpenReadCompletedEventHandler(wc_OpenReadCompleted);
13
14@@ -109,6 +112,8 @@
15
16 void wc_OpenReadCompleted(object sender, System.Net.OpenReadCompletedEventArgs e)
17 {
18+ String rssContents;
19+
20 if (e.Error != null)
21 {
22 System.Diagnostics.Trace.WriteLine(String.Format("[*]ScheduleID:{1},LayoutID:{2},MediaID:{3},Message:{0}", e.Error, scheduleId, layoutId, mediaid));
23@@ -122,11 +127,14 @@
24
25 try
26 {
27- System.IO.StreamReader sr = new System.IO.StreamReader(data);
28+ System.IO.StreamReader sr = new System.IO.StreamReader(data, true);
29+ rssContents = sr.ReadToEnd();
30
31 StreamWriter sw = new StreamWriter(File.Open(rssFilePath, FileMode.Create, FileAccess.Write, FileShare.Read));
32
33- sw.Write(sr.ReadToEnd());
34+ System.Diagnostics.Debug.WriteLine("Retrieved RSS - about to write it", "RSS - wc_OpenReadCompleted");
35+
36+ sw.Write(rssContents);
37
38 sr.Close();
39 sw.Close();
40
41=== modified file 'client/dotNET/VideoPlayer.resx'
42--- client/dotNET/VideoPlayer.resx 2008-12-19 23:34:13 +0000
43+++ client/dotNET/VideoPlayer.resx 2009-05-24 10:19:36 +0000
44@@ -123,8 +123,8 @@
45 LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACFTeXN0
46 ZW0uV2luZG93cy5Gb3Jtcy5BeEhvc3QrU3RhdGUBAAAABERhdGEHAgIAAAAJAwAAAA8DAAAAuQAAAAIB
47 AAAAAQAAAAAAAAAAAAAAAKQAAAAAAwAACAACAAAAAAAFAAAAAAAAAPA/AwAAAAAABQAAAAAAAAAAAAgA
48- AgAAAAAAAwABAAAACwD//wMAAAAAAAsA//8IAAIAAAAAAAMAMgAAAAsAAAAIAAoAAABuAG8AbgBlAAAA
49- CwD//wsA//8LAAAACwAAAAsAAAAIAAIAAAAAAAgAAgAAAAAACAACAAAAAAAIAAIAAAAAAAsAAAATHgAA
50+ AgAAAAAAAwABAAAACwD//wMAAAAAAAsAAAAIAAIAAAAAAAMAMgAAAAsAAAAIAAoAAABuAG8AbgBlAAAA
51+ CwD//wsAAAALAAAACwAAAAsAAAAIAAIAAAAAAAgAAgAAAAAACAACAAAAAAAIAAIAAAAAAAsAAAATHgAA
52 zRsAAAs=
53 </value>
54 </data>
55
56=== modified file 'client/dotNET/bin/Release/XiboClient.XmlSerializers.dll'
57Binary files client/dotNET/bin/Release/XiboClient.XmlSerializers.dll 2009-03-28 19:13:50 +0000 and client/dotNET/bin/Release/XiboClient.XmlSerializers.dll 2009-05-24 10:19:36 +0000 differ
58=== modified file 'client/dotNET/bin/Release/XiboClient.exe'
59Binary files client/dotNET/bin/Release/XiboClient.exe 2009-03-28 19:13:50 +0000 and client/dotNET/bin/Release/XiboClient.exe 2009-05-24 10:19:36 +0000 differ
60=== modified file 'client/dotNET/bin/Release/XiboClient.pdb'
61Binary files client/dotNET/bin/Release/XiboClient.pdb 2009-03-28 19:13:50 +0000 and client/dotNET/bin/Release/XiboClient.pdb 2009-05-24 10:19:36 +0000 differ

Subscribers

People subscribed via source and target branches