Started internal cleanup and started to implement the in app display for the events

This commit is contained in:
Dorian Zedler 2018-12-21 12:23:12 +01:00
parent c459516e2a
commit 2db43a1f76
55 changed files with 2050 additions and 254 deletions

View file

@ -2,7 +2,7 @@
<manifest package="com.itsblue.flgvertretungtest" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="0.04.1" android:versionCode="8" android:installLocation="auto"> <manifest package="com.itsblue.flgvertretungtest" xmlns:android="http://schemas.android.com/apk/res/android" android:versionName="0.04.1" android:versionCode="8" android:installLocation="auto">
<application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="fannyapp" android:icon="@drawable/icon"> <application android:hardwareAccelerated="true" android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="fannyapp" android:icon="@drawable/icon">
<activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation" android:name="org.qtproject.qt5.android.bindings.QtActivity" android:label="fannyapp" android:screenOrientation="unspecified" android:launchMode="singleTop"> <activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation" android:name="com.itsblue.flgvertretung.MainActivity" android:label="fannyapp" android:screenOrientation="unspecified" android:launchMode="singleTop">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN"/> <action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/> <category android:name="android.intent.category.LAUNCHER"/>
@ -60,6 +60,18 @@
--> -->
<meta-data android:name="android.app.extract_android_style" android:value="full"/> <meta-data android:name="android.app.extract_android_style" android:value="full"/>
<!-- extract android style --> <!-- extract android style -->
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
</activity> </activity>
<!-- For adding service(s) please check: https://wiki.qt.io/AndroidServices --> <!-- For adding service(s) please check: https://wiki.qt.io/AndroidServices -->

View file

@ -0,0 +1,58 @@
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
}
}
allprojects {
repositories {
jcenter()
}
}
apply plugin: 'com.android.application'
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:support-v4:25.3.1'
}
android {
/*******************************************************
* The following variables:
* - androidBuildToolsVersion,
* - androidCompileSdkVersion
* - qt5AndroidDir - holds the path to qt android files
* needed to build any Qt application
* on Android.
*
* are defined in gradle.properties file. This file is
* updated by QtCreator and androiddeployqt tools.
* Changing them manually might break the compilation!
*******************************************************/
compileSdkVersion androidCompileSdkVersion.toInteger()
buildToolsVersion androidBuildToolsVersion
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = [qt5AndroidDir + '/src', 'src', 'java']
aidl.srcDirs = [qt5AndroidDir + '/src', 'src', 'aidl']
res.srcDirs = [qt5AndroidDir + '/res', 'res']
resources.srcDirs = ['src']
renderscript.srcDirs = ['src']
assets.srcDirs = ['assets']
jniLibs.srcDirs = ['libs']
}
}
lintOptions {
abortOnError false
}
}

View file

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="."/>
</paths>

View file

@ -0,0 +1,124 @@
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtAndroidExtras module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** BSD License Usage
** Alternatively, you may use this file under the terms of the BSD license
** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of The Qt Company Ltd nor the names of its
** contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
****************************************************************************/
package com.itsblue.flgvertretung;
import android.app.Notification;
import android.app.NotificationManager;
import android.content.Context;
import android.app.Activity;
import java.lang.Runnable;
import android.content.Intent;
import java.io.File;
import android.net.Uri;
public class MainActivity extends org.qtproject.qt5.android.bindings.QtActivity
{
private static MainActivity m_instance;
public MainActivity()
{
m_instance = this;
}
/*
private static NotificationManager m_notificationManager;
private static Notification.Builder m_builder;
private static NotificationClient m_instance;
public NotificationClient()
{
m_instance = this;
}
public static void notify(String s)
{
if (m_notificationManager == null) {
m_notificationManager = (NotificationManager)m_instance.getSystemService(Context.NOTIFICATION_SERVICE);
m_builder = new Notification.Builder(m_instance);
m_builder.setSmallIcon(R.drawable.icon);
m_builder.setContentTitle("A message from Qt!");
}
m_builder.setContentText(s);
m_notificationManager.notify(1, m_builder.build());
}
*/
public static boolean openUrl(String url, String mime)
{
boolean ok = true;
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
File file = new File(url);
intent.setDataAndType(Uri.fromFile(file), "text/plain");
m_instance.startActivity(intent);
return ok;
/*
try
{
Uri uri = Uri.parse(url);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
if ( !mime.isEmpty() ) intent.setDataAndType(uri, mime);
m_instance.startActivity(intent);
}
catch (Exception e)
{ e.printStackTrace(); ok = false; }
return ok;
*/
}
}

View file

@ -19,17 +19,19 @@ ICON = favicon.icns
RC_ICONS = favicon.ico RC_ICONS = favicon.ico
SOURCES += \ SOURCES += \
source/serverconn.cpp \ sources/serverconn.cpp \
source/main.cpp \ sources/main.cpp \
source/appsettings.cpp sources/appsettings.cpp \
sources/eventform.cpp
HEADERS += \ HEADERS += \
headers/serverconn.h \ headers/serverconn.h \
headers/appsettings.h headers/appsettings.h \
headers/eventform.h
RESOURCES += \ RESOURCES += \
qml/qml.qrc \ qml/qml.qrc \
shared.qrc shared/shared.qrc
# Additional import path used to resolve QML modules in Qt Creator's code model # Additional import path used to resolve QML modules in Qt Creator's code model
QML_IMPORT_PATH = QML_IMPORT_PATH =
@ -43,10 +45,16 @@ else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target !isEmpty(target.path): INSTALLS += target
android { android {
QT += androidextras
ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android-sources ANDROID_PACKAGE_SOURCE_DIR = $$PWD/android-sources
} }
DISTFILES += \ DISTFILES += \
favicon.png \ favicon.png \
android-sources/AndroidManifest.xml android-sources/AndroidManifest.xml \
android-sources/src/com/itsblue/flgvertretung/MainActivity.java \
android-sources/res/drawable-hdpi/icon.png \
android-sources/res/drawable-ldpi/icon.png \
android-sources/res/drawable-mdpi/icon.png \
android-sources/res/xml/provider_paths.xml

17
headers/eventform.h Normal file
View file

@ -0,0 +1,17 @@
#ifndef EVENTFORM_H
#define EVENTFORM_H
#include <QObject>
class EventForm : public QObject
{
Q_OBJECT
public:
explicit EventForm(QObject *parent = nullptr);
signals:
public slots:
};
#endif // EVENTFORM_H

View file

@ -4,6 +4,8 @@
#include <QObject> #include <QObject>
#include <QDir> #include <QDir>
#include <QUrl> #include <QUrl>
#include <QtXml>
#include <QtNetwork> #include <QtNetwork>
#include <QAuthenticator> #include <QAuthenticator>
#include <QDesktopServices> #include <QDesktopServices>
@ -11,6 +13,10 @@
#include "headers/appsettings.h" #include "headers/appsettings.h"
#ifdef Q_OS_ANDROID
#include <QtAndroidExtras>
#endif
typedef struct strReturnData{ typedef struct strReturnData{
int status_code; int status_code;

View file

@ -10,7 +10,7 @@ ToolBar {
id: errorField id: errorField
width: parent.width width: parent.width
height: 30 height: 30
enabled: window.is_error & stackView.currentItem.objectName !== "LoginPage" & showErrorBar enabled: app.is_error & app.state !== "notLoggedIn" & showErrorBar
anchors.top: parent.bottom anchors.top: parent.bottom
color: "red" color: "red"
@ -41,7 +41,7 @@ ToolBar {
color: "White" color: "White"
font.pointSize: 8 font.pointSize: 8
visible: parent.height !== 0 visible: parent.height !== 0
text: window.error text: app.error
} }
} }

View file

