Re: [leaf-devel] Re: adding a new menu

2006-03-29 Thread Mike Noyes
On Sat, 2006-03-25 at 08:09, Mike Noyes wrote:
 Ok. I created our new doc-build.sh script, and did some initial testing.
 Please let me know if I made any errors. Thanks.
 
 doc-build.sh
 http://cvs.sourceforge.net/viewcvs.py/leaf/sourceforge/admin/
 
 Note: SF isn't allowing me to grab docbook public uri
 (v4.4) from oasis. I'm investigating the issue.

Everyone,
This is just pathetic. I can't even remember doing a simple task. :-(

Anyway, I'm now able to validate our docbook xml. I'll continue working
on the new build script.



-Forwarded Message- 
From: Mike Noyes [EMAIL PROTECTED]
To: KP Kirchdoerfer [EMAIL PROTECTED]
Cc: leaf-devel leaf-devel@lists.sourceforge.net
Subject: [leaf-devel] Re: Guides
Date: Wed, 17 Aug 2005 10:17:43 -0700

snip

I just ran daily.sh. I had to place the docbook xml 4.4 dtd in my shell
space. SF is blocking all http requests from the shell. External catalog
entries fail. Anyway, let me know if you see any problems.

Using catalogs with xsltproc
http://www.sagehill.net/docbookxsl/UseCatalog.html

-- 
Mike Noyes mhnoyes at users.sourceforge.net
http://sourceforge.net/users/mhnoyes/
SF.net Projects: leaf, phpwebsite, phpwebsite-comm, sitedocs



---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=110944bid=241720dat=121642

___
leaf-devel mailing list
leaf-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/leaf-devel


Re: [leaf-devel] Re: adding a new menu

2006-02-16 Thread KP Kirchdoerfer
Am Mittwoch, 15. Februar 2006 22:19 schrieb Mike Noyes:
 On Wed, 2006-02-15 at 12:34, KP Kirchdoerfer wrote:
  Who can add news to the LEAF branch (pxeinstall update)?

 KP,
 I can do that. Is there a news item somewhere that I can copy? I don't
 see a message in leaf-announce, but that list isn't often used.

Mike;

Sent to leaf-announce.

Pls add to announcements.

thx kp


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642

___
leaf-devel mailing list
leaf-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/leaf-devel


Re: [leaf-devel] Re: adding a new menu

2006-02-16 Thread Mike Noyes
On Thu, 2006-02-16 at 09:54, KP Kirchdoerfer wrote:
 Am Mittwoch, 15. Februar 2006 22:19 schrieb Mike Noyes:
  On Wed, 2006-02-15 at 12:34, KP Kirchdoerfer wrote:
   Who can add news to the LEAF branch (pxeinstall update)?
 
  I can do that. Is there a news item somewhere that I can copy? I don't
  see a message in leaf-announce, but that list isn't often used.
 
 Sent to leaf-announce.
 
 Pls add to announcements.

KP,
Done. Please let me know if you see any problems.

BTW, I believe I gave you rights on the phpwebsite leaf hub to
create announcements.

-- 
Mike Noyes mhnoyes at users.sourceforge.net
http://sourceforge.net/users/mhnoyes/
SF.net Projects: leaf, phpwebsite, phpwebsite-comm, sitedocs



---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642

___
leaf-devel mailing list
leaf-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/leaf-devel


Re: [leaf-devel] Re: adding a new menu

2006-02-15 Thread Mike Noyes
On Tue, 2006-02-14 at 10:59, KP Kirchdoerfer wrote:
 Am Dienstag, 14. Februar 2006 19:48 schrieb Mike Noyes:
  On Tue, 2006-02-14 at 10:27, KP Kirchdoerfer wrote:
   The news announcements I've made are not part of the main page any more.
   I thought it is cause you have to run daily.sh - but in the meantime you
   did  - and news are still old on the main page.
 
  I have to run a different script for that. I'll try to take care of that
  today.

KP,
RSS LEAF branch feeds updated.

-- 
Mike Noyes mhnoyes at users.sourceforge.net
http://sourceforge.net/users/mhnoyes/
SF.net Projects: leaf, phpwebsite, phpwebsite-comm, sitedocs



---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642

___
leaf-devel mailing list
leaf-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/leaf-devel


Re: [leaf-devel] Re: adding a new menu

