-
Notifications
You must be signed in to change notification settings - Fork 26
/
history.dot
38 lines (34 loc) · 1.85 KB
/
history.dot
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
// dot file for generating graphs using a tool like graphviz
//
// 2005-01-03 History of the ucscthesis.cls (3.2-ucsc)
// 2006-03-02 Fixed history, added the latest iteration (3.2-ucsc-1)
// 2006-05-04 Fixed history, added the latest iteration (3.2-ucsc-2), added page size
// 2014-05-23 Added new node for Git repo version (3.2-ucsc-3)
//
digraph "ucscthesis.cls"
{
size="4.0,6.0";
// UC (Berkeley, semesters)
ucthesis30 [label="ucthesis.cls\nversion=3.0\ndate=31 October 1994"];
ucthesis31 [label="ucthesis.cls\nversion=3.1\ndate=14 July 2001"];
ucthesis32 [label="ucthesis.cls\nversion=3.2\ndate=19 December 2004"];
ucthesis33 [label="ucthesis.cls\nversion=3.3\ndate=Future"];
// UCSC (Santa Cruz, quarters, wider margins)
ucscthesis30 [label="ucscthesis.cls\nversion=3.0\ndate=31 October 1994\nportedby=Blaise B. Fredrick (LBL)\nhackedby=Michael A. Gross (UCSC)"];
ucscthesis32 [label="ucscthesis.cls\nversion=3.2-ucsc\ndate=03 January 2005\nportedby=Lawrence L. You (UCSC)"];
ucscthesis321 [label="ucscthesis.cls\nversion=3.2-ucsc-1\ndate=02 March 2006\nportedby=Lawrence L. You (UCSC)"];
// Restored copyright notice to conform with Grad Div guidelines
ucscthesis322 [label="ucscthesis.cls\nversion=3.2-ucsc-2\ndate=04 May 2006\nportedby=Lawrence L. You (UCSC)"];
ucscthesis323 [label="ucscthesis.cls\nversion=3.2-ucsc-3\ndate=23 May 2014\nportedby=Lawrence L. You (UCSC)\nhackedby=Adam M. Novak (UCSC)"];
ucscthesis324 [label="ucscthesis.cls\nversion=3.2-ucsc-4\ndate=29 March 2017\nhackedby=Zhongpeng Lin (UCSC), Adam M. Novak (UCSC)"];
ucthesis30 -> ucscthesis30;
ucthesis30 -> ucthesis31;
ucthesis31 -> ucthesis32;
ucscthesis30 -> ucscthesis32;
ucthesis32 -> ucscthesis32;
ucthesis32 -> ucthesis33;
ucscthesis32 -> ucscthesis321;
ucscthesis321 -> ucscthesis322;
ucscthesis322 -> ucscthesis323;
ucscthesis323 -> ucscthesis324;
}