Author: lou
Date: 2007-10-18 06:32:17 -0700 (Thu, 18 Oct 2007)
New Revision: 6900
Modified:
openlaszlo/trunk/docs/src/developers/classes-introductory.dbk
openlaszlo/trunk/docs/src/developers/data-structures.dbk
openlaszlo/trunk/docs/src/developers/databinding.dbk
openlaszlo/trunk/docs/src/developers/designers.dbk
openlaszlo/trunk/docs/src/developers/program-development.dbk
openlaszlo/trunk/docs/src/developers/rpc-javarpc.dbk
openlaszlo/trunk/docs/src/developers/rpc-soap.dbk
openlaszlo/trunk/docs/src/developers/rpc-xmlrpc.dbk
openlaszlo/trunk/docs/src/developers/rpc.dbk
Log:
Change 20071018-lou-q by [EMAIL PROTECTED] on 2007-10-18 09:17:08 AST
in /Users/lou/src/svn/openlaszlo/trunk
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: dguide broken links: links containing /guide
Bugs Fixed: LPP-4923
Technical Reviewer: (pending)
QA Reviewer: (pending)
Doc Reviewer: John Sundman
Documentation: a couple of these links were fixed by fixing the link path, that
is, replacing
/guide with /developers. These were implemented as ulinks. In most cases,
however, xref was
a better choice, so I changed to that.
Modified: openlaszlo/trunk/docs/src/developers/classes-introductory.dbk
===================================================================
--- openlaszlo/trunk/docs/src/developers/classes-introductory.dbk
2007-10-18 13:21:30 UTC (rev 6899)
+++ openlaszlo/trunk/docs/src/developers/classes-introductory.dbk
2007-10-18 13:32:17 UTC (rev 6900)
@@ -17,10 +17,9 @@
Classes are at the heart of LZX programming. Depending on your background, you
may consult any of several
discussions in the OpenLaszlo documentation to learn how to use classes
effectively in your applications.
</para>
-
+<!-- change link for classes-tutorial per LPP-4923, IORIO 17 oct 2007 -->
<para>To get a feel for how to use classes in OpenLaszlo applications, you
-may want to start with the <ulink url="../guide/classes-tutorial.html"
type="laszlo-dguide">Class
-tutorial</ulink>. That's the best place to start learning, especially if
+may want to start with the tutorial: <xref linkend="classes-tutorial" /> .
That's the best place to start learning, especially if
you've never done any <glossterm>object oriented</glossterm> ("OO")
programming.</para>
Modified: openlaszlo/trunk/docs/src/developers/data-structures.dbk
===================================================================
--- openlaszlo/trunk/docs/src/developers/data-structures.dbk 2007-10-18
13:21:30 UTC (rev 6899)
+++ openlaszlo/trunk/docs/src/developers/data-structures.dbk 2007-10-18
13:32:17 UTC (rev 6900)
@@ -2,7 +2,7 @@
<title>Data, XML, and XPath</title>
-
+<!-- change link for language-preliminaries per LPP-4923, IORIO 17 oct 2007 -->
<para>
The term <indexterm
significance="preferred"><primary>data</primary></indexterm><glossterm>data</glossterm>
refers to numbers, characters, or text
in a form that can be displayed or manipulated by
@@ -19,7 +19,7 @@
<itemizedlist spacing="compact"><listitem><para>embedding data directly into
an application</para></listitem><listitem><para>receiving data from or sending
data to a remote data source at
runtime</para></listitem><listitem><para>receiving data from or sending data to
a web service</para></listitem><listitem><para>creating and manipulating data
at runtime </para></listitem><listitem><para><emphasis
role="i">binding</emphasis> data to the user-interface declaratively as well as
with script</para></listitem></itemizedlist>
<para>
-For a gentle introduction to databinding and manipulation in OpenLaszlo
applications, you may start with the <ulink url="../guide/data-tutorial.html"
type="laszlo-dguide">tutorials</ulink>
+For a gentle introduction to databinding and manipulation in OpenLaszlo
applications, you may start with the tutorial: <xref linkend="data-tutorial" />.
</para>
<para/></section><section><title>What is XML?</title>
@@ -144,7 +144,11 @@
contentType="text/xml; charset=UTF-8" %><?xml version='1.0'
encoding='UTF-8'
standalone='yes' ?><%@ page import="java.util.*,org.jdom.output.*"%>
</programlisting>
-<para/></section></section><section><title>XPath</title>
+<para/></section></section>
+<section id="xpath">
+<title>XPath</title>
+<!-- add titleabbrev to use as target text per LPP-4923, IORIO 17 oct 2007 -->
+<titleabbrev id="xpathshort">XPath</titleabbrev>
<para>
LZX data access and binding makes heavy use of the W3C <ulink
url="http://www.w3.org/TR/xpath">XPath</ulink> standard
Modified: openlaszlo/trunk/docs/src/developers/databinding.dbk
===================================================================
--- openlaszlo/trunk/docs/src/developers/databinding.dbk 2007-10-18
13:21:30 UTC (rev 6899)
+++ openlaszlo/trunk/docs/src/developers/databinding.dbk 2007-10-18
13:32:17 UTC (rev 6900)
@@ -1,10 +1,11 @@
<chapter id="databinding">
<title>Data Access and Binding</title>
+<!-- change link for data-tutorial per LPP-4923, IORIO 17 oct 2007 -->
<para>This chapter describes various methods of tying XML data structures into
your LZX application. See
<xref linkend="data-structures"/> for discussion of some of the concepts used
in this chapter.
For a gentle introduction to databinding and manipulation in OpenLaszlo
applications, you may start
- with the <ulink url="../guide/data-tutorial.html"
type="laszlo-dguide">tutorials</ulink>.
+ with the tutorial: <xref linkend="data-tutorial" />
</para>
<para/><section><title>Preview of databinding</title>
<para>By "databinding" we mean the automatic association of a value in an XML
data structure with an element in the LZX view hierarchy of the application.
This chapter explores various aspects of databinding and manipulation in
OpenLaszlo applications. Before going into specific details, we'll start with a
conceptual overview of how data is represented in LZX applications, and the
APIs for manipulating it.</para>
Modified: openlaszlo/trunk/docs/src/developers/designers.dbk
===================================================================
--- openlaszlo/trunk/docs/src/developers/designers.dbk 2007-10-18 13:21:30 UTC
(rev 6899)
+++ openlaszlo/trunk/docs/src/developers/designers.dbk 2007-10-18 13:32:17 UTC
(rev 6900)
@@ -10,7 +10,7 @@
We'll discuss OpenLaszlo's ability to support designers and engineers in
building innovative Internet applications.
</para>
<para/><section><title>Leaning to Think Laszlorificly</title>
-<!-- change link for tutorials per LPP-4923, IORIO 17 oct 2007 -->
+<!-- change link for tutorials per LPP-4923, IORIO 18 oct 2007 -->
<para>
With OpenLaszlo technology, web application designers are freed from the
familiar limitations of static, linear, page-based task flow.
Your visions of dynamic, data-driven, concise and intelligent UI can become a
reality. But you may need to change your thinking
Modified: openlaszlo/trunk/docs/src/developers/program-development.dbk
===================================================================
--- openlaszlo/trunk/docs/src/developers/program-development.dbk
2007-10-18 13:21:30 UTC (rev 6899)
+++ openlaszlo/trunk/docs/src/developers/program-development.dbk
2007-10-18 13:32:17 UTC (rev 6900)
@@ -3,10 +3,10 @@
<title>Overview of OpenLaszlo Application Development</title>
<para>
This chapter summarizes information about OpenLaszlo application structure and
mechanics that an experienced programmer will need in order to start playing
with code.</para>
-
+<!-- change link for tutorials per LPP-4923, IORIO 17 oct 2007 -->
<para>This discussion is necessarily abbreviated and incomplete; its
purpose is merely to point you in the right direction. As you begin to
-write LZX applications, you should also work through the <ulink
url="../guide/" type="laszlo-dguide">tutorials</ulink>.</para>
+write LZX applications, you should also work through the <ulink
url="../developers/" type="laszlo-dguide">tutorials</ulink>.</para>
<para/><section><title>The program development cycle in a nutshell</title>
<para>
Modified: openlaszlo/trunk/docs/src/developers/rpc-javarpc.dbk
===================================================================
--- openlaszlo/trunk/docs/src/developers/rpc-javarpc.dbk 2007-10-18
13:21:30 UTC (rev 6899)
+++ openlaszlo/trunk/docs/src/developers/rpc-javarpc.dbk 2007-10-18
13:32:17 UTC (rev 6900)
@@ -1,7 +1,8 @@
<chapter id="rpc-javarpc">
<title>JavaRPC</title>
-
+<!-- add titleabbrev to use as target text per LPP-4923, IORIO 17 oct 2007 -->
+<titleabbrev id="rpc-javashort">JavaRPC</titleabbrev>
<para>JavaRPC is a feature that allows server-side Java objects and methods to
be
accessed from a client application. The <javarpc> element is used to
declare a JavaRPC object in LZX. JavaRPC is part of the OpenLaszlo RPC family
and
Modified: openlaszlo/trunk/docs/src/developers/rpc-soap.dbk
===================================================================
--- openlaszlo/trunk/docs/src/developers/rpc-soap.dbk 2007-10-18 13:21:30 UTC
(rev 6899)
+++ openlaszlo/trunk/docs/src/developers/rpc-soap.dbk 2007-10-18 13:32:17 UTC
(rev 6900)
@@ -1,6 +1,8 @@
<chapter id="rpc-soap">
<!-- move title before warning to validate against DocBook dtd LI LPP-4641
9/4/2007 -->
<title>SOAP</title>
+<!-- add titleabbrev to use as target text per LPP-4923, IORIO 17 oct 2007 -->
+<titleabbrev id="rpc-soapshort">SOAP</titleabbrev>
<warning><para>
This feature works in proxied applications only. It does not work in SOLO
applications.
</para></warning>
Modified: openlaszlo/trunk/docs/src/developers/rpc-xmlrpc.dbk
===================================================================
--- openlaszlo/trunk/docs/src/developers/rpc-xmlrpc.dbk 2007-10-18 13:21:30 UTC
(rev 6899)
+++ openlaszlo/trunk/docs/src/developers/rpc-xmlrpc.dbk 2007-10-18 13:32:17 UTC
(rev 6900)
@@ -1,10 +1,10 @@
<chapter id="rpc-xmlrpc">
-
<title condition="proxied">XML-RPC</title>
-
+<!-- change link rpc per LPP-4923, IORIO 17 oct 2007 -->
<para>XML-RPC is simple spec that describes how to invoke a remote operation
using
-XML over HTTP. OpenLaszlo XML-RPC is part of <ulink url="../guide/rpc.html"
type="laszlo-dguide"> OpenLaszlo
-RPC</ulink> and shares many of the same APIs and concepts. OpenLaszlo RPC
includes <ulink url="../guide/rpc-soap.html" type="laszlo-dguide">SOAP</ulink>
and <ulink url="../guide/rpc-javarpc.html"
type="laszlo-dguide">JavaRPC</ulink>. For more information on XML-RPC,
+XML over HTTP. OpenLaszlo XML-RPC is part of <xref linkend="rpc"
endterm="rpcshort" />, and shares many of the
+same APIs and concepts. OpenLaszlo RPC includes <xref linkend="rpc-soap"
endterm="rpc-soapshort" /> and
+<xref linkend="rpc-javarpc" endterm="rpc-javashort" />. For more information
on XML-RPC,
go to <ulink url="http://www.xmlrpc.com/">XML-RPC.com</ulink></para>
<para/><section><title><xmlrpc></title>
Modified: openlaszlo/trunk/docs/src/developers/rpc.dbk
===================================================================
--- openlaszlo/trunk/docs/src/developers/rpc.dbk 2007-10-18 13:21:30 UTC
(rev 6899)
+++ openlaszlo/trunk/docs/src/developers/rpc.dbk 2007-10-18 13:32:17 UTC
(rev 6900)
@@ -1,6 +1,7 @@
<chapter id="rpc">
-
<title>OpenLaszlo RPC</title>
+<!-- add titleabbrev to use as target text per LPP-4923, IORIO 17 oct 2007 -->
+<titleabbrev id="rpcshort">OpenLaszlo RPC</titleabbrev>
<warning><para>
Remote procedure calls work in proxied applications only. They do not work in
SOLO applications.
</para></warning>
@@ -471,7 +472,8 @@
</programlisting><?lzx-edit programs/rpc-$11.lzx></example?>
<warning><para>
-Remote procedure calls return native objects, not XML, and cannot be used with
<ulink url="../guide/data-structures.html" type="laszlo-dguide">XPath</ulink>.
+Remote procedure calls return native objects, not XML, and cannot be used with
+<xref linkend="xpath" endterm="xpathshort" />.
</para></warning>
_______________________________________________
Laszlo-checkins mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins