

Nextrek
@ 34
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 |
using System; using System.Collections.Generic; using System.Linq; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Shapes; using Microsoft.Phone.Controls; using System.IO; using System.ServiceModel.Syndication; using System.Xml; using Microsoft.Phone.Tasks; using System.Text.RegularExpressions; namespace NotizieTL { public partial class MainPage : PhoneApplicationPage { List<Articolo> listArticoli1; List<Articolo> listArticoli3; List<ArticoloPreferito> listArticoliP = new List<ArticoloPreferito>(); // Constructor public MainPage() { InitializeComponent(); // Set the data context of the listbox control to the sample data DataContext = App.ViewModel; this.Loaded += new RoutedEventHandler(MainPage_Loaded); } // Load data for the ViewModel Items private void MainPage_Loaded(object sender, RoutedEventArgs e) { if (!App.ViewModel.IsDataLoaded) { App.ViewModel.LoadData(); } } private void PhoneApplicationPage_Loaded(object sender, RoutedEventArgs e) { // WebClient is used instead of HttpWebRequest in this code sample because // the implementation is simpler and easier to use, and we do not need to use // advanced functionality that HttpWebRequest provides, such as the ability to send headers. WebClient webClient1 = new WebClient(); WebClient webClient3 = new WebClient(); // Subscribe to the DownloadStringCompleted event prior to downloading the RSS feed. webClient1.DownloadStringCompleted += new DownloadStringCompletedEventHandler(webClient1_DownloadStringCompleted); webClient3.DownloadStringCompleted += new DownloadStringCompletedEventHandler(webClient3_DownloadStringCompleted); // Download the RSS feed. DownloadStringAsync was used instead of OpenStreamAsync because we do not need // to leave a stream open, and we will not need to worry about closing the channel. webClient1.DownloadStringAsync(new System.Uri("http://tuttolavoro.indicitalia.it/RSS/app.xml")); webClient3.DownloadStringAsync(new System.Uri("http://www.wki.it/marketing/app/tuttolavoroApp_Rel_news.xml")); } // Click handler that runs when the 'Load Feed' or 'Refresh Feed' button is clicked. //private void loadFeedButton_Click(object sender, System.Windows.RoutedEventArgs e) //{ //} // Event handler which runs after the feed is fully downloaded. private void webClient1_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e) { if (e.Error != null) { Deployment.Current.Dispatcher.BeginInvoke(() => { // Showing the exact error message is useful for debugging. In a finalized application, // output a friendly and applicable string to the user instead. MessageBox.Show(e.Error.Message); }); } else { // Save the feed into the State property in case the application is tombstoned. this.State["feed"] = e.Result; UpdateFeedList1(e.Result); } } private void webClient3_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e) { if (e.Error != null) { Deployment.Current.Dispatcher.BeginInvoke(() => { // Showing the exact error message is useful for debugging. In a finalized application, // output a friendly and applicable string to the user instead. MessageBox.Show(e.Error.Message); }); } else { // Save the feed into the State property in case the application is tombstoned. this.State["feed"] = e.Result; UpdateFeedList3(e.Result); } } // This method determines whether the user has navigated to the application after the application was tombstoned. protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e) { // First, check whether the feed is already saved in the page state. if (this.State.ContainsKey("feed")) { // Get the feed again only if the application was tombstoned, which means the ListBox will be empty. // This is because the OnNavigatedTo method is also called when navigating between pages in your application. // You would want to rebind only if your application was tombstoned and page state has been lost. if (feedListBoxNews1.Items.Count == 0) { UpdateFeedList1(State["feed"] as string); } if (feedListBoxNews3.Items.Count == 0) { UpdateFeedList3(State["feed"] as string); } } } // This method sets up the feed and binds it to our ListBox. private void UpdateFeedList1(string feedXML) { listArticoli1 = new List<Articolo>(); Articolo a; while (feedXML.Contains("<item>")) { int i = feedXML.IndexOf("<item>"); //rappresenta l'indice iniziale del blocco item int j = feedXML.IndexOf("</item>"); //rappresenta l'indice finale del blocco item int k = j-i; //rappresenta la lunghezza della stringa racchiusa dal blocco item String item = feedXML.Substring(i, k); int it = item.IndexOf("<title>") + 7; int ft = item.IndexOf("</title>"); String title = item.Substring(it, ft - it); int il = item.IndexOf("<link>") + 6; int fl = item.IndexOf("</link>"); String link = (item.Substring(il, fl - il)).Replace("amp;",""); int id = item.IndexOf("<description>") + 13; int fd = item.IndexOf("</description>"); String description1 = item.Substring(id, fd - id); String descriptionComplete = HtmlToPlainText(description1); descriptionComplete = descriptionComplete.Remove(descriptionComplete.LastIndexOf("\r")); if (descriptionComplete.StartsWith("\r\n")) descriptionComplete = descriptionComplete.Remove(0, 2); //String description = descriptionComplete; String description = descriptionComplete.Substring(0, 125); description = description.Remove(description.LastIndexOf(" ")); description += "..."; int idp = item.IndexOf("<pubDate>") + 9; int fdp = item.IndexOf("</pubDate>"); String dataPub = item.Substring(idp, fdp - idp); a = new Articolo(title, link, description, dataPub); listArticoli1.Add(a); feedXML = feedXML.Substring(feedXML.IndexOf("/pubDate") + 16); Boolean b = true; } // Load the feed into a SyndicationFeed instance. StringReader stringReader = new StringReader(feedXML); XmlReader xmlReader = XmlReader.Create(stringReader); //SyndicationFeed feed = SyndicationFeed.Load(xmlReader); // In Windows Phone OS 7.1 or later versions, WebClient events are raised on the same type of thread they were called upon. // For example, if WebClient was run on a background thread, the event would be raised on the background thread. // While WebClient can raise an event on the UI thread if called from the UI thread, a best practice is to always // use the Dispatcher to update the UI. This keeps the UI thread free from heavy processing. Deployment.Current.Dispatcher.BeginInvoke(() => { // Bind the list of SyndicationItems to our ListBox. feedListBoxNews1.ItemsSource = listArticoli1; //loadFeedButton.Content = "Refresh Feed"; }); } private void UpdateFeedList3(string feedXML) { listArticoli3 = new List<Articolo>(); Articolo a; while (feedXML.Contains("<Item>")) { int i = feedXML.IndexOf("<Item>") + 8; //rappresenta l'indice iniziale del blocco item int j = feedXML.IndexOf("</Item>"); //rappresenta l'indice finale del blocco item int k = j - i; //rappresenta la lunghezza della stringa racchiusa dal blocco item String item = feedXML.Substring(i, k); int it = item.IndexOf("<Name>") + 6; int ft = item.IndexOf("</Name>"); String title = item.Substring(it, ft - it); int id = item.IndexOf("<Descp>") + 7; int fd = item.IndexOf("</Descp>"); String description = item.Substring(id, fd - id); int ii = item.IndexOf("<Icon>") + 6; int fi = item.IndexOf("</Icon>"); String icona = item.Substring(ii, fi - ii); int il = item.IndexOf("<Link>") + 6; int fl = item.IndexOf("</Link>"); String link = item.Substring(il, fl - il); //int idp = item.IndexOf("<pubDate>") + 9; //int fdp = item.IndexOf("</pubDate>"); //String dataPub = item.Substring(idp, fdp - idp); a = new Articolo(title, link, description, "1/1/2013", icona); listArticoli3.Add(a); feedXML = feedXML.Substring(feedXML.IndexOf("/Link") + 11); Boolean b = true; //int i = feedXML.IndexOf("<item>")+8; //rappresenta l'indice iniziale del blocco item //int j = feedXML.IndexOf("</item>"); //rappresenta l'indice finale del blocco item //int k = j - i; //rappresenta la lunghezza della stringa racchiusa dal blocco item //String item = feedXML.Substring(i, k); //int it = item.IndexOf("<title>")+7; //int ft = item.IndexOf("</title>"); //String title = item.Substring(it, ft - it); //int il = item.IndexOf("<link>") + 6; //int fl = item.IndexOf("</link>"); //String link = item.Substring(il, fl - il); //int id = item.IndexOf("<description>") + 13; //int fd = item.IndexOf("</description>"); //String description = item.Substring(id, fd - id); //int idp = item.IndexOf("<pubDate>") + 9; //int fdp= item.IndexOf("</pubDate>"); //String dataPub = item.Substring(idp, fdp - idp); //a = new Articolo(title, link, description, dataPub); //listArticoli.Add(a); //feedXML = feedXML.Substring(feedXML.IndexOf("/pubDate")+16); //Boolean b = true; } // Load the feed into a SyndicationFeed instance. StringReader stringReader = new StringReader(feedXML); XmlReader xmlReader = XmlReader.Create(stringReader); //SyndicationFeed feed = SyndicationFeed.Load(xmlReader); // In Windows Phone OS 7.1 or later versions, WebClient events are raised on the same type of thread they were called upon. // For example, if WebClient was run on a background thread, the event would be raised on the background thread. // While WebClient can raise an event on the UI thread if called from the UI thread, a best practice is to always // use the Dispatcher to update the UI. This keeps the UI thread free from heavy processing. Deployment.Current.Dispatcher.BeginInvoke(() => { // Bind the list of SyndicationItems to our ListBox. feedListBoxNews3.ItemsSource = listArticoli3; //loadFeedButton.Content = "Refresh Feed"; }); } // The SelectionChanged handler for the feed items private void feedListBox_SelectionChanged(object sender, SelectionChangedEventArgs e) { ListBox listBox = sender as ListBox; if (listBox != null && listBox.SelectedItem != null) { // Get the SyndicationItem that was tapped. Articolo sItem = (Articolo)listBox.SelectedItem; // Set up the page navigation only if a link actually exists in the feed item. if (sItem.Link != null) { // Get the associated URI of the feed item. Uri uri = new Uri(sItem.Link); // Create a new WebBrowserTask Launcher to navigate to the feed item. // An alternative solution would be to use a WebBrowser control, but WebBrowserTask is simpler to use. WebBrowserTask webBrowserTask = new WebBrowserTask(); webBrowserTask.Uri = uri; webBrowserTask.Show(); } } } private static string HtmlToPlainText(string html) { const string tagWhiteSpace = @"(>|$)(\W|\n|\r)+<";//matches one or more (white space or line breaks) between '>' and '<' const string stripFormatting = @"<[^>]*(>|$)";//match any character between '<' and '>', even when end tag is missing const string lineBreak = @"<(br|BR)\s{0,1}\/{0,1}>";//matches: <br>,<br/>,<br />,<BR>,<BR/>,<BR /> var lineBreakRegex = new Regex(lineBreak, RegexOptions.Multiline); var stripFormattingRegex = new Regex(stripFormatting, RegexOptions.Multiline); var tagWhiteSpaceRegex = new Regex(tagWhiteSpace, RegexOptions.Multiline); var text = html; //Decode html specific characters text = System.Net.HttpUtility.HtmlDecode(text); //Remove tag whitespace/line breaks text = tagWhiteSpaceRegex.Replace(text, "><"); //Replace <br /> with line breaks text = lineBreakRegex.Replace(text, Environment.NewLine); //Strip formatting text = stripFormattingRegex.Replace(text, string.Empty); return text; } private void CheckBox_Checked(object sender, RoutedEventArgs e) { ListBoxItem checedItem = this.feedListPreferiti.ItemContainerGenerator.ContainerFromItem((sender as CheckBox).DataContext) as ListBoxItem; if (checedItem != null) { checedItem.IsSelected = true; } } private void CheckBox_Unchecked(object sender, RoutedEventArgs e) { ListBoxItem checedItem = this.feedListPreferiti.ItemContainerGenerator.ContainerFromItem((sender as CheckBox).DataContext) as ListBoxItem; if (checedItem != null) { checedItem.IsSelected = false; } } private void MenuItem_Click(object sender, RoutedEventArgs e) { feedListPreferiti.ItemsSource = listArticoliP; } private void feedListBoxNews1_Hold(object sender, System.Windows.Input.GestureEventArgs e) { ListBox listBox = sender as ListBox; bool a = (listBox.SelectedItem != null); bool b = true; if (listBox != null && listBox.SelectedItem != null) { // Get the SyndicationItem that was tapped. Articolo sItem = (Articolo)listBox.SelectedItem; String ti = sItem.Titolo; String te = sItem.Testo; String l = sItem.Link; String d = sItem.DataPub; Boolean isC = false; ArticoloPreferito ap = new ArticoloPreferito(ti, te, l, d, isC); listArticoliP.Add(ap); } } } } |