Hi Tom,
On Thu, 23 Jan 2003, Tom Wickline wrote: [...]
Index: documentation/packaging.sgml
RCS file: /opt/cvs-commit/wine/documentation/packaging.sgml,v retrieving revision 1.12 diff -u -r1.12 packaging.sgml --- documentation/packaging.sgml 24 Jan 2003 00:49:05 -0000 1.12 +++ documentation/packaging.sgml 24 Jan 2003 04:24:53 -0000 @@ -1512,6 +1512,8 @@ ;"ShowDotFiles" = "1" "ShellLinker" = "wineshelllink"
+# <wineconf>
Hmmm, anything of the form <xxx> is a tag sgml so the above will not work very well. You should use:
# <wineconf>
I noticed another problem. This section is in a simple <para> tag. That means that linefeeds are not significant and everything can be bunched together. I think what's needed is to replace the <para> tags with <screen> tags.
With these two changes it should work great.
Francois Gouget wrote:
Hmmm, anything of the form <xxx> is a tag sgml so the above will not work very well. You should use:
# <wineconf>
Yea I see where it could cause problems now ..
I noticed another problem. This section is in a simple <para> tag. That means that linefeeds are not significant and everything can be bunched together. I think what's needed is to replace the <para> tags with <screen> tags.
What about <programlisting> ? I'm still learning sgml. Im doing all this by hand in a simple text editor :)
With these two changes it should work great.
Thanks for the help!
Tom