473,484 Members | 1,613 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Amaya Make Book sample or example?

<< Hmmm ... I first posted this to alt.html, but then noticed the
pointer that this is the preferred location! >>

This sounds like a really basic question, but I'm an experienced
webmaster, and I can't get "Make Book" on AmayaWX 9.1 to work. No
messages, nothing seems to happen.

Is there a sample or example somewhere that I can copy?

For reference, I'm copy-and-pasting the code that I created from
scratch.

<!-- begin copy-and-paste

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<title>Dissertation makebook</title>
<meta name="generator" content="amaya 9.1, see
http://www.w3.org/Amaya/" />
<link rel="chapter" href="MapTerr_01.html" />
<link rel="chapter" href="MapTerr_02.html" />
<link rel="chapter" href="MapTerr_03.html" />
<link rel="chapter" href="MapTerr_04.html" />
</head>

<body>
<h1>Dissertation makebook</h1>
<p>I believe that there is supposed to be an introduction</p>
<ul>
<li><a href="MapTerr_01.html">MapTerr_01.html</a></li>
<li><a href="MapTerr_02.html">MapTerr_02.html</a></li>
<li><a href="MapTerr_03.html">MapTerr_03.html</a></li>
<li><a href="MapTerr_04.html">MapTerr_04.html</a></li>
</ul>
</body>
</html>

end copy-and-paste -->

Jul 23 '05 #1
3 1868
me
<di*******@netscape.net> wrote in message
news:11*********************@z14g2000cwz.googlegro ups.com...
<< Hmmm ... I first posted this to alt.html, but then noticed the
pointer that this is the preferred location! >>

This sounds like a really basic question, but I'm an experienced
webmaster, and I can't get "Make Book" on AmayaWX 9.1 to work. No
messages, nothing seems to happen.

Is there a sample or example somewhere that I can copy?

For reference, I'm copy-and-pasting the code that I created from
scratch.

<!-- begin copy-and-paste

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<title>Dissertation makebook</title>
<meta name="generator" content="amaya 9.1, see
http://www.w3.org/Amaya/" />
<link rel="chapter" href="MapTerr_01.html" />
<link rel="chapter" href="MapTerr_02.html" />
<link rel="chapter" href="MapTerr_03.html" />
<link rel="chapter" href="MapTerr_04.html" />
</head>

<body>
<h1>Dissertation makebook</h1>
<p>I believe that there is supposed to be an introduction</p>
<ul>
<li><a href="MapTerr_01.html">MapTerr_01.html</a></li>
<li><a href="MapTerr_02.html">MapTerr_02.html</a></li>
<li><a href="MapTerr_03.html">MapTerr_03.html</a></li>
<li><a href="MapTerr_04.html">MapTerr_04.html</a></li>
</ul>
</body>
</html>

end copy-and-paste -->


I am unfamiliar with that app and I'm unsure about the correctness of
putting links in the head of a document but those links are missing the
closing tag: </a>
IIRC relative links must point to files that are in the same
directory/folder but again I have no idea how that app works and IMO the w3c
site is typically cryptic.
Good Luck,
me
Jul 23 '05 #2
me
"me" <anonymous@_.com> wrote in message
news:11*************@corp.supernews.com...
<di*******@netscape.net> wrote in message
news:11*********************@z14g2000cwz.googlegro ups.com...
<< Hmmm ... I first posted this to alt.html, but then noticed the
pointer that this is the preferred location! >>

This sounds like a really basic question, but I'm an experienced
webmaster, and I can't get "Make Book" on AmayaWX 9.1 to work. No
messages, nothing seems to happen.

Is there a sample or example somewhere that I can copy?

For reference, I'm copy-and-pasting the code that I created from
scratch.

<!-- begin copy-and-paste

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<title>Dissertation makebook</title>
<meta name="generator" content="amaya 9.1, see
http://www.w3.org/Amaya/" />
<link rel="chapter" href="MapTerr_01.html" />
<link rel="chapter" href="MapTerr_02.html" />
<link rel="chapter" href="MapTerr_03.html" />
<link rel="chapter" href="MapTerr_04.html" />
</head>

<body>
<h1>Dissertation makebook</h1>
<p>I believe that there is supposed to be an introduction</p>
<ul>
<li><a href="MapTerr_01.html">MapTerr_01.html</a></li>
<li><a href="MapTerr_02.html">MapTerr_02.html</a></li>
<li><a href="MapTerr_03.html">MapTerr_03.html</a></li>
<li><a href="MapTerr_04.html">MapTerr_04.html</a></li>
</ul>
</body>
</html>

end copy-and-paste -->
I am unfamiliar with that app and I'm unsure about the correctness of
putting links in the head of a document but those links are missing the
closing tag: </a>
IIRC relative links must point to files that are in the same
directory/folder but again I have no idea how that app works and IMO the

w3c site is typically cryptic.
Good Luck,
me


My mistake, links are allowed in the head.
Signed,
me
Jul 23 '05 #3
me wrote:
"me" <anonymous@_.com> wrote in message
news:11*************@corp.supernews.com...
I am unfamiliar with that app and I'm unsure about the correctness of
putting links in the head of a document but those links are missing the
closing tag: </a>
[snip]
My mistake, links are allowed in the head.


Besides which, there's no reason why a LINK tag would have a closing
</a>. And in XHMTL <tagname ... /> alone replaces <tagname ...></tagname>.
Jul 23 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
4182
by: David Thompson | last post by:
Looking for a book to help me develop a philosophy for building databases (particularly on MySQL). And then taking them from concept to construction. Something like.... Start by asking which...
3
3195
by: David Ing | last post by:
After 10 days, there haven't been any responses on my Amaya question. (The responses were more about the XHTML script than the particular question about "make book"). I'm beginning to wonder if...
5
217
by: John Smith Jr. | last post by:
Best ASP.NET C# book? I was thinking about O'Reilly Programming C# 2nd Edition.
11
2241
by: Alan Silver | last post by:
Hello, I am a seasoned Classic ASP programmer who is interested in learning ASP.NET. I bought a book (Que's Special Edition Using ASP.NET) which is complete rubbish, and would like a...
6
1791
by: Dennis D. | last post by:
Having problems converting Murach's Beginning Visual Basic.net (Prince) and Microsoft Press' Programming Visual Basic.net (Balena) examples for use in VB.net 2005 Express. The VS conversion wizard...
11
1906
by: www.douglassdavis.com | last post by:
I'm looking for advice here, and I would really appreciate it if you could help. Is there a VB 2005 book that you like and would recommend (and why)? Would you consider it good for...
11
3708
by: CellDivider | last post by:
Hello folks, currently I'm looking for a good books that gives an overview of useful c/c++ algorithms and design patterns, in the manner of "what's the most efficient way to implement <often...
7
2443
by: simonZ | last post by:
I would like to buy a book with some windows application example in C# net , but all books I have found are only about theory. I would like to have a book, where is explained how to create...
263
9049
by: Malcolm McLean | last post by:
The webpages for my new book are now up and running. The book, Basic Algorithms, describes many of the fundamental algorithms used in practical programming, with a bias towards graphics. It...
0
7082
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7105
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7144
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6813
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7214
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
4529
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3046
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3041
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
592
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.