2006-02-15 Thread Mike Noyes
On Tue, 2006-02-14 at 15:21, Charles Steinkuehler wrote:
  I need to fix it so it's robust enough for the new SF requirements.
  Locking has me a bit confused, and I'll need to read how to add that to
  daily.sh. I'll attempt to address these issues when I work on our
  documentation build process.
 
 If the lockfile utility is available on the SF servers (highly likely,
 but I didn't check),

Charles,
The SF project shell server has lockfile installed. I verified this with
which.

 it's pretty easy:
 
 code
 #!/bin/sh
 
 LOCKFILE=leafcron.lock
 
 # Get the lockfile if we can, don't retry if we can't
 lockfile -r 0 $LOCKFILE
 
 # Test to see if we have the lockfile
 if [ $? -ne 0 ] ; then
   echo Couldn't get lockfile!
   exit 1
 fi
 
 echo Got lock file: $LOCKFILE
 # Do more stuff here...
 
 # Done with everything...remove lockfile
 rm -f $LOCKFILE
 /code

Thanks for the shell code snippet. I appreciate it, and I'll try to
incorporate in in daily.sh soon. :-)

 Holler if you need help with the above, or any other scripting chores.

Will do.

KP,
From your earlier comments, I guess I should work on cron and daily.sh
before installing mediawiki?

-- 
Mike Noyes mhnoyes at users.sourceforge.net
http://sourceforge.net/users/mhnoyes/
SF.net Projects: leaf, phpwebsite, phpwebsite-comm, sitedocs



---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642

___
leaf-devel mailing list
leaf-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/leaf-devel


Re: [leaf-devel] Re: adding a new menu

2006-02-15 Thread KP Kirchdoerfer
Am Mittwoch, 15. Februar 2006 21:22 schrieb Mike Noyes:
 On Tue, 2006-02-14 at 10:59, KP Kirchdoerfer wrote:
  Am Dienstag, 14. Februar 2006 19:48 schrieb Mike Noyes:
   On Tue, 2006-02-14 at 10:27, KP Kirchdoerfer wrote:
The news announcements I've made are not part of the main page any
more. I thought it is cause you have to run daily.sh - but in the
meantime you did  - and news are still old on the main page.
  
   I have to run a different script for that. I'll try to take care of
   that today.

 KP,
 RSS LEAF branch feeds updated.

Thanks!

Who can add news to the LEAF branch (pxeinstall update)?

kp


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642

___
leaf-devel mailing list
leaf-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/leaf-devel


Re: [leaf-devel] Re: adding a new menu

2006-02-15 Thread KP Kirchdoerfer
Am Mittwoch, 15. Februar 2006 21:28 schrieb Mike Noyes:


 KP,

From your earlier comments, I guess I should work on cron and daily.sh
 before installing mediawiki?

Since you are asking me directly - yes that's what I vote for, cron and 
daily.sh are features that worked and will make branch admin life easier.

kp


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642

___
leaf-devel mailing list
leaf-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/leaf-devel


Re: [leaf-devel] Re: adding a new menu

2006-02-15 Thread Mike Noyes
On Wed, 2006-02-15 at 12:34, KP Kirchdoerfer wrote:
 Who can add news to the LEAF branch (pxeinstall update)?

KP,
I can do that. Is there a news item somewhere that I can copy? I don't
see a message in leaf-announce, but that list isn't often used.

-- 
Mike Noyes mhnoyes at users.sourceforge.net
http://sourceforge.net/users/mhnoyes/
SF.net Projects: leaf, phpwebsite, phpwebsite-comm, sitedocs



---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642

___
leaf-devel mailing list
leaf-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/leaf-devel


Re: [leaf-devel] Re: adding a new menu

2006-02-15 Thread Mike Noyes
On Wed, 2006-02-15 at 12:43, KP Kirchdoerfer wrote:
 Am Mittwoch, 15. Februar 2006 21:28 schrieb Mike Noyes:
 From your earlier comments, I guess I should work on cron and daily.sh
  before installing mediawiki?
 
 Since you are asking me directly - yes that's what I vote for, cron and 
 daily.sh are features that worked and will make branch admin life easier.

KP,
Unless there are objections, I'll start work on daily.sh first.

Thanks for the feedback and direction. :-)

-- 
Mike Noyes mhnoyes at users.sourceforge.net
http://sourceforge.net/users/mhnoyes/
SF.net Projects: leaf, phpwebsite, phpwebsite-comm, sitedocs



---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642

___
leaf-devel mailing list
leaf-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/leaf-devel


Re: [leaf-devel] Re: adding a new menu

