Updated OpenACS and Arch docs [www.rubick.com]
07:12 PM, 30 Nov 2004 by Jade Rubick Permalink | Comments (0)
Cleveland Prosecuting Recanted Allegations of Domestic Abuse [lawprofessors.typepad.com]
Some side-effects: victims may come forward more, because they know it will be out of their hands once they make the initial allegation. Or they may come forward less, because they won't want their abuser to be arrested.
I was glad the article pointed out that people can make false reports.
07:41 PM, 29 Nov 2004 by Jade Rubick Permalink | Comments (0)
12:34 PM, 29 Nov 2004 by Jade Rubick Permalink | Comments (0)
Updated CO2 setup page [rubick.com:8002]
03:50 PM, 28 Nov 2004 by Jade Rubick Permalink | Comments (0)
Reasons to use Debian [www.newsforge.com]
03:13 PM, 28 Nov 2004 by Jade Rubick Permalink | Comments (0)
Error while loading shared libraries with Aolserver
/usr/local/aolserver/bin/nsd: error while loading shared libraries: libnsd.so: cannot open shared object file: No such file or directory
Try ldd:
/usr/local/aolserver/bin# ldd nsd
libnsd.so => not found
libnsthread.so => not found
libtcl8.4.so.0 => /usr/lib/libtcl8.4.so.0 (0x40018000)
libdl.so.2 => /lib/libdl.so.2 (0x400ba000)
libpthread.so.0 => /lib/libpthread.so.0 (0x400bd000)
libm.so.6 => /lib/libm.so.6 (0x400d1000)
libc.so.6 => /lib/libc.so.6 (0x400f2000)
/lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)
It looks like the libraries are not being found.
Try this:
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/aolserver/lib
Vinod's entry fixes it here:
http://openacs.org/forums/message-view?message_id=161815
You may need to edit your /usr/local/aolserver/nsd-postgres file to include Aolserver's lib directories.
07:15 PM, 23 Nov 2004 by Jade Rubick Permalink | Comments (0)
Macromedia - Flex [www.macromedia.com]
02:54 PM, 22 Nov 2004 by Jade Rubick Permalink | Comments (0)
Swedish Newspaper to name men convicted of violence against women [www.channelnewsasia.com]
02:58 PM, 21 Nov 2004 by Jade Rubick Permalink | Comments (0)
Interview with David Tempkin [news.com.com]
04:52 PM, 19 Nov 2004 by Jade Rubick Permalink | Comments (0)
davidtemkin.com: Coming soon: Laszlo (presentation server optional) [www.davidtemkin.com]
04:24 PM, 19 Nov 2004 by Jade Rubick Permalink | Comments (0)
Laszlo - Developers [www.laszlosystems.com]
02:17 PM, 19 Nov 2004 by Jade Rubick Permalink | Comments (0)
Dev Trends: A Look at Rich Internet Applications [www.oracle.com]
11:19 PM, 18 Nov 2004 by Jade Rubick Permalink | Comments (0)
Kevin Lynch: Rich Internet Applications: It's Happening! [www.klynch.com]
11:13 PM, 18 Nov 2004 by Jade Rubick Permalink | Comments (0)
Process *.rej files [wiki.gnuarch.org]
01:57 PM, 18 Nov 2004 by Jade Rubick Permalink | Comments (0)
Mac OS X v10.4 Tiger: Developer Overview [developer.apple.com]
11:03 PM, 17 Nov 2004 by Jade Rubick Permalink | Comments (0)
05:41 PM, 17 Nov 2004 by Jade Rubick Permalink | Comments (0)
Res Ipsa: Consequences of the Tyranny of the Majority [resipsa.typepad.com]
Do people realize what these laws do?
12:36 PM, 17 Nov 2004 by Jade Rubick Permalink | Comments (0)
GPS Tag for Domestic Violence Perpetrator [news.scotsman.com]
12:03 PM, 16 Nov 2004 by Jade Rubick Permalink | Comments (0)
How to allow someone to join a mailing list
Index: user-new.tcl
===================================================================
RCS file: /var/cvs/safe4all/packages/acs-subsite/lib/user-new.tcl,v
retrieving revision 1.1.1.2
diff -u -r1.1.1.2 user-new.tcl
--- user-new.tcl 22 Jun 2004 21:06:53 -0000 1.1.1.2
+++ user-new.tcl 5 Oct 2004 17:41:39 -0000
@@ -39,6 +39,20 @@
ad_form -name register -export {next_url user_id return_url} -form [auth::get_r
egistration_form_elements]
+# safe4all.org extention
+
+set checked_p [list checked ""]
+
+ad_form -extend -name register -form {
+ {join_announce_p:text(checkbox),optional
+ {label "Receive weekly news?"}
+ {help_text "You can opt out at any point, and we do not give out your email address."}
+ {options {{"" "on"}}}
+ {html $checked_p}
+ }
+}
+
+
if { [exists_and_not_null rel_group_id] } {
ad_form -extend -name register -form {
{rel_group_id:integer(hidden),optional}
@@ -81,6 +95,21 @@
-secret_question $secret_question \
-secret_answer $secret_answer]
+ # safe4all.org
+
+ if {[string equal $creation_info(creation_status) "ok"]} {
+ if {[string is true $join_announce_p]} {
+ ns_sendmail \
+ "safe-announce-subscribe@mail.safe4all.org" \
+ $email \
+ "join safe-announce mailing list" \
+ "I would like to join the SAFE-announce mailing list. Infor\
mation on subscribing and unsubscribing are available at http://www.safe4all.or\
g/forums/forum-view?forum%5fid=13394"
+
+ }
+ }
+
if { [string equal $creation_info(creation_status) "ok"] && [exists_and
_not_null rel_group_id] } {
group::add_member \
-group_id $rel_group_id \
12:01 PM, 16 Nov 2004 by Jade Rubick Permalink | Comments (0)
Use X11 from Apple's Terminal app
In your /etc/profile:
# System-wide .profile for sh(1)# added to allow X11 applications to run
if [[ -z $DISPLAY ]]
then
export DISPLAY=:0.0
fiPATH="/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin"
export PATH[ -r /etc/bashrc ] && source /etc/bashrc
Open up X11, and now you can use X11 apps from the terminal. Nice!
You can set up X11 to boot on startup, in the background, and now you have seamless X11 / Terminal use.
12:12 PM, 12 Nov 2004 by Jade Rubick Permalink | Comments (1)
The Media Can Legally Lie [www.relfe.com]
03:54 PM, 11 Nov 2004 by Jade Rubick Permalink | Comments (1)
Good thread on performance tuning Postgres queries [openacs.org]
03:23 PM, 10 Nov 2004 by Jade Rubick Permalink | Comments (0)
Google for source code [www.koders.com]
01:30 PM, 10 Nov 2004 by Jade Rubick Permalink | Comments (0)
Sorry Everybody [sorryeverybody.com]
12:14 PM, 10 Nov 2004 by Jade Rubick Permalink | Comments (0)
Skype - Free Internet telephony that just works [www.skype.com]
06:58 PM, 09 Nov 2004 by Jade Rubick Permalink | Comments (0)
Using Arch for source control management with OpenACS [www.rubick.com]
06:54 PM, 04 Nov 2004 by Jade Rubick Permalink | Comments (0)
AlterNet: War on Iraq: The Bush-Gadhafi Deal [www.alternet.org]
06:45 PM, 01 Nov 2004 by Jade Rubick Permalink | Comments (0)
Problems with hostname on OpenACS site?
05:58 PM, 01 Nov 2004 by Jade Rubick Permalink | Comments (0)
Pristine tree errors.
usb-staging@usbakery:~/usb-staging$ tla changes --diffs
* looking for jader-usbstaging@bread.com--2004/openacs--usb-staging--1.0--patch-12 to compare with
corrupt pristine (failed inode signature validation)
archive: jader-usbstaging@bread.com--2004
revision: openacs--usb-staging--1.0--patch-12
directory /home/usb-staging/usb-staging/{arch}/++pristine-trees/unlocked/openacs/openacs--usb-staging/openacs--usb-staging--1.0/jader-usbstaging@bread.com--2004/openacs--usb-staging--1.0--patch-12
You should remove this pristine from your tree.
The solution, according to johill on #arch, is to delete the {arch}/++pristine-trees directory, and then 'configure a revision library'.
I'm figuring out how to do the latter right now.
02:56 PM, 01 Nov 2004 by Jade Rubick Permalink | Comments (1)
| November 2004 | ||||||
| S | M | T | W | T | F | S |
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | ||||