From 9a05b36ca8eea3c243e04cadcbcb943d282f4ad5 Mon Sep 17 00:00:00 2001 From: Andreas Zweili Date: Sat, 22 Dec 2018 13:52:54 +0100 Subject: [PATCH] move the hello world script out of the documentation --- {projekthandbuch => raw_files}/hello_world/hello_world.py | 2 +- {projekthandbuch => raw_files}/hello_world/requirements.txt | 0 {projekthandbuch => raw_files}/hello_world/run.sh | 0 {projekthandbuch => raw_files}/hello_world/setup.sh | 0 4 files changed, 1 insertion(+), 1 deletion(-) rename {projekthandbuch => raw_files}/hello_world/hello_world.py (91%) rename {projekthandbuch => raw_files}/hello_world/requirements.txt (100%) rename {projekthandbuch => raw_files}/hello_world/run.sh (100%) rename {projekthandbuch => raw_files}/hello_world/setup.sh (100%) diff --git a/projekthandbuch/hello_world/hello_world.py b/raw_files/hello_world/hello_world.py similarity index 91% rename from projekthandbuch/hello_world/hello_world.py rename to raw_files/hello_world/hello_world.py index 395ecb7..b273b3f 100644 --- a/projekthandbuch/hello_world/hello_world.py +++ b/raw_files/hello_world/hello_world.py @@ -17,7 +17,7 @@ class HelloWindow(QMainWindow): gridLayout = QGridLayout(self) widget.setLayout(gridLayout) - text = QLabel("Hello World für die IBZ Diplomarbeit", self) + text = QLabel("Hello World \n für die IBZ Diplomarbeit", self) text.setFont(QtGui.QFont('SansSerif', 20)) text.setAlignment(QtCore.Qt.AlignCenter) gridLayout.addWidget(text, 0, 0) diff --git a/projekthandbuch/hello_world/requirements.txt b/raw_files/hello_world/requirements.txt similarity index 100% rename from projekthandbuch/hello_world/requirements.txt rename to raw_files/hello_world/requirements.txt diff --git a/projekthandbuch/hello_world/run.sh b/raw_files/hello_world/run.sh similarity index 100% rename from projekthandbuch/hello_world/run.sh rename to raw_files/hello_world/run.sh diff --git a/projekthandbuch/hello_world/setup.sh b/raw_files/hello_world/setup.sh similarity index 100% rename from projekthandbuch/hello_world/setup.sh rename to raw_files/hello_world/setup.sh