changeset 12:84be94f5bb7d

Revamp of the "How does it work?" slide Changed the size of the client/server layout diagram
author Josef "Jeff" Sipek <jeffpc@optonline.net>
date Mon, 12 Sep 2005 20:21:05 -0400
parents 35a431953a9d
children d40293730589
files client-server-layout.dot slideshow.tex
diffstat 2 files changed, 20 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/client-server-layout.dot	Mon Sep 12 20:19:06 2005 -0400
+++ b/client-server-layout.dot	Mon Sep 12 20:21:05 2005 -0400
@@ -1,8 +1,8 @@
 digraph G {
-	size ="4,4";
-	repository [shape=record,label="Repository | {data store | interface}"];
+	size ="2,2";
+	repository [shape=Mrecord,label="Repository | {data store | interface}"];
 	network [shape=ellipse];
-	user [shape=record,label="Client | {interface | user}"];
+	user [shape=Mrecord,label="Client | {interface | user}"];
 
 	repository -> network;
 	network -> user;
--- a/slideshow.tex	Mon Sep 12 20:19:06 2005 -0400
+++ b/slideshow.tex	Mon Sep 12 20:21:05 2005 -0400
@@ -6,6 +6,7 @@
 \subtitle{Everything you would ever want to know}
 \author{Josef ``Jeff'' Sipek}
 \institution{}
+\slideCaption{Version Control Systems}
 
 % TODO:
 %  - pros for centralized/distributed scm
@@ -33,14 +34,23 @@
 \end{slide}}
 
 % How does it work? - typical workflow
-\overlays{1}{
+\overlays{4}{
 \begin{slide}{How does it work?}
-	\begin{itemstep}
-		\item Repository % You have a repository, it stores all the data and metadata
-		\item Check out the source % the repository contains the history and should not be touched directly
-		\item Edit % edit to your heart's content
-		\item Commit % commit - or save - the changes to the repository; creating the revision history (timestamp, comment)
-	\end{itemstep}
+	\begin{tabular}{rc}
+		\begin{minipage}{4cm}
+			\begin{center}
+				\includegraphics{client-server-layout.ps}
+			\end{center}
+		\end{minipage} &
+		\begin{minipage}{6cm}
+			\begin{itemstep}
+				\item Repository % You have a repository, it stores all the data and metadata
+				\item Check out the source % the repository contains the history and should not be touched directly
+				\item Edit % edit to your heart's content
+				\item Commit % commit - or save - the changes to the repository; creating the revision history (timestamp, comment)
+			\end{itemstep}
+		\end{minipage}
+	\end{tabular}
 \end{slide}}
 
 \overlays{4}{