Skip to content

Commit 2b41fb4

Browse files
committed
Fix the figure references in the rest of the chapters.
1 parent f26bc11 commit 2b41fb4

36 files changed

+8431
-4714
lines changed

book/12-network.mkd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ First the program makes a connection to port 80 on the server
8383
of the "web browser", the HTTP protocol says we must send the GET
8484
command followed by a blank line.
8585

86-
![image](figs2/socket)
86+
![A Socket Connection](height=2.0in@../images/socket)
8787

8888
Once we send that blank line, we write a loop that receives data in
8989
512-character chunks from the socket and prints the data out until there

book/13-web.mkd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Often it is helpful to think of an XML document as a tree structure
3333
where there is a top tag `person` and other tags such as
3434
`phone` are drawn as *children* of their parent nodes.
3535

36-
![A Tree Representation of XML](height=2.0in@figs2/xml-tree)
36+
![A Tree Representation of XML](height=2.0in@../images/xml-tree)
3737

3838
Parsing XML
3939
-----------
@@ -268,7 +268,7 @@ make the reservation. And when it comes time to charge your credit card
268268
for the whole transaction, still other computers become involved in the
269269
process.
270270

271-
![Service Oriented Architecture](height=3.0in@figs2/soa)
271+
![Service Oriented Architecture](height=3.0in@../images/soa)
272272

273273
A Service-Oriented Architecture has many advantages including: (1) we
274274
always maintain only one copy of data (this is particularly important

book/14-database.mkd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ multiple sheets. The primary data structures in a database are:
4444
*tables*, *rows*, and
4545
*columns*.
4646

47-
![Relational Databases](height=2.0in@figs2/relational)
47+
![Relational Databases](height=2.0in@../images/relational)
4848

4949
In technical descriptions of relational databases the concepts of table,
5050
row, and column are more formally referred to as
@@ -124,7 +124,7 @@ perform operations on the data stored in the database. Calling
124124
`cursor()` is very similar conceptually to calling
125125
`open()` when dealing with text files.
126126

127-
![A Database Cursor](height=2.0in@figs2/cursor)
127+
![A Database Cursor](height=2.0in@../images/cursor)
128128

129129
Once we have the cursor, we can begin to execute commands on the
130130
contents of the database using the `execute()` method.
@@ -176,7 +176,7 @@ First we `INSERT` two rows into our table and use
176176
`commit()` to force the data to be written to the database
177177
file.
178178

179-
![Rows in a Table](height=1.5in@figs2/tracks)
179+
![Rows in a Table](height=1.5in@../images/tracks)
180180

181181
Then we use the `SELECT` command to retrieve the rows we just
182182
inserted from the table. On the `SELECT` command, we indicate

book/figs2/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
These are the old figures - they are being redone in OmniGraffle and
22
stored in ../../figures - then expported as SVG and EPS into ../../images
3+
4+
I will leave the two twitter specfic figures as is in case I have
5+
to rewrite the whole section.
6+

book/figs2/cursor.eps

Lines changed: 0 additions & 664 deletions
This file was deleted.

book/figs2/cursor.svg

Lines changed: 0 additions & 231 deletions
This file was deleted.

0 commit comments

Comments
 (0)