diff --git a/.gitignore b/.gitignore index 4e93df9c..cb494b07 100644 --- a/.gitignore +++ b/.gitignore @@ -306,3 +306,4 @@ CampusAppWP8/packages/ZXing.Net.0.11.0.1/lib/windows8-native+javascript/ZXing.pr CampusAppWP8/packages/ZXing.Net.0.11.0.1/lib/windows8-native+javascript/ZXing.winmd CampusAppWP8/packages/ZXing.Net.0.11.0.1/lib/wp8/zxing.wp8.0.XML CampusAppWP8/packages/ZXing.Net.0.11.0.1/lib/wp8/zxing.wp8.0.dll +work/.svn/ diff --git a/CampusAppWP8/CampusAppW8.sln b/CampusAppWP8/CampusAppW8.sln index fec303b9..389dbe1c 100644 --- a/CampusAppWP8/CampusAppW8.sln +++ b/CampusAppWP8/CampusAppW8.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 2012 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CampusAppWP8", "CampusAppWP8\CampusAppWP8.csproj", "{120B88CC-F3F0-4C5A-A3FD-C26E835338CC}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CampussAppWStore8", "CampussAppWStore8\CampussAppWStore8.csproj", "{E49420AA-3023-42EF-8255-67B1F5E52B43}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CampusAppWStore8", "CampussAppWStore8\CampusAppWStore8.csproj", "{E49420AA-3023-42EF-8255-67B1F5E52B43}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CampusAppWPortalLib8", "CampusAppWPortalLib8\CampusAppWPortalLib8.csproj", "{67D80BE2-0FB7-44C8-A495-7D44FC2AC262}" EndProject diff --git a/CampusAppWP8/CampusAppWP8/App.xaml.cs b/CampusAppWP8/CampusAppWP8/App.xaml.cs index 12dd2832..55c47531 100644 --- a/CampusAppWP8/CampusAppWP8/App.xaml.cs +++ b/CampusAppWP8/CampusAppWP8/App.xaml.cs @@ -152,7 +152,15 @@ namespace CampusAppWP8 this.UserSettingsLoaded(); - Settings.AppSetting.UniNetwork = Utilities.IsUniNetworkAvailable(); + Settings.AppSetting.UniNetwork = Utilities.IsUniNetworkAvailable(); + if (!Settings.AppSetting.UniNetwork) + { + Settings.AppSetting.WifiEnable = Utilities.IsWifiAvailable(); + } + else + { + Settings.AppSetting.WifiEnable = true; + } if (Settings.AppSetting.GeoWatchEnable) { diff --git a/CampusAppWP8/CampusAppWP8/Assets/Icons/DarkTheme/current_position_159.png b/CampusAppWP8/CampusAppWP8/Assets/Icons/DarkTheme/current_position_159.png new file mode 100644 index 00000000..47ed68d2 Binary files /dev/null and b/CampusAppWP8/CampusAppWP8/Assets/Icons/DarkTheme/current_position_159.png differ diff --git a/CampusAppWP8/CampusAppWP8/Assets/Icons/DarkTheme/search_place_159.png b/CampusAppWP8/CampusAppWP8/Assets/Icons/DarkTheme/search_place_159.png new file mode 100644 index 00000000..2b8797ca Binary files /dev/null and b/CampusAppWP8/CampusAppWP8/Assets/Icons/DarkTheme/search_place_159.png differ diff --git a/CampusAppWP8/CampusAppWP8/Assets/Icons/LightTheme/current_position_159.png b/CampusAppWP8/CampusAppWP8/Assets/Icons/LightTheme/current_position_159.png new file mode 100644 index 00000000..47ed68d2 Binary files /dev/null and b/CampusAppWP8/CampusAppWP8/Assets/Icons/LightTheme/current_position_159.png differ diff --git a/CampusAppWP8/CampusAppWP8/Assets/Icons/LightTheme/search_place_159.png b/CampusAppWP8/CampusAppWP8/Assets/Icons/LightTheme/search_place_159.png new file mode 100644 index 00000000..2b8797ca Binary files /dev/null and b/CampusAppWP8/CampusAppWP8/Assets/Icons/LightTheme/search_place_159.png differ diff --git a/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj b/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj index 45ea5c51..b2d262b0 100644 --- a/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj +++ b/CampusAppWP8/CampusAppWP8/CampusAppWP8.csproj @@ -105,6 +105,9 @@ + + + @@ -391,15 +394,18 @@ + + + @@ -422,6 +428,7 @@ + @@ -483,6 +490,9 @@ + + + + - + + + + diff --git a/CampusAppWP8/CampusAppWP8/Pages/Setting/AppSettingPage.xaml.cs b/CampusAppWP8/CampusAppWP8/Pages/Setting/AppSettingPage.xaml.cs index a7d851b7..a3406e04 100644 --- a/CampusAppWP8/CampusAppWP8/Pages/Setting/AppSettingPage.xaml.cs +++ b/CampusAppWP8/CampusAppWP8/Pages/Setting/AppSettingPage.xaml.cs @@ -22,6 +22,7 @@ namespace CampusAppWP8.Pages.Setting { this.InitializeComponent(); GeoWatchToggle.IsChecked = Settings.AppSetting.GeoWatchEnable; + OnlyWiFiToggle.IsChecked = Settings.AppSetting.OnlyWifi; } /// @@ -33,6 +34,7 @@ namespace CampusAppWP8.Pages.Setting if (NavigationMode.Back == e.NavigationMode) { Settings.AppSetting.GeoWatchEnable = GeoWatchToggle.IsChecked.Value; + Settings.AppSetting.OnlyWifi = OnlyWiFiToggle.IsChecked.Value; } } } diff --git a/CampusAppWP8/CampusAppWP8/Pages/StartPage.xaml b/CampusAppWP8/CampusAppWP8/Pages/StartPage.xaml index c1d2c3ee..df83d9b0 100644 --- a/CampusAppWP8/CampusAppWP8/Pages/StartPage.xaml +++ b/CampusAppWP8/CampusAppWP8/Pages/StartPage.xaml @@ -23,117 +23,143 @@ - + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - + + + + + + - - - - - - + + + + + + + - - - - - - + - + + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + - - - - - - + + + + + + + - - - - - - - + - - - - - - + + + + + + + + + + + + + - - - - - - + + + + + + - - - - - - - + + + + + + + - - - - - - + - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/CampusAppWP8/CampusAppWP8/Pages/StartPage.xaml.cs b/CampusAppWP8/CampusAppWP8/Pages/StartPage.xaml.cs index 33bc484c..8b57e6a7 100644 --- a/CampusAppWP8/CampusAppWP8/Pages/StartPage.xaml.cs +++ b/CampusAppWP8/CampusAppWP8/Pages/StartPage.xaml.cs @@ -86,45 +86,70 @@ namespace CampusAppWP8.Pages private void PhoneApplicationPage_OrientationChanged(object sender, OrientationChangedEventArgs e) { // Switch the placement of the buttons based on an orientation change. - if (this.Orientation == PageOrientation.LandscapeLeft || this.Orientation == PageOrientation.LandscapeRight) + if (this.Orientation == PageOrientation.LandscapeLeft) { - OpenHoursAppButton.SetValue(Grid.RowProperty, 0); - OpenHoursAppButton.SetValue(Grid.ColumnProperty, 3); - OpenHoursAppButtonText.Text = AppResources.OpenHoursApp_Title; - - OSAAppButton.SetValue(Grid.RowProperty, 1); - OSAAppButton.SetValue(Grid.ColumnProperty, 3); - - LinkAppButton.SetValue(Grid.RowProperty, 2); - LinkAppButton.SetValue(Grid.ColumnProperty, 3); - - ContentPanel.Margin = new Thickness(12, -24, 0, 0); - - HomeworkAppButtonText.Text = AppResources.HomeworkApp_Title; - ContentPanel.RowDefinitions[3].Height = GridLength.Auto; - ContentPanel.ColumnDefinitions[3].Width = new GridLength(1, GridUnitType.Star); + this.ContentPanel.Margin = new Thickness(24, -24, 76, 0); + this.AppTitle.Margin = new Thickness(12, 17, 0, 28); + this.MoveGridToLandscape(); + } + else if (this.Orientation == PageOrientation.LandscapeRight) + { + this.ContentPanel.Margin = new Thickness(76, -24, 24, 0); + this.AppTitle.Margin = new Thickness(64, 17, 0, 28); + this.MoveGridToLandscape(); } else { - // If not in portrait, move buttonList content to visible row and column. - ContentPanel.Margin = new Thickness(12, 0, 12, 12); - OpenHoursAppButton.SetValue(Grid.RowProperty, 3); - OpenHoursAppButton.SetValue(Grid.ColumnProperty, 0); - OpenHoursAppButtonText.Text = AppResources.OpenHoursApp_Title2; - - OSAAppButton.SetValue(Grid.RowProperty, 3); - OSAAppButton.SetValue(Grid.ColumnProperty, 1); - - LinkAppButton.SetValue(Grid.RowProperty, 3); - LinkAppButton.SetValue(Grid.ColumnProperty, 2); - - HomeworkAppButtonText.Text = AppResources.HomeworkApp_Title2; - - ContentPanel.RowDefinitions[3].Height = new GridLength(1, GridUnitType.Star); - ContentPanel.ColumnDefinitions[3].Width = GridLength.Auto; + this.ContentPanel.Margin = new Thickness(12, 0, 12, 12); + this.AppTitle.Margin = new Thickness(12, 17, 0, 28); + this.MoveToPortrait(); } } + /// Move to Portrait format. + /// Stubbfel, 27.08.2013. + private void MoveToPortrait() + { + bool test = this.Row0.Children.Remove(this.OpenHoursAppButton); + if (!test) + { + return; + } + + this.Row3.Children.Add(this.OpenHoursAppButton); + this.OpenHoursAppButton.SetValue(Grid.ColumnProperty, 0); + + this.Row1.Children.Remove(this.OSAAppButton); + this.Row3.Children.Add(this.OSAAppButton); + this.OSAAppButton.SetValue(Grid.ColumnProperty, 1); + + this.Row2.Children.Remove(this.LinkAppButton); + this.Row3.Children.Add(this.LinkAppButton); + this.LinkAppButton.SetValue(Grid.ColumnProperty, 2); + } + + /// Move Grid to landscape format. + /// Stubbfel, 27.08.2013. + private void MoveGridToLandscape() + { + bool test = this.Row3.Children.Remove(this.OpenHoursAppButton); + if (!test) + { + return; + } + + this.Row0.Children.Add(this.OpenHoursAppButton); + this.OpenHoursAppButton.SetValue(Grid.ColumnProperty, 3); + + this.Row3.Children.Remove(this.OSAAppButton); + this.Row1.Children.Add(this.OSAAppButton); + this.OSAAppButton.SetValue(Grid.ColumnProperty, 3); + + this.Row3.Children.Remove(this.LinkAppButton); + this.Row2.Children.Add(this.LinkAppButton); + this.LinkAppButton.SetValue(Grid.ColumnProperty, 3); + } + /// /// Method Navigate to /// diff --git a/CampusAppWP8/CampusAppWP8/Pages/StudentCouncil/StudentCouncilPage.xaml.cs b/CampusAppWP8/CampusAppWP8/Pages/StudentCouncil/StudentCouncilPage.xaml.cs index 2e548d4f..63523e6f 100644 --- a/CampusAppWP8/CampusAppWP8/Pages/StudentCouncil/StudentCouncilPage.xaml.cs +++ b/CampusAppWP8/CampusAppWP8/Pages/StudentCouncil/StudentCouncilPage.xaml.cs @@ -14,6 +14,7 @@ namespace CampusAppWP8.Pages.StudentCouncil using CampusAppWP8.Resources; using CampusAppWP8.Utility.Lui.MessageBoxes; using Microsoft.Phone.Controls; + using CampusAppWP8.Utility; /// /// Class for the StudentCouncilPage @@ -59,7 +60,7 @@ namespace CampusAppWP8.Pages.StudentCouncil } this.ProgressBar.Visibility = System.Windows.Visibility.Visible; - this.feed.LoadData(); + this.feed.LoadData(Utilities.getLoadModus()); } /// diff --git a/CampusAppWP8/CampusAppWP8/Resources/AppResources.Designer.cs b/CampusAppWP8/CampusAppWP8/Resources/AppResources.Designer.cs index 7b79160f..9d229538 100644 --- a/CampusAppWP8/CampusAppWP8/Resources/AppResources.Designer.cs +++ b/CampusAppWP8/CampusAppWP8/Resources/AppResources.Designer.cs @@ -771,6 +771,15 @@ namespace CampusAppWP8.Resources { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die Nur mit Wlan laden ähnelt. + /// + public static string Setting_AppOnlyWifi { + get { + return ResourceManager.GetString("Setting_AppOnlyWifi", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die Mitarbeiter ähnelt. /// diff --git a/CampusAppWP8/CampusAppWP8/Resources/AppResources.resx b/CampusAppWP8/CampusAppWP8/Resources/AppResources.resx index db84d97c..0f2c1050 100644 --- a/CampusAppWP8/CampusAppWP8/Resources/AppResources.resx +++ b/CampusAppWP8/CampusAppWP8/Resources/AppResources.resx @@ -416,4 +416,7 @@ vorlesen + + Nur mit Wlan laden + \ No newline at end of file diff --git a/CampusAppWP8/CampusAppWP8/Resources/Constants.Designer.cs b/CampusAppWP8/CampusAppWP8/Resources/Constants.Designer.cs index b0390c1f..0de55340 100644 --- a/CampusAppWP8/CampusAppWP8/Resources/Constants.Designer.cs +++ b/CampusAppWP8/CampusAppWP8/Resources/Constants.Designer.cs @@ -87,6 +87,15 @@ namespace CampusAppWP8.Resources { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die OnlyWifi ähnelt. + /// + public static string AppSetting_OnlyWifi { + get { + return ResourceManager.GetString("AppSetting_OnlyWifi", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die UniNet ähnelt. /// @@ -114,6 +123,15 @@ namespace CampusAppWP8.Resources { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die WifiEnable ähnelt. + /// + public static string AppSetting_WifiEnable { + get { + return ResourceManager.GetString("AppSetting_WifiEnable", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die DepartmentFavoriteFeed.xml ähnelt. /// @@ -501,6 +519,15 @@ namespace CampusAppWP8.Resources { } } + /// + /// Sucht eine lokalisierte Zeichenfolge, die SearchAlias ähnelt. + /// + public static string ParamModelMap_SearchTermAlias { + get { + return ResourceManager.GetString("ParamModelMap_SearchTermAlias", resourceCulture); + } + } + /// /// Sucht eine lokalisierte Zeichenfolge, die pivotindex ähnelt. /// diff --git a/CampusAppWP8/CampusAppWP8/Resources/Constants.resx b/CampusAppWP8/CampusAppWP8/Resources/Constants.resx index f7928283..ef601ff0 100644 --- a/CampusAppWP8/CampusAppWP8/Resources/Constants.resx +++ b/CampusAppWP8/CampusAppWP8/Resources/Constants.resx @@ -426,4 +426,13 @@ 802.1X + + WifiEnable + + + OnlyWifi + + + SearchAlias + \ No newline at end of file diff --git a/CampusAppWP8/CampusAppWP8/Resources/Icons.cs b/CampusAppWP8/CampusAppWP8/Resources/Icons.cs index 7d6a9c8a..4d91d96d 100644 --- a/CampusAppWP8/CampusAppWP8/Resources/Icons.cs +++ b/CampusAppWP8/CampusAppWP8/Resources/Icons.cs @@ -66,6 +66,17 @@ namespace CampusAppWP8.Resources } } + /// + /// Gets the uri string of the CurrentPosition icon. + /// + public static string CurrentPosition + { + get + { + return Themerize("current_position_159.png"); + } + } + /// /// Gets the uri string of the Delete icon. /// @@ -264,6 +275,17 @@ namespace CampusAppWP8.Resources } } + /// + /// Gets the uri string of the SearchPlace icon. + /// + public static string SearchPlace + { + get + { + return Themerize("search_place_159.png"); + } + } + /// /// Gets the uri string of the StudentCouncil icon. /// diff --git a/CampusAppWP8/CampusAppWP8/Resources/Icons.resx b/CampusAppWP8/CampusAppWP8/Resources/Icons.resx index f981d217..7cd96949 100644 --- a/CampusAppWP8/CampusAppWP8/Resources/Icons.resx +++ b/CampusAppWP8/CampusAppWP8/Resources/Icons.resx @@ -129,6 +129,9 @@ info_159.png + + current_position_159.png + delete_159.png @@ -183,6 +186,9 @@ search_159.png + + search_place_159.png + student_council_159.png diff --git a/CampusAppWP8/CampusAppWP8/Settings.StyleCop b/CampusAppWP8/CampusAppWP8/Settings.StyleCop new file mode 100644 index 00000000..ea0eb655 --- /dev/null +++ b/CampusAppWP8/CampusAppWP8/Settings.StyleCop @@ -0,0 +1,8 @@ + + + + enum + Stubbfel + + + \ No newline at end of file diff --git a/CampusAppWP8/CampusAppWP8/Styles/StartPageStyles.xaml b/CampusAppWP8/CampusAppWP8/Styles/StartPageStyles.xaml index 058047c0..1aec455a 100644 --- a/CampusAppWP8/CampusAppWP8/Styles/StartPageStyles.xaml +++ b/CampusAppWP8/CampusAppWP8/Styles/StartPageStyles.xaml @@ -16,6 +16,8 @@ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Maus - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/CampusAppWP8/CampusAppWStore8/MainPage.xaml b/CampusAppWP8/CampusAppWStore8/MainPage.xaml deleted file mode 100644 index a7ce9f6e..00000000 --- a/CampusAppWP8/CampusAppWStore8/MainPage.xaml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - diff --git a/CampusAppWP8/CampusAppWStore8/MainPage.xaml.cs b/CampusAppWP8/CampusAppWStore8/MainPage.xaml.cs deleted file mode 100644 index 077f698c..00000000 --- a/CampusAppWP8/CampusAppWStore8/MainPage.xaml.cs +++ /dev/null @@ -1,38 +0,0 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using Windows.Foundation; -using Windows.Foundation.Collections; -using Windows.UI.Xaml; -using Windows.UI.Xaml.Controls; -using Windows.UI.Xaml.Controls.Primitives; -using Windows.UI.Xaml.Data; -using Windows.UI.Xaml.Input; -using Windows.UI.Xaml.Media; -using Windows.UI.Xaml.Navigation; - -// Die Elementvorlage "Leere Seite" ist unter http://go.microsoft.com/fwlink/?LinkId=234238 dokumentiert. - -namespace CampusAppWStore8 -{ - /// - /// Eine leere Seite, die eigenständig verwendet werden kann oder auf die innerhalb eines Rahmens navigiert werden kann. - /// - public sealed partial class MainPage : Page - { - public MainPage() - { - this.InitializeComponent(); - } - - /// - /// Wird aufgerufen, wenn diese Seite in einem Rahmen angezeigt werden soll. - /// - /// Ereignisdaten, die beschreiben, wie diese Seite erreicht wurde. Die - /// Parametereigenschaft wird normalerweise zum Konfigurieren der Seite verwendet. - protected override void OnNavigatedTo(NavigationEventArgs e) - { - } - } -} diff --git a/CampusAppWP8/CampusAppWStore8/Package.appxmanifest b/CampusAppWP8/CampusAppWStore8/Package.appxmanifest deleted file mode 100644 index 7ed76a39..00000000 --- a/CampusAppWP8/CampusAppWStore8/Package.appxmanifest +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - CampusAppWStore8 - stubbfel - Assets\StoreLogo.png - - - - 6.2.1 - 6.2.1 - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/CampusAppWP8/CampusAppWStore8/Properties/AssemblyInfo.cs b/CampusAppWP8/CampusAppWStore8/Properties/AssemblyInfo.cs deleted file mode 100644 index 4f404c4e..00000000 --- a/CampusAppWP8/CampusAppWStore8/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,29 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// Allgemeine Informationen über eine Assembly werden über die folgenden -// Attribute gesteuert. Diese Attributwerte ändern, um die Informationen zu ändern, -// die einer Assembly zugeordnet sind. -[assembly: AssemblyTitle("CampusAppWStore8")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("CampusAppWStore8")] -[assembly: AssemblyCopyright("Copyright © 2013")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: -// -// Hauptversion -// Nebenversion -// Buildnummer -// Revision -// -// Es können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern -// mithilfe von '*' wie unten dargestellt übernommen werden: -// [Assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] -[assembly: ComVisible(false)] \ No newline at end of file diff --git a/CampusAppWP8/CampussAppWStore8/CampussAppWStore8.csproj b/CampusAppWP8/CampussAppWStore8/CampusAppWStore8.csproj similarity index 100% rename from CampusAppWP8/CampussAppWStore8/CampussAppWStore8.csproj rename to CampusAppWP8/CampussAppWStore8/CampusAppWStore8.csproj diff --git a/work/Dokumentation/Owncloud.pdf b/work/Dokumentation/Owncloud.pdf new file mode 100644 index 00000000..4b9597c1 Binary files /dev/null and b/work/Dokumentation/Owncloud.pdf differ diff --git a/work/Dokumentation/Owncloud.vsd b/work/Dokumentation/Owncloud.vsd new file mode 100644 index 00000000..b0100824 Binary files /dev/null and b/work/Dokumentation/Owncloud.vsd differ diff --git a/work/images/emotions/attention.svg b/work/images/emotions/attention.svg new file mode 100644 index 00000000..43e9d01c --- /dev/null +++ b/work/images/emotions/attention.svg @@ -0,0 +1,73 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/work/images/emotions/happy.svg b/work/images/emotions/happy.svg new file mode 100644 index 00000000..da348db2 --- /dev/null +++ b/work/images/emotions/happy.svg @@ -0,0 +1,73 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/work/images/emotions/question.svg b/work/images/emotions/question.svg new file mode 100644 index 00000000..699e3c17 --- /dev/null +++ b/work/images/emotions/question.svg @@ -0,0 +1,73 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/work/images/emotions/sad.svg b/work/images/emotions/sad.svg new file mode 100644 index 00000000..b5b48bda --- /dev/null +++ b/work/images/emotions/sad.svg @@ -0,0 +1,73 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/work/images/functions/add.svg b/work/images/functions/add.svg new file mode 100644 index 00000000..bb518997 --- /dev/null +++ b/work/images/functions/add.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/btu_account.svg b/work/images/functions/btu_account.svg new file mode 100644 index 00000000..5ed71b85 --- /dev/null +++ b/work/images/functions/btu_account.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/call.svg b/work/images/functions/call.svg new file mode 100644 index 00000000..68c65036 --- /dev/null +++ b/work/images/functions/call.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/campusplan.svg b/work/images/functions/campusplan.svg new file mode 100644 index 00000000..5841fa18 --- /dev/null +++ b/work/images/functions/campusplan.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/delete.svg b/work/images/functions/delete.svg new file mode 100644 index 00000000..4d0400e3 --- /dev/null +++ b/work/images/functions/delete.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/down.svg b/work/images/functions/down.svg new file mode 100644 index 00000000..eb59f205 --- /dev/null +++ b/work/images/functions/down.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/edit.svg b/work/images/functions/edit.svg new file mode 100644 index 00000000..a84e582c --- /dev/null +++ b/work/images/functions/edit.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/hausaufgaben.svg b/work/images/functions/hausaufgaben.svg new file mode 100644 index 00000000..048eefb7 --- /dev/null +++ b/work/images/functions/hausaufgaben.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/info.svg b/work/images/functions/info.svg new file mode 100644 index 00000000..5118ea82 --- /dev/null +++ b/work/images/functions/info.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/infopoint.svg b/work/images/functions/infopoint.svg new file mode 100644 index 00000000..18704fa8 --- /dev/null +++ b/work/images/functions/infopoint.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/lehrstuehle.svg b/work/images/functions/lehrstuehle.svg new file mode 100644 index 00000000..2f068e7b --- /dev/null +++ b/work/images/functions/lehrstuehle.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/links.svg b/work/images/functions/links.svg new file mode 100644 index 00000000..15065402 --- /dev/null +++ b/work/images/functions/links.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/mail.svg b/work/images/functions/mail.svg new file mode 100644 index 00000000..10a65f44 --- /dev/null +++ b/work/images/functions/mail.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/notenspiegel.svg b/work/images/functions/notenspiegel.svg new file mode 100644 index 00000000..4a45ea4b --- /dev/null +++ b/work/images/functions/notenspiegel.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/openinghours.svg b/work/images/functions/openinghours.svg new file mode 100644 index 00000000..18218aac --- /dev/null +++ b/work/images/functions/openinghours.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/personen.svg b/work/images/functions/personen.svg new file mode 100644 index 00000000..9c5523a0 --- /dev/null +++ b/work/images/functions/personen.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/reload.svg b/work/images/functions/reload.svg new file mode 100644 index 00000000..edcfd41a --- /dev/null +++ b/work/images/functions/reload.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/save.svg b/work/images/functions/save.svg new file mode 100644 index 00000000..8c0d6f36 --- /dev/null +++ b/work/images/functions/save.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/search.svg b/work/images/functions/search.svg new file mode 100644 index 00000000..963a1749 --- /dev/null +++ b/work/images/functions/search.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/stundenplan.svg b/work/images/functions/stundenplan.svg new file mode 100644 index 00000000..fffcabf0 --- /dev/null +++ b/work/images/functions/stundenplan.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/stundenplan_add.svg b/work/images/functions/stundenplan_add.svg new file mode 100644 index 00000000..a3c00599 --- /dev/null +++ b/work/images/functions/stundenplan_add.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/survey.svg b/work/images/functions/survey.svg new file mode 100644 index 00000000..a2d70400 --- /dev/null +++ b/work/images/functions/survey.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/termine.svg b/work/images/functions/termine.svg new file mode 100644 index 00000000..33b6b55a --- /dev/null +++ b/work/images/functions/termine.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/termine_add.svg b/work/images/functions/termine_add.svg new file mode 100644 index 00000000..69aa8b84 --- /dev/null +++ b/work/images/functions/termine_add.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/up.svg b/work/images/functions/up.svg new file mode 100644 index 00000000..fe378713 --- /dev/null +++ b/work/images/functions/up.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/vereine.svg b/work/images/functions/vereine.svg new file mode 100644 index 00000000..4b50684f --- /dev/null +++ b/work/images/functions/vereine.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/functions/vorlesungsverzeichnis.svg b/work/images/functions/vorlesungsverzeichnis.svg new file mode 100644 index 00000000..f292cc6f --- /dev/null +++ b/work/images/functions/vorlesungsverzeichnis.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/listicons/exams.svg b/work/images/listicons/exams.svg new file mode 100644 index 00000000..2fd7751e --- /dev/null +++ b/work/images/listicons/exams.svg @@ -0,0 +1,54 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/work/images/listicons/info.svg b/work/images/listicons/info.svg new file mode 100644 index 00000000..2afde309 --- /dev/null +++ b/work/images/listicons/info.svg @@ -0,0 +1,54 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/work/images/listicons/lab.svg b/work/images/listicons/lab.svg new file mode 100644 index 00000000..53706ac3 --- /dev/null +++ b/work/images/listicons/lab.svg @@ -0,0 +1,54 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/work/images/listicons/lecture.svg b/work/images/listicons/lecture.svg new file mode 100644 index 00000000..3f4d981f --- /dev/null +++ b/work/images/listicons/lecture.svg @@ -0,0 +1,54 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/work/images/listicons/practise.svg b/work/images/listicons/practise.svg new file mode 100644 index 00000000..e6f6db32 --- /dev/null +++ b/work/images/listicons/practise.svg @@ -0,0 +1,54 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/work/images/listicons/seminar.svg b/work/images/listicons/seminar.svg new file mode 100644 index 00000000..63f03af2 --- /dev/null +++ b/work/images/listicons/seminar.svg @@ -0,0 +1,54 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/work/images/optionbuttons/_readme.txt b/work/images/optionbuttons/_readme.txt new file mode 100644 index 00000000..871d2028 --- /dev/null +++ b/work/images/optionbuttons/_readme.txt @@ -0,0 +1 @@ +Die Icons in diesem Ordner haben die Standartfarbe weiss. Die Dateien sind also nicht leer. Man muss zunächst den Hintergrund ändern, um die Icons sehen zu können. \ No newline at end of file diff --git a/work/images/optionbuttons/add.svg b/work/images/optionbuttons/add.svg new file mode 100644 index 00000000..5bd9cfa2 --- /dev/null +++ b/work/images/optionbuttons/add.svg @@ -0,0 +1,59 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/work/images/optionbuttons/add_contact.svg b/work/images/optionbuttons/add_contact.svg new file mode 100644 index 00000000..c67865d4 --- /dev/null +++ b/work/images/optionbuttons/add_contact.svg @@ -0,0 +1,59 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/work/images/optionbuttons/add_small.svg b/work/images/optionbuttons/add_small.svg new file mode 100644 index 00000000..e50e5421 --- /dev/null +++ b/work/images/optionbuttons/add_small.svg @@ -0,0 +1,59 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/work/images/optionbuttons/delete.svg b/work/images/optionbuttons/delete.svg new file mode 100644 index 00000000..2aeb6e04 --- /dev/null +++ b/work/images/optionbuttons/delete.svg @@ -0,0 +1,59 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/work/images/optionbuttons/edit.svg b/work/images/optionbuttons/edit.svg new file mode 100644 index 00000000..e6c41722 --- /dev/null +++ b/work/images/optionbuttons/edit.svg @@ -0,0 +1,59 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/work/images/optionbuttons/prefs.svg b/work/images/optionbuttons/prefs.svg new file mode 100644 index 00000000..23acbb94 --- /dev/null +++ b/work/images/optionbuttons/prefs.svg @@ -0,0 +1,59 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/work/images/optionbuttons/save.svg b/work/images/optionbuttons/save.svg new file mode 100644 index 00000000..99b0fa28 --- /dev/null +++ b/work/images/optionbuttons/save.svg @@ -0,0 +1,59 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/work/images/optionbuttons/search.svg b/work/images/optionbuttons/search.svg new file mode 100644 index 00000000..38062bf1 --- /dev/null +++ b/work/images/optionbuttons/search.svg @@ -0,0 +1,59 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/work/images/others/beach_chair.svg b/work/images/others/beach_chair.svg new file mode 100644 index 00000000..37abbb92 --- /dev/null +++ b/work/images/others/beach_chair.svg @@ -0,0 +1,56 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/work/images/template5.svg b/work/images/template5.svg new file mode 100644 index 00000000..c99e4137 --- /dev/null +++ b/work/images/template5.svg @@ -0,0 +1,114 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/work/images/template5_emotion.svg b/work/images/template5_emotion.svg new file mode 100644 index 00000000..356fc640 --- /dev/null +++ b/work/images/template5_emotion.svg @@ -0,0 +1,73 @@ + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/work/images/template5_listicons.svg b/work/images/template5_listicons.svg new file mode 100644 index 00000000..1208ec64 --- /dev/null +++ b/work/images/template5_listicons.svg @@ -0,0 +1,54 @@ + + + + + + image/svg+xml + + + + + + + + + diff --git a/work/images/template5_options.svg b/work/images/template5_options.svg new file mode 100644 index 00000000..dfb9c94f --- /dev/null +++ b/work/images/template5_options.svg @@ -0,0 +1,59 @@ + + + + + + image/svg+xml + + + + + + + + +