Skip to content

Commit d10ba0e

Browse files
committed
Doc dir restructuring.
1 parent dac8db4 commit d10ba0e

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

docs/Perl_Journal_Article.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ <h3>Using Spreadsheet::WriteExcel</h3>
105105
</pre>
106106

107107
<p><FONT face="verdana" size="-2"><B>Figure 1:</B> Example file Written with Spreadsheet::WriteExcel</FONT><BR>
108-
<IMG src="tpj0503-0004-01.gif" width="372" height="234" border="0"></P>
108+
<IMG src="tpj_images/tpj0503-0004-01.gif" width="372" height="234" border="0"></P>
109109

110110
<p>What is happening here is that we are using the Spreadsheet::WriteExcel module to create a variable that acts like an Excel workbook. We add a single worksheet to this workbook and then write some text and numbers. Figure 1 shows how the resulting file looks when opened in Excel.</p>
111111

@@ -178,7 +178,7 @@ <h3>Using Spreadsheet::WriteExcel</h3>
178178
<p>The output from this program is shown in Figure 2.</p>
179179

180180
<p><FONT face="verdana" size="-2"><B>Figure 2:</B> A multiple worksheet example</FONT><BR>
181-
<IMG src="tpj0503-0004-02.gif" width="438" height="252" border="0"></P>
181+
<IMG src="tpj_images/tpj0503-0004-02.gif" width="438" height="252" border="0"></P>
182182

183183
<p>You can also create a new Excel file using the special Perl filehandle -, which redirects the output to STDOUT. This is useful for CGI programs generating data with a content-type of <tt>application/vnd.ms-excel</tt>.</p>
184184

@@ -265,7 +265,7 @@ <h3>The Excel Binary Interchange File Format</h3>
265265

266266

267267
<p><FONT face="verdana" size="-2"><B>Figure 3:</B> The compound File system used to store Excel data.</FONT><BR>
268-
<IMG src="tpj0503-0004-03.gif" width="210" height="173" border="0"></P>
268+
<IMG src="tpj_images/tpj0503-0004-03.gif" width="210" height="173" border="0"></P>
269269

270270
<p>One effect of the file system structure is that the BIFF data within the Compound Files is often fragmented, and the files occasionally contain lost blocks of data. The location of the data within a Compound File is controlled by a file allocation table (FAT).</p>
271271

@@ -368,7 +368,7 @@ <h3>The Structure of the Module</h3>
368368
<p>The interaction of these packages is shown as low-tech UML in Figure 4. Only the documented public methods are included.</p>
369369

370370
<p><FONT face="verdana" size="-2"><B>Figure 4:</B> The structure of the Spreadsheet::WriteExcel module.</FONT><BR>
371-
<IMG src="tpj0503-0004-04.gif" width="488" height="442" border="0"></P>
371+
<IMG src="tpj_images/tpj0503-0004-04.gif" width="488" height="442" border="0"></P>
372372

373373
<p>The relationships can be described as follows: WriteExcel is a Workbook. Workbook is a container for Worksheets, and it uses the OLEwriter class. Workbook and Worksheet are both derived from the abstract base class BIFFwriter.</p>
374374

@@ -447,7 +447,7 @@ <h3>Win32::OLE</h3>
447447
</pre>
448448

449449
<p><FONT face="verdana" size="-2"><B>Figure 5:</B> An example file written with Win32::OLE and Excel.</FONT><BR>
450-
<IMG src="tpj0503-0004-05.gif" width="427" height="242" border="0"></P>
450+
<IMG src="tpj_images/tpj0503-0004-05.gif" width="427" height="242" border="0"></P>
451451

452452
<p>The result is shown in Figure 5. Without the formatting code, this program produces an Excel file which is almost identical to the one shown in Figure 1.</p>
453453

docs/number_formats1.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2498,8 +2498,6 @@
24982498

24992499
</div>
25002500
<br>
2501-
This table was produced from the example Excel file available at <A
2502-
HREF="http://support.microsoft.com/support/Excel/Content/Formats/default.asp">http://support.microsoft.com/support/Excel/Content/Formats/default.asp</A>
25032501

25042502
<!----------------------------->
25052503
<!--END OF OUTPUT FROM EXCEL PUBLISH AS WEB PAGE WIZARD-->

docs/number_formats2.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -944,8 +944,6 @@
944944

945945
</div>
946946
<br>
947-
This table was produced from the example Excel file available at <A
948-
HREF="http://support.microsoft.com/support/Excel/Content/Formats/default.asp">http://support.microsoft.com/support/Excel/Content/Formats/default.asp</A>
949947
<!----------------------------->
950948
<!--END OF OUTPUT FROM EXCEL PUBLISH AS WEB PAGE WIZARD-->
951949
<!----------------------------->

0 commit comments

Comments
 (0)