Skip to content

Commit d3fa1d4

Browse files
author
mgricken
committed
Fix to make DocBook work on finland and with Hudson.
git-svn-id: file:///tmp/test-svn/trunk@4971 fe72c1cf-3628-48e9-8b72-1c46755d3cff
1 parent 91cee2a commit d3fa1d4

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

docs/build.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,9 @@
154154

155155
<target name="generate-html" depends="assert-docbook-xsl-exists">
156156
<mkdir dir="docs/${docbook-dir}" />
157-
<exec executable="xsltproc" failonerror="yes">
157+
<exec executable="xsltproc" failonerror="yes" dir="src/${docbook-dir}">
158158
<arg value="-o" />
159-
<arg value="docs/${docbook-dir}/" />
159+
<arg value="../../docs/${docbook-dir}/" />
160160
<arg file="${docbook-xsl-home}/html/chunk.xsl" />
161161
<arg file="src/${docbook-dir}/${docbook-srcfile}.docbook" />
162162
</exec>
@@ -178,9 +178,9 @@
178178
</taskdef>
179179
<mkdir dir="fo" />
180180
<mkdir dir="docs" />
181-
<exec executable="xsltproc" failonerror="yes">
181+
<exec executable="xsltproc" failonerror="yes" dir="src/${docbook-dir}">
182182
<arg value="-o" />
183-
<arg value="fo/${docbook-srcfile}.fo" />
183+
<arg value="../../fo/${docbook-srcfile}.fo" />
184184
<arg file="${docbook-xsl-home}/fo/docbook.xsl" />
185185
<arg file="src/${docbook-dir}/${docbook-srcfile}.docbook" />
186186
</exec>

docs/src/developer/devdoc.docbook

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?xml version="1.0"?>
22
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
33
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4+
<!ENTITY mdash "&#x02014;" >
45
<!ENTITY introduction SYSTEM "introduction.docbook">
56
<!ENTITY gettingStarted SYSTEM "gettingStarted.docbook">
67
<!ENTITY supportingTechnology SYSTEM "supportingTechnology.docbook">

docs/src/developer/introduction.docbook

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
<section>
3636
<title>Project Philosophy</title>
37-
<para>DrJava is a lightweight, powerful Java development environment. Its target audience includes both beginning Computer Science students and advanced professional users. Clearly, there is a tension between these goals --- "lightweight" versus "powerful"; "beginning" versus "advanced." This tension is generally resolved by <emphasis>ensuring</emphasis> the prior conditions --- that DrJava be easy to use and inobtrusive for beginners --- and adding "advanced" features only if they can be presented in a simple, lightweight (both in terms of system resources and user interface) manner. The interactions pane is an ideal example of a nice marriage between the goals of simplicity and power. It is easy for beginners to understand and use --- in fact, it's where many beginners get their first taste of Java programming. Yet professional developers also find it quite handy, and sometimes lament the lack of something like it in heavier-weight IDEs.</para>
37+
<para>DrJava is a lightweight, powerful Java development environment. Its target audience includes both beginning Computer Science students and advanced professional users. Clearly, there is a tension between these goals &mdash; "lightweight" versus "powerful"; "beginning" versus "advanced." This tension is generally resolved by <emphasis>ensuring</emphasis> the prior conditions &mdash; that DrJava be easy to use and inobtrusive for beginners &mdash; and adding "advanced" features only if they can be presented in a simple, lightweight (both in terms of system resources and user interface) manner. The interactions pane is an ideal example of a nice marriage between the goals of simplicity and power. It is easy for beginners to understand and use &mdash; in fact, it's where many beginners get their first taste of Java programming. Yet professional developers also find it quite handy, and sometimes lament the lack of something like it in heavier-weight IDEs.</para>
3838

3939
<para>Because DrJava was originally conceived as a teaching tool, and because it has been almost entirely developed by undergraduate and graduate students, it is uniquely positioned to address the needs of students, teachers, and researchers. We hope that this fount of experience will translate into a relevant, useful, and unique product. However, development on the project is at a relative disadvantage due to the lack of a full-time or long-term workforce. These challenges are addressed by maintaining a self-documenting, self-testing code base. Developers should keep in mind that the code they write will be browsed and modified subsequently by many others, and if the reasoning behind the code is not documented by comments and tests, it will probably be lost.</para>
4040

drjava/lib/docs.jar

-13.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)