From 5cfb3a772d749fa4f75029b374afc28c138ae395 Mon Sep 17 00:00:00 2001 From: Siddharth Ravikumar Date: Tue, 1 Mar 2016 20:35:32 -0500 Subject: Moved things around. Sections that are not chapters are now moved under prologue/ --- report/combox-report.pdf | Bin 468420 -> 468444 bytes report/combox.tex | 50 +++++++---------------------------------- report/prologue/abbrev.tex | 8 +++++++ report/prologue/abstract.tex | 21 +++++++++++++++++ report/prologue/ack.tex | 4 ++++ report/prologue/dedication.tex | 4 ++++ report/prologue/preface.tex | 3 +++ 7 files changed, 48 insertions(+), 42 deletions(-) create mode 100644 report/prologue/abbrev.tex create mode 100644 report/prologue/abstract.tex create mode 100644 report/prologue/ack.tex create mode 100644 report/prologue/dedication.tex create mode 100644 report/prologue/preface.tex diff --git a/report/combox-report.pdf b/report/combox-report.pdf index c1b08bb..3d485b1 100644 Binary files a/report/combox-report.pdf and b/report/combox-report.pdf differ diff --git a/report/combox.tex b/report/combox.tex index d6e4627..99a686a 100644 --- a/report/combox.tex +++ b/report/combox.tex @@ -185,28 +185,6 @@ % | See section 3.8 of "Read_Me_First_(v12).pdf" | % +----------------------------------------------------------+ -\begin{abstractpage} - File storage providers on the Internet have made it non-trivial for - individuals to store personal files on the file storage provider's - computers. After Mr. Snowden disclosed information about the - National Security Agency' (NSA) surveillance programs that allowed - the NSA to access information stored on file storage provider' - computers, online file storage became a non-solution for storing - personal files for everyone who detested the possibility of somebody - else being able to access their personal files. In the past, there - have been separate efforts to come with a solution to allow - individuals to use storage space provided by file storage providers - in a way that it made it impossible for file storage providers and - to access the files. combox is one such effort. It allows an - individual to store personal files in the ``combox directory'' on - all her computers (running GNU/Linux or OS X) and the combox program - takes the files, splits and encrypts them and spreads them across - file storage providers' directories. Therefore, when an individual - uses storage space provided by file storage providers through - combox, each file storage provider gets only a part of the file in - an encrypted form. -\end{abstractpage} - %--------+----------------------------------------------------------+ % | Dedication Page Environment (OPTIONAL) | % | | @@ -217,10 +195,8 @@ % | proceed the acknowledgements page. | % +----------------------------------------------------------+ -\begin{dedication} - \noindent Dedicated to the - \verb+$EDITOR+ I use to literally write everything. -\end{dedication} +% abstract +\include{prologue/abstract} %--------+----------------------------------------------------------+ % | Acknowledgments Page Environment (OPTIONAL) | @@ -231,11 +207,8 @@ % | are included in the document, the dedication page must | % | proceed the acknowledgements page. | % +----------------------------------------------------------+ - -\begin{acknowledgments} - \noindent Dr.~Robert C. Green II who gave me an opportunity to work - on combox. -\end{acknowledgments} +% dedication +\include{prologue/dedication} %--------+----------------------------------------------------------+ % | \tableofcontents (REQUIRED) | @@ -252,6 +225,8 @@ % | commands is "conditional." See sections 3.12 of | % | "Read_Me_First_(v12).pdf" for additional details. | % +----------------------------------------------------------+ +% acknowledgments +\include{prologue/ack} \tableofcontents %-----> -----> ----> DO NOT ALTER THIS COMMAND \listoftables \listoffigures @@ -293,14 +268,7 @@ % | abbreviation. | % +----------------------------------------------------------+ -\begin{listofabbreviations} - - \abbreviation{YAML}{YAML Ain't Markup Language} - \abbreviation{CLI}{Command Line Interface} - \abbreviation{GUI}{Graphical User Interface} - \abbreviation{JSON}{JavaScript Object Notation} - -\end{listofabbreviations} +\include{prologue/abbrev} %--------+----------------------------------------------------------+ @@ -309,14 +277,12 @@ % | See section 3.15 of "Read_Me_First_(v12).pdf" | % +----------------------------------------------------------+ -\begin{preface} -42. -\end{preface} %XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX %XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX %XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX %XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX +\include{prologue/preface} %--------+----------------------------------------------------------+ % | \makebody (REQUIRED) | diff --git a/report/prologue/abbrev.tex b/report/prologue/abbrev.tex new file mode 100644 index 0000000..1a0aba5 --- /dev/null +++ b/report/prologue/abbrev.tex @@ -0,0 +1,8 @@ +\begin{listofabbreviations} + + \abbreviation{YAML}{YAML Ain't Markup Language} + \abbreviation{CLI}{Command Line Interface} + \abbreviation{GUI}{Graphical User Interface} + \abbreviation{JSON}{JavaScript Object Notation} + +\end{listofabbreviations} diff --git a/report/prologue/abstract.tex b/report/prologue/abstract.tex new file mode 100644 index 0000000..e7af751 --- /dev/null +++ b/report/prologue/abstract.tex @@ -0,0 +1,21 @@ +\begin{abstractpage} + File storage providers on the Internet have made it non-trivial for + individuals to store personal files on the file storage provider's + computers. After Mr. Snowden disclosed information about the + National Security Agency' (NSA) surveillance programs that allowed + the NSA to access information stored on file storage provider' + computers, online file storage became a non-solution for storing + personal files for everyone who detested the possibility of somebody + else being able to access their personal files. In the past, there + have been separate efforts to come with a solution to allow + individuals to use storage space provided by file storage providers + in a way that it made it impossible for file storage providers and + to access the files. combox is one such effort. It allows an + individual to store personal files in the ``combox directory'' on + all her computers (running GNU/Linux or OS X) and the combox program + takes the files, splits and encrypts them and spreads them across + file storage providers' directories. Therefore, when an individual + uses storage space provided by file storage providers through + combox, each file storage provider gets only a part of the file in + an encrypted form. +\end{abstractpage} diff --git a/report/prologue/ack.tex b/report/prologue/ack.tex new file mode 100644 index 0000000..e9a453a --- /dev/null +++ b/report/prologue/ack.tex @@ -0,0 +1,4 @@ +\begin{acknowledgments} + \noindent Dr.~Robert C. Green II who gave me an opportunity to work + on combox. +\end{acknowledgments} \ No newline at end of file diff --git a/report/prologue/dedication.tex b/report/prologue/dedication.tex new file mode 100644 index 0000000..372bee5 --- /dev/null +++ b/report/prologue/dedication.tex @@ -0,0 +1,4 @@ +\begin{dedication} + \noindent Dedicated to the + \verb+$EDITOR+ I use to literally write everything. +\end{dedication} \ No newline at end of file diff --git a/report/prologue/preface.tex b/report/prologue/preface.tex new file mode 100644 index 0000000..e4bda23 --- /dev/null +++ b/report/prologue/preface.tex @@ -0,0 +1,3 @@ +\begin{preface} +42. +\end{preface} \ No newline at end of file -- cgit v1.2.3