2006-02-14 Thread KP Kirchdoerfer
Am Dienstag, 14. Februar 2006 19:48 schrieb Mike Noyes:
 On Tue, 2006-02-14 at 10:27, KP Kirchdoerfer wrote:

 I apologize again for the delay in attending to this issue. :-(

Well, I've been on vacation for about ten days - so you've been in time. 

  Did you made external links visible while testing? No pb, just want to
  know :)

 Yes. I hope that isn't a problem.

As I said, it isn't  - I just have been surprised that the pages get a life on 
their own...

  The news announcements I've made are not part of the main page any more.
  I thought it is cause you have to run daily.sh - but in the meantime you
  did  - and news are still old on the main page.

 I have to run a different script for that. I'll try to take care of that
 today.

We really need a solution for the missing cron on SF - it's disabled for 
nearly two years, and I'm afraid they won't fix the next two years, if ever.

 Note: the two problems mentioned above are corrected in the new
 phpwebsite release. I need to upgrade our installation on SF.

ok.

kp


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642

___
leaf-devel mailing list
leaf-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/leaf-devel


Re: [leaf-devel] Re: adding a new menu

2006-02-14 Thread David Douthitt

KP Kirchdoerfer wrote:
We really need a solution for the missing cron on SF - it's disabled for 
nearly two years, and I'm afraid they won't fix the next two years, if ever.


Any possibility of compiling a version of cron and leaving it running in 
user mode?  What about something like fcron?




---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642

___
leaf-devel mailing list
leaf-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/leaf-devel


Re: [leaf-devel] Re: adding a new menu

2006-02-14 Thread Charles Steinkuehler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Mike Noyes wrote:

 I need to fix it so it's robust enough for the new SF requirements.
 Locking has me a bit confused, and I'll need to read how to add that to
 daily.sh. I'll attempt to address these issues when I work on our
 documentation build process.

If the lockfile utility is available on the SF servers (highly likely,
but I didn't check), it's pretty easy:

code
#!/bin/sh

LOCKFILE=leafcron.lock

# Get the lockfile if we can, don't retry if we can't
lockfile -r 0 $LOCKFILE

# Test to see if we have the lockfile
if [ $? -ne 0 ] ; then
  echo Couldn't get lockfile!
  exit 1
fi

echo Got lock file: $LOCKFILE
# Do more stuff here...

# Done with everything...remove lockfile
rm -f $LOCKFILE
/code

If lockfile isn't available, you can do mostly the same thing using
touch and checking for the prior existence of a file, but it's not as
graceful as lockfile, particularly when it comes to atomically checking
for and creating the lock (shouldn't exactly be a problem for a cron job
though, but it is an issue for multiple process access to mailbox files,
which is why lockfile exists in the first place).

Holler if you need help with the above, or any other scripting chores.

- --
Charles Steinkuehler
[EMAIL PROTECTED]
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFD8mXhLywbqEHdNFwRAnTXAJ9pj9H6Ea8XI/4vVyfK1SIK9q96rgCcC4GQ
nZ/EwESoj01Lgwac3+n4CZo=
=YZDw
-END PGP SIGNATURE-


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642

___
leaf-devel mailing list
leaf-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/leaf-devel


[leaf-devel] Re: adding a new menu

2006-02-10 Thread Mike Noyes
On Thu, 2006-02-09 at 15:23, Mike Noyes wrote:
 Apparently, menuman is trying to lock table before modifying. However,
 this requires the new SF mysql4 admin login information. The problem was
 the rw database access. I'll query the phpwebsite team tomorrow as to
 why menuman requires lock table access.
 
 Note: bering-uclibc is currently using mysql4 admin access to
 our database.

KP,
Ok. I talked with the phpwebsite developers, and the issue is in
menuman/class/MenuItem.php. It was corrected in a new release. Until I
find time to upgrade our phpwebsite install, I'll patch the offending
file. I'll do this later today or early tomorrow. Thanks for being
patient.

http://res.stddev.appstate.edu/cvs/modules/menuman/class/MenuItem.php.diff?r1=1.42r2=1.43

Next task: Mediawiki install

-- 
Mike Noyes mhnoyes at users.sourceforge.net
http://sourceforge.net/users/mhnoyes/
SF.net Projects: leaf, phpwebsite, phpwebsite-comm, sitedocs



---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnkkid=103432bid=230486dat=121642

___
leaf-devel mailing list
leaf-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/leaf-devel