Jetspeed Daily Build Results - Fri, 16 Feb 2001 09:24:06 GMT

2001-02-17 Thread Jon S . Stevens



This email is autogenerated from the output from:
http://jakarta.apache.org/builds/gump/latest/jetspeed.html





--
--
To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Search: http://www.mail-archive.com/jetspeed@list.working-dogs.com/
List Help?:  [EMAIL PROTECTED]





newbie: jetspeed-1.3a1

2001-02-17 Thread Ken'ichi Unnai


Hi jetspeed crew,

I'm recently trying to catch up with Jetspeed.
What I'm using is jakarta-tomcat-3.2.1/jetspeed-1.3a1.
...the problem is when I start it, then it raises
strange error message:

% tomcat-dir/bin/startup.sh
...
...
initializing all services using
org.apache.tomcat.facade.ServletConfigImpl
initializing service: DaemonFactory
initializing service: DaemonFactory
initializing service: EngineContext
Error=FeedDaemon:  Couldn't process URL: /ocs/local.ocs
Error=FeedDaemon:  Couldn't process URL:
http://java.apache.org/jetspeed/channels/apache.ocs


What does it indicate? How and what I should fix ?
Although I tried to search the archive, I couldn't get
any clew...


Really thanks in advance,
Ken



__
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/


--
--
To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Search: http://www.mail-archive.com/jetspeed@list.working-dogs.com/
List Help?:  [EMAIL PROTECTED]




[Admin] Documentation generation change

2001-02-17 Thread Raphaƫl Luta

I've just changed the documentation generation tool used for building
Jetspeed docs from Stylebook to Anakia.
We now use the Jarkarta site stylesheets.

This has several consequences:
- I reworked the build system for checking on the correct dependencies

- For building the docs, you must now have a check-out of jakarta-site2
  at the same level than the jetspeed checkout and I also changed the 
  target in the build.xml file to "docs" instead of "site".

- I modified the xdocs to match the expected Anakia DTD. I did this with a
  quick search/replace so I may have missed some tags which will not be
  recognized by Anakia (but the overall docs build correctly)

I've not yet updated the web site with the new docs as I'd first like all
the people involved to review the docs and fix any error or obsolete text
you may encounter.

I'll commit update the site next saturday so we have about one week to make
sure everything is clean.

--
Raphal Luta - [EMAIL PROTECTED]
Vivendi Universal Networks - Services Manager / Paris


--
--
To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Search: http://www.mail-archive.com/jetspeed@list.working-dogs.com/
List Help?:  [EMAIL PROTECTED]




build.sh errors

2001-02-17 Thread Michael Sallman

I just did a checkout from cvs and got the following errors trying to do
the build:

ls: ../../jakarta-site2/lib/jdom*.jar: No such file or directory
./build.sh: [: ==: binary operator expected
./build.sh: [: ==: binary operator expected
type: jikes: not found
Java Home: /home/java/jdk1.2.2
Java compiler classic
./build.sh: -Dant.home=: command not found

I made the following changes to the build.sh file and it seems to work
fine:

Index: jetspeed/build/build.sh
===
RCS file: /products/cvs/jetspeed/jetspeed/build/build.sh,v
retrieving revision 1.15
diff -r1.15 build.sh
30c30
 if [ "$ANT_HOME" == "" ]; then
---
 if [ "$ANT_HOME" = "" ]; then
59c59
 if [ "$JAVABIN" == "" ] ; then
---
 if [ "$JAVABIN" = "" ] ; then
104,106c104,116
 ${JAVABIN} -Dant.home="${ANT_HOME}" -DJAVAC=${JAVAC}\
-classpath "${CLASSPATH}" org.apache.tools.ant.Main \
-buildfile "${BUILDFILE}" "$@"
---
 ${JAVABIN} -Dant.home=${ANT_HOME} -DJAVAC=${JAVAC}\
-classpath ${CLASSPATH} org.apache.tools.ant.Main \
-buildfile ${BUILDFILE} "$@"


Mike



--
--
To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Search: http://www.mail-archive.com/jetspeed@list.working-dogs.com/
List Help?:  [EMAIL PROTECTED]




Re: Next Release

2001-02-17 Thread Jon Stevens

on 2/16/01 12:42 AM, "Anthony W. Marino" [EMAIL PROTECTED] wrote:

 It appeared to me that for a period of time JetSpeed development had reached
 a quiet period with not much happening, however, there now seems to be a
 resurgence.  Is there anything that has changed within the project
 administrative structure that has led to this appearance or is it just me?
 
 Thank You,
 Anthony
 

Subscribe to the [EMAIL PROTECTED] list and watch the commits
go by. Jetspeed has nearly daily CVS activity.

-jon

-- 
If you come from a Perl or PHP background, JSP is a way to take
your pain to new levels. --Anonymous
http://jakarta.apache.org/velocity/  http://java.apache.org/turbine/



--
--
To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Search: http://www.mail-archive.com/jetspeed@list.working-dogs.com/
List Help?:  [EMAIL PROTECTED]




[ADMIN] READ NOW!

2001-02-17 Thread Jon Stevens

Hey all,

Please only copy the relevant portions of email messages (ie: to keep the
context of the discussion) and delete the rest.

I see some of you replying to a message and then only putting a couple lines
into the middle of a message and sending it. By doing that, it makes it very
hard for others to read the digest versions of the emails as well as the
fact that it simply fills my server hard disk with unneeded stuff.

If you have questions about this, please email me privately as more
discussion about this on the list will just add even more junk to the
digests. :-)

thanks,

-jon



--
--
To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Search: http://www.mail-archive.com/jetspeed@list.working-dogs.com/
List Help?:  [EMAIL PROTECTED]




RE: [Admin] Documentation generation change

2001-02-17 Thread David Sean Taylor

 I've not yet updated the web site with the new docs as I'd first like all
 the people involved to review the docs and fix any error or obsolete text
 you may encounter.

it looks nice - imo, nicer than stylebook
'build docs' worked without a problem

i fixed 3 bad links on index.xml and
there are a few more minor things i need to sort out, but overall looks
great!

-- david



--
--
To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Search: http://www.mail-archive.com/jetspeed@list.working-dogs.com/
List Help?:  [EMAIL PROTECTED]




Re: [Admin] Documentation generation change

2001-02-17 Thread Jon Stevens

on 2/17/01 2:12 PM, "David Sean Taylor" [EMAIL PROTECTED]
wrote:

 it looks nice - imo, nicer than stylebook
 'build docs' worked without a problem
 
 i fixed 3 bad links on index.xml and
 there are a few more minor things i need to sort out, but overall looks
 great!
 
 -- david

FYI, please put a trailing "/" after URI's that end with a directory. For
instance, you have http://jakarta.apache.org/velocity when it should be:
http://jakarta.apache.org/velocity/. that little "/" prevents another round
trip HTTP connection.

-jon

-- 
If you come from a Perl or PHP background, JSP is a way to take
your pain to new levels. --Anonymous
http://jakarta.apache.org/velocity/  http://java.apache.org/turbine/



--
--
To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Search: http://www.mail-archive.com/jetspeed@list.working-dogs.com/
List Help?:  [EMAIL PROTECTED]




Jetspeed Daily Build Results - Sat, 17 Feb 2001 09:40:39 GMT

2001-02-17 Thread Jon S . Stevens



This email is autogenerated from the output from:
http://jakarta.apache.org/builds/gump/latest/jetspeed.html





--
--
To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Search: http://www.mail-archive.com/jetspeed@list.working-dogs.com/
List Help?:  [EMAIL PROTECTED]