@ -109,7 +109,7 @@ Page {
Label { Label {
anchors.left: parent.left anchors.left: parent.left
anchors.leftMargin: 10 anchors.leftMargin: 10
anchors.top: test.bottom anchors.top: text.bottom
anchors.topMargin: cust_spacing anchors.topMargin: cust_spacing
id: spacer id: spacer
text: "" text: ""

View file

@ -2,6 +2,8 @@ import QtQuick 2.9
import QtQuick.Controls 2.2 import QtQuick.Controls 2.2
import QtGraphicalEffects 1.0 import QtGraphicalEffects 1.0
import "../Components"
Page { Page {
//anchors.fill: parent //anchors.fill: parent
@ -35,7 +37,7 @@ Page {
font.pixelSize: 20 font.pixelSize: 20
wrapMode: Label.Wrap wrapMode: Label.Wrap
width: window.width / 1.2 width: window.width / 1.2
color: window.text_color color: app.text_color
anchors { anchors {
top: parent.top top: parent.top
topMargin: window.height / 8 - laWelcome.height / 2 topMargin: window.height / 8 - laWelcome.height / 2
@ -110,7 +112,7 @@ Page {
anchors.bottom: buttToday.bottom anchors.bottom: buttToday.bottom
color: "white" color: "white"
opacity: 0.7 opacity: 0.7
visible: window.is_error visible: app.is_error
} }
Dialog { Dialog {
@ -133,7 +135,9 @@ Page {
progress.text = "100%" progress.text = "100%"
busyDialog.close() busyDialog.close()
text.visible = true text.visible = true
if(ret === "OK"){ if(ret.startsWith("OK")){
var path = ret.replace("OK_", "");
Qt.openUrlExternally(path);
return return
} }
else if(ret === "Ungültige Benutzerdaten."){ else if(ret === "Ungültige Benutzerdaten."){

View file

@ -2,7 +2,6 @@ import QtQuick 2.9
import QtWebView 1.1 import QtWebView 1.1
import QtQuick.Controls 2.2 import QtQuick.Controls 2.2
import QtWebView 1.1
import QtQuick.Layouts 1.1 import QtQuick.Layouts 1.1
import QtQuick.Controls.Styles 1.2 import QtQuick.Controls.Styles 1.2

View file

@ -1,6 +1,7 @@
import QtQuick 2.11 import QtQuick 2.11
import QtQuick.Layouts 1.3 import QtQuick.Layouts 1.3
import QtQuick.Controls 2.2 import QtQuick.Controls 2.2
import "../Components"
Page { Page {
id: root id: root
@ -20,7 +21,7 @@ Page {
Image { Image {
id: bigLogo id: bigLogo
source: "favicon.png" source: "qrc:/favicon.png"
anchors.top: parent.top anchors.top: parent.top
anchors.left: parent.left anchors.left: parent.left
anchors.right: parent.right anchors.right: parent.right

View file

@ -3,6 +3,8 @@ import QtQuick.Controls 2.2
import QtQuick.Layouts 1.1 import QtQuick.Layouts 1.1
import QtQuick.Controls.Styles 1.2 import QtQuick.Controls.Styles 1.2
import "../Components"
import "../Forms"
Page { Page {
id: root id: root
@ -207,7 +209,7 @@ Page {
StackView { StackView {
id: stackView id: stackView
initialItem: "qrc:/HomeForm.qml" initialItem: "qrc:/Forms/HomeForm.qml"
anchors.fill: parent anchors.fill: parent
} }

View file

@ -1,133 +1,177 @@
import QtQuick 2.9 import QtQuick 2.9
import QtQuick.Controls 2.2 import QtQuick.Controls 2.2
import "./Components"
import "./Forms"
import "./Pages"
ApplicationWindow { ApplicationWindow {
id: window id: window
visible: true visible: true
width: 540 width: 540
height: 960 height: 960
property bool is_error Item {
property string error id: app
property bool initdone: false
property bool firstinitdone: false
property string text_color: "black" //"#424753" anchors.fill: parent
property string background_color: "white"
property string toolbar_color: "#312f38"
onBeforeRendering: { property bool is_error
if(!firstinitdone){ property string error
var isinit = _cppAppSettings.loadSetting("permanent") property bool initdone: false
console.log("getinit"); property bool firstinitdone: false
console.log(isinit);
if(isinit === "0"){ property string text_color: "black" //"#424753"
stackView.push("qrc:/LoginPage.qml", {}); property string background_color: "white"
property string toolbar_color: "#312f38"
states: [
State {
name: "notLoggedIn"
PropertyChanges {
target: mainStack
currPage: loginPage
}
},
State {
name: "loggedIn"
PropertyChanges {
target: mainStack
currPage: mainPage
}
}
]
// onBeforeRendering: {
// if(!firstinitdone){
// var isinit = _cppAppSettings.loadSetting("permanent")
// console.log("getinit");
// console.log(isinit);
// if(isinit === "0"){
// stackView.push("qrc:/LoginPage.qml", {});
// }
// }
// firstinitdone = true
// }
Timer {
//runs only one time at applictaion lauch
property bool finished: true
id: initTimer
interval: 1;
running: true
repeat: false
onTriggered: {
var init = _cppAppSettings.loadSetting("init")
var perm = _cppAppSettings.loadSetting("permanent")
console.log("checkoldlogin:", perm);
if(perm === "1"){
console.log("Perm")
var ret = _cppServerConn.login(_cppAppSettings.loadSetting("username"), _cppAppSettings.loadSetting("password"), true);
if(ret === "OK"){
initdone = true
_cppAppSettings.writeSetting("init", 1);
if(app.state !== "loggedIn"){
app.state = "loggedIn"
}
window.is_error = false;
}
else if(ret === "Keine Verbindung zum Server."){
handleError(0)
//initTimer.interval = 1000
finished = true
return
}
else {
ret = _cppServerConn.checkConn()
handleError(ret)
}
}
else {
app.initdone = false
if(app.state !== "notLoggedIn"){
app.state = "notLoggedIn"
}
}
app.initdone = true
} }
} }
firstinitdone = true
}
Timer { Timer {
//runs only one time at applictaion lauch id: refreshTimer
property bool finished: true interval: 1000;
id: initTimer running: app.initdone && stackView.currentItem.objectName !== "LoginPage"
interval: 1; repeat: true
running: initdone === false onTriggered: {
repeat: finished var ret = _cppServerConn.checkConn()
onTriggered: { handleError(ret)
finished = false }
var init = _cppAppSettings.loadSetting("init") }
var perm = _cppAppSettings.loadSetting("permanent") StackView {
console.log("checkoldlogin:", perm); id: mainStack
if(perm === "1"){
console.log("Perm")
var ret = _cppServerConn.login(_cppAppSettings.loadSetting("username"), _cppAppSettings.loadSetting("password"), true);
if(ret === "OK"){
initdone = true
_cppAppSettings.writeSetting("init", 1);
if(stackView.currentItem.objectName !== "MainPage"){
stackView.push("qrc:/MainPage.qml", {});
}
window.is_error = false;
}
else if(ret === "Keine Verbindung zum Server."){
handleError(0)
//initTimer.interval = 1000
finished = true
return
}
else { property var currPage
ret = _cppServerConn.checkConn()
handleError(ret) anchors.fill: parent
onCurrPageChanged: {
mainStack.replace(currPage)
}
initialItem: mainPage
Component {
id: loginPage
LoginPage {}
}
Component {
id: mainPage
MainPage {}
}
}
function handleError(error_code){
if(error_code === 200){
window.is_error = false;
window.error = "";
}
else if(error_code === 401){
console.warn("401")
_cppAppSettings.writeSetting("permanent", 0)
_cppAppSettings.writeSetting("username", "")
_cppAppSettings.writeSetting("password", "")
if(["LoginPage"].indexOf(stackView.currentItem.objectName) < 0){
console.log("switching to login page")
stackView.push("./Pages/LoginPage.qml");
} }
window.is_error = true;
window.error = "Nicht angemeldet!!";
}
else if(error_code === 500){
window.is_error = true;
window.error = "Interner Server Fehler!";
}
else if(error_code === 0){
window.is_error = true;
window.error = "Keine Verbindung zum Server!";
}
else if(error_code === 404){
//the testcon function calls a non existent file to be fast, so no error here
window.is_error = false;
}
else if(error_code === 111){
window.is_error = true;
window.error = "Unbekannter interner Fehler!";
} }
else { else {
initdone = false window.is_error = true;
if(stackView.currentItem.objectName !== "LoginPage"){ window.error = "Unbekannter Fehler! ("+error_code+")";
stackView.push("qrc:/LoginPage.qml")
}
} }
finished = true
initdone = true
} }
}
Timer {
id: refreshTimer
interval: 1000;
running: initdone && stackView.currentItem.objectName !== "LoginPage"
repeat: true
onTriggered: {
var ret = _cppServerConn.checkConn()
handleError(ret)
}
}
StackView {
id: stackView
initialItem: "MainPage.qml"
anchors.fill: parent
}
function handleError(error_code){
if(error_code === 200){
window.is_error = false;
window.error = "";
}
else if(error_code === 401){
console.warn("401")
_cppAppSettings.writeSetting("permanent", 0)
_cppAppSettings.writeSetting("username", "")
_cppAppSettings.writeSetting("password", "")
if(["LoginPage"].indexOf(stackView.currentItem.objectName) < 0){
console.log("switching to login page")
stackView.push("qrc:/LoginPage.qml");
}
window.is_error = true;
window.error = "Nicht angemeldet!!";
}
else if(error_code === 500){
window.is_error = true;
window.error = "Interner Server Fehler!";
}
else if(error_code === 0){
window.is_error = true;
window.error = "Keine Verbindung zum Server!";
}
else if(error_code === 404){
//the testcon function calls a non existent file to be fast, so no error here
window.is_error = false;
}
else if(error_code === 111){
window.is_error = true;
window.error = "Unbekannter interner Fehler!";
}
else {
window.is_error = true;
window.error = "Unbekannter Fehler! ("+error_code+")";
}
} }
} }

View file

@ -1,14 +1,14 @@
<RCC> <RCC>
<qresource prefix="/"> <qresource prefix="/">
<file>main.qml</file> <file>main.qml</file>
<file>HomeForm.qml</file> <file>Forms/HomeForm.qml</file>
<file>qtquickcontrols2.conf</file> <file>qtquickcontrols2.conf</file>
<file>LoginPage.qml</file> <file>Pages/LoginPage.qml</file>
<file>MainPage.qml</file> <file>Pages/MainPage.qml</file>
<file>AppToolBar.qml</file> <file>Components/AppToolBar.qml</file>
<file>WebsitePage.qml</file> <file>Forms/WebsiteForm.qml</file>
<file>FoodPlanForm.qml</file> <file>Forms/FoodPlanForm.qml</file>
<file>ProgressCircle.qml</file> <file>Components/ProgressCircle.qml</file>
<file>EventForm.qml</file> <file>Forms/EventForm.qml</file>
</qresource> </qresource>
</RCC> </RCC>

View file

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 66 KiB

View file

Before

Width:  |  Height:  |  Size: 76 KiB

After

Width:  |  Height:  |  Size: 76 KiB

View file

Before

Width:  |  Height:  |  Size: 8.3 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

View file

Before

Width:  |  Height:  |  Size: 98 KiB

After

Width:  |  Height:  |  Size: 98 KiB

View file

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View file

Before

Width:  |  Height:  |  Size: 129 KiB

After

Width:  |  Height:  |  Size: 129 KiB

View file

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View file

Before

Width:  |  Height:  |  Size: 117 KiB

After

Width:  |  Height:  |  Size: 117 KiB

View file

Before

Width:  |  Height:  |  Size: 41 KiB

After

Width:  |  Height:  |  Size: 41 KiB

View file

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

View file

Before

Width:  |  Height:  |  Size: 2.5 KiB

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

Before

Width:  |  Height:  |  Size: 289 B

After

Width:  |  Height:  |  Size: 289 B

View file

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View file

Before

Width:  |  Height:  |  Size: 126 B

After

Width:  |  Height:  |  Size: 126 B

View file

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View file

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

Before

Width:  |  Height:  |  Size: 158 B

After

Width:  |  Height:  |  Size: 158 B

View file

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View file

Before

Width:  |  Height:  |  Size: 51 KiB

After

Width:  |  Height:  |  Size: 51 KiB

View file

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 50 KiB

View file

Before

Width:  |  Height:  |  Size: 70 KiB

After

Width:  |  Height:  |  Size: 70 KiB

View file

Before

Width:  |  Height:  |  Size: 77 KiB

After

Width:  |  Height:  |  Size: 77 KiB

View file

Before

Width:  |  Height:  |  Size: 5 KiB

After

Width:  |  Height:  |  Size: 5 KiB

View file

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

View file

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

View file

@ -0,0 +1,485 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<title>Download File-html.html</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<br/>
<style type="text/css">
<!--
p {margin: 0; padding: 0;} .ft10{font-size:17px;font-family:Times;color:#000000;}
.ft11{font-size:16px;font-family:Times;color:#000000;}
.ft12{font-size:25px;font-family:Times;color:#000000;}
.ft13{font-size:14px;font-family:Times;color:#000000;}
.ft14{font-size:16px;font-family:Times;color:#000000;}
.ft15{font-size:16px;line-height:23px;font-family:Times;color:#000000;}
-->
</style>
</head>
<body bgcolor="#A0A0A0" vlink="blue" link="blue">
<div id="page1-div" style="position:relative;width:893px;height:1262px;">
<p style="position:absolute;top:10px;left:3px;white-space:nowrap" class="ft10"><b>D-70563&#160;FANNY-LEICHT-GYMN.</b></p>
<p style="position:absolute;top:32px;left:3px;white-space:nowrap" class="ft11">STUTTGART,&#160;F.-LEICHT-STR.&#160;13</p>
<p style="position:absolute;top:9px;left:332px;white-space:nowrap" class="ft15">Schuljahr&#160;2018/19&#160;-&#160;1.&#160;Halbjahr<br/>gültig&#160;ab&#160;10. September&#160;2018</p>
<p style="position:absolute;top:10px;left:708px;white-space:nowrap" class="ft10"><b>Untis&#160;2017</b></p>
<p style="position:absolute;top:32px;left:671px;white-space:nowrap" class="ft11">13.12.2018&#160;&#160;9:04</p>
<p style="position:absolute;top:64px;left:3px;white-space:nowrap" class="ft12"><b>Klasse&#160;&#160;13.12.&#160;/&#160;Donnerstag&#160;Woche-A</b></p>
<p style="position:absolute;top:111px;left:3px;white-space:nowrap" class="ft13">Ordnungsdienst: Klasse&#160;10a</p>
<p style="position:absolute;top:172px;left:3px;white-space:nowrap" class="ft11">Kl.</p>
<p style="position:absolute;top:172px;left:55px;white-space:nowrap" class="ft11">Std.</p>
<p style="position:absolute;top:172px;left:123px;white-space:nowrap" class="ft11">Vertr.&#160;Fach&#160;Rau&#160;nach</p>
<p style="position:absolute;top:172px;left:391px;white-space:nowrap" class="ft11">Vertretungs-Text</p>
<p style="position:absolute;top:194px;left:3px;white-space:nowrap" class="ft11">5b</p>
<p style="position:absolute;top:194px;left:55px;white-space:nowrap" class="ft11">1</p>
<p style="position:absolute;top:194px;left:123px;white-space:nowrap" class="ft14"><i>Hei</i></p>
<p style="position:absolute;top:194px;left:178px;white-space:nowrap" class="ft14"><i>D</i></p>
<p style="position:absolute;top:194px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:194px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:217px;left:3px;white-space:nowrap" class="ft11">5b</p>
<p style="position:absolute;top:217px;left:55px;white-space:nowrap" class="ft11">2</p>
<p style="position:absolute;top:217px;left:123px;white-space:nowrap" class="ft11">Fu</p>
<p style="position:absolute;top:217px;left:178px;white-space:nowrap" class="ft11">D</p>
<p style="position:absolute;top:217px;left:233px;white-space:nowrap" class="ft11">114</p>
<p style="position:absolute;top:217px;left:391px;white-space:nowrap" class="ft11">Hei&#160;/&#160;Aufgaben,&#160;Arbeitsheft!</p>
<p style="position:absolute;top:240px;left:3px;white-space:nowrap" class="ft11">5b</p>
<p style="position:absolute;top:240px;left:55px;white-space:nowrap" class="ft11">3</p>
<p style="position:absolute;top:240px;left:123px;white-space:nowrap" class="ft11">Oe</p>
<p style="position:absolute;top:240px;left:178px;white-space:nowrap" class="ft11">M</p>
<p style="position:absolute;top:240px;left:233px;white-space:nowrap" class="ft11">114</p>
<p style="position:absolute;top:240px;left:391px;white-space:nowrap" class="ft11">Ei&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:263px;left:3px;white-space:nowrap" class="ft11">5b</p>
<p style="position:absolute;top:263px;left:55px;white-space:nowrap" class="ft11">4</p>
<p style="position:absolute;top:263px;left:123px;white-space:nowrap" class="ft11">Rm</p>
<p style="position:absolute;top:263px;left:178px;white-space:nowrap" class="ft11">M</p>
<p style="position:absolute;top:263px;left:233px;white-space:nowrap" class="ft11">114</p>
<p style="position:absolute;top:263px;left:391px;white-space:nowrap" class="ft11">Ei&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:285px;left:3px;white-space:nowrap" class="ft11">6bc</p>
<p style="position:absolute;top:285px;left:55px;white-space:nowrap" class="ft11">5</p>
<p style="position:absolute;top:285px;left:123px;white-space:nowrap" class="ft11">Sf</p>
<p style="position:absolute;top:285px;left:178px;white-space:nowrap" class="ft11">EvR</p>
<p style="position:absolute;top:285px;left:233px;white-space:nowrap" class="ft11">321</p>
<p style="position:absolute;top:285px;left:391px;white-space:nowrap" class="ft11">&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:306px;left:3px;white-space:nowrap" class="ft11">6bc</p>
<p style="position:absolute;top:306px;left:55px;white-space:nowrap" class="ft11">5</p>
<p style="position:absolute;top:306px;left:123px;white-space:nowrap" class="ft11">Dk</p>
<p style="position:absolute;top:306px;left:178px;white-space:nowrap" class="ft11">KR</p>
<p style="position:absolute;top:306px;left:233px;white-space:nowrap" class="ft11">121</p>
<p style="position:absolute;top:306px;left:391px;white-space:nowrap" class="ft11">We&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:328px;left:3px;white-space:nowrap" class="ft11">6bc</p>
<p style="position:absolute;top:328px;left:55px;white-space:nowrap" class="ft11">6</p>
<p style="position:absolute;top:328px;left:123px;white-space:nowrap" class="ft14"><i></i></p>
<p style="position:absolute;top:328px;left:178px;white-space:nowrap" class="ft14"><i>EvR</i></p>
<p style="position:absolute;top:328px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:328px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:349px;left:3px;white-space:nowrap" class="ft11">6bc</p>
<p style="position:absolute;top:349px;left:55px;white-space:nowrap" class="ft11">6</p>
<p style="position:absolute;top:349px;left:123px;white-space:nowrap" class="ft14"><i>We</i></p>
<p style="position:absolute;top:349px;left:178px;white-space:nowrap" class="ft14"><i>KR</i></p>
<p style="position:absolute;top:349px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:349px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:372px;left:3px;white-space:nowrap" class="ft11">6d</p>
<p style="position:absolute;top:372px;left:55px;white-space:nowrap" class="ft11">6</p>
<p style="position:absolute;top:371px;left:123px;white-space:nowrap" class="ft14"><i>Ku</i></p>
<p style="position:absolute;top:371px;left:178px;white-space:nowrap" class="ft14"><i>Ek</i></p>
<p style="position:absolute;top:372px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:372px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:394px;left:3px;white-space:nowrap" class="ft11">7b</p>
<p style="position:absolute;top:394px;left:55px;white-space:nowrap" class="ft11">2</p>
<p style="position:absolute;top:394px;left:123px;white-space:nowrap" class="ft11">Ga</p>
<p style="position:absolute;top:394px;left:178px;white-space:nowrap" class="ft11">G</p>
<p style="position:absolute;top:394px;left:233px;white-space:nowrap" class="ft11">414</p>
<p style="position:absolute;top:394px;left:391px;white-space:nowrap" class="ft11">KA&#160;Fkr</p>
<p style="position:absolute;top:417px;left:3px;white-space:nowrap" class="ft11">7b</p>
<p style="position:absolute;top:417px;left:55px;white-space:nowrap" class="ft11">8</p>
<p style="position:absolute;top:417px;left:123px;white-space:nowrap" class="ft14"><i>Gg</i></p>
<p style="position:absolute;top:417px;left:178px;white-space:nowrap" class="ft14"><i>BK</i></p>
<p style="position:absolute;top:417px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:417px;left:275px;white-space:nowrap" class="ft11">Mi-12.12.&#160;/&#160;1</p>
<p style="position:absolute;top:440px;left:3px;white-space:nowrap" class="ft11">7b</p>
<p style="position:absolute;top:440px;left:55px;white-space:nowrap" class="ft11">9</p>
<p style="position:absolute;top:439px;left:123px;white-space:nowrap" class="ft14"><i>Gg</i></p>
<p style="position:absolute;top:439px;left:178px;white-space:nowrap" class="ft14"><i>BK</i></p>
<p style="position:absolute;top:440px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:440px;left:275px;white-space:nowrap" class="ft11">Mi-12.12.&#160;/&#160;2</p>
<p style="position:absolute;top:462px;left:3px;white-space:nowrap" class="ft11">7c</p>
<p style="position:absolute;top:462px;left:55px;white-space:nowrap" class="ft11">8&#160;-&#160;9</p>
<p style="position:absolute;top:462px;left:123px;white-space:nowrap" class="ft14"><i>Gw</i></p>
<p style="position:absolute;top:462px;left:178px;white-space:nowrap" class="ft14"><i>G</i></p>
<p style="position:absolute;top:462px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:462px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:485px;left:3px;white-space:nowrap" class="ft11">7d</p>
<p style="position:absolute;top:485px;left:55px;white-space:nowrap" class="ft11">1</p>
<p style="position:absolute;top:485px;left:123px;white-space:nowrap" class="ft14"><i>Ku</i></p>
<p style="position:absolute;top:485px;left:178px;white-space:nowrap" class="ft14"><i>D</i></p>
<p style="position:absolute;top:485px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:485px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:508px;left:3px;white-space:nowrap" class="ft11">7d</p>
<p style="position:absolute;top:508px;left:55px;white-space:nowrap" class="ft11">2</p>
<p style="position:absolute;top:508px;left:123px;white-space:nowrap" class="ft11">Oz</p>
<p style="position:absolute;top:508px;left:178px;white-space:nowrap" class="ft11">D</p>
<p style="position:absolute;top:508px;left:233px;white-space:nowrap" class="ft11">416</p>
<p style="position:absolute;top:508px;left:391px;white-space:nowrap" class="ft11">Ku&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:530px;left:3px;white-space:nowrap" class="ft11">8a</p>
<p style="position:absolute;top:530px;left:55px;white-space:nowrap" class="ft11">1&#160;-&#160;2</p>
<p style="position:absolute;top:530px;left:123px;white-space:nowrap" class="ft14"><i>Ei</i></p>
<p style="position:absolute;top:530px;left:178px;white-space:nowrap" class="ft14"><i>Ch</i></p>
<p style="position:absolute;top:530px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:530px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:530px;left:391px;white-space:nowrap" class="ft11">KEINE&#160;KA</p>
<p style="position:absolute;top:553px;left:3px;white-space:nowrap" class="ft11">9ac</p>
<p style="position:absolute;top:553px;left:55px;white-space:nowrap" class="ft11">8&#160;-&#160;9</p>
<p style="position:absolute;top:553px;left:123px;white-space:nowrap" class="ft14"><i>Lk</i></p>
<p style="position:absolute;top:553px;left:178px;white-space:nowrap" class="ft14"><i>SpJ</i></p>
<p style="position:absolute;top:553px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:553px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:576px;left:3px;white-space:nowrap" class="ft11">9c</p>
<p style="position:absolute;top:576px;left:55px;white-space:nowrap" class="ft11">1&#160;-&#160;2</p>
<p style="position:absolute;top:576px;left:123px;white-space:nowrap" class="ft11">Jw</p>
<p style="position:absolute;top:576px;left:178px;white-space:nowrap" class="ft11">Gk</p>
<p style="position:absolute;top:576px;left:233px;white-space:nowrap" class="ft11">322</p>
<p style="position:absolute;top:576px;left:391px;white-space:nowrap" class="ft11">Raum!</p>
<p style="position:absolute;top:599px;left:3px;white-space:nowrap" class="ft11">9c</p>
<p style="position:absolute;top:599px;left:55px;white-space:nowrap" class="ft11">3</p>
<p style="position:absolute;top:599px;left:123px;white-space:nowrap" class="ft11">Hf</p>
<p style="position:absolute;top:599px;left:178px;white-space:nowrap" class="ft11">D</p>
<p style="position:absolute;top:599px;left:233px;white-space:nowrap" class="ft11">220</p>
<p style="position:absolute;top:599px;left:391px;white-space:nowrap" class="ft11">Hei&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:621px;left:3px;white-space:nowrap" class="ft11">9c</p>
<p style="position:absolute;top:621px;left:55px;white-space:nowrap" class="ft11">4</p>
<p style="position:absolute;top:621px;left:123px;white-space:nowrap" class="ft11">Bkn</p>
<p style="position:absolute;top:621px;left:178px;white-space:nowrap" class="ft11">D</p>
<p style="position:absolute;top:621px;left:233px;white-space:nowrap" class="ft11">220</p>
<p style="position:absolute;top:621px;left:391px;white-space:nowrap" class="ft11">Hei&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:644px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:644px;left:55px;white-space:nowrap" class="ft11">1</p>
<p style="position:absolute;top:644px;left:123px;white-space:nowrap" class="ft14"><i>Rt</i></p>
<p style="position:absolute;top:644px;left:178px;white-space:nowrap" class="ft14"><i>Gk</i></p>
<p style="position:absolute;top:644px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:644px;left:275px;white-space:nowrap" class="ft11">Do-13.12.&#160;/&#160;3</p>
<p style="position:absolute;top:667px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:667px;left:55px;white-space:nowrap" class="ft11">2</p>
<p style="position:absolute;top:666px;left:123px;white-space:nowrap" class="ft14"><i>Rt</i></p>
<p style="position:absolute;top:666px;left:178px;white-space:nowrap" class="ft14"><i>Gk</i></p>
<p style="position:absolute;top:667px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:667px;left:275px;white-space:nowrap" class="ft11">Do-13.12.&#160;/&#160;4</p>
<p style="position:absolute;top:689px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:689px;left:55px;white-space:nowrap" class="ft11">3</p>
<p style="position:absolute;top:689px;left:123px;white-space:nowrap" class="ft11">Rt</p>
<p style="position:absolute;top:689px;left:178px;white-space:nowrap" class="ft11">Gk</p>
<p style="position:absolute;top:689px;left:233px;white-space:nowrap" class="ft11">218</p>
<p style="position:absolute;top:712px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:712px;left:55px;white-space:nowrap" class="ft11">4</p>
<p style="position:absolute;top:712px;left:123px;white-space:nowrap" class="ft11">Rt</p>
<p style="position:absolute;top:712px;left:178px;white-space:nowrap" class="ft11">Gk</p>
<p style="position:absolute;top:712px;left:233px;white-space:nowrap" class="ft11">218</p>
<p style="position:absolute;top:735px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:735px;left:55px;white-space:nowrap" class="ft11">5</p>
<p style="position:absolute;top:735px;left:123px;white-space:nowrap" class="ft11">Ni</p>
<p style="position:absolute;top:735px;left:178px;white-space:nowrap" class="ft11">BK</p>
<p style="position:absolute;top:735px;left:233px;white-space:nowrap" class="ft11">126</p>
<p style="position:absolute;top:757px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:757px;left:55px;white-space:nowrap" class="ft11">6</p>
<p style="position:absolute;top:757px;left:123px;white-space:nowrap" class="ft11">Ni</p>
<p style="position:absolute;top:757px;left:178px;white-space:nowrap" class="ft11">BK</p>
<p style="position:absolute;top:757px;left:233px;white-space:nowrap" class="ft11">126</p>
<p style="position:absolute;top:780px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:780px;left:55px;white-space:nowrap" class="ft11">8</p>
<p style="position:absolute;top:780px;left:123px;white-space:nowrap" class="ft14"><i>Ni</i></p>
<p style="position:absolute;top:780px;left:178px;white-space:nowrap" class="ft14"><i>BK</i></p>
<p style="position:absolute;top:780px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:780px;left:275px;white-space:nowrap" class="ft11">Do-13.12.&#160;/&#160;5</p>
<p style="position:absolute;top:803px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:803px;left:55px;white-space:nowrap" class="ft11">9</p>
<p style="position:absolute;top:802px;left:123px;white-space:nowrap" class="ft14"><i>Ni</i></p>
<p style="position:absolute;top:802px;left:178px;white-space:nowrap" class="ft14"><i>BK</i></p>
<p style="position:absolute;top:803px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:803px;left:275px;white-space:nowrap" class="ft11">Do-13.12.&#160;/&#160;6</p>
<p style="position:absolute;top:825px;left:3px;white-space:nowrap" class="ft11">10b</p>
<p style="position:absolute;top:825px;left:55px;white-space:nowrap" class="ft11">10&#160;-&#160;11</p>
<p style="position:absolute;top:825px;left:123px;white-space:nowrap" class="ft14"><i>Fe</i></p>
<p style="position:absolute;top:825px;left:178px;white-space:nowrap" class="ft14"><i>Ph</i></p>
<p style="position:absolute;top:825px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:825px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:848px;left:3px;white-space:nowrap" class="ft11">11</p>
<p style="position:absolute;top:848px;left:55px;white-space:nowrap" class="ft11">3&#160;-&#160;4</p>
<p style="position:absolute;top:848px;left:123px;white-space:nowrap" class="ft14"><i>Ft</i></p>
<p style="position:absolute;top:848px;left:178px;white-space:nowrap" class="ft14"><i>g4</i></p>
<p style="position:absolute;top:848px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:848px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:871px;left:3px;white-space:nowrap" class="ft11">11</p>
<p style="position:absolute;top:871px;left:55px;white-space:nowrap" class="ft11">5</p>
<p style="position:absolute;top:870px;left:123px;white-space:nowrap" class="ft14"><i>Ei</i></p>
<p style="position:absolute;top:870px;left:178px;white-space:nowrap" class="ft14"><i>M1</i></p>
<p style="position:absolute;top:871px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:871px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:893px;left:3px;white-space:nowrap" class="ft11">11</p>
<p style="position:absolute;top:893px;left:55px;white-space:nowrap" class="ft11">7</p>
<p style="position:absolute;top:893px;left:123px;white-space:nowrap" class="ft11">Gt</p>
<p style="position:absolute;top:893px;left:178px;white-space:nowrap" class="ft11">sem1&#160;324</p>
<p style="position:absolute;top:893px;left:391px;white-space:nowrap" class="ft11">geteilte&#160;Gruppen&#160;Schwimmen&#160;/&#160;</p>
<p style="position:absolute;top:916px;left:3px;white-space:nowrap" class="ft11">11</p>
<p style="position:absolute;top:916px;left:55px;white-space:nowrap" class="ft11">8&#160;-&#160;9</p>
<p style="position:absolute;top:916px;left:123px;white-space:nowrap" class="ft11">Ro</p>
<p style="position:absolute;top:916px;left:178px;white-space:nowrap" class="ft11">sem1&#160;???</p>
<p style="position:absolute;top:939px;left:3px;white-space:nowrap" class="ft11">11</p>
<p style="position:absolute;top:939px;left:55px;white-space:nowrap" class="ft11">10&#160;-&#160;11</p>
<p style="position:absolute;top:939px;left:123px;white-space:nowrap" class="ft14"><i>Lk</i></p>
<p style="position:absolute;top:939px;left:178px;white-space:nowrap" class="ft14"><i>sp3</i></p>
<p style="position:absolute;top:939px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:939px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:962px;left:3px;white-space:nowrap" class="ft11">12</p>
<p style="position:absolute;top:962px;left:55px;white-space:nowrap" class="ft11">1&#160;-&#160;2</p>
<p style="position:absolute;top:962px;left:123px;white-space:nowrap" class="ft11">Ni</p>
<p style="position:absolute;top:962px;left:178px;white-space:nowrap" class="ft11">bk1</p>
<p style="position:absolute;top:962px;left:233px;white-space:nowrap" class="ft11">412</p>
<p style="position:absolute;top:962px;left:391px;white-space:nowrap" class="ft11">Raum!</p>
<p style="position:absolute;top:984px;left:3px;white-space:nowrap" class="ft11">12</p>
<p style="position:absolute;top:984px;left:55px;white-space:nowrap" class="ft11">5</p>
<p style="position:absolute;top:984px;left:123px;white-space:nowrap" class="ft14"><i>Ku</i></p>
<p style="position:absolute;top:984px;left:178px;white-space:nowrap" class="ft14"><i>D2</i></p>
<p style="position:absolute;top:984px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:984px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:1007px;left:3px;white-space:nowrap" class="ft11">1112&#160;8&#160;-&#160;9</p>
<p style="position:absolute;top:1007px;left:123px;white-space:nowrap" class="ft14"><i>Fe</i></p>
<p style="position:absolute;top:1007px;left:178px;white-space:nowrap" class="ft14"><i>vma</i></p>
<p style="position:absolute;top:1007px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:1007px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
</div>
</body>
</html>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<title>Download File-html.html</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<br/>
<style type="text/css">
<!--
p {margin: 0; padding: 0;} .ft20{font-size:17px;font-family:Times;color:#000000;}
.ft21{font-size:16px;font-family:Times;color:#000000;}
.ft22{font-size:25px;font-family:Times;color:#000000;}
.ft23{font-size:14px;font-family:Times;color:#000000;}
.ft24{font-size:16px;font-family:Times;color:#000000;}
.ft25{font-size:16px;line-height:23px;font-family:Times;color:#000000;}
-->
</style>
</head>
<body bgcolor="#A0A0A0" vlink="blue" link="blue">
<div id="page2-div" style="position:relative;width:893px;height:1262px;">
<p style="position:absolute;top:10px;left:3px;white-space:nowrap" class="ft20"><b>D-70563&#160;FANNY-LEICHT-GYMN.</b></p>
<p style="position:absolute;top:32px;left:3px;white-space:nowrap" class="ft21">STUTTGART,&#160;F.-LEICHT-STR.&#160;13</p>
<p style="position:absolute;top:9px;left:332px;white-space:nowrap" class="ft25">Schuljahr&#160;2018/19&#160;-&#160;1.&#160;Halbjahr<br/>gültig&#160;ab&#160;10. September&#160;2018</p>
<p style="position:absolute;top:10px;left:708px;white-space:nowrap" class="ft20"><b>Untis&#160;2017</b></p>
<p style="position:absolute;top:32px;left:671px;white-space:nowrap" class="ft21">13.12.2018&#160;&#160;8:11</p>
<p style="position:absolute;top:64px;left:3px;white-space:nowrap" class="ft22"><b>Klasse&#160;&#160;14.12.&#160;/&#160;Freitag&#160;Woche-A</b></p>
<p style="position:absolute;top:111px;left:3px;white-space:nowrap" class="ft23">Ordnungsdienst: Klasse&#160;10a</p>
<p style="position:absolute;top:172px;left:3px;white-space:nowrap" class="ft21">Kl.</p>
<p style="position:absolute;top:172px;left:55px;white-space:nowrap" class="ft21">Std.&#160;Vertr.&#160;Fach&#160;Rau&#160;nach</p>
<p style="position:absolute;top:172px;left:398px;white-space:nowrap" class="ft21">Vertretungs-Text</p>
<p style="position:absolute;top:194px;left:3px;white-space:nowrap" class="ft21">5abc&#160;1</p>
<p style="position:absolute;top:194px;left:102px;white-space:nowrap" class="ft24"><i>We</i></p>
<p style="position:absolute;top:194px;left:157px;white-space:nowrap" class="ft24"><i>KR</i></p>
<p style="position:absolute;top:194px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:194px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:215px;left:3px;white-space:nowrap" class="ft21">5a</p>
<p style="position:absolute;top:215px;left:55px;white-space:nowrap" class="ft21">1</p>
<p style="position:absolute;top:215px;left:102px;white-space:nowrap" class="ft24"><i></i></p>
<p style="position:absolute;top:215px;left:157px;white-space:nowrap" class="ft24"><i>EvR</i></p>
<p style="position:absolute;top:215px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:215px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:238px;left:3px;white-space:nowrap" class="ft21">5abc&#160;2</p>
<p style="position:absolute;top:238px;left:102px;white-space:nowrap" class="ft21">Jw</p>
<p style="position:absolute;top:238px;left:157px;white-space:nowrap" class="ft21">KR</p>
<p style="position:absolute;top:238px;left:209px;white-space:nowrap" class="ft21">123</p>
<p style="position:absolute;top:238px;left:398px;white-space:nowrap" class="ft21">We&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:258px;left:3px;white-space:nowrap" class="ft21">5a</p>
<p style="position:absolute;top:258px;left:55px;white-space:nowrap" class="ft21">2</p>
<p style="position:absolute;top:258px;left:102px;white-space:nowrap" class="ft21">Ng</p>
<p style="position:absolute;top:258px;left:157px;white-space:nowrap" class="ft21">EvR</p>
<p style="position:absolute;top:258px;left:209px;white-space:nowrap" class="ft21">321</p>
<p style="position:absolute;top:258px;left:398px;white-space:nowrap" class="ft21">&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:281px;left:3px;white-space:nowrap" class="ft21">5d</p>
<p style="position:absolute;top:281px;left:55px;white-space:nowrap" class="ft21">3</p>
<p style="position:absolute;top:281px;left:102px;white-space:nowrap" class="ft21">Lo</p>
<p style="position:absolute;top:281px;left:157px;white-space:nowrap" class="ft21">D</p>
<p style="position:absolute;top:281px;left:209px;white-space:nowrap" class="ft21">122</p>
<p style="position:absolute;top:281px;left:398px;white-space:nowrap" class="ft21">anstatt&#160;17.12.,&#160;1.&#160;Std.</p>
<p style="position:absolute;top:304px;left:3px;white-space:nowrap" class="ft21">5d</p>
<p style="position:absolute;top:304px;left:55px;white-space:nowrap" class="ft21">4</p>
<p style="position:absolute;top:304px;left:102px;white-space:nowrap" class="ft21">Lo</p>
<p style="position:absolute;top:304px;left:157px;white-space:nowrap" class="ft21">D</p>
<p style="position:absolute;top:304px;left:209px;white-space:nowrap" class="ft21">122</p>
<p style="position:absolute;top:304px;left:398px;white-space:nowrap" class="ft21">anstatt&#160;19.12.,&#160;1&#160;Std.</p>
<p style="position:absolute;top:326px;left:3px;white-space:nowrap" class="ft21">6a</p>
<p style="position:absolute;top:326px;left:55px;white-space:nowrap" class="ft21">6</p>
<p style="position:absolute;top:326px;left:102px;white-space:nowrap" class="ft24"><i>He</i></p>
<p style="position:absolute;top:326px;left:157px;white-space:nowrap" class="ft24"><i>E</i></p>
<p style="position:absolute;top:326px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:326px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:349px;left:3px;white-space:nowrap" class="ft21">6acd&#160;7</p>
<p style="position:absolute;top:349px;left:102px;white-space:nowrap" class="ft24"><i>Ft</i></p>
<p style="position:absolute;top:349px;left:157px;white-space:nowrap" class="ft24"><i>MF</i></p>
<p style="position:absolute;top:349px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:349px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:372px;left:3px;white-space:nowrap" class="ft21">6c</p>
<p style="position:absolute;top:372px;left:55px;white-space:nowrap" class="ft21">1</p>
<p style="position:absolute;top:371px;left:102px;white-space:nowrap" class="ft24"><i>Ku</i></p>
<p style="position:absolute;top:371px;left:157px;white-space:nowrap" class="ft24"><i>D</i></p>
<p style="position:absolute;top:372px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:372px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:394px;left:3px;white-space:nowrap" class="ft21">6c</p>
<p style="position:absolute;top:394px;left:55px;white-space:nowrap" class="ft21">2</p>
<p style="position:absolute;top:394px;left:102px;white-space:nowrap" class="ft21">Sl</p>
<p style="position:absolute;top:394px;left:157px;white-space:nowrap" class="ft21">D</p>
<p style="position:absolute;top:394px;left:209px;white-space:nowrap" class="ft21">121</p>
<p style="position:absolute;top:394px;left:398px;white-space:nowrap" class="ft21">Ku&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:417px;left:3px;white-space:nowrap" class="ft21">7a</p>
<p style="position:absolute;top:417px;left:55px;white-space:nowrap" class="ft21">3</p>
<p style="position:absolute;top:417px;left:102px;white-space:nowrap" class="ft21">Di</p>
<p style="position:absolute;top:417px;left:157px;white-space:nowrap" class="ft21">D</p>
<p style="position:absolute;top:417px;left:209px;white-space:nowrap" class="ft21">323</p>
<p style="position:absolute;top:417px;left:398px;white-space:nowrap" class="ft21">Raum</p>
<p style="position:absolute;top:440px;left:3px;white-space:nowrap" class="ft21">7a</p>
<p style="position:absolute;top:440px;left:55px;white-space:nowrap" class="ft21">4</p>
<p style="position:absolute;top:440px;left:102px;white-space:nowrap" class="ft21">Hhn</p>
<p style="position:absolute;top:440px;left:157px;white-space:nowrap" class="ft21">M</p>
<p style="position:absolute;top:440px;left:209px;white-space:nowrap" class="ft21">323</p>
<p style="position:absolute;top:462px;left:3px;white-space:nowrap" class="ft21">7a</p>
<p style="position:absolute;top:462px;left:55px;white-space:nowrap" class="ft21">5</p>
<p style="position:absolute;top:462px;left:102px;white-space:nowrap" class="ft21">Hhn</p>
<p style="position:absolute;top:462px;left:157px;white-space:nowrap" class="ft21">M</p>
<p style="position:absolute;top:462px;left:209px;white-space:nowrap" class="ft21">323</p>
<p style="position:absolute;top:485px;left:3px;white-space:nowrap" class="ft21">7a</p>
<p style="position:absolute;top:485px;left:55px;white-space:nowrap" class="ft21">6</p>
<p style="position:absolute;top:485px;left:102px;white-space:nowrap" class="ft21">Hhn</p>
<p style="position:absolute;top:485px;left:157px;white-space:nowrap" class="ft21">M</p>
<p style="position:absolute;top:485px;left:209px;white-space:nowrap" class="ft21">323</p>
<p style="position:absolute;top:485px;left:398px;white-space:nowrap" class="ft21">findet&#160;statt!</p>
<p style="position:absolute;top:508px;left:3px;white-space:nowrap" class="ft21">7b</p>
<p style="position:absolute;top:508px;left:55px;white-space:nowrap" class="ft21">6</p>
<p style="position:absolute;top:507px;left:102px;white-space:nowrap" class="ft24"><i>Rt</i></p>
<p style="position:absolute;top:507px;left:157px;white-space:nowrap" class="ft24"><i>D</i></p>
<p style="position:absolute;top:508px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:508px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:530px;left:3px;white-space:nowrap" class="ft21">8a</p>
<p style="position:absolute;top:530px;left:55px;white-space:nowrap" class="ft21">1</p>
<p style="position:absolute;top:530px;left:102px;white-space:nowrap" class="ft24"><i>Ft</i></p>
<p style="position:absolute;top:530px;left:157px;white-space:nowrap" class="ft24"><i>M</i></p>
<p style="position:absolute;top:530px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:530px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:553px;left:3px;white-space:nowrap" class="ft21">8a</p>
<p style="position:absolute;top:553px;left:55px;white-space:nowrap" class="ft21">2</p>
<p style="position:absolute;top:553px;left:102px;white-space:nowrap" class="ft21">Li</p>
<p style="position:absolute;top:553px;left:157px;white-space:nowrap" class="ft21">E</p>
<p style="position:absolute;top:553px;left:209px;white-space:nowrap" class="ft21">323</p>
<p style="position:absolute;top:553px;left:398px;white-space:nowrap" class="ft21">statt&#160;18.12.</p>
<p style="position:absolute;top:576px;left:3px;white-space:nowrap" class="ft21">9c</p>
<p style="position:absolute;top:576px;left:55px;white-space:nowrap" class="ft21">5&#160;-&#160;6</p>
<p style="position:absolute;top:576px;left:102px;white-space:nowrap" class="ft24"><i>Hei</i></p>
<p style="position:absolute;top:576px;left:157px;white-space:nowrap" class="ft24"><i>D</i></p>
<p style="position:absolute;top:576px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:576px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:599px;left:3px;white-space:nowrap" class="ft21">9d</p>
<p style="position:absolute;top:599px;left:55px;white-space:nowrap" class="ft21">1&#160;-&#160;2&#160;Rm</p>
<p style="position:absolute;top:599px;left:157px;white-space:nowrap" class="ft21">NWT&#160;412</p>
<p style="position:absolute;top:599px;left:398px;white-space:nowrap" class="ft21">Raum</p>
<p style="position:absolute;top:621px;left:3px;white-space:nowrap" class="ft21">9d</p>
<p style="position:absolute;top:621px;left:55px;white-space:nowrap" class="ft21">5&#160;-&#160;6</p>
<p style="position:absolute;top:621px;left:102px;white-space:nowrap" class="ft24"><i>Ft</i></p>
<p style="position:absolute;top:621px;left:157px;white-space:nowrap" class="ft24"><i>M</i></p>
<p style="position:absolute;top:621px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:621px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:644px;left:3px;white-space:nowrap" class="ft21">10a</p>
<p style="position:absolute;top:644px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Smr</p>
<p style="position:absolute;top:644px;left:157px;white-space:nowrap" class="ft21">E</p>
<p style="position:absolute;top:644px;left:209px;white-space:nowrap" class="ft21">413</p>
<p style="position:absolute;top:644px;left:398px;white-space:nowrap" class="ft21">Hörverstehensklausur</p>
<p style="position:absolute;top:664px;left:3px;white-space:nowrap" class="ft21">10ad&#160;3</p>
<p style="position:absolute;top:664px;left:102px;white-space:nowrap" class="ft21">Ro</p>
<p style="position:absolute;top:664px;left:157px;white-space:nowrap" class="ft21">EvR</p>
<p style="position:absolute;top:664px;left:209px;white-space:nowrap" class="ft21">SH</p>
<p style="position:absolute;top:664px;left:398px;white-space:nowrap" class="ft21">Sport!</p>
<p style="position:absolute;top:685px;left:3px;white-space:nowrap" class="ft21">10ad&#160;3&#160;-&#160;4</p>
<p style="position:absolute;top:685px;left:102px;white-space:nowrap" class="ft24"><i>We</i></p>
<p style="position:absolute;top:685px;left:157px;white-space:nowrap" class="ft24"><i>KR</i></p>
<p style="position:absolute;top:685px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:685px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:708px;left:3px;white-space:nowrap" class="ft21">10ad&#160;4</p>
<p style="position:absolute;top:708px;left:102px;white-space:nowrap" class="ft21">Lk</p>
<p style="position:absolute;top:708px;left:157px;white-space:nowrap" class="ft21">EvR</p>
<p style="position:absolute;top:708px;left:209px;white-space:nowrap" class="ft21">SH</p>
<p style="position:absolute;top:708px;left:398px;white-space:nowrap" class="ft21">Sport!</p>
<p style="position:absolute;top:730px;left:3px;white-space:nowrap" class="ft21">10b</p>
<p style="position:absolute;top:730px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Ki</p>
<p style="position:absolute;top:730px;left:157px;white-space:nowrap" class="ft21">E</p>
<p style="position:absolute;top:730px;left:209px;white-space:nowrap" class="ft21">414</p>
<p style="position:absolute;top:730px;left:398px;white-space:nowrap" class="ft21">Hörverstehensklausur</p>
<p style="position:absolute;top:751px;left:3px;white-space:nowrap" class="ft21">10b</p>
<p style="position:absolute;top:751px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4</p>
<p style="position:absolute;top:751px;left:102px;white-space:nowrap" class="ft24"><i>He</i></p>
<p style="position:absolute;top:751px;left:157px;white-space:nowrap" class="ft24"><i>Gk</i></p>
<p style="position:absolute;top:751px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:751px;left:251px;white-space:nowrap" class="ft21">Entfall&#160;für&#160;Lehrer</p>
<p style="position:absolute;top:774px;left:3px;white-space:nowrap" class="ft21">10bc&#160;5&#160;-&#160;6</p>
<p style="position:absolute;top:773px;left:102px;white-space:nowrap" class="ft24"><i>We</i></p>
<p style="position:absolute;top:773px;left:157px;white-space:nowrap" class="ft24"><i>KR</i></p>
<p style="position:absolute;top:774px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:774px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:796px;left:3px;white-space:nowrap" class="ft21">10c</p>
<p style="position:absolute;top:796px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4</p>
<p style="position:absolute;top:796px;left:102px;white-space:nowrap" class="ft24"><i>Ran</i></p>
<p style="position:absolute;top:796px;left:157px;white-space:nowrap" class="ft24"><i>M</i></p>
<p style="position:absolute;top:796px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:796px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:796px;left:398px;white-space:nowrap" class="ft21">alle bei&#160;Oe</p>
<p style="position:absolute;top:817px;left:3px;white-space:nowrap" class="ft21">10c</p>
<p style="position:absolute;top:817px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Oe</p>
<p style="position:absolute;top:817px;left:157px;white-space:nowrap" class="ft21">E</p>
<p style="position:absolute;top:817px;left:209px;white-space:nowrap" class="ft21">422</p>
<p style="position:absolute;top:817px;left:398px;white-space:nowrap" class="ft21">Hörverstehensklausur</p>
<p style="position:absolute;top:839px;left:3px;white-space:nowrap" class="ft21">10d</p>
<p style="position:absolute;top:839px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Wd</p>
<p style="position:absolute;top:839px;left:157px;white-space:nowrap" class="ft21">E</p>
<p style="position:absolute;top:839px;left:209px;white-space:nowrap" class="ft21">416</p>
<p style="position:absolute;top:839px;left:398px;white-space:nowrap" class="ft21">Hörverstehensklausur</p>
<p style="position:absolute;top:862px;left:3px;white-space:nowrap" class="ft21">11</p>
<p style="position:absolute;top:862px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;At</p>
<p style="position:absolute;top:862px;left:157px;white-space:nowrap" class="ft21">D3</p>
<p style="position:absolute;top:862px;left:209px;white-space:nowrap" class="ft21">121</p>
<p style="position:absolute;top:862px;left:398px;white-space:nowrap" class="ft21">Raum</p>
<p style="position:absolute;top:883px;left:3px;white-space:nowrap" class="ft21">11</p>
<p style="position:absolute;top:883px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Sl</p>
<p style="position:absolute;top:883px;left:157px;white-space:nowrap" class="ft21">D2</p>
<p style="position:absolute;top:883px;left:209px;white-space:nowrap" class="ft21">415</p>
<p style="position:absolute;top:883px;left:398px;white-space:nowrap" class="ft21">Raum</p>
<p style="position:absolute;top:905px;left:3px;white-space:nowrap" class="ft21">12</p>
<p style="position:absolute;top:905px;left:55px;white-space:nowrap" class="ft21">1&#160;-&#160;2&#160;Lo</p>
<p style="position:absolute;top:905px;left:157px;white-space:nowrap" class="ft21">Sp1</p>
<p style="position:absolute;top:905px;left:209px;white-space:nowrap" class="ft21">222</p>
<p style="position:absolute;top:905px;left:398px;white-space:nowrap" class="ft21">Theorie</p>
<p style="position:absolute;top:928px;left:3px;white-space:nowrap" class="ft21">12</p>
<p style="position:absolute;top:928px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Mf</p>
<p style="position:absolute;top:928px;left:157px;white-space:nowrap" class="ft21">E2</p>
<p style="position:absolute;top:928px;left:209px;white-space:nowrap" class="ft21">218</p>
<p style="position:absolute;top:928px;left:398px;white-space:nowrap" class="ft21">Raum</p>
<p style="position:absolute;top:949px;left:3px;white-space:nowrap" class="ft21">12</p>
<p style="position:absolute;top:949px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Sf</p>
<p style="position:absolute;top:949px;left:157px;white-space:nowrap" class="ft21">M3</p>
<p style="position:absolute;top:949px;left:209px;white-space:nowrap" class="ft21">322</p>
<p style="position:absolute;top:949px;left:398px;white-space:nowrap" class="ft21">Raum</p>
<p style="position:absolute;top:969px;left:3px;white-space:nowrap" class="ft21">12</p>
<p style="position:absolute;top:969px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4</p>
<p style="position:absolute;top:969px;left:102px;white-space:nowrap" class="ft24"><i>Ft</i></p>
<p style="position:absolute;top:969px;left:157px;white-space:nowrap" class="ft24"><i>M2</i></p>
<p style="position:absolute;top:969px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:969px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:992px;left:3px;white-space:nowrap" class="ft21">12</p>
<p style="position:absolute;top:992px;left:55px;white-space:nowrap" class="ft21">5&#160;-&#160;6</p>
<p style="position:absolute;top:991px;left:102px;white-space:nowrap" class="ft24"><i>Ku</i></p>
<p style="position:absolute;top:991px;left:157px;white-space:nowrap" class="ft24"><i>ek1</i></p>
<p style="position:absolute;top:992px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:992px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
</div>
</body>
</html>

View file

@ -0,0 +1,497 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<title>MergedFile</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="generator" content="pdftohtml 0.36"/>
<meta name="date" content="2018-12-13T07:39:13+00:00"/>
<style type="text/css">
<!--
.xflip {
-moz-transform: scaleX(-1);
-webkit-transform: scaleX(-1);
-o-transform: scaleX(-1);
transform: scaleX(-1);
filter: fliph;
}
.yflip {
-moz-transform: scaleY(-1);
-webkit-transform: scaleY(-1);
-o-transform: scaleY(-1);
transform: scaleY(-1);
filter: flipv;
}
.xyflip {
-moz-transform: scaleX(-1) scaleY(-1);
-webkit-transform: scaleX(-1) scaleY(-1);
-o-transform: scaleX(-1) scaleY(-1);
transform: scaleX(-1) scaleY(-1);
filter: fliph + flipv;
}
-->
</style>
</head>
<body bgcolor="#A0A0A0" vlink="blue" link="blue">
<!-- Page 1 -->
<a name="1"></a>
<style type="text/css">
<!--
p {margin: 0; padding: 0;} .ft10{font-size:17px;font-family:Times;color:#000000;}
.ft11{font-size:16px;font-family:Times;color:#000000;}
.ft12{font-size:25px;font-family:Times;color:#000000;}
.ft13{font-size:14px;font-family:Times;color:#000000;}
.ft14{font-size:16px;font-family:Times;color:#000000;}
.ft15{font-size:16px;line-height:23px;font-family:Times;color:#000000;}
-->
</style>
<div id="page1-div" style="position:relative;width:893px;height:1262px;">
<p style="position:absolute;top:10px;left:3px;white-space:nowrap" class="ft10"><b>D-70563&#160;FANNY-LEICHT-GYMN.</b></p>
<p style="position:absolute;top:32px;left:3px;white-space:nowrap" class="ft11">STUTTGART,&#160;F.-LEICHT-STR.&#160;13</p>
<p style="position:absolute;top:9px;left:332px;white-space:nowrap" class="ft15">Schuljahr&#160;2018/19&#160;-&#160;1.&#160;Halbjahr<br/>gültig&#160;ab&#160;10. September&#160;2018</p>
<p style="position:absolute;top:10px;left:708px;white-space:nowrap" class="ft10"><b>Untis&#160;2017</b></p>
<p style="position:absolute;top:32px;left:671px;white-space:nowrap" class="ft11">13.12.2018&#160;&#160;9:04</p>
<p style="position:absolute;top:64px;left:3px;white-space:nowrap" class="ft12"><b>Klasse&#160;&#160;13.12.&#160;/&#160;Donnerstag&#160;Woche-A</b></p>
<p style="position:absolute;top:111px;left:3px;white-space:nowrap" class="ft13">Ordnungsdienst: Klasse&#160;10a</p>
<p style="position:absolute;top:172px;left:3px;white-space:nowrap" class="ft11">Kl.</p>
<p style="position:absolute;top:172px;left:55px;white-space:nowrap" class="ft11">Std.</p>
<p style="position:absolute;top:172px;left:123px;white-space:nowrap" class="ft11">Vertr.&#160;Fach&#160;Rau&#160;nach</p>
<p style="position:absolute;top:172px;left:391px;white-space:nowrap" class="ft11">Vertretungs-Text</p>
<p style="position:absolute;top:194px;left:3px;white-space:nowrap" class="ft11">5b</p>
<p style="position:absolute;top:194px;left:55px;white-space:nowrap" class="ft11">1</p>
<p style="position:absolute;top:194px;left:123px;white-space:nowrap" class="ft14"><i>Hei</i></p>
<p style="position:absolute;top:194px;left:178px;white-space:nowrap" class="ft14"><i>D</i></p>
<p style="position:absolute;top:194px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:194px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:217px;left:3px;white-space:nowrap" class="ft11">5b</p>
<p style="position:absolute;top:217px;left:55px;white-space:nowrap" class="ft11">2</p>
<p style="position:absolute;top:217px;left:123px;white-space:nowrap" class="ft11">Fu</p>
<p style="position:absolute;top:217px;left:178px;white-space:nowrap" class="ft11">D</p>
<p style="position:absolute;top:217px;left:233px;white-space:nowrap" class="ft11">114</p>
<p style="position:absolute;top:217px;left:391px;white-space:nowrap" class="ft11">Hei&#160;/&#160;Aufgaben,&#160;Arbeitsheft!</p>
<p style="position:absolute;top:240px;left:3px;white-space:nowrap" class="ft11">5b</p>
<p style="position:absolute;top:240px;left:55px;white-space:nowrap" class="ft11">3</p>
<p style="position:absolute;top:240px;left:123px;white-space:nowrap" class="ft11">Oe</p>
<p style="position:absolute;top:240px;left:178px;white-space:nowrap" class="ft11">M</p>
<p style="position:absolute;top:240px;left:233px;white-space:nowrap" class="ft11">114</p>
<p style="position:absolute;top:240px;left:391px;white-space:nowrap" class="ft11">Ei&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:263px;left:3px;white-space:nowrap" class="ft11">5b</p>
<p style="position:absolute;top:263px;left:55px;white-space:nowrap" class="ft11">4</p>
<p style="position:absolute;top:263px;left:123px;white-space:nowrap" class="ft11">Rm</p>
<p style="position:absolute;top:263px;left:178px;white-space:nowrap" class="ft11">M</p>
<p style="position:absolute;top:263px;left:233px;white-space:nowrap" class="ft11">114</p>
<p style="position:absolute;top:263px;left:391px;white-space:nowrap" class="ft11">Ei&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:285px;left:3px;white-space:nowrap" class="ft11">6bc</p>
<p style="position:absolute;top:285px;left:55px;white-space:nowrap" class="ft11">5</p>
<p style="position:absolute;top:285px;left:123px;white-space:nowrap" class="ft11">Sf</p>
<p style="position:absolute;top:285px;left:178px;white-space:nowrap" class="ft11">EvR</p>
<p style="position:absolute;top:285px;left:233px;white-space:nowrap" class="ft11">321</p>
<p style="position:absolute;top:285px;left:391px;white-space:nowrap" class="ft11">&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:306px;left:3px;white-space:nowrap" class="ft11">6bc</p>
<p style="position:absolute;top:306px;left:55px;white-space:nowrap" class="ft11">5</p>
<p style="position:absolute;top:306px;left:123px;white-space:nowrap" class="ft11">Dk</p>
<p style="position:absolute;top:306px;left:178px;white-space:nowrap" class="ft11">KR</p>
<p style="position:absolute;top:306px;left:233px;white-space:nowrap" class="ft11">121</p>
<p style="position:absolute;top:306px;left:391px;white-space:nowrap" class="ft11">We&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:328px;left:3px;white-space:nowrap" class="ft11">6bc</p>
<p style="position:absolute;top:328px;left:55px;white-space:nowrap" class="ft11">6</p>
<p style="position:absolute;top:328px;left:123px;white-space:nowrap" class="ft14"><i></i></p>
<p style="position:absolute;top:328px;left:178px;white-space:nowrap" class="ft14"><i>EvR</i></p>
<p style="position:absolute;top:328px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:328px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:349px;left:3px;white-space:nowrap" class="ft11">6bc</p>
<p style="position:absolute;top:349px;left:55px;white-space:nowrap" class="ft11">6</p>
<p style="position:absolute;top:349px;left:123px;white-space:nowrap" class="ft14"><i>We</i></p>
<p style="position:absolute;top:349px;left:178px;white-space:nowrap" class="ft14"><i>KR</i></p>
<p style="position:absolute;top:349px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:349px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:372px;left:3px;white-space:nowrap" class="ft11">6d</p>
<p style="position:absolute;top:372px;left:55px;white-space:nowrap" class="ft11">6</p>
<p style="position:absolute;top:371px;left:123px;white-space:nowrap" class="ft14"><i>Ku</i></p>
<p style="position:absolute;top:371px;left:178px;white-space:nowrap" class="ft14"><i>Ek</i></p>
<p style="position:absolute;top:372px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:372px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:394px;left:3px;white-space:nowrap" class="ft11">7b</p>
<p style="position:absolute;top:394px;left:55px;white-space:nowrap" class="ft11">2</p>
<p style="position:absolute;top:394px;left:123px;white-space:nowrap" class="ft11">Ga</p>
<p style="position:absolute;top:394px;left:178px;white-space:nowrap" class="ft11">G</p>
<p style="position:absolute;top:394px;left:233px;white-space:nowrap" class="ft11">414</p>
<p style="position:absolute;top:394px;left:391px;white-space:nowrap" class="ft11">KA&#160;Fkr</p>
<p style="position:absolute;top:417px;left:3px;white-space:nowrap" class="ft11">7b</p>
<p style="position:absolute;top:417px;left:55px;white-space:nowrap" class="ft11">8</p>
<p style="position:absolute;top:417px;left:123px;white-space:nowrap" class="ft14"><i>Gg</i></p>
<p style="position:absolute;top:417px;left:178px;white-space:nowrap" class="ft14"><i>BK</i></p>
<p style="position:absolute;top:417px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:417px;left:275px;white-space:nowrap" class="ft11">Mi-12.12.&#160;/&#160;1</p>
<p style="position:absolute;top:440px;left:3px;white-space:nowrap" class="ft11">7b</p>
<p style="position:absolute;top:440px;left:55px;white-space:nowrap" class="ft11">9</p>
<p style="position:absolute;top:439px;left:123px;white-space:nowrap" class="ft14"><i>Gg</i></p>
<p style="position:absolute;top:439px;left:178px;white-space:nowrap" class="ft14"><i>BK</i></p>
<p style="position:absolute;top:440px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:440px;left:275px;white-space:nowrap" class="ft11">Mi-12.12.&#160;/&#160;2</p>
<p style="position:absolute;top:462px;left:3px;white-space:nowrap" class="ft11">7c</p>
<p style="position:absolute;top:462px;left:55px;white-space:nowrap" class="ft11">8&#160;-&#160;9</p>
<p style="position:absolute;top:462px;left:123px;white-space:nowrap" class="ft14"><i>Gw</i></p>
<p style="position:absolute;top:462px;left:178px;white-space:nowrap" class="ft14"><i>G</i></p>
<p style="position:absolute;top:462px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:462px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:485px;left:3px;white-space:nowrap" class="ft11">7d</p>
<p style="position:absolute;top:485px;left:55px;white-space:nowrap" class="ft11">1</p>
<p style="position:absolute;top:485px;left:123px;white-space:nowrap" class="ft14"><i>Ku</i></p>
<p style="position:absolute;top:485px;left:178px;white-space:nowrap" class="ft14"><i>D</i></p>
<p style="position:absolute;top:485px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:485px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:508px;left:3px;white-space:nowrap" class="ft11">7d</p>
<p style="position:absolute;top:508px;left:55px;white-space:nowrap" class="ft11">2</p>
<p style="position:absolute;top:508px;left:123px;white-space:nowrap" class="ft11">Oz</p>
<p style="position:absolute;top:508px;left:178px;white-space:nowrap" class="ft11">D</p>
<p style="position:absolute;top:508px;left:233px;white-space:nowrap" class="ft11">416</p>
<p style="position:absolute;top:508px;left:391px;white-space:nowrap" class="ft11">Ku&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:530px;left:3px;white-space:nowrap" class="ft11">8a</p>
<p style="position:absolute;top:530px;left:55px;white-space:nowrap" class="ft11">1&#160;-&#160;2</p>
<p style="position:absolute;top:530px;left:123px;white-space:nowrap" class="ft14"><i>Ei</i></p>
<p style="position:absolute;top:530px;left:178px;white-space:nowrap" class="ft14"><i>Ch</i></p>
<p style="position:absolute;top:530px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:530px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:530px;left:391px;white-space:nowrap" class="ft11">KEINE&#160;KA</p>
<p style="position:absolute;top:553px;left:3px;white-space:nowrap" class="ft11">9ac</p>
<p style="position:absolute;top:553px;left:55px;white-space:nowrap" class="ft11">8&#160;-&#160;9</p>
<p style="position:absolute;top:553px;left:123px;white-space:nowrap" class="ft14"><i>Lk</i></p>
<p style="position:absolute;top:553px;left:178px;white-space:nowrap" class="ft14"><i>SpJ</i></p>
<p style="position:absolute;top:553px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:553px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:576px;left:3px;white-space:nowrap" class="ft11">9c</p>
<p style="position:absolute;top:576px;left:55px;white-space:nowrap" class="ft11">1&#160;-&#160;2</p>
<p style="position:absolute;top:576px;left:123px;white-space:nowrap" class="ft11">Jw</p>
<p style="position:absolute;top:576px;left:178px;white-space:nowrap" class="ft11">Gk</p>
<p style="position:absolute;top:576px;left:233px;white-space:nowrap" class="ft11">322</p>
<p style="position:absolute;top:576px;left:391px;white-space:nowrap" class="ft11">Raum!</p>
<p style="position:absolute;top:599px;left:3px;white-space:nowrap" class="ft11">9c</p>
<p style="position:absolute;top:599px;left:55px;white-space:nowrap" class="ft11">3</p>
<p style="position:absolute;top:599px;left:123px;white-space:nowrap" class="ft11">Hf</p>
<p style="position:absolute;top:599px;left:178px;white-space:nowrap" class="ft11">D</p>
<p style="position:absolute;top:599px;left:233px;white-space:nowrap" class="ft11">220</p>
<p style="position:absolute;top:599px;left:391px;white-space:nowrap" class="ft11">Hei&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:621px;left:3px;white-space:nowrap" class="ft11">9c</p>
<p style="position:absolute;top:621px;left:55px;white-space:nowrap" class="ft11">4</p>
<p style="position:absolute;top:621px;left:123px;white-space:nowrap" class="ft11">Bkn</p>
<p style="position:absolute;top:621px;left:178px;white-space:nowrap" class="ft11">D</p>
<p style="position:absolute;top:621px;left:233px;white-space:nowrap" class="ft11">220</p>
<p style="position:absolute;top:621px;left:391px;white-space:nowrap" class="ft11">Hei&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:644px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:644px;left:55px;white-space:nowrap" class="ft11">1</p>
<p style="position:absolute;top:644px;left:123px;white-space:nowrap" class="ft14"><i>Rt</i></p>
<p style="position:absolute;top:644px;left:178px;white-space:nowrap" class="ft14"><i>Gk</i></p>
<p style="position:absolute;top:644px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:644px;left:275px;white-space:nowrap" class="ft11">Do-13.12.&#160;/&#160;3</p>
<p style="position:absolute;top:667px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:667px;left:55px;white-space:nowrap" class="ft11">2</p>
<p style="position:absolute;top:666px;left:123px;white-space:nowrap" class="ft14"><i>Rt</i></p>
<p style="position:absolute;top:666px;left:178px;white-space:nowrap" class="ft14"><i>Gk</i></p>
<p style="position:absolute;top:667px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:667px;left:275px;white-space:nowrap" class="ft11">Do-13.12.&#160;/&#160;4</p>
<p style="position:absolute;top:689px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:689px;left:55px;white-space:nowrap" class="ft11">3</p>
<p style="position:absolute;top:689px;left:123px;white-space:nowrap" class="ft11">Rt</p>
<p style="position:absolute;top:689px;left:178px;white-space:nowrap" class="ft11">Gk</p>
<p style="position:absolute;top:689px;left:233px;white-space:nowrap" class="ft11">218</p>
<p style="position:absolute;top:712px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:712px;left:55px;white-space:nowrap" class="ft11">4</p>
<p style="position:absolute;top:712px;left:123px;white-space:nowrap" class="ft11">Rt</p>
<p style="position:absolute;top:712px;left:178px;white-space:nowrap" class="ft11">Gk</p>
<p style="position:absolute;top:712px;left:233px;white-space:nowrap" class="ft11">218</p>
<p style="position:absolute;top:735px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:735px;left:55px;white-space:nowrap" class="ft11">5</p>
<p style="position:absolute;top:735px;left:123px;white-space:nowrap" class="ft11">Ni</p>
<p style="position:absolute;top:735px;left:178px;white-space:nowrap" class="ft11">BK</p>
<p style="position:absolute;top:735px;left:233px;white-space:nowrap" class="ft11">126</p>
<p style="position:absolute;top:757px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:757px;left:55px;white-space:nowrap" class="ft11">6</p>
<p style="position:absolute;top:757px;left:123px;white-space:nowrap" class="ft11">Ni</p>
<p style="position:absolute;top:757px;left:178px;white-space:nowrap" class="ft11">BK</p>
<p style="position:absolute;top:757px;left:233px;white-space:nowrap" class="ft11">126</p>
<p style="position:absolute;top:780px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:780px;left:55px;white-space:nowrap" class="ft11">8</p>
<p style="position:absolute;top:780px;left:123px;white-space:nowrap" class="ft14"><i>Ni</i></p>
<p style="position:absolute;top:780px;left:178px;white-space:nowrap" class="ft14"><i>BK</i></p>
<p style="position:absolute;top:780px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:780px;left:275px;white-space:nowrap" class="ft11">Do-13.12.&#160;/&#160;5</p>
<p style="position:absolute;top:803px;left:3px;white-space:nowrap" class="ft11">9d</p>
<p style="position:absolute;top:803px;left:55px;white-space:nowrap" class="ft11">9</p>
<p style="position:absolute;top:802px;left:123px;white-space:nowrap" class="ft14"><i>Ni</i></p>
<p style="position:absolute;top:802px;left:178px;white-space:nowrap" class="ft14"><i>BK</i></p>
<p style="position:absolute;top:803px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:803px;left:275px;white-space:nowrap" class="ft11">Do-13.12.&#160;/&#160;6</p>
<p style="position:absolute;top:825px;left:3px;white-space:nowrap" class="ft11">10b</p>
<p style="position:absolute;top:825px;left:55px;white-space:nowrap" class="ft11">10&#160;-&#160;11</p>
<p style="position:absolute;top:825px;left:123px;white-space:nowrap" class="ft14"><i>Fe</i></p>
<p style="position:absolute;top:825px;left:178px;white-space:nowrap" class="ft14"><i>Ph</i></p>
<p style="position:absolute;top:825px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:825px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:848px;left:3px;white-space:nowrap" class="ft11">11</p>
<p style="position:absolute;top:848px;left:55px;white-space:nowrap" class="ft11">3&#160;-&#160;4</p>
<p style="position:absolute;top:848px;left:123px;white-space:nowrap" class="ft14"><i>Ft</i></p>
<p style="position:absolute;top:848px;left:178px;white-space:nowrap" class="ft14"><i>g4</i></p>
<p style="position:absolute;top:848px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:848px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:871px;left:3px;white-space:nowrap" class="ft11">11</p>
<p style="position:absolute;top:871px;left:55px;white-space:nowrap" class="ft11">5</p>
<p style="position:absolute;top:870px;left:123px;white-space:nowrap" class="ft14"><i>Ei</i></p>
<p style="position:absolute;top:870px;left:178px;white-space:nowrap" class="ft14"><i>M1</i></p>
<p style="position:absolute;top:871px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:871px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:893px;left:3px;white-space:nowrap" class="ft11">11</p>
<p style="position:absolute;top:893px;left:55px;white-space:nowrap" class="ft11">7</p>
<p style="position:absolute;top:893px;left:123px;white-space:nowrap" class="ft11">Gt</p>
<p style="position:absolute;top:893px;left:178px;white-space:nowrap" class="ft11">sem1&#160;324</p>
<p style="position:absolute;top:893px;left:391px;white-space:nowrap" class="ft11">geteilte&#160;Gruppen&#160;Schwimmen&#160;/&#160;</p>
<p style="position:absolute;top:916px;left:3px;white-space:nowrap" class="ft11">11</p>
<p style="position:absolute;top:916px;left:55px;white-space:nowrap" class="ft11">8&#160;-&#160;9</p>
<p style="position:absolute;top:916px;left:123px;white-space:nowrap" class="ft11">Ro</p>
<p style="position:absolute;top:916px;left:178px;white-space:nowrap" class="ft11">sem1&#160;???</p>
<p style="position:absolute;top:939px;left:3px;white-space:nowrap" class="ft11">11</p>
<p style="position:absolute;top:939px;left:55px;white-space:nowrap" class="ft11">10&#160;-&#160;11</p>
<p style="position:absolute;top:939px;left:123px;white-space:nowrap" class="ft14"><i>Lk</i></p>
<p style="position:absolute;top:939px;left:178px;white-space:nowrap" class="ft14"><i>sp3</i></p>
<p style="position:absolute;top:939px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:939px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:962px;left:3px;white-space:nowrap" class="ft11">12</p>
<p style="position:absolute;top:962px;left:55px;white-space:nowrap" class="ft11">1&#160;-&#160;2</p>
<p style="position:absolute;top:962px;left:123px;white-space:nowrap" class="ft11">Ni</p>
<p style="position:absolute;top:962px;left:178px;white-space:nowrap" class="ft11">bk1</p>
<p style="position:absolute;top:962px;left:233px;white-space:nowrap" class="ft11">412</p>
<p style="position:absolute;top:962px;left:391px;white-space:nowrap" class="ft11">Raum!</p>
<p style="position:absolute;top:984px;left:3px;white-space:nowrap" class="ft11">12</p>
<p style="position:absolute;top:984px;left:55px;white-space:nowrap" class="ft11">5</p>
<p style="position:absolute;top:984px;left:123px;white-space:nowrap" class="ft14"><i>Ku</i></p>
<p style="position:absolute;top:984px;left:178px;white-space:nowrap" class="ft14"><i>D2</i></p>
<p style="position:absolute;top:984px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:984px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
<p style="position:absolute;top:1007px;left:3px;white-space:nowrap" class="ft11">1112&#160;8&#160;-&#160;9</p>
<p style="position:absolute;top:1007px;left:123px;white-space:nowrap" class="ft14"><i>Fe</i></p>
<p style="position:absolute;top:1007px;left:178px;white-space:nowrap" class="ft14"><i>vma</i></p>
<p style="position:absolute;top:1007px;left:233px;white-space:nowrap" class="ft11">---</p>
<p style="position:absolute;top:1007px;left:275px;white-space:nowrap" class="ft11">Entfall</p>
</div>
<!-- Page 2 -->
<a name="2"></a>
<style type="text/css">
<!--
p {margin: 0; padding: 0;}-->
</style>
<div id="page2-div" style="position:relative;width:893px;height:1262px;">
<p style="position:absolute;top:10px;left:3px;white-space:nowrap" class="ft20"><b>D-70563&#160;FANNY-LEICHT-GYMN.</b></p>
<p style="position:absolute;top:32px;left:3px;white-space:nowrap" class="ft21">STUTTGART,&#160;F.-LEICHT-STR.&#160;13</p>
<p style="position:absolute;top:9px;left:332px;white-space:nowrap" class="ft25">Schuljahr&#160;2018/19&#160;-&#160;1.&#160;Halbjahr<br/>gültig&#160;ab&#160;10. September&#160;2018</p>
<p style="position:absolute;top:10px;left:708px;white-space:nowrap" class="ft20"><b>Untis&#160;2017</b></p>
<p style="position:absolute;top:32px;left:671px;white-space:nowrap" class="ft21">13.12.2018&#160;&#160;8:11</p>
<p style="position:absolute;top:64px;left:3px;white-space:nowrap" class="ft22"><b>Klasse&#160;&#160;14.12.&#160;/&#160;Freitag&#160;Woche-A</b></p>
<p style="position:absolute;top:111px;left:3px;white-space:nowrap" class="ft23">Ordnungsdienst: Klasse&#160;10a</p>
<p style="position:absolute;top:172px;left:3px;white-space:nowrap" class="ft21">Kl.</p>
<p style="position:absolute;top:172px;left:55px;white-space:nowrap" class="ft21">Std.&#160;Vertr.&#160;Fach&#160;Rau&#160;nach</p>
<p style="position:absolute;top:172px;left:398px;white-space:nowrap" class="ft21">Vertretungs-Text</p>
<p style="position:absolute;top:194px;left:3px;white-space:nowrap" class="ft21">5abc&#160;1</p>
<p style="position:absolute;top:194px;left:102px;white-space:nowrap" class="ft24"><i>We</i></p>
<p style="position:absolute;top:194px;left:157px;white-space:nowrap" class="ft24"><i>KR</i></p>
<p style="position:absolute;top:194px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:194px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:215px;left:3px;white-space:nowrap" class="ft21">5a</p>
<p style="position:absolute;top:215px;left:55px;white-space:nowrap" class="ft21">1</p>
<p style="position:absolute;top:215px;left:102px;white-space:nowrap" class="ft24"><i></i></p>
<p style="position:absolute;top:215px;left:157px;white-space:nowrap" class="ft24"><i>EvR</i></p>
<p style="position:absolute;top:215px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:215px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:238px;left:3px;white-space:nowrap" class="ft21">5abc&#160;2</p>
<p style="position:absolute;top:238px;left:102px;white-space:nowrap" class="ft21">Jw</p>
<p style="position:absolute;top:238px;left:157px;white-space:nowrap" class="ft21">KR</p>
<p style="position:absolute;top:238px;left:209px;white-space:nowrap" class="ft21">123</p>
<p style="position:absolute;top:238px;left:398px;white-space:nowrap" class="ft21">We&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:258px;left:3px;white-space:nowrap" class="ft21">5a</p>
<p style="position:absolute;top:258px;left:55px;white-space:nowrap" class="ft21">2</p>
<p style="position:absolute;top:258px;left:102px;white-space:nowrap" class="ft21">Ng</p>
<p style="position:absolute;top:258px;left:157px;white-space:nowrap" class="ft21">EvR</p>
<p style="position:absolute;top:258px;left:209px;white-space:nowrap" class="ft21">321</p>
<p style="position:absolute;top:258px;left:398px;white-space:nowrap" class="ft21">&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:281px;left:3px;white-space:nowrap" class="ft21">5d</p>
<p style="position:absolute;top:281px;left:55px;white-space:nowrap" class="ft21">3</p>
<p style="position:absolute;top:281px;left:102px;white-space:nowrap" class="ft21">Lo</p>
<p style="position:absolute;top:281px;left:157px;white-space:nowrap" class="ft21">D</p>
<p style="position:absolute;top:281px;left:209px;white-space:nowrap" class="ft21">122</p>
<p style="position:absolute;top:281px;left:398px;white-space:nowrap" class="ft21">anstatt&#160;17.12.,&#160;1.&#160;Std.</p>
<p style="position:absolute;top:304px;left:3px;white-space:nowrap" class="ft21">5d</p>
<p style="position:absolute;top:304px;left:55px;white-space:nowrap" class="ft21">4</p>
<p style="position:absolute;top:304px;left:102px;white-space:nowrap" class="ft21">Lo</p>
<p style="position:absolute;top:304px;left:157px;white-space:nowrap" class="ft21">D</p>
<p style="position:absolute;top:304px;left:209px;white-space:nowrap" class="ft21">122</p>
<p style="position:absolute;top:304px;left:398px;white-space:nowrap" class="ft21">anstatt&#160;19.12.,&#160;1&#160;Std.</p>
<p style="position:absolute;top:326px;left:3px;white-space:nowrap" class="ft21">6a</p>
<p style="position:absolute;top:326px;left:55px;white-space:nowrap" class="ft21">6</p>
<p style="position:absolute;top:326px;left:102px;white-space:nowrap" class="ft24"><i>He</i></p>
<p style="position:absolute;top:326px;left:157px;white-space:nowrap" class="ft24"><i>E</i></p>
<p style="position:absolute;top:326px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:326px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:349px;left:3px;white-space:nowrap" class="ft21">6acd&#160;7</p>
<p style="position:absolute;top:349px;left:102px;white-space:nowrap" class="ft24"><i>Ft</i></p>
<p style="position:absolute;top:349px;left:157px;white-space:nowrap" class="ft24"><i>MF</i></p>
<p style="position:absolute;top:349px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:349px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:372px;left:3px;white-space:nowrap" class="ft21">6c</p>
<p style="position:absolute;top:372px;left:55px;white-space:nowrap" class="ft21">1</p>
<p style="position:absolute;top:371px;left:102px;white-space:nowrap" class="ft24"><i>Ku</i></p>
<p style="position:absolute;top:371px;left:157px;white-space:nowrap" class="ft24"><i>D</i></p>
<p style="position:absolute;top:372px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:372px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:394px;left:3px;white-space:nowrap" class="ft21">6c</p>
<p style="position:absolute;top:394px;left:55px;white-space:nowrap" class="ft21">2</p>
<p style="position:absolute;top:394px;left:102px;white-space:nowrap" class="ft21">Sl</p>
<p style="position:absolute;top:394px;left:157px;white-space:nowrap" class="ft21">D</p>
<p style="position:absolute;top:394px;left:209px;white-space:nowrap" class="ft21">121</p>
<p style="position:absolute;top:394px;left:398px;white-space:nowrap" class="ft21">Ku&#160;/&#160;Aufgaben</p>
<p style="position:absolute;top:417px;left:3px;white-space:nowrap" class="ft21">7a</p>
<p style="position:absolute;top:417px;left:55px;white-space:nowrap" class="ft21">3</p>
<p style="position:absolute;top:417px;left:102px;white-space:nowrap" class="ft21">Di</p>
<p style="position:absolute;top:417px;left:157px;white-space:nowrap" class="ft21">D</p>
<p style="position:absolute;top:417px;left:209px;white-space:nowrap" class="ft21">323</p>
<p style="position:absolute;top:417px;left:398px;white-space:nowrap" class="ft21">Raum</p>
<p style="position:absolute;top:440px;left:3px;white-space:nowrap" class="ft21">7a</p>
<p style="position:absolute;top:440px;left:55px;white-space:nowrap" class="ft21">4</p>
<p style="position:absolute;top:440px;left:102px;white-space:nowrap" class="ft21">Hhn</p>
<p style="position:absolute;top:440px;left:157px;white-space:nowrap" class="ft21">M</p>
<p style="position:absolute;top:440px;left:209px;white-space:nowrap" class="ft21">323</p>
<p style="position:absolute;top:462px;left:3px;white-space:nowrap" class="ft21">7a</p>
<p style="position:absolute;top:462px;left:55px;white-space:nowrap" class="ft21">5</p>
<p style="position:absolute;top:462px;left:102px;white-space:nowrap" class="ft21">Hhn</p>
<p style="position:absolute;top:462px;left:157px;white-space:nowrap" class="ft21">M</p>
<p style="position:absolute;top:462px;left:209px;white-space:nowrap" class="ft21">323</p>
<p style="position:absolute;top:485px;left:3px;white-space:nowrap" class="ft21">7a</p>
<p style="position:absolute;top:485px;left:55px;white-space:nowrap" class="ft21">6</p>
<p style="position:absolute;top:485px;left:102px;white-space:nowrap" class="ft21">Hhn</p>
<p style="position:absolute;top:485px;left:157px;white-space:nowrap" class="ft21">M</p>
<p style="position:absolute;top:485px;left:209px;white-space:nowrap" class="ft21">323</p>
<p style="position:absolute;top:485px;left:398px;white-space:nowrap" class="ft21">findet&#160;statt!</p>
<p style="position:absolute;top:508px;left:3px;white-space:nowrap" class="ft21">7b</p>
<p style="position:absolute;top:508px;left:55px;white-space:nowrap" class="ft21">6</p>
<p style="position:absolute;top:507px;left:102px;white-space:nowrap" class="ft24"><i>Rt</i></p>
<p style="position:absolute;top:507px;left:157px;white-space:nowrap" class="ft24"><i>D</i></p>
<p style="position:absolute;top:508px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:508px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:530px;left:3px;white-space:nowrap" class="ft21">8a</p>
<p style="position:absolute;top:530px;left:55px;white-space:nowrap" class="ft21">1</p>
<p style="position:absolute;top:530px;left:102px;white-space:nowrap" class="ft24"><i>Ft</i></p>
<p style="position:absolute;top:530px;left:157px;white-space:nowrap" class="ft24"><i>M</i></p>
<p style="position:absolute;top:530px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:530px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:553px;left:3px;white-space:nowrap" class="ft21">8a</p>
<p style="position:absolute;top:553px;left:55px;white-space:nowrap" class="ft21">2</p>
<p style="position:absolute;top:553px;left:102px;white-space:nowrap" class="ft21">Li</p>
<p style="position:absolute;top:553px;left:157px;white-space:nowrap" class="ft21">E</p>
<p style="position:absolute;top:553px;left:209px;white-space:nowrap" class="ft21">323</p>
<p style="position:absolute;top:553px;left:398px;white-space:nowrap" class="ft21">statt&#160;18.12.</p>
<p style="position:absolute;top:576px;left:3px;white-space:nowrap" class="ft21">9c</p>
<p style="position:absolute;top:576px;left:55px;white-space:nowrap" class="ft21">5&#160;-&#160;6</p>
<p style="position:absolute;top:576px;left:102px;white-space:nowrap" class="ft24"><i>Hei</i></p>
<p style="position:absolute;top:576px;left:157px;white-space:nowrap" class="ft24"><i>D</i></p>
<p style="position:absolute;top:576px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:576px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:599px;left:3px;white-space:nowrap" class="ft21">9d</p>
<p style="position:absolute;top:599px;left:55px;white-space:nowrap" class="ft21">1&#160;-&#160;2&#160;Rm</p>
<p style="position:absolute;top:599px;left:157px;white-space:nowrap" class="ft21">NWT&#160;412</p>
<p style="position:absolute;top:599px;left:398px;white-space:nowrap" class="ft21">Raum</p>
<p style="position:absolute;top:621px;left:3px;white-space:nowrap" class="ft21">9d</p>
<p style="position:absolute;top:621px;left:55px;white-space:nowrap" class="ft21">5&#160;-&#160;6</p>
<p style="position:absolute;top:621px;left:102px;white-space:nowrap" class="ft24"><i>Ft</i></p>
<p style="position:absolute;top:621px;left:157px;white-space:nowrap" class="ft24"><i>M</i></p>
<p style="position:absolute;top:621px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:621px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:644px;left:3px;white-space:nowrap" class="ft21">10a</p>
<p style="position:absolute;top:644px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Smr</p>
<p style="position:absolute;top:644px;left:157px;white-space:nowrap" class="ft21">E</p>
<p style="position:absolute;top:644px;left:209px;white-space:nowrap" class="ft21">413</p>
<p style="position:absolute;top:644px;left:398px;white-space:nowrap" class="ft21">Hörverstehensklausur</p>
<p style="position:absolute;top:664px;left:3px;white-space:nowrap" class="ft21">10ad&#160;3</p>
<p style="position:absolute;top:664px;left:102px;white-space:nowrap" class="ft21">Ro</p>
<p style="position:absolute;top:664px;left:157px;white-space:nowrap" class="ft21">EvR</p>
<p style="position:absolute;top:664px;left:209px;white-space:nowrap" class="ft21">SH</p>
<p style="position:absolute;top:664px;left:398px;white-space:nowrap" class="ft21">Sport!</p>
<p style="position:absolute;top:685px;left:3px;white-space:nowrap" class="ft21">10ad&#160;3&#160;-&#160;4</p>
<p style="position:absolute;top:685px;left:102px;white-space:nowrap" class="ft24"><i>We</i></p>
<p style="position:absolute;top:685px;left:157px;white-space:nowrap" class="ft24"><i>KR</i></p>
<p style="position:absolute;top:685px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:685px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:708px;left:3px;white-space:nowrap" class="ft21">10ad&#160;4</p>
<p style="position:absolute;top:708px;left:102px;white-space:nowrap" class="ft21">Lk</p>
<p style="position:absolute;top:708px;left:157px;white-space:nowrap" class="ft21">EvR</p>
<p style="position:absolute;top:708px;left:209px;white-space:nowrap" class="ft21">SH</p>
<p style="position:absolute;top:708px;left:398px;white-space:nowrap" class="ft21">Sport!</p>
<p style="position:absolute;top:730px;left:3px;white-space:nowrap" class="ft21">10b</p>
<p style="position:absolute;top:730px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Ki</p>
<p style="position:absolute;top:730px;left:157px;white-space:nowrap" class="ft21">E</p>
<p style="position:absolute;top:730px;left:209px;white-space:nowrap" class="ft21">414</p>
<p style="position:absolute;top:730px;left:398px;white-space:nowrap" class="ft21">Hörverstehensklausur</p>
<p style="position:absolute;top:751px;left:3px;white-space:nowrap" class="ft21">10b</p>
<p style="position:absolute;top:751px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4</p>
<p style="position:absolute;top:751px;left:102px;white-space:nowrap" class="ft24"><i>He</i></p>
<p style="position:absolute;top:751px;left:157px;white-space:nowrap" class="ft24"><i>Gk</i></p>
<p style="position:absolute;top:751px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:751px;left:251px;white-space:nowrap" class="ft21">Entfall&#160;für&#160;Lehrer</p>
<p style="position:absolute;top:774px;left:3px;white-space:nowrap" class="ft21">10bc&#160;5&#160;-&#160;6</p>
<p style="position:absolute;top:773px;left:102px;white-space:nowrap" class="ft24"><i>We</i></p>
<p style="position:absolute;top:773px;left:157px;white-space:nowrap" class="ft24"><i>KR</i></p>
<p style="position:absolute;top:774px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:774px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:796px;left:3px;white-space:nowrap" class="ft21">10c</p>
<p style="position:absolute;top:796px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4</p>
<p style="position:absolute;top:796px;left:102px;white-space:nowrap" class="ft24"><i>Ran</i></p>
<p style="position:absolute;top:796px;left:157px;white-space:nowrap" class="ft24"><i>M</i></p>
<p style="position:absolute;top:796px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:796px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:796px;left:398px;white-space:nowrap" class="ft21">alle bei&#160;Oe</p>
<p style="position:absolute;top:817px;left:3px;white-space:nowrap" class="ft21">10c</p>
<p style="position:absolute;top:817px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Oe</p>
<p style="position:absolute;top:817px;left:157px;white-space:nowrap" class="ft21">E</p>
<p style="position:absolute;top:817px;left:209px;white-space:nowrap" class="ft21">422</p>
<p style="position:absolute;top:817px;left:398px;white-space:nowrap" class="ft21">Hörverstehensklausur</p>
<p style="position:absolute;top:839px;left:3px;white-space:nowrap" class="ft21">10d</p>
<p style="position:absolute;top:839px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Wd</p>
<p style="position:absolute;top:839px;left:157px;white-space:nowrap" class="ft21">E</p>
<p style="position:absolute;top:839px;left:209px;white-space:nowrap" class="ft21">416</p>
<p style="position:absolute;top:839px;left:398px;white-space:nowrap" class="ft21">Hörverstehensklausur</p>
<p style="position:absolute;top:862px;left:3px;white-space:nowrap" class="ft21">11</p>
<p style="position:absolute;top:862px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;At</p>
<p style="position:absolute;top:862px;left:157px;white-space:nowrap" class="ft21">D3</p>
<p style="position:absolute;top:862px;left:209px;white-space:nowrap" class="ft21">121</p>
<p style="position:absolute;top:862px;left:398px;white-space:nowrap" class="ft21">Raum</p>
<p style="position:absolute;top:883px;left:3px;white-space:nowrap" class="ft21">11</p>
<p style="position:absolute;top:883px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Sl</p>
<p style="position:absolute;top:883px;left:157px;white-space:nowrap" class="ft21">D2</p>
<p style="position:absolute;top:883px;left:209px;white-space:nowrap" class="ft21">415</p>
<p style="position:absolute;top:883px;left:398px;white-space:nowrap" class="ft21">Raum</p>
<p style="position:absolute;top:905px;left:3px;white-space:nowrap" class="ft21">12</p>
<p style="position:absolute;top:905px;left:55px;white-space:nowrap" class="ft21">1&#160;-&#160;2&#160;Lo</p>
<p style="position:absolute;top:905px;left:157px;white-space:nowrap" class="ft21">Sp1</p>
<p style="position:absolute;top:905px;left:209px;white-space:nowrap" class="ft21">222</p>
<p style="position:absolute;top:905px;left:398px;white-space:nowrap" class="ft21">Theorie</p>
<p style="position:absolute;top:928px;left:3px;white-space:nowrap" class="ft21">12</p>
<p style="position:absolute;top:928px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Mf</p>
<p style="position:absolute;top:928px;left:157px;white-space:nowrap" class="ft21">E2</p>
<p style="position:absolute;top:928px;left:209px;white-space:nowrap" class="ft21">218</p>
<p style="position:absolute;top:928px;left:398px;white-space:nowrap" class="ft21">Raum</p>
<p style="position:absolute;top:949px;left:3px;white-space:nowrap" class="ft21">12</p>
<p style="position:absolute;top:949px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4&#160;Sf</p>
<p style="position:absolute;top:949px;left:157px;white-space:nowrap" class="ft21">M3</p>
<p style="position:absolute;top:949px;left:209px;white-space:nowrap" class="ft21">322</p>
<p style="position:absolute;top:949px;left:398px;white-space:nowrap" class="ft21">Raum</p>
<p style="position:absolute;top:969px;left:3px;white-space:nowrap" class="ft21">12</p>
<p style="position:absolute;top:969px;left:55px;white-space:nowrap" class="ft21">3&#160;-&#160;4</p>
<p style="position:absolute;top:969px;left:102px;white-space:nowrap" class="ft24"><i>Ft</i></p>
<p style="position:absolute;top:969px;left:157px;white-space:nowrap" class="ft24"><i>M2</i></p>
<p style="position:absolute;top:969px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:969px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
<p style="position:absolute;top:992px;left:3px;white-space:nowrap" class="ft21">12</p>
<p style="position:absolute;top:992px;left:55px;white-space:nowrap" class="ft21">5&#160;-&#160;6</p>
<p style="position:absolute;top:991px;left:102px;white-space:nowrap" class="ft24"><i>Ku</i></p>
<p style="position:absolute;top:991px;left:157px;white-space:nowrap" class="ft24"><i>ek1</i></p>
<p style="position:absolute;top:992px;left:209px;white-space:nowrap" class="ft21">---</p>
<p style="position:absolute;top:992px;left:251px;white-space:nowrap" class="ft21">Entfall</p>
</div>
</body>
</html>

Binary file not shown.

View file

@ -0,0 +1,455 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pdf2xml SYSTEM "pdf2xml.dtd">
<pdf2xml producer="poppler" version="0.68.0">
<page number="1" position="absolute" top="0" left="0" height="1262" width="893">
<fontspec id="0" size="17" family="Times" color="#000000"/>
<fontspec id="1" size="16" family="Times" color="#000000"/>
<fontspec id="2" size="25" family="Times" color="#000000"/>
<fontspec id="3" size="14" family="Times" color="#000000"/>
<fontspec id="4" size="16" family="Times" color="#000000"/>
<text top="10" left="3" width="297" height="19" font="0"><b>D-70563 FANNY-LEICHT-GYMN.</b></text>
<text top="32" left="3" width="275" height="17" font="1">STUTTGART, F.-LEICHT-STR. 13</text>
<text top="9" left="332" width="248" height="17" font="1">Schuljahr 2018/19 - 1. Halbjahr</text>
<text top="32" left="332" width="236" height="17" font="1">gültig ab 10. September 2018</text>
<text top="10" left="708" width="99" height="19" font="0"><b>Untis 2017</b></text>
<text top="32" left="671" width="135" height="17" font="1">13.12.2018 9:04</text>
<text top="64" left="3" width="473" height="25" font="2"><b>Klasse 13.12. / Donnerstag Woche-A</b></text>
<text top="111" left="3" width="203" height="15" font="3">Ordnungsdienst: Klasse 10a</text>
<text top="172" left="3" width="21" height="17" font="1">Kl.</text>
<text top="172" left="55" width="32" height="17" font="1">Std.</text>
<text top="172" left="123" width="191" height="17" font="1">Vertr. Fach Rau nach</text>
<text top="172" left="391" width="134" height="17" font="1">Vertretungs-Text</text>
<text top="194" left="3" width="20" height="17" font="1">5b</text>
<text top="194" left="55" width="10" height="17" font="1">1</text>
<text top="194" left="123" width="27" height="17" font="4"><i>Hei</i></text>
<text top="194" left="178" width="13" height="17" font="4"><i>D</i></text>
<text top="194" left="233" width="18" height="17" font="1">---</text>
<text top="194" left="275" width="50" height="17" font="1">Entfall</text>
<text top="217" left="3" width="20" height="17" font="1">5b</text>
<text top="217" left="55" width="10" height="17" font="1">2</text>
<text top="217" left="123" width="21" height="17" font="1">Fu</text>
<text top="217" left="178" width="13" height="17" font="1">D</text>
<text top="217" left="233" width="30" height="17" font="1">114</text>
<text top="217" left="391" width="220" height="17" font="1">Hei / Aufgaben, Arbeitsheft!</text>
<text top="240" left="3" width="20" height="17" font="1">5b</text>
<text top="240" left="55" width="10" height="17" font="1">3</text>
<text top="240" left="123" width="24" height="17" font="1">Oe</text>
<text top="240" left="178" width="15" height="17" font="1">M</text>
<text top="240" left="233" width="30" height="17" font="1">114</text>
<text top="240" left="391" width="108" height="17" font="1">Ei / Aufgaben</text>
<text top="263" left="3" width="20" height="17" font="1">5b</text>
<text top="263" left="55" width="10" height="17" font="1">4</text>
<text top="263" left="123" width="28" height="17" font="1">Rm</text>
<text top="263" left="178" width="15" height="17" font="1">M</text>
<text top="263" left="233" width="30" height="17" font="1">114</text>
<text top="263" left="391" width="108" height="17" font="1">Ei / Aufgaben</text>
<text top="285" left="3" width="29" height="17" font="1">6bc</text>
<text top="285" left="55" width="10" height="17" font="1">5</text>
<text top="285" left="123" width="17" height="17" font="1">Sf</text>
<text top="285" left="178" width="34" height="17" font="1">EvR</text>
<text top="285" left="233" width="30" height="17" font="1">321</text>
<text top="285" left="391" width="114" height="17" font="1">Bü / Aufgaben</text>
<text top="306" left="3" width="29" height="17" font="1">6bc</text>
<text top="306" left="55" width="10" height="17" font="1">5</text>
<text top="306" left="123" width="22" height="17" font="1">Dk</text>
<text top="306" left="178" width="25" height="17" font="1">KR</text>
<text top="306" left="233" width="30" height="17" font="1">121</text>
<text top="306" left="391" width="119" height="17" font="1">We / Aufgaben</text>
<text top="328" left="3" width="29" height="17" font="1">6bc</text>
<text top="328" left="55" width="10" height="17" font="1">6</text>
<text top="328" left="123" width="22" height="17" font="4"><i></i></text>
<text top="328" left="178" width="34" height="17" font="4"><i>EvR</i></text>
<text top="328" left="233" width="18" height="17" font="1">---</text>
<text top="328" left="275" width="50" height="17" font="1">Entfall</text>
<text top="349" left="3" width="29" height="17" font="1">6bc</text>
<text top="349" left="55" width="10" height="17" font="1">6</text>
<text top="349" left="123" width="27" height="17" font="4"><i>We</i></text>
<text top="349" left="178" width="25" height="17" font="4"><i>KR</i></text>
<text top="349" left="233" width="18" height="17" font="1">---</text>
<text top="349" left="275" width="50" height="17" font="1">Entfall</text>
<text top="372" left="3" width="20" height="17" font="1">6d</text>
<text top="372" left="55" width="10" height="17" font="1">6</text>
<text top="371" left="123" width="22" height="17" font="4"><i>Ku</i></text>
<text top="371" left="178" width="21" height="17" font="4"><i>Ek</i></text>
<text top="372" left="233" width="18" height="17" font="1">---</text>
<text top="372" left="275" width="50" height="17" font="1">Entfall</text>
<text top="394" left="3" width="20" height="17" font="1">7b</text>
<text top="394" left="55" width="10" height="17" font="1">2</text>
<text top="394" left="123" width="24" height="17" font="1">Ga</text>
<text top="394" left="178" width="14" height="17" font="1">G</text>
<text top="394" left="233" width="30" height="17" font="1">414</text>
<text top="394" left="391" width="55" height="17" font="1">KA Fkr</text>
<text top="417" left="3" width="20" height="17" font="1">7b</text>
<text top="417" left="55" width="10" height="17" font="1">8</text>
<text top="417" left="123" width="24" height="17" font="4"><i>Gg</i></text>
<text top="417" left="178" width="24" height="17" font="4"><i>BK</i></text>
<text top="417" left="233" width="18" height="17" font="1">---</text>
<text top="417" left="275" width="100" height="17" font="1">Mi-12.12. / 1</text>
<text top="440" left="3" width="20" height="17" font="1">7b</text>
<text top="440" left="55" width="10" height="17" font="1">9</text>
<text top="439" left="123" width="24" height="17" font="4"><i>Gg</i></text>
<text top="439" left="178" width="24" height="17" font="4"><i>BK</i></text>
<text top="440" left="233" width="18" height="17" font="1">---</text>
<text top="440" left="275" width="100" height="17" font="1">Mi-12.12. / 2</text>
<text top="462" left="3" width="19" height="17" font="1">7c</text>
<text top="462" left="55" width="36" height="17" font="1">8 - 9</text>
<text top="462" left="123" width="27" height="17" font="4"><i>Gw</i></text>
<text top="462" left="178" width="14" height="17" font="4"><i>G</i></text>
<text top="462" left="233" width="18" height="17" font="1">---</text>
<text top="462" left="275" width="50" height="17" font="1">Entfall</text>
<text top="485" left="3" width="20" height="17" font="1">7d</text>
<text top="485" left="55" width="10" height="17" font="1">1</text>
<text top="485" left="123" width="22" height="17" font="4"><i>Ku</i></text>
<text top="485" left="178" width="13" height="17" font="4"><i>D</i></text>
<text top="485" left="233" width="18" height="17" font="1">---</text>
<text top="485" left="275" width="50" height="17" font="1">Entfall</text>
<text top="508" left="3" width="20" height="17" font="1">7d</text>
<text top="508" left="55" width="10" height="17" font="1">2</text>
<text top="508" left="123" width="23" height="17" font="1">Oz</text>
<text top="508" left="178" width="13" height="17" font="1">D</text>
<text top="508" left="233" width="30" height="17" font="1">416</text>
<text top="508" left="391" width="114" height="17" font="1">Ku / Aufgaben</text>
<text top="530" left="3" width="20" height="17" font="1">8a</text>
<text top="530" left="55" width="36" height="17" font="1">1 - 2</text>
<text top="530" left="123" width="16" height="17" font="4"><i>Ei</i></text>
<text top="530" left="178" width="23" height="17" font="4"><i>Ch</i></text>
<text top="530" left="233" width="18" height="17" font="1">---</text>
<text top="530" left="275" width="50" height="17" font="1">Entfall</text>
<text top="530" left="391" width="83" height="17" font="1">KEINE KA</text>
<text top="553" left="3" width="29" height="17" font="1">9ac</text>
<text top="553" left="55" width="36" height="17" font="1">8 - 9</text>
<text top="553" left="123" width="19" height="17" font="4"><i>Lk</i></text>
<text top="553" left="178" width="31" height="17" font="4"><i>SpJ</i></text>
<text top="553" left="233" width="18" height="17" font="1">---</text>
<text top="553" left="275" width="50" height="17" font="1">Entfall</text>
<text top="576" left="3" width="19" height="17" font="1">9c</text>
<text top="576" left="55" width="36" height="17" font="1">1 - 2</text>
<text top="576" left="123" width="22" height="17" font="1">Jw</text>
<text top="576" left="178" width="23" height="17" font="1">Gk</text>
<text top="576" left="233" width="30" height="17" font="1">322</text>
<text top="576" left="391" width="53" height="17" font="1">Raum!</text>
<text top="599" left="3" width="19" height="17" font="1">9c</text>
<text top="599" left="55" width="10" height="17" font="1">3</text>
<text top="599" left="123" width="18" height="17" font="1">Hf</text>
<text top="599" left="178" width="13" height="17" font="1">D</text>
<text top="599" left="233" width="30" height="17" font="1">220</text>
<text top="599" left="391" width="119" height="17" font="1">Hei / Aufgaben</text>
<text top="621" left="3" width="19" height="17" font="1">9c</text>
<text top="621" left="55" width="10" height="17" font="1">4</text>
<text top="621" left="123" width="31" height="17" font="1">Bkn</text>
<text top="621" left="178" width="13" height="17" font="1">D</text>
<text top="621" left="233" width="30" height="17" font="1">220</text>
<text top="621" left="391" width="119" height="17" font="1">Hei / Aufgaben</text>
<text top="644" left="3" width="20" height="17" font="1">9d</text>
<text top="644" left="55" width="10" height="17" font="1">1</text>
<text top="644" left="123" width="18" height="17" font="4"><i>Rt</i></text>
<text top="644" left="178" width="23" height="17" font="4"><i>Gk</i></text>
<text top="644" left="233" width="18" height="17" font="1">---</text>
<text top="644" left="275" width="104" height="17" font="1">Do-13.12. / 3</text>
<text top="667" left="3" width="20" height="17" font="1">9d</text>
<text top="667" left="55" width="10" height="17" font="1">2</text>
<text top="666" left="123" width="18" height="17" font="4"><i>Rt</i></text>
<text top="666" left="178" width="23" height="17" font="4"><i>Gk</i></text>
<text top="667" left="233" width="18" height="17" font="1">---</text>
<text top="667" left="275" width="104" height="17" font="1">Do-13.12. / 4</text>
<text top="689" left="3" width="20" height="17" font="1">9d</text>
<text top="689" left="55" width="10" height="17" font="1">3</text>
<text top="689" left="123" width="18" height="17" font="1">Rt</text>
<text top="689" left="178" width="23" height="17" font="1">Gk</text>
<text top="689" left="233" width="30" height="17" font="1">218</text>
<text top="712" left="3" width="20" height="17" font="1">9d</text>
<text top="712" left="55" width="10" height="17" font="1">4</text>
<text top="712" left="123" width="18" height="17" font="1">Rt</text>
<text top="712" left="178" width="23" height="17" font="1">Gk</text>
<text top="712" left="233" width="30" height="17" font="1">218</text>
<text top="735" left="3" width="20" height="17" font="1">9d</text>
<text top="735" left="55" width="10" height="17" font="1">5</text>
<text top="735" left="123" width="17" height="17" font="1">Ni</text>
<text top="735" left="178" width="24" height="17" font="1">BK</text>
<text top="735" left="233" width="30" height="17" font="1">126</text>
<text top="757" left="3" width="20" height="17" font="1">9d</text>
<text top="757" left="55" width="10" height="17" font="1">6</text>
<text top="757" left="123" width="17" height="17" font="1">Ni</text>
<text top="757" left="178" width="24" height="17" font="1">BK</text>
<text top="757" left="233" width="30" height="17" font="1">126</text>
<text top="780" left="3" width="20" height="17" font="1">9d</text>
<text top="780" left="55" width="10" height="17" font="1">8</text>
<text top="780" left="123" width="17" height="17" font="4"><i>Ni</i></text>
<text top="780" left="178" width="24" height="17" font="4"><i>BK</i></text>
<text top="780" left="233" width="18" height="17" font="1">---</text>
<text top="780" left="275" width="104" height="17" font="1">Do-13.12. / 5</text>
<text top="803" left="3" width="20" height="17" font="1">9d</text>
<text top="803" left="55" width="10" height="17" font="1">9</text>
<text top="802" left="123" width="17" height="17" font="4"><i>Ni</i></text>
<text top="802" left="178" width="24" height="17" font="4"><i>BK</i></text>
<text top="803" left="233" width="18" height="17" font="1">---</text>
<text top="803" left="275" width="104" height="17" font="1">Do-13.12. / 6</text>
<text top="825" left="3" width="30" height="17" font="1">10b</text>
<text top="825" left="55" width="56" height="17" font="1">10 - 11</text>
<text top="825" left="123" width="21" height="17" font="4"><i>Fe</i></text>
<text top="825" left="178" width="22" height="17" font="4"><i>Ph</i></text>
<text top="825" left="233" width="18" height="17" font="1">---</text>
<text top="825" left="275" width="50" height="17" font="1">Entfall</text>
<text top="848" left="3" width="20" height="17" font="1">11</text>
<text top="848" left="55" width="36" height="17" font="1">3 - 4</text>
<text top="848" left="123" width="16" height="17" font="4"><i>Ft</i></text>
<text top="848" left="178" width="20" height="17" font="4"><i>g4</i></text>
<text top="848" left="233" width="18" height="17" font="1">---</text>
<text top="848" left="275" width="50" height="17" font="1">Entfall</text>
<text top="871" left="3" width="20" height="17" font="1">11</text>
<text top="871" left="55" width="10" height="17" font="1">5</text>
<text top="870" left="123" width="16" height="17" font="4"><i>Ei</i></text>
<text top="870" left="178" width="25" height="17" font="4"><i>M1</i></text>
<text top="871" left="233" width="18" height="17" font="1">---</text>
<text top="871" left="275" width="50" height="17" font="1">Entfall</text>
<text top="893" left="3" width="20" height="17" font="1">11</text>
<text top="893" left="55" width="10" height="17" font="1">7</text>
<text top="893" left="123" width="19" height="17" font="1">Gt</text>
<text top="893" left="178" width="85" height="17" font="1">sem1 324</text>
<text top="893" left="391" width="250" height="17" font="1">geteilte Gruppen Schwimmen / </text>
<text top="916" left="3" width="20" height="17" font="1">11</text>
<text top="916" left="55" width="36" height="17" font="1">8 - 9</text>
<text top="916" left="123" width="23" height="17" font="1">Ro</text>
<text top="916" left="178" width="85" height="17" font="1">sem1 ???</text>
<text top="939" left="3" width="20" height="17" font="1">11</text>
<text top="939" left="55" width="56" height="17" font="1">10 - 11</text>
<text top="939" left="123" width="19" height="17" font="4"><i>Lk</i></text>
<text top="939" left="178" width="29" height="17" font="4"><i>sp3</i></text>
<text top="939" left="233" width="18" height="17" font="1">---</text>
<text top="939" left="275" width="50" height="17" font="1">Entfall</text>
<text top="962" left="3" width="20" height="17" font="1">12</text>
<text top="962" left="55" width="36" height="17" font="1">1 - 2</text>
<text top="962" left="123" width="17" height="17" font="1">Ni</text>
<text top="962" left="178" width="29" height="17" font="1">bk1</text>
<text top="962" left="233" width="30" height="17" font="1">412</text>
<text top="962" left="391" width="53" height="17" font="1">Raum!</text>
<text top="984" left="3" width="20" height="17" font="1">12</text>
<text top="984" left="55" width="10" height="17" font="1">5</text>
<text top="984" left="123" width="22" height="17" font="4"><i>Ku</i></text>
<text top="984" left="178" width="23" height="17" font="4"><i>D2</i></text>
<text top="984" left="233" width="18" height="17" font="1">---</text>
<text top="984" left="275" width="50" height="17" font="1">Entfall</text>
<text top="1007" left="3" width="88" height="17" font="1">1112 8 - 9</text>
<text top="1007" left="123" width="21" height="17" font="4"><i>Fe</i></text>
<text top="1007" left="178" width="34" height="17" font="4"><i>vma</i></text>
<text top="1007" left="233" width="18" height="17" font="1">---</text>
<text top="1007" left="275" width="50" height="17" font="1">Entfall</text>
</page>
<page number="2" position="absolute" top="0" left="0" height="1262" width="893">
<text top="10" left="3" width="297" height="19" font="0"><b>D-70563 FANNY-LEICHT-GYMN.</b></text>
<text top="32" left="3" width="275" height="17" font="1">STUTTGART, F.-LEICHT-STR. 13</text>
<text top="9" left="332" width="248" height="17" font="1">Schuljahr 2018/19 - 1. Halbjahr</text>
<text top="32" left="332" width="236" height="17" font="1">gültig ab 10. September 2018</text>
<text top="10" left="708" width="99" height="19" font="0"><b>Untis 2017</b></text>
<text top="32" left="671" width="135" height="17" font="1">13.12.2018 8:11</text>
<text top="64" left="3" width="413" height="25" font="2"><b>Klasse 14.12. / Freitag Woche-A</b></text>
<text top="111" left="3" width="203" height="15" font="3">Ordnungsdienst: Klasse 10a</text>
<text top="172" left="3" width="21" height="17" font="1">Kl.</text>
<text top="172" left="55" width="235" height="17" font="1">Std. Vertr. Fach Rau nach</text>
<text top="172" left="398" width="134" height="17" font="1">Vertretungs-Text</text>
<text top="194" left="3" width="62" height="17" font="1">5abc 1</text>
<text top="194" left="102" width="27" height="17" font="4"><i>We</i></text>
<text top="194" left="157" width="25" height="17" font="4"><i>KR</i></text>
<text top="194" left="209" width="18" height="17" font="1">---</text>
<text top="194" left="251" width="50" height="17" font="1">Entfall</text>
<text top="215" left="3" width="20" height="17" font="1">5a</text>
<text top="215" left="55" width="10" height="17" font="1">1</text>
<text top="215" left="102" width="22" height="17" font="4"><i></i></text>
<text top="215" left="157" width="34" height="17" font="4"><i>EvR</i></text>
<text top="215" left="209" width="18" height="17" font="1">---</text>
<text top="215" left="251" width="50" height="17" font="1">Entfall</text>
<text top="238" left="3" width="62" height="17" font="1">5abc 2</text>
<text top="238" left="102" width="22" height="17" font="1">Jw</text>
<text top="238" left="157" width="25" height="17" font="1">KR</text>
<text top="238" left="209" width="30" height="17" font="1">123</text>
<text top="238" left="398" width="119" height="17" font="1">We / Aufgaben</text>
<text top="258" left="3" width="20" height="17" font="1">5a</text>
<text top="258" left="55" width="10" height="17" font="1">2</text>
<text top="258" left="102" width="23" height="17" font="1">Ng</text>
<text top="258" left="157" width="34" height="17" font="1">EvR</text>
<text top="258" left="209" width="30" height="17" font="1">321</text>
<text top="258" left="398" width="114" height="17" font="1">Bü / Aufgaben</text>
<text top="281" left="3" width="20" height="17" font="1">5d</text>
<text top="281" left="55" width="10" height="17" font="1">3</text>
<text top="281" left="102" width="20" height="17" font="1">Lo</text>
<text top="281" left="157" width="13" height="17" font="1">D</text>
<text top="281" left="209" width="30" height="17" font="1">122</text>
<text top="281" left="398" width="171" height="17" font="1">anstatt 17.12., 1. Std.</text>
<text top="304" left="3" width="20" height="17" font="1">5d</text>
<text top="304" left="55" width="10" height="17" font="1">4</text>
<text top="304" left="102" width="20" height="17" font="1">Lo</text>
<text top="304" left="157" width="13" height="17" font="1">D</text>
<text top="304" left="209" width="30" height="17" font="1">122</text>
<text top="304" left="398" width="166" height="17" font="1">anstatt 19.12., 1 Std.</text>
<text top="326" left="3" width="20" height="17" font="1">6a</text>
<text top="326" left="55" width="10" height="17" font="1">6</text>
<text top="326" left="102" width="23" height="17" font="4"><i>He</i></text>
<text top="326" left="157" width="12" height="17" font="4"><i>E</i></text>
<text top="326" left="209" width="18" height="17" font="1">---</text>
<text top="326" left="251" width="50" height="17" font="1">Entfall</text>
<text top="349" left="3" width="62" height="17" font="1">6acd 7</text>
<text top="349" left="102" width="16" height="17" font="4"><i>Ft</i></text>
<text top="349" left="157" width="26" height="17" font="4"><i>MF</i></text>
<text top="349" left="209" width="18" height="17" font="1">---</text>
<text top="349" left="251" width="50" height="17" font="1">Entfall</text>
<text top="372" left="3" width="19" height="17" font="1">6c</text>
<text top="372" left="55" width="10" height="17" font="1">1</text>
<text top="371" left="102" width="22" height="17" font="4"><i>Ku</i></text>
<text top="371" left="157" width="13" height="17" font="4"><i>D</i></text>
<text top="372" left="209" width="18" height="17" font="1">---</text>
<text top="372" left="251" width="50" height="17" font="1">Entfall</text>
<text top="394" left="3" width="19" height="17" font="1">6c</text>
<text top="394" left="55" width="10" height="17" font="1">2</text>
<text top="394" left="102" width="16" height="17" font="1">Sl</text>
<text top="394" left="157" width="13" height="17" font="1">D</text>
<text top="394" left="209" width="30" height="17" font="1">121</text>
<text top="394" left="398" width="114" height="17" font="1">Ku / Aufgaben</text>
<text top="417" left="3" width="20" height="17" font="1">7a</text>
<text top="417" left="55" width="10" height="17" font="1">3</text>
<text top="417" left="102" width="17" height="17" font="1">Di</text>
<text top="417" left="157" width="13" height="17" font="1">D</text>
<text top="417" left="209" width="30" height="17" font="1">323</text>
<text top="417" left="398" width="48" height="17" font="1">Raum</text>
<text top="440" left="3" width="20" height="17" font="1">7a</text>
<text top="440" left="55" width="10" height="17" font="1">4</text>
<text top="440" left="102" width="33" height="17" font="1">Hhn</text>
<text top="440" left="157" width="15" height="17" font="1">M</text>
<text top="440" left="209" width="30" height="17" font="1">323</text>
<text top="462" left="3" width="20" height="17" font="1">7a</text>
<text top="462" left="55" width="10" height="17" font="1">5</text>
<text top="462" left="102" width="33" height="17" font="1">Hhn</text>
<text top="462" left="157" width="15" height="17" font="1">M</text>
<text top="462" left="209" width="30" height="17" font="1">323</text>
<text top="485" left="3" width="20" height="17" font="1">7a</text>
<text top="485" left="55" width="10" height="17" font="1">6</text>
<text top="485" left="102" width="33" height="17" font="1">Hhn</text>
<text top="485" left="157" width="15" height="17" font="1">M</text>
<text top="485" left="209" width="30" height="17" font="1">323</text>
<text top="485" left="398" width="88" height="17" font="1">findet statt!</text>
<text top="508" left="3" width="20" height="17" font="1">7b</text>
<text top="508" left="55" width="10" height="17" font="1">6</text>
<text top="507" left="102" width="18" height="17" font="4"><i>Rt</i></text>
<text top="507" left="157" width="13" height="17" font="4"><i>D</i></text>
<text top="508" left="209" width="18" height="17" font="1">---</text>
<text top="508" left="251" width="50" height="17" font="1">Entfall</text>
<text top="530" left="3" width="20" height="17" font="1">8a</text>
<text top="530" left="55" width="10" height="17" font="1">1</text>
<text top="530" left="102" width="16" height="17" font="4"><i>Ft</i></text>
<text top="530" left="157" width="15" height="17" font="4"><i>M</i></text>
<text top="530" left="209" width="18" height="17" font="1">---</text>
<text top="530" left="251" width="50" height="17" font="1">Entfall</text>
<text top="553" left="3" width="20" height="17" font="1">8a</text>
<text top="553" left="55" width="10" height="17" font="1">2</text>
<text top="553" left="102" width="14" height="17" font="1">Li</text>
<text top="553" left="157" width="12" height="17" font="1">E</text>
<text top="553" left="209" width="30" height="17" font="1">323</text>
<text top="553" left="398" width="89" height="17" font="1">statt 18.12.</text>
<text top="576" left="3" width="19" height="17" font="1">9c</text>
<text top="576" left="55" width="36" height="17" font="1">5 - 6</text>
<text top="576" left="102" width="27" height="17" font="4"><i>Hei</i></text>
<text top="576" left="157" width="13" height="17" font="4"><i>D</i></text>
<text top="576" left="209" width="18" height="17" font="1">---</text>
<text top="576" left="251" width="50" height="17" font="1">Entfall</text>
<text top="599" left="3" width="20" height="17" font="1">9d</text>
<text top="599" left="55" width="75" height="17" font="1">1 - 2 Rm</text>
<text top="599" left="157" width="82" height="17" font="1">NWT 412</text>
<text top="599" left="398" width="48" height="17" font="1">Raum</text>
<text top="621" left="3" width="20" height="17" font="1">9d</text>
<text top="621" left="55" width="36" height="17" font="1">5 - 6</text>
<text top="621" left="102" width="16" height="17" font="4"><i>Ft</i></text>
<text top="621" left="157" width="15" height="17" font="4"><i>M</i></text>
<text top="621" left="209" width="18" height="17" font="1">---</text>
<text top="621" left="251" width="50" height="17" font="1">Entfall</text>
<text top="644" left="3" width="30" height="17" font="1">10a</text>
<text top="644" left="55" width="80" height="17" font="1">3 - 4 Smr</text>
<text top="644" left="157" width="12" height="17" font="1">E</text>
<text top="644" left="209" width="30" height="17" font="1">413</text>
<text top="644" left="398" width="175" height="17" font="1">Hörverstehensklausur</text>
<text top="664" left="3" width="62" height="17" font="1">10ad 3</text>
<text top="664" left="102" width="23" height="17" font="1">Ro</text>
<text top="664" left="157" width="34" height="17" font="1">EvR</text>
<text top="664" left="209" width="25" height="17" font="1">SH</text>
<text top="664" left="398" width="48" height="17" font="1">Sport!</text>
<text top="685" left="3" width="88" height="17" font="1">10ad 3 - 4</text>
<text top="685" left="102" width="27" height="17" font="4"><i>We</i></text>
<text top="685" left="157" width="25" height="17" font="4"><i>KR</i></text>
<text top="685" left="209" width="18" height="17" font="1">---</text>
<text top="685" left="251" width="50" height="17" font="1">Entfall</text>
<text top="708" left="3" width="62" height="17" font="1">10ad 4</text>
<text top="708" left="102" width="19" height="17" font="1">Lk</text>
<text top="708" left="157" width="34" height="17" font="1">EvR</text>
<text top="708" left="209" width="25" height="17" font="1">SH</text>
<text top="708" left="398" width="48" height="17" font="1">Sport!</text>
<text top="730" left="3" width="30" height="17" font="1">10b</text>
<text top="730" left="55" width="63" height="17" font="1">3 - 4 Ki</text>
<text top="730" left="157" width="12" height="17" font="1">E</text>
<text top="730" left="209" width="30" height="17" font="1">414</text>
<text top="730" left="398" width="175" height="17" font="1">Hörverstehensklausur</text>
<text top="751" left="3" width="30" height="17" font="1">10b</text>
<text top="751" left="55" width="36" height="17" font="1">3 - 4</text>
<text top="751" left="102" width="23" height="17" font="4"><i>He</i></text>
<text top="751" left="157" width="23" height="17" font="4"><i>Gk</i></text>
<text top="751" left="209" width="18" height="17" font="1">---</text>
<text top="751" left="251" width="133" height="17" font="1">Entfall für Lehrer</text>
<text top="774" left="3" width="88" height="17" font="1">10bc 5 - 6</text>
<text top="773" left="102" width="27" height="17" font="4"><i>We</i></text>
<text top="773" left="157" width="25" height="17" font="4"><i>KR</i></text>
<text top="774" left="209" width="18" height="17" font="1">---</text>
<text top="774" left="251" width="50" height="17" font="1">Entfall</text>
<text top="796" left="3" width="29" height="17" font="1">10c</text>
<text top="796" left="55" width="36" height="17" font="1">3 - 4</text>
<text top="796" left="102" width="33" height="17" font="4"><i>Ran</i></text>
<text top="796" left="157" width="15" height="17" font="4"><i>M</i></text>
<text top="796" left="209" width="18" height="17" font="1">---</text>
<text top="796" left="251" width="50" height="17" font="1">Entfall</text>
<text top="796" left="398" width="86" height="17" font="1">alle bei Oe</text>
<text top="817" left="3" width="29" height="17" font="1">10c</text>
<text top="817" left="55" width="71" height="17" font="1">3 - 4 Oe</text>
<text top="817" left="157" width="12" height="17" font="1">E</text>
<text top="817" left="209" width="30" height="17" font="1">422</text>
<text top="817" left="398" width="175" height="17" font="1">Hörverstehensklausur</text>
<text top="839" left="3" width="30" height="17" font="1">10d</text>
<text top="839" left="55" width="74" height="17" font="1">3 - 4 Wd</text>
<text top="839" left="157" width="12" height="17" font="1">E</text>
<text top="839" left="209" width="30" height="17" font="1">416</text>
<text top="839" left="398" width="175" height="17" font="1">Hörverstehensklausur</text>
<text top="862" left="3" width="20" height="17" font="1">11</text>
<text top="862" left="55" width="64" height="17" font="1">3 - 4 At</text>
<text top="862" left="157" width="23" height="17" font="1">D3</text>
<text top="862" left="209" width="30" height="17" font="1">121</text>
<text top="862" left="398" width="48" height="17" font="1">Raum</text>
<text top="883" left="3" width="20" height="17" font="1">11</text>
<text top="883" left="55" width="63" height="17" font="1">3 - 4 Sl</text>
<text top="883" left="157" width="23" height="17" font="1">D2</text>
<text top="883" left="209" width="30" height="17" font="1">415</text>
<text top="883" left="398" width="48" height="17" font="1">Raum</text>
<text top="905" left="3" width="20" height="17" font="1">12</text>
<text top="905" left="55" width="67" height="17" font="1">1 - 2 Lo</text>
<text top="905" left="157" width="32" height="17" font="1">Sp1</text>
<text top="905" left="209" width="30" height="17" font="1">222</text>
<text top="905" left="398" width="61" height="17" font="1">Theorie</text>
<text top="928" left="3" width="20" height="17" font="1">12</text>
<text top="928" left="55" width="67" height="17" font="1">3 - 4 Mf</text>
<text top="928" left="157" width="22" height="17" font="1">E2</text>
<text top="928" left="209" width="30" height="17" font="1">218</text>
<text top="928" left="398" width="48" height="17" font="1">Raum</text>
<text top="949" left="3" width="20" height="17" font="1">12</text>
<text top="949" left="55" width="64" height="17" font="1">3 - 4 Sf</text>
<text top="949" left="157" width="25" height="17" font="1">M3</text>
<text top="949" left="209" width="30" height="17" font="1">322</text>
<text top="949" left="398" width="48" height="17" font="1">Raum</text>
<text top="969" left="3" width="20" height="17" font="1">12</text>
<text top="969" left="55" width="36" height="17" font="1">3 - 4</text>
<text top="969" left="102" width="16" height="17" font="4"><i>Ft</i></text>
<text top="969" left="157" width="25" height="17" font="4"><i>M2</i></text>
<text top="969" left="209" width="18" height="17" font="1">---</text>
<text top="969" left="251" width="50" height="17" font="1">Entfall</text>
<text top="992" left="3" width="20" height="17" font="1">12</text>
<text top="992" left="55" width="36" height="17" font="1">5 - 6</text>
<text top="991" left="102" width="22" height="17" font="4"><i>Ku</i></text>
<text top="991" left="157" width="29" height="17" font="4"><i>ek1</i></text>
<text top="992" left="209" width="18" height="17" font="1">---</text>
<text top="992" left="251" width="50" height="17" font="1">Entfall</text>
</page>
</pdf2xml>

View file

@ -12,5 +12,9 @@
<file>graphics/FannyLogo_small.png</file> <file>graphics/FannyLogo_small.png</file>
<file>graphics/icons/hide.png</file> <file>graphics/icons/hide.png</file>
<file>graphics/icons/view.png</file> <file>graphics/icons/view.png</file>
<file>samplehtml/Download File-html.html</file>
<file>samplehtml/Download File.html</file>
<file>samplehtml/Download File.pdf</file>
<file>samplehtml/Download File.xml</file>
</qresource> </qresource>
</RCC> </RCC>

6
sources/eventform.cpp Normal file
View file

@ -0,0 +1,6 @@
#include "headers/eventform.h"
EventForm::EventForm(QObject *parent) : QObject(parent)
{
}

View file

@ -21,7 +21,7 @@
#include <QScreen> #include <QScreen>
#include <QQmlApplicationEngine> #include <QQmlApplicationEngine>
#include <QtQml/QQmlContext> #include <QtQml/QQmlContext>
#include <QtWebView/QtWebView> #include <QtWebView>
#include "headers/serverconn.h" #include "headers/serverconn.h"
#include "headers/appsettings.h" #include "headers/appsettings.h"

View file

@ -22,52 +22,52 @@ ServerConn::~ServerConn()
QString ServerConn::login(QString username, QString password, bool permanent) QString ServerConn::login(QString username, QString password, bool permanent)
{ {
// QUrlQuery pdata; // QUrlQuery pdata;
// ReturnData_t ret = this->senddata(QUrl("http://www.fanny-leicht.de/static15/http.intern/sheute.pdf"), pdata); // ReturnData_t ret = this->senddata(QUrl("http://www.fanny-leicht.de/static15/http.intern/sheute.pdf"), pdata);
// qDebug() << ret.text; // qDebug() << ret.text;
// Create request // Create request
QNetworkRequest request; QNetworkRequest request;
request.setUrl( QUrl( "http://www.fanny-leicht.de/static15/http.intern/sheute.pdf" ) ); request.setUrl( QUrl( "http://www.fanny-leicht.de/static15/http.intern/sheute.pdf" ) );
// Pack in credentials // Pack in credentials
QString concatenatedCredentials = username + ":" + password; QString concatenatedCredentials = username + ":" + password;
QByteArray data = concatenatedCredentials.toLocal8Bit().toBase64(); QByteArray data = concatenatedCredentials.toLocal8Bit().toBase64();
QString headerData = "Basic " + data; QString headerData = "Basic " + data;
request.setRawHeader( "Authorization", headerData.toLocal8Bit() ); request.setRawHeader( "Authorization", headerData.toLocal8Bit() );
QUrlQuery pdata; QUrlQuery pdata;
// Send request and connect all possible signals // Send request and connect all possible signals
QNetworkReply*reply = this->networkManager->post(request, pdata.toString(QUrl::FullyEncoded).toUtf8()); QNetworkReply*reply = this->networkManager->post(request, pdata.toString(QUrl::FullyEncoded).toUtf8());
//QNetworkReply*reply = networkManager->get( request ); //QNetworkReply*reply = networkManager->get( request );
QEventLoop loop; QEventLoop loop;
loop.connect(this->networkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit())); loop.connect(this->networkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit()));
loop.exec(); loop.exec();
int status_code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt(); int status_code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
if(status_code == 200){ if(status_code == 200){
this->username = username; this->username = username;
this->password = password; this->password = password;
if(permanent){ if(permanent){
qDebug() << "permanent"; qDebug() << "permanent";
pGlobalAppSettings->writeSetting("permanent", "1"); pGlobalAppSettings->writeSetting("permanent", "1");
pGlobalAppSettings->writeSetting("username", username); pGlobalAppSettings->writeSetting("username", username);
pGlobalAppSettings->writeSetting("password", password); pGlobalAppSettings->writeSetting("password", password);
}
return("OK");
}
else if(status_code == 401){
return("Ungültige Benutzerdaten.");
}
else if(status_code == 0){
return("Keine Verbindung zum Server.");
}
else {
QString ret = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toChar();
ret = ret + reply->attribute(QNetworkRequest::HttpReasonPhraseAttribute).toChar();
return(ret);
} }
return("OK");
}
else if(status_code == 401){
return("Ungültige Benutzerdaten.");
}
else if(status_code == 0){
return("Keine Verbindung zum Server.");
}
else {
QString ret = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toChar();
ret = ret + reply->attribute(QNetworkRequest::HttpReasonPhraseAttribute).toChar();
return(ret);
}
} }
int ServerConn::logout() int ServerConn::logout()
@ -84,42 +84,44 @@ QString ServerConn::getDay(QString day)
{ {
this->progress = 0; this->progress = 0;
// Create request // Create request
QNetworkRequest request; QNetworkRequest request;
request.setUrl( QUrl( "http://www.fanny-leicht.de/static15/http.intern/" + day + ".pdf" ) ); request.setUrl( QUrl( "http://www.fanny-leicht.de/static15/http.intern/" + day + ".pdf" ) );
// Pack in credentials // Pack in credentials
// Pack in credentials // Pack in credentials
QString concatenatedCredentials = this->username + ":" + this->password; QString concatenatedCredentials = this->username + ":" + this->password;
QByteArray data = concatenatedCredentials.toLocal8Bit().toBase64(); QByteArray data = concatenatedCredentials.toLocal8Bit().toBase64();
QString headerData = "Basic " + data; QString headerData = "Basic " + data;
request.setRawHeader( "Authorization", headerData.toLocal8Bit() ); request.setRawHeader( "Authorization", headerData.toLocal8Bit() );
QUrlQuery pdata; QUrlQuery pdata;
// Send request and connect all possible signals // Send request and connect all possible signals
QNetworkReply*reply = this->networkManager->post(request, pdata.toString(QUrl::FullyEncoded).toUtf8()); QNetworkReply*reply = this->networkManager->post(request, pdata.toString(QUrl::FullyEncoded).toUtf8());
//QNetworkReply*reply = networkManager->get( request ); //QNetworkReply*reply = networkManager->get( request );
connect(reply, SIGNAL(downloadProgress(qint64, qint64)), connect(reply, SIGNAL(downloadProgress(qint64, qint64)),
this, SLOT(updateProgress(qint64, qint64))); this, SLOT(updateProgress(qint64, qint64)));
QEventLoop loop; QEventLoop loop;
loop.connect(this->networkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit())); loop.connect(this->networkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit()));
loop.exec(); loop.exec();
this->progress = 1; this->progress = 1;
int status_code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt(); int status_code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
if(status_code == 200){ if(status_code == 200){
QString path = QStandardPaths::writableLocation(QStandardPaths::DownloadLocation); QString path = QStandardPaths::writableLocation(QStandardPaths::DownloadLocation);
QDir dir; QDir dir;
dir.mkdir(path + "/.fannyapp-tmp"); dir.mkdir(path + "/.fannyapp-tmp");
QFile file(path + "/.fannyapp-tmp/" + day + ".pdf"); QFile file(path + "/.fannyapp-tmp/" + day + ".pdf");
file.remove(); file.remove();
file.open(QIODevice::ReadWrite); file.open(QIODevice::ReadWrite);
file.write(reply->readAll()); file.write(reply->readAll());
file.close(); file.close();
QDesktopServices::openUrl(QUrl::fromLocalFile(path + "/.fannyapp-tmp/" + day + ".pdf")); QUrl url = QUrl::fromLocalFile(path + "/.fannyapp-tmp/" + day + ".pdf");
return("OK");
// QDesktopServices::openUrl(url);
return("OK_" + url.toString());
} }
else if(status_code == 401){ else if(status_code == 401){
return("Ungültige Benutzerdaten."); return("Ungültige Benutzerdaten.");
@ -128,37 +130,38 @@ QString ServerConn::getDay(QString day)
return("Keine Verbindung zum Server."); return("Keine Verbindung zum Server.");
} }
else { else {
QString ret = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toChar(); QString ret = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toChar();
ret = ret + " (" + reply->attribute(QNetworkRequest::HttpReasonPhraseAttribute).toChar() + ")"; ret = ret + " (" + reply->attribute(QNetworkRequest::HttpReasonPhraseAttribute).toChar() + ")";
return(ret); return(ret);
} }
} }
int ServerConn::checkConn() int ServerConn::checkConn()
{ {
// Create request // Create request
QNetworkRequest request; QNetworkRequest request;
request.setUrl( QUrl( "http://www.fanny-leicht.de/static15/http.intern/" ) ); request.setUrl( QUrl( "http://www.fanny-leicht.de/static15/http.intern/" ) );
// Pack in credentials // Pack in credentials
// Pack in credentials // Pack in credentials
//ZedlerDo:LxyJQB //ZedlerDo:LxyJQB
QString concatenatedCredentials = this->username + ":" + this->password; QString concatenatedCredentials = this->username + ":" + this->password;
QByteArray data = concatenatedCredentials.toLocal8Bit().toBase64(); QByteArray data = concatenatedCredentials.toLocal8Bit().toBase64();
QString headerData = "Basic " + data; QString headerData = "Basic " + data;
request.setRawHeader( "Authorization", headerData.toLocal8Bit() ); request.setRawHeader( "Authorization", headerData.toLocal8Bit() );
QUrlQuery pdata; QUrlQuery pdata;
// Send request and connect all possible signals // Send request and connect all possible signals
QNetworkReply*reply = this->refreshNetworkManager->post(request, pdata.toString(QUrl::FullyEncoded).toUtf8()); QNetworkReply*reply = this->refreshNetworkManager->post(request, pdata.toString(QUrl::FullyEncoded).toUtf8());
//QNetworkReply*reply = networkManager->get( request ); //QNetworkReply*reply = networkManager->get( request );
QEventLoop loop; QEventLoop loop;
loop.connect(this->refreshNetworkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit())); loop.connect(this->refreshNetworkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit()));
loop.exec(); loop.exec();
int status_code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt(); int status_code = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt();
return(status_code); return(status_code);
} }
@ -170,7 +173,7 @@ void ServerConn::updateProgress(qint64 read, qint64 total)
this->progress = percent; this->progress = percent;
percent = (int)percent; percent = (int)percent;
// qDebug() << read << total << percent << "%"; // qDebug() << read << total << percent << "%";
} }
float ServerConn::getProgress() float ServerConn::getProgress()
@ -179,13 +182,14 @@ float ServerConn::getProgress()
} }
int ServerConn::getEvents(){ int ServerConn::getEvents(){
/*
this->progress = 0; this->progress = 0;
ReturnData_t ret; //this is a custom type to store the returned data ReturnData_t ret; //this is a custom type to store the returned data
// Call the webservice // Call the webservice
QNetworkRequest request(QUrl("http://api.itsblue.de/fanny/vertretung.php?uname=ZedlerDo&passwd=LxyJQB&day=smorgen&agree=true")); QNetworkRequest request(QUrl("http://api.itsblue.de/fanny/vertretung.php?uname=ZedlerDo&passwd=LxyJQB&day=smorgen&agree=true"));
request.setHeader(QNetworkRequest::ContentTypeHeader, request.setHeader(QNetworkRequest::ContentTypeHeader,
"application/x-www-form-urlencoded"); "application/x-www-form-urlencoded");
//set ssl configuration //set ssl configuration
//send a POST request with the given url and data to the server //send a POST request with the given url and data to the server
@ -195,7 +199,7 @@ int ServerConn::getEvents(){
reply = this->networkManager->post(request, pdata.toString(QUrl::FullyEncoded).toUtf8()); reply = this->networkManager->post(request, pdata.toString(QUrl::FullyEncoded).toUtf8());
connect(reply, SIGNAL(downloadProgress(qint64, qint64)), connect(reply, SIGNAL(downloadProgress(qint64, qint64)),
this, SLOT(updateProgress(qint64, qint64))); this, SLOT(updateProgress(qint64, qint64)));
//wait until the request has finished //wait until the request has finished
QEventLoop loop; QEventLoop loop;
loop.connect(this->networkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit())); loop.connect(this->networkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit()));
@ -232,6 +236,72 @@ int ServerConn::getEvents(){
tmpEvents.takeLast(); tmpEvents.takeLast();
m_eventlist = tmpEvents; m_eventlist = tmpEvents;
qDebug() << tmpEvents; qDebug() << tmpEvents;
*/
qDebug() << "reading xml file";
QFile * xmlFile = new QFile(":/samplehtml/Download File.xml");
if (!xmlFile->open(QIODevice::ReadOnly | QIODevice::Text)) {
qDebug() << "Load XML File Problem Couldn't open xmlfile.xml to load settings for download";
return 900;
}
QXmlStreamReader * xmlReader = new QXmlStreamReader(xmlFile);
//qDebug() << xmlFile->readAll();
QList<QStringList> tmpEvents;
QStringList dayList;
int currTop = 0;
//Parse the XML until we reach end of it
while(!xmlReader->atEnd()) {
if (xmlReader->readNextStartElement()) {
if (xmlReader->name().toString() == "text"){
QXmlStreamAttributes attributes = xmlReader->attributes();
QString attribute_value;
int top;
if(attributes.hasAttribute("font")){
attribute_value = attributes.value("font").toString();
}
if(attributes.hasAttribute("top")){
top = attributes.value("top").toInt();
if(abs(top - currTop) > 3){
//next line started
if(currTop > 175){
// ignore the header
tmpEvents.append(dayList);
}
dayList.clear();
currTop = top;
}
}
QString text = xmlReader->readElementText(QXmlStreamReader::IncludeChildElements);
dayList.append(text);
qDebug() << qPrintable(xmlReader->name().toString()) << text << attribute_value << dayList;
}
}
}
tmpEvents.takeFirst();
qDebug() << tmpEvents;
this->m_eventlist = tmpEvents;
if(xmlReader->hasError()) {
qDebug() << "xmlFile.xml Parse Error" << xmlReader->errorString();
//return(500);
}
//close reader and flush file
xmlReader->clear();
xmlFile->close();
return(200); return(200);
} }
@ -243,7 +313,7 @@ int ServerConn::getFoodPlan()
QNetworkRequest request(QUrl("http://www.treffpunkt-fanny.de/fuer-schueler-und-lehrer/speiseplan.html")); QNetworkRequest request(QUrl("http://www.treffpunkt-fanny.de/fuer-schueler-und-lehrer/speiseplan.html"));
request.setHeader(QNetworkRequest::ContentTypeHeader, request.setHeader(QNetworkRequest::ContentTypeHeader,
"application/x-www-form-urlencoded"); "application/x-www-form-urlencoded");
//set ssl configuration //set ssl configuration
//send a POST request with the given url and data to the server //send a POST request with the given url and data to the server
@ -253,7 +323,7 @@ int ServerConn::getFoodPlan()
reply = this->networkManager->post(request, pdata.toString(QUrl::FullyEncoded).toUtf8()); reply = this->networkManager->post(request, pdata.toString(QUrl::FullyEncoded).toUtf8());
connect(reply, SIGNAL(downloadProgress(qint64, qint64)), connect(reply, SIGNAL(downloadProgress(qint64, qint64)),
this, SLOT(updateProgress(qint64, qint64))); this, SLOT(updateProgress(qint64, qint64)));
//wait until the request has finished //wait until the request has finished
QEventLoop loop; QEventLoop loop;
loop.connect(this->networkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit())); loop.connect(this->networkManager, SIGNAL(finished(QNetworkReply*)), SLOT(quit()));
@ -306,33 +376,33 @@ int ServerConn::getFoodPlan()
QStringList weeklist = table1list + table2list; //put both weeks into one big list QStringList weeklist = table1list + table2list; //put both weeks into one big list
for (int i = 0; i <=7; i ++){ for (int i = 0; i <=7; i ++){
QString temp = weeklist[i]; //store item temporarly to edit it QString temp = weeklist[i]; //store item temporarly to edit it
weeklist[i] = temp.left(temp.length()-5); //remove "</td>" at the and of the Item weeklist[i] = temp.left(temp.length()-5); //remove "</td>" at the and of the Item
temp = weeklist[i]; temp = weeklist[i];
//table list[i] looks now like: //table list[i] looks now like:
//<strong>Red Hot Chili Peppers</strong> //<strong>Red Hot Chili Peppers</strong>
//<br /> //<br />
//<strong>26.06.2018</strong> //<strong>26.06.2018</strong>
//<hr />Gulasch mit Kartoffeln //<hr />Gulasch mit Kartoffeln
//<hr />Pellkartoffeln mit Quark //<hr />Pellkartoffeln mit Quark
//<hr />Gemischter Salat //<hr />Gemischter Salat
//<hr />Eaton Mess ( Erdbeer-Nachtisch )</td> //<hr />Eaton Mess ( Erdbeer-Nachtisch )</td>
QStringList templist = temp.split("<strong>"); //split item at strong, to get the cookteam and the date QStringList templist = temp.split("<strong>"); //split item at strong, to get the cookteam and the date
//qDebug() << templist << "\n"; //qDebug() << templist << "\n";
temp = ""; temp = "";
for (int i = 0; i <=2; i ++){ for (int i = 0; i <=2; i ++){
temp += templist[i]; //convert the list to a big string temp += templist[i]; //convert the list to a big string
} }
temp.replace("<br />",""); temp.replace("<br />","");
templist = temp.split("</strong>"); templist = temp.split("</strong>");
temp_weekplan.append({templist[0], templist[1]}); //store cookteam and date temp_weekplan.append({templist[0], templist[1]}); //store cookteam and date
temp = templist[2]; //store information in temp (looks like: "<hr />Gulasch mit Kartoffeln<hr />Pellkartoffeln mit Quark<hr />Gemischter Salat<hr />Eaton Mess ( Erdbeer-Nachtisch )") temp = templist[2]; //store information in temp (looks like: "<hr />Gulasch mit Kartoffeln<hr />Pellkartoffeln mit Quark<hr />Gemischter Salat<hr />Eaton Mess ( Erdbeer-Nachtisch )")
templist = temp.split("<hr />"); //seperate the information templist = temp.split("<hr />"); //seperate the information
templist.takeFirst(); //remove first item templist.takeFirst(); //remove first item
temp_weekplan[i].append(templist); temp_weekplan[i].append(templist);
} }
@ -424,7 +494,7 @@ ReturnData_t ServerConn::senddata(QUrl serviceUrl, QUrlQuery pdata)
authenticator.setUser("ZedlerDo"); authenticator.setUser("ZedlerDo");
authenticator.setPassword("LxyJQB"); authenticator.setPassword("LxyJQB");
request.setHeader(QNetworkRequest::ContentTypeHeader, request.setHeader(QNetworkRequest::ContentTypeHeader,
"application/x-www-form-urlencoded"); "application/x-www-form-urlencoded");
//set ssl configuration //set ssl configuration
//send a POST request with the given url and data to the server //send a POST request with the given url and data to the server