forked from paveldedik/bc-thesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.tex
126 lines (93 loc) · 3.06 KB
/
index.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
\documentclass[11pt,oneside]{fithesis2}
\usepackage[plainpages=false, pdfpagelabels]{hyperref}
\usepackage[utf8]{inputenc}
\usepackage[english,czech]{babel}
\usepackage[T1]{fontenc}
\usepackage{url}
\usepackage{hyperref}
\usepackage{listings}
\usepackage{xcolor}
\usepackage{graphicx}
\usepackage{float}
\usepackage{pdfpages}
\usepackage{etoolbox}
\usepackage{blindtext} % TODO: remove import %
\floatstyle{plain}
\newfloat{example}{H}{lop}
\floatname{example}{Příklad}
\newfloat{demo}{H}{lop}
\floatname{demo}{Ukázka}
\lstset{
basicstyle=\small\ttfamily,
numbers=left,
numberstyle=\tiny,
stepnumber=1,
numbersep=15pt,
xleftmargin=15pt,
xrightmargin=15pt,
tabsize=3,
breaklines=true,
}
\thesistitle{Aplikace pro správu kvalifikačních prací průmyslového partnera Red~Hat}
\thesissubtitle{Bakalářská práce}
\thesisstudent{Jakub Čecháček}
\thesiswoman{false}
\thesisfaculty{fi}
\thesisyear{podzim 2013}
\thesislang{cs}
\thesisadvisor{Mgr. Jiří Kolář}
\setlength{\parindent}{0,5cm}
\newtoggle{withofficialdesc}
\togglefalse{withofficialdesc}
\input{flags}
\begin{document}
\FrontMatter
\ThesisTitlePage
\iftoggle{withofficialdesc}{\includepdf[pages={1}]{others/official-desc.pdf}}
\begin{ThesisDeclaration}
\DeclarationText
\AdvisorName
\end{ThesisDeclaration}
\begin{ThesisThanks}
Rád bych poděkoval vedoucímu práce Ing. Jiřímu Pechancovi a doktoru Marku Grácovi za poskytnuté konzultace a zpětnou vazbu. Dále bych rád poděkoval zbylým členům vývojového týmu, Pavlu a Václavovi Dedíkovým.
\end{ThesisThanks}
\begin{ThesisAbstract}
Práce se v první části zabývá architekturou a vývojem aplikací s využitím webového rámce Grails. Část druhá se zaměřuje na vývoj informačního systému pro správu závěrečných prací, popis využitých technologií a vybrané implementační detaily.
\end{ThesisAbstract}
\begin{ThesisKeyWords}
informační systém, správa diplomových prací, správa souborů, Grails, MongoDB, MVC
\end{ThesisKeyWords}
\MainMatter
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\tableofcontents
\input{chapters/introduction}
\input{chapters/chapter1}
\input{chapters/chapter2}
\input{chapters/chapter3}
\input{chapters/chapter4}
\input{chapters/chapter5}
\input{chapters/chapter6}
\input{chapters/conclusion}
\bibliographystyle{IEEEtran}
\bibliography{index}
\appendix
\chapter{Doplňující informace}
\section{Rozšíření pro práci s Mongo GridFS}
\begin{itemize}
\item MongoDB Tools
\item Mongodb Gridfs Plugin
\item MongoDB GORM
\item MongoDB GORM -- Morphia
\item MongoFile Plugin
\end{itemize}
\chapter{Diagramy}
\section{Domain Model}
\includegraphics[keepaspectratio, trim=0 100 10 30, clip, width=\textwidth]{./images/domain-model.pdf}
\chapter{Odkazy}
\section{Zdrojový kód projektu}
Repozitář se zdrojovými kódy projektu (Thesis Management System) je hostován službou GitHub:\\
\url{https://github.com/jcechace/Thesis-management-system}
\section{Adresa nasazeného systému}
\url{https://thesis-managementsystem.rhcloud.com/}
\end{document}