diff --git a/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj b/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj index b3fdcca6..7e4ac706 100644 --- a/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj +++ b/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj @@ -220,7 +220,6 @@ - Code @@ -400,6 +399,7 @@ PublicResXFileCodeGenerator Constants.Designer.cs + Designer PreserveNewest diff --git a/CampusAppWP8/CampusAppWP8/Resources/Constants.Designer.cs b/CampusAppWP8/CampusAppWP8/Resources/Constants.Designer.cs index ec957922..e79b1eff 100644 --- a/CampusAppWP8/CampusAppWP8/Resources/Constants.Designer.cs +++ b/CampusAppWP8/CampusAppWP8/Resources/Constants.Designer.cs @@ -1,7 +1,7 @@ //------------------------------------------------------------------------------ // // Dieser Code wurde von einem Tool generiert. -// Laufzeitversion:4.0.30319.18046 +// Laufzeitversion:4.0.30319.18051 // // Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn // der Code erneut generiert wird. @@ -114,6 +114,15 @@ namespace CampusAppWP8.Resources { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die NewsFeed.xml ähnelt. + /// + public static string FileNews_Name { + get { + return ResourceManager.GetString("FileNews_Name", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die OpeninghoursFeed.xml ähnelt. /// @@ -474,6 +483,15 @@ namespace CampusAppWP8.Resources { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die http://www.tu-cottbus.de/oracle-gateway/php/rss2feed_aktuelles.php ähnelt. + /// + public static string UrlNews_Addr { + get { + return ResourceManager.GetString("UrlNews_Addr", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die http://www.tu-cottbus.de/campusapp-data/getdata.php?db=openinghours&app=2&appversion=1 ähnelt. /// diff --git a/CampusAppWP8/CampusAppWP8/Resources/Constants.resx b/CampusAppWP8/CampusAppWP8/Resources/Constants.resx index 3764f24d..d3d546e9 100644 --- a/CampusAppWP8/CampusAppWP8/Resources/Constants.resx +++ b/CampusAppWP8/CampusAppWP8/Resources/Constants.resx @@ -251,6 +251,7 @@ MensaFeed.xml + EventsFeed.xml diff --git a/CampusAppWP8/CampusAppWP8/utility/URLList.cs b/CampusAppWP8/CampusAppWP8/utility/URLList.cs deleted file mode 100644 index 8e1d19ca..00000000 --- a/CampusAppWP8/CampusAppWP8/utility/URLList.cs +++ /dev/null @@ -1,45 +0,0 @@ -//----------------------------------------------------------------------- -// -// Company copyright tag. -// -// stubbfel, fiedlchr -// 03.05.2013 -//---------------------------------------------------------------------- -namespace CampusAppWP8.Utility -{ - using System; - - /// - /// Class contain some default url of feeds - /// - /// - /// This Class may be become to a resource file - /// - public static class URLList - { - /// - /// Url for the feed of the mensa. - /// - public static readonly Uri MensaFeedURL = new Uri("http://www.studentenwerk-frankfurt.de/2011/ClassPackage/App_IKMZ_BTU/", UriKind.Absolute); - - /// - /// Url of the department feed. - /// - public static readonly Uri DepartmentFeedURL = new Uri("http://www.tu-cottbus.de/campusapp-data/professorships.xml", UriKind.Absolute); - - /// - /// Url of the event feed. - /// - public static readonly Uri EventsFeedURL = new Uri("http://www.tu-cottbus.de/oracle-gateway/php/rss2feed_veranstaltungen.php", UriKind.Absolute); - - /// - /// Url of the news feed. - /// - public static readonly Uri NewsFeedURL = new Uri("http://www.tu-cottbus.de/oracle-gateway/php/rss2feed_aktuelles.php", UriKind.Absolute); - - /// - /// Url of the opening hours feed. - /// - public static readonly Uri OpeninghoursFeedURL = new Uri("http://www.tu-cottbus.de/campusapp-data/getdata.php?db=openinghours&app=2&appversion=1", UriKind.Absolute); - } -}