IRC log of openacs on 2002-01-22

Timestamps are in UTC.

00:16:30 [davb]
* davb works on the top-secret project...
00:28:34 [beattiek]
hey dave.
00:29:41 [beattiek]
hmm.
00:30:36 [davb]
hi.
00:30:44 [beattiek]
Dave!
00:30:46 [davb]
This is all graphic design work anyway.
00:30:56 [beattiek]
wanna help me out with some logic?
00:32:03 [davb]
Sure.
00:35:52 [beattiek]
*cough*
00:36:40 [davb]
?
00:37:20 [beattiek]
oh
00:37:21 [beattiek]
hey
00:38:02 [beattiek]
okay, i have pages stored in www/$cityname
00:38:10 [beattiek]
and a database of postal codes.
00:38:43 [davb]
ok.
00:39:00 [beattiek]
when multipul cities are in one code, i need to display a list of links to different pages.
00:39:08 [beattiek]
how would i store this list?
00:39:23 [davb]
YOu need a city to postal code mapping table?
00:39:25 [beattiek]
keeping in mind there could be over 1000 of them
00:39:39 [beattiek]
I guess.
00:39:55 [davb]
Do you have this information, or will you have to enter it manuallly?
00:40:13 [beattiek]
well, I think i can get a script to enter it for me.
00:40:27 [beattiek]
I will get it off a DB.
00:40:37 [davb]
Ok. that is good.
00:40:57 [beattiek]
for now my table is like this
00:41:11 [beattiek]
postalcode #
00:41:11 [beattiek]
void_p #if this code is currently unassigned.
00:41:12 [beattiek]
muticity_p #if the code area contains more than one city, this is true.
00:41:12 [beattiek]
city #The city this code is in.
00:42:09 [davb]
In the US, there can be a city with multiple ZIP codes within it, or a zip code with more than one town or village.
00:42:12 [beattiek]
so if multicity_p =t it needs to display the appropriate list of links.
00:42:24 [davb]
SO I think you need 3 tables.
00:42:29 [beattiek]
oh.
00:42:32 [beattiek]
wonderful :)
00:42:47 [beattiek]
hmm
00:42:53 [davb]
Postal Codes, Cities, and a mapping table. that links each postal code, city pair.
00:43:04 [davb]
make sense?
00:43:07 [beattiek]
sort of
00:43:22 [davb]
There is something resembling this I think in ACS isn;t there?
00:43:28 [beattiek]
but... the only goal is to direct the person to the right city page.
00:43:42 [beattiek]
I dunno davb, I'm newbie.
00:44:06 [davb]
Ok. They will have a postal code, but not the city?
00:44:14 [beattiek]
?
00:44:33 [beattiek]
I mean, if there is multipul codes in one city that doesn't matter to me.
00:44:42 [davb]
Ok.
00:44:53 [beattiek]
they all go to the same page...
00:44:58 [davb]
Ah.
00:45:13 [davb]
BUt it is possible there is more than one city in a postal code?
00:45:30 [beattiek]
i belive so.
00:46:02 [beattiek]
I just got my info through rumor tho.
00:46:07 [davb]
I can't think of a normalized way to do it without the 3 tables.
00:46:09 [davb]
:)
00:46:13 [beattiek]
:)
00:46:40 [beattiek]
hmm.
00:47:00 [beattiek]
maybe there isn't codes with more than one city...
00:47:42 [davb]
Right. you need to find out. if so, your system wil work, BUT you data could become inconsistent, because if there is more than one code in a city, the city will be repeated.
00:48:11 [beattiek]
For this ZIP Code, ZIP Code
00:48:12 [beattiek]
City Name State the city name is: Type
00:48:12 [beattiek]
----------------------------------------------------------------------
00:48:12 [beattiek]
PASADENA MD ACCEPTABLE (DEFAULT) STANDARD
00:48:12 [beattiek]
LAKE SHORE MD ACCEPTABLE STANDARD
00:48:12 [beattiek]
RIVIERA BEACH MD ACCEPTABLE STANDARD
00:48:35 [beattiek]
see there are multipul here...
00:48:43 [davb]
disclaimer: davb is not a database designer, he just plays one on IRC
00:48:56 [beattiek]
haha
00:48:57 [davb]
US is also tricky, they are all probably the same place with different names.
00:49:20 [beattiek]
perhaps i should just use the default.
00:49:35 [beattiek]
then it will work
00:50:20 [davb]
sure. depends on your application. the 3 table design is the standard way to do this kind of thing I think though. You have a two-way many-to-many relationship or something like that.
00:50:25 [beattiek]
all OACS has to do then is select the postal code and return the default city name into a variable...
00:50:58 [davb]
Right, they all go to the same page?
00:51:07 [beattiek]
yes
00:51:15 [beattiek]
i mean...
00:51:28 [beattiek]
they all go to $cityname.adp
00:52:43 [beattiek]
so as long as each valid code returns the proper city name, we are happy.
00:52:53 [davb]
Ok.
00:53:03 [beattiek]
i like talking
00:53:07 [davb]
that is an interesting way to handle it.
00:53:08 [beattiek]
it helps me think
00:53:18 [davb]
sure, that is what this channel is for :)
00:53:19 [beattiek]
do you think it is foolish?
00:53:39 [davb]
I think there might be a way to have only one adp/tcl page for all the cities.
00:53:52 [beattiek]
hmmm.
00:53:58 [davb]
like this /directory/cityname/
00:54:07 [davb]
wait... brain working...
00:54:17 [davb]
maybe not.
00:54:31 [beattiek]
ahhh
00:54:35 [beattiek]
I see.
00:54:37 [beattiek]
that is good.
00:54:39 [davb]
there is the index.vuh
00:54:56 [beattiek]
.vuh?
00:55:11 [davb]
virtual URL handler
00:55:34 [davb]
I am not sure if it can do what I am thinking though...
00:55:41 [beattiek]
hmmm.
00:55:56 [davb]
do you actually need a real filesystem directory for each city?
00:56:04 [beattiek]
i dont think so.
00:56:10 [beattiek]
that is the stage i am at now.
00:56:18 [davb]
ok.
00:56:22 [beattiek]
structure/interface planning.
00:57:13 [beattiek]
but every page needs to have entirely unique content. however i think it can always follow a template.
00:57:32 [beattiek]
so therefore i may need only one .adp
00:57:37 [davb]
Right, it depends if they have the same template or not. if they are different, that might be a problem.
00:58:03 [davb]
if they are the same, then you can probably use just one page that gets the city name and serves the corrent content.
00:58:05 [beattiek]
I'm pretty sure the only logical asnwer is they need to follow a template
00:58:20 [beattiek]
for realistic maintainance
00:58:26 [davb]
right.
00:58:34 [beattiek]
hmmm.
00:58:39 [davb]
the OpenACS tempalting system is very powerful.
00:58:50 [beattiek]
<nod>
00:59:14 [beattiek]
how is your deal going. with that one guy.
00:59:37 [davb]
good, better if he actually gets some investors.
01:00:05 [beattiek]
oh, you are at that stage already? or are you just looking for seed capitol?
01:00:32 [davb]
seed capital. after we get a little demo to shop around.
01:00:56 [beattiek]
thats cool.
01:01:46 [beattiek]
*ponder*
01:02:45 [davb]
there is only one paragraph explaining VUH that I can find :(
01:04:09 [beattiek]
amasing documentation :)
01:04:30 [davb]
yeah, they never finished, barely started in places....
01:04:53 [davb]
I think it will do what I think it will do :)
01:05:08 [beattiek]
which is?
01:06:04 [davb]
that somehow you can have one tcl file that will figure out which city is requested in the URL and serve it. so you don't need a seperate page or soemthing like ?city=cityname
01:06:24 [davb]
the vuh system is supposed to replace registered procs so I should be possible.
01:06:31 [beattiek]
*nod*
01:07:38 [beattiek]
so for anonymous users, how does the OACS keep track of the users City?
01:07:55 [beattiek]
cookie?
01:09:32 [davb]
yes.
01:09:42 [davb]
I think you would need to set your own city cookie.
01:09:57 [beattiek]
hmm?
01:10:15 [davb]
I don't think OpenACS cares about the city in the default install does it?
01:10:32 [beattiek]
no.
01:10:34 [davb]
I assume a visitor would be able to set the prefered city even if they don;t register?
01:10:40 [beattiek]
right
01:10:46 [davb]
http://www.arsdigita.com/bboard/q-and-a-fetch-msg?msg%5fid=000JTn&topic%5fid=21&topic=web%2fdb
01:10:47 [chump]
A: http://www.arsdigita.com/bboard/q-and-a-fetch-msg?msg%5fid=000JTn&topic%5fid=21&topic=web%2fdb from davb
01:11:00 [davb]
A:|Thread on Virtual URL handlers for ACS 4
01:11:00 [chump]
titled item A
01:11:32 [davb]
its all users, noone from aD choose to explain how it works :(
01:11:40 [beattiek]
:)
01:12:11 [beattiek]
hmmm.
01:13:06 [davb]
it looks liek you need a folder /cities/ and a file in there index.vuh, then link to cities/cityname when the cityname file does not exist it reads index.vuh
01:13:06 [beattiek]
I'm thinking, if i'm asking for a postal code already, perhaps i should ask for email address at the same time.
01:14:27 [davb]
sure. maybe make it optional, but offer better service with it than without?
01:14:46 [beattiek]
no
01:14:50 [beattiek]
well kind of
01:15:07 [beattiek]
offer the best service posible at all times
01:15:23 [davb]
right.
01:15:26 [beattiek]
but naturaly there will be better service if we have more info.
01:16:00 [beattiek]
I still don't know if anonymous coward should be able to post
01:16:07 [beattiek]
but i'm thinking yes
01:16:25 [denshi]
denshi (~chatzilla@adsl-216-62-223-193.dsl.rcsntx.swbell.net) has joined #openacs
01:16:33 [davb]
I think so too, but you can have a quality issue.
01:16:40 [beattiek]
at least until there is a large amount of data available, and the network hits a critical point.
01:16:47 [davb]
So you probably need someone to look through them for appropriateness
01:16:49 [davb]
hi denshi !
01:16:58 [denshi]
yo davb
01:17:11 [beattiek]
I'm thinking of stealing /.'s system
01:17:26 [beattiek]
but making it more simple and appropriate
01:17:53 [davb]
good idea.
01:18:31 [beattiek]
i'm thinking only moderators can mod, but people frequently modded up will get an invitation to be a moderator.
01:19:22 [beattiek]
also moderation would be invisable to the users.
01:19:44 [davb]
Sure, that is what philg says in the book, but never programmed it in :)
01:19:54 [beattiek]
haha
01:19:56 [beattiek]
cool.
01:20:06 [denshi]
davb: I hear your supersecret project is going well.
01:20:36 [davb]
Hopefully.
01:21:09 [davb]
I really hope we can get something going and get a working site so I can show people :)
01:21:16 [beattiek]
:)
01:21:18 [beattiek]
me too.
01:22:33 [beattiek]
I'm not sure I want to be using ad_returnredirect want because it redirects to a URL with the ?'s and &'s in it and search engines may ignore those pages.
01:22:38 [beattiek]
is this accurate?
01:22:46 [denshi]
google ignores nothing!
01:23:04 [beattiek]
how about the less fun search engines?
01:24:02 [denshi]
loggy, who is jim and why does he need to talk to me?
01:25:20 [loggy]
I'm logging. I found 1 answer for 'who is jim and why does he need to talk to me'
01:25:21 [loggy]
0) 2002-01-22 01:24:02 <denshi> loggy, who is jim and why does he need to talk to me?
01:25:27 [jim]
denshi: hmm, my xchat tab turned blue :)
01:25:27 [denshi]
* denshi praises loggy.
01:25:43 [beattiek]
he works like grep :)
01:25:55 [denshi]
loggy, shut up and learn to parse.
01:26:12 [beattiek]
haha
01:26:13 [denshi]
better.
01:26:51 [denshi]
loggy, can you find the stick for 'talli: ok, I'll talk to todd'
01:26:51 [denshi]
I'm logging. I don't understand 'can you find the stick for 'talli: ok, I'll talk to todd'', denshi. Try /msg loggy help
01:27:34 [jim]
I hear you're doing an ns<someinterpreter> :)
01:27:35 [jim]
ruby
01:27:53 [denshi]
yup.
01:28:00 [jim]
I have a back^n burner project called perl-aol
01:28:45 [denshi]
Are you Jim Freeze?
01:29:10 [jim]
does things, one, makes libperl available as an aolserver module... two, lets you run perl scripts... three, exposes some of aolserver api
01:29:13 [jim]
no
01:29:18 [talli]
* talli is proud of himself for the possible hacker shiduch
01:29:19 [jim]
Jim Lynch
01:29:35 [denshi]
yup, that's what sf.net sez.
01:29:42 [talli]
talli has quit ("See ya!")
01:30:04 [jim]
what is a shiduch??
01:30:31 [denshi]
I'll have to add talli to my list of "People who hold their knowledge of yiddish over my head."
01:31:05 [denshi]
oh, no releases since 0.0.3.
01:31:09 [jim]
right now, perl-aol crashes aolserver...
01:31:27 [jim]
I can't resolve a problem in my destructors
01:31:30 [denshi]
Yes, I tinkered with perl-aol before starting ns_ruby. Thanks.
01:31:40 [jim]
np
01:31:47 [jim]
you did?
01:31:59 [davb]
beattiek: only google matters :)
01:32:08 [beattiek]
davb: thanks :)
01:32:12 [denshi]
I certainly didn't comprehend it, but I did dig at it for clues.
01:32:14 [beattiek]
why tho?
01:32:25 [davb]
beattiek: in reality, I think all real search engines do not ignore ? anymore.
01:32:32 [beattiek]
cool
01:32:49 [beattiek]
so what is the advantage of .VUH
01:32:57 [jim]
see, its first goal is to get a very efficient set of bindings of aolserver api calls into perl
01:33:24 [davb]
beattiek: it makes pretty URLs
01:33:27 [beattiek]
right,
01:33:30 [jim]
no new conversions in this layer
01:33:46 [davb]
davb: its the "official" OpenACS 4 replacement for registered procs.
01:33:51 [beattiek]
Would it be difficult to switch to .vuh afterthe stage where you add content?
01:34:15 [denshi]
so is this something you plan to pick back up?
01:34:17 [davb]
beattiek: actually, no. if you change URLs the vuh should be able to translate it to the new one.
01:34:31 [jim]
yeah, except it never gets onto my plate
01:34:41 [davb]
I need to actually try this out and report back :)
01:34:47 [beattiek]
:)
01:34:56 [denshi]
vinod: denshi mentions Guiness.
01:35:34 [denshi]
jim: If you want my advice, and you probably don't, I'd suggest you drop it and work on parrot-aol.
01:35:47 [jim]
what's parrot?
01:35:53 [beattiek]
:)
01:35:58 [denshi]
I looked first at your work, then at the perl internals, then at embedding perl, then they locked me up.
01:36:10 [jim]
heh
01:36:36 [jim]
it's the reference counting that I don't quite understand yet
01:36:47 [denshi]
After I was sane again, I determined that the perl 5.x.y interp is *way* too hairy to embed, and extremely difficult to extend.
01:36:48 [vinod]
mmmmm guiness
01:37:05 [denshi]
vinod: it really is the best in Ireland.
01:37:23 [vinod]
i really have to make a trip
01:37:30 [vinod]
next oacs social in dublin, anyone?
01:37:53 [jim]
nonoNO next one in san francisco
01:37:54 [denshi]
next oacs social in Cork!
01:38:03 [denshi]
no, wait, Blarney!
01:38:23 [denshi]
no, Killkenney! and then we can watch a Hurling match!
01:38:45 [vinod]
* vinod agrees to all of the above
01:38:53 [denshi]
jim, did you even come to the SF social?
01:38:54 [jim]
they killed kenny! those bastards!
01:39:09 [jim]
umm, I think so
01:39:33 [jim]
at a hotel in Noe area?
01:39:44 [jim]
Ben was there?
01:40:16 [denshi]
uhh.. I vaguely remember that one. I was asking about the one talli & I threw in Buena Vista.
01:40:35 [jim]
no, dont' think so... when was that?
01:41:41 [jim]
was there a signup for it?
01:42:35 [denshi]
anyway, jim, the perl docs scream bloody murder about perl extensions and just curl up into a little ball and weep about embedding perl. That's one of the primary impetuses in Perl 6, to redo the interp. The new interp is called Parrot, it is mostly the product of Dan Sugalski, and it is planned to be a useful runtime for any language that can write to it. Perl, Python, & Ruby are being worked on.
01:42:39 [davb]
ah. we should have one at Dinosaur Bar-B-Q
01:42:47 [beattiek]
what is that?
01:43:06 [denshi]
So, as I said, a parrot-aol would be much cooler, and much easier to work with.
01:43:44 [davb]
http://www.dinosaurbarbque.com/
01:43:44 [chump]
B: http://www.dinosaurbarbque.com/ from davb
01:44:10 [davb]
B:| Dinosaur Bar-b-que
01:44:10 [chump]
titled item B
01:45:00 [denshi]
davb has drawn forth a great hunger in me..
01:45:18 [davb]
sorry...:)
01:45:32 [denshi]
vinod, are you in boston?
01:45:38 [davb]
That is the best place to eat in new york state outside of NYC
01:45:42 [beattiek]
davb:
01:45:50 [beattiek]
i see.
01:46:03 [beattiek]
Thats where you just were?
01:46:21 [davb]
yes. in syracuse. I haven;t been to the rochester one yet.
01:46:44 [beattiek]
I'll go there, next time i'm in NY.
01:47:01 [vinod]
denshi: yup
01:47:46 [denshi]
there must be a few hurling teams around there... are you familiar with this sport?
01:47:58 [beattiek]
I suppose NY is the second best place in USA for seed capital isn't it?
01:48:19 [vinod]
hurling... nope, never heard of it
01:48:36 [jim]
what perl needs to be embeddable, is an input stream setup that has some extra pieces for doing some types of backup... you give all this to perl and you shoud be able to say "run one perl statement, I want to see the next symbol after it so I can decide if the embedding is done"
01:49:05 [jim]
you can view backup as lookahead too if you want
01:49:12 [jim]
bbiaf
01:49:44 [davb]
beattiek: I hope so :)
01:50:30 [denshi]
vinod: field hockey on drugs, as only the Irish could play it.
01:51:28 [vinod]
cool - i'm reading about it on hurling.net
01:51:33 [denshi]
* denshi can't find a copy of the NY philharmonic performing Duke Ellington's Straynote Symphony.
01:51:37 [vinod]
sounds like something i'd like to stay away from
01:52:53 [denshi]
heh. Sometime soon I need to go back to Eire and take a bicycle.
01:53:21 [vinod]
*that* sounds like fun
01:53:58 [denshi]
I had no idea when I went there (I was 17). It's the perfect bike zone.
02:02:08 [denshi]
okay, it's time to head down to ye local Beer Snob Pub.
02:05:35 [denshi]
denshi has quit ()
02:23:30 [vinod]
vinod has quit ("changing universes")
02:32:56 [mindst0rm]
mindst0rm (~mindstorm@ma-ppp159.mva.net) has joined #OpenACS
02:33:49 [davb]
hi mindst0rm
02:34:49 [mindst0rm]
hi.
02:36:31 [mindst0rm]
I was looking at getting a test install of ACS Java up and running on a small site (4000 page views a day). What kind of hardware would I need for oracle 8i to run at a comfortable rate?
02:37:11 [davb]
depends on definition of comfortable. I have run oracle for testing on an AMD K6 400 with 256 mb ram.
02:37:12 [beattiek]
I think that 256MB of ram on any decent computer would do fine.
02:39:29 [mindst0rm]
given that we do 1000 - 4000 page views a day. Would a dualie setup be overkill? Would it RAID 1+0 be worth considering. ACS Java will be running on a seperate box (HP-UX box 200mhz).
02:44:26 [davb]
I would say you need first as much RAM as you can afford. Mirroring is good to insure your data. If you have enough RAM and are going mostly reads the disk performanace won't matter so much.
02:45:15 [mindst0rm]
thank god RAM is still cheap right now.
02:46:02 [mindst0rm]
I'm worried that our Pentium II BX chipset box can't handle > 512MB RAM>
02:53:29 [mindst0rm]
has anyone tried ACS Java out on jboss?
02:54:14 [davb]
not me. I doubt there are too many people who have tried ACS Java in this channel :)
02:55:14 [mindst0rm]
right, but hopefully there will be a java version of OpenACS that runs on postgres :-)
02:56:00 [davb]
interesting idea.
02:56:45 [mindst0rm]
I'm not to fanatical about AOLServer or tcl.
02:57:04 [davb]
neither am I, but it works :)
02:57:56 [mindst0rm]
It does the job right, but I have to totally relearn my skillsets to implement. I've alot invested in Apache.
02:58:27 [mindst0rm]
speaking of which, what's the deal with mod_tcl or mod_aolserver?
02:58:41 [davb]
Noone is really interested I think.
02:59:08 [davb]
If you are going to use TCL and teh AOLserver APIs you already learned all that you need, its easier to run AOLServer.
03:05:38 [mindst0rm]
thanks guys
03:05:42 [mindst0rm]
mindst0rm has left #OpenACS
03:06:47 [vinod]
vinod (~vinod@207-172-97-132.s132.apx1.sbo.ma.dialup.rcn.com) has joined #openacs
03:15:47 [markd2]
markd2 (~Snak@166.102.30.119) has joined #openacs
03:19:31 [talli]
talli (talli@lti-4.dialup.access.net) has joined #openacs
03:26:13 [docwolf]
HOLA
03:27:56 [vinod]
HOWDY
03:28:04 [docwolf]
how goes it?
03:28:05 [markd2]
HI!!!!!!!!!!!
03:28:10 [markd2]
GOES GREAT!!1!!1!!!
03:28:10 [vinod]
did you slay the dragonfly?
03:28:16 [docwolf]
no, it's still there
03:28:22 [docwolf]
and... as I walked up the stairs into the wolfpad tonight
03:28:28 [docwolf]
a lizard popped out
03:28:29 [davb]
oh my, did it get any bigger?
03:28:38 [docwolf]
so.. now we have a pet lizard in the house.
03:28:54 [docwolf]
perhaps he is man enough to take on the dragonfly
03:29:09 [vinod]
i always knew that florida was a backwards jungle land
03:29:13 [talli]
is it true that there was a man in here tonight trying to find info on acs-java?
03:29:34 [davb]
he is using acs-java, but has oracle-related questions.
03:29:35 [vinod]
* vinod looks shocked
03:29:52 [docwolf]
vinod, i just came back from an elegant night of Harness Racing.. .and you dare call this place backwards??
03:29:57 [talli]
poor man reads like he is doomed
03:30:05 [davb]
yeah.
03:30:20 [davb]
he is hoping for ACS Java working with Postgresql.
03:30:32 [talli]
wish him luck.
03:30:54 [markd2]
he's doomed
03:31:38 [davb]
too bad markd2 wasn't here to set him straight
03:31:49 [vinod]
docwolf: sorry, i take back my hasty comment
03:31:50 [markd2]
my bad
03:32:05 [markd2]
harness racing? sounds kinky
03:32:07 [davb]
I tried to show him the difference between ACS Java and OpenACS
03:32:18 [docwolf]
it was "classy".
03:32:22 [markd2]
one is a giant hulking mass of code
03:32:24 [markd2]
the other is written in java
03:32:26 [docwolf]
(in a 50s sinatra kind of way)
03:32:32 [davb]
right
03:32:39 [docwolf]
... total time-warp experience. rolf will never be the same.
03:38:33 [docwolf]
(of course, harness racing is only the beginning... i must now introduce him to the true "sport of kings" -- jai alai.
03:52:59 [davb]
davb has quit ("ChatZilla 0.8.5 [Mozilla rv:0.9.7/20011221]")
05:20:19 [vinod]
vinod has quit ("changing universes")
06:41:00 [dlk]
dlk (dlk@garrison.ita.chalmers.se) has joined #openacs
06:49:31 [djg]
djg has quit (Read error: 60 (Operation timed out))
08:18:10 [markd2]
markd2 has quit (Read error: 113 (No route to host))
09:36:53 [djg]
djg (~dirk@212.84.246.68) has joined #openacs
10:02:11 [dlk]
dlk is now known as dlk-feeding
10:16:01 [dlk-feeding]
dlk-feeding is now known as dlk
11:17:26 [dlk]
dlk is now known as dlk--away-at-library
11:49:46 [dlk--away-at-library]
dlk--away-at-library is now known as dlk
11:53:18 [vinod]
vinod (~vinod@207-172-255-22.s1038.apx1.sbo.ma.dialup.rcn.com) has joined #openacs
13:32:46 [markd2]
markd2 (~Snak@r-41.124.alltel.net) has joined #openacs
13:32:47 [vinod]
vinod has quit (Read error: 104 (Connection reset by peer))
13:35:15 [davb]
davb (~dave@cm-208-136-23-203.nycap.rr.com) has joined #openacs
13:44:51 [davb]
http://www.semanticstudios.com/publications/semantics/innovation.html
13:44:52 [chump]
C: http://www.semanticstudios.com/publications/semantics/innovation.html from davb
13:44:59 [davb]
C:|Innovation Architecture
13:44:59 [chump]
titled item C
13:45:09 [davb]
C: moving towards self-organizing web sites?
13:45:09 [chump]
commented item C
13:51:28 [markd2]
* markd2 prefers web site entropy
13:55:00 [davb]
like we have now?
13:55:05 [markd2]
yep
13:55:11 [markd2]
and we can contribute to that
13:55:22 [markd2]
by introducing self-disorganizing web sites
13:55:29 [davb]
I see.
13:55:32 [davb]
interesting idea.
13:55:41 [markd2]
better living through chaos
14:14:38 [davb]
don't all the new ideas say that choas is self-organizing? :)
14:15:55 [davb]
uhoh... people are googling for my name... or at least someone with the same name as me.
14:16:02 [markd2]
heh
14:16:16 [davb]
docwolf is down to #5 for search string in my reports.
14:21:09 [davb]
http://www.webtechniques.com/archives/2002/02/desirevu/
14:21:10 [chump]
D: http://www.webtechniques.com/archives/2002/02/desirevu/ from davb
14:21:18 [davb]
D:|Adobe gets into CMS
14:21:18 [chump]
titled item D
14:21:23 [davb]
D: Server-side photoshop?
14:21:24 [chump]
commented item D
14:21:31 [davb]
D: haven't they ever heard of ImageMagick?
14:21:32 [chump]
commented item D
14:22:00 [davb]
D: Yahoo store can also custom render graphics, and has been for quite a while
14:22:00 [chump]
commented item D
14:25:25 [markd2]
heh
14:25:57 [davb]
its $7500
14:26:18 [davb]
I am pretty sure I can whip up a few scripts to do this for half that :)
14:28:48 [davb]
http://mpt.phrasewise.com/2002/01/21
14:28:48 [chump]
E: http://mpt.phrasewise.com/2002/01/21 from davb
14:29:04 [davb]
E:|Mozilla tool to support Blogger API
14:29:04 [chump]
titled item E
14:29:19 [davb]
E: wow. hook this into OpenACS/Edit-this-page
14:29:19 [chump]
commented item E
14:29:37 [davb]
E: Mozilla may be the desktop application to integrate with your CMS
14:29:37 [chump]
commented item E
14:30:32 [davb]
hmmm. if I modified chump to begin his messages with # instead of - they would automagically not be logged by loggy.
14:35:10 [markd2]
loggy could be the chump backup
14:35:33 [davb]
true.
14:35:49 [davb]
I am going to experiement with xena/thecreature. It does everything. weblog, log, google, etc...
14:36:21 [davb]
maybe I will hook it into postgresql or aolserver or something.
14:40:32 [davb]
E: [Moziila->Blogger Client install|http://www.exitspace.net/~mike/misc/install.html]
14:40:32 [chump]
commented item E
15:15:54 [Psychephylax]
:-/
15:19:10 [davb]
davb has quit (adams.openprojects.net irc.openprojects.net)
15:19:10 [markd2]
markd2 has quit (adams.openprojects.net irc.openprojects.net)
15:19:10 [shagster]
shagster has quit (adams.openprojects.net irc.openprojects.net)
15:19:10 [docwolf]
docwolf has quit (adams.openprojects.net irc.openprojects.net)
15:19:10 [dlk]
dlk has quit (adams.openprojects.net irc.openprojects.net)
15:19:10 [Psychephylax]
Psychephylax has quit (adams.openprojects.net irc.openprojects.net)
15:19:10 [hazmat]
hazmat has quit (adams.openprojects.net irc.openprojects.net)
15:19:10 [djg]
djg has quit (adams.openprojects.net irc.openprojects.net)
15:19:10 [talli]
talli has quit (adams.openprojects.net irc.openprojects.net)
15:19:10 [jim]
jim has quit (adams.openprojects.net irc.openprojects.net)
15:19:10 [chump]
chump has quit (adams.openprojects.net irc.openprojects.net)
15:19:10 [beattiek]
beattiek has quit (adams.openprojects.net irc.openprojects.net)
15:19:41 [dario]
dario (dlk@garrison.ita.chalmers.se) has joined #OpenACS
15:19:41 [djg]
djg (~dirk@212.84.246.68) has joined #OpenACS
15:19:41 [dlk]
dlk (dlk@garrison.ita.chalmers.se) has joined #OpenACS
15:19:41 [talli]
talli (talli@lti-4.dialup.access.net) has joined #OpenACS
15:19:41 [hazmat]
hazmat (~ender@adsl-66-123-57-58.dsl.lsan03.pacbell.net) has joined #OpenACS
15:19:41 [Psychephylax]
Psychephylax (proxy@ool-18bd7775.dyn.optonline.net) has joined #OpenACS
15:19:41 [chump]
chump (~chump@alb-24-58-160-41.nycap.rr.com) has joined #OpenACS
15:19:41 [beattiek]
beattiek (beattiek@bmhd25b1y14ha.bc.hsia.telus.net) has joined #OpenACS
15:19:41 [jim]
jim (~jim@12-233-187-5.client.attbi.com) has joined #OpenACS
15:19:49 [ChanServ]
[#OpenACS] This channel is logged: http://www.blogspace.com/openacs/chatlogs/ and blogged: http://www.thedesignexperience.org/openacs/ircblog
15:20:17 [davb]
davb (~dave@cm-208-136-23-203.nycap.rr.com) has joined #OpenACS
15:20:17 [markd2]
markd2 (~Snak@r-41.124.alltel.net) has joined #OpenACS
15:20:17 [shagster]
shagster (~mkovach@web1.alal.com) has joined #OpenACS
15:20:17 [docwolf]
docwolf (~docwolf@adsl-21-207-214.mia.bellsouth.net) has joined #OpenACS
15:21:07 [dlk]
dlk has quit (Killed (NickServ (Nickname Enforcement)))
15:21:44 [dario]
dario is now known as dlk
15:34:07 [tils]
tils (tils@port-212-202-128-200.reverse.qsc.de) has joined #openacs
15:40:44 [docwolf]
docwolf has quit ("What happens if i press this bu")
16:00:21 [dlk]
dlk has quit ()
16:44:28 [davb]
http://www.cs.concordia.ca/~faculty/eden/precise_and_formal/
16:44:28 [chump]
F: http://www.cs.concordia.ca/~faculty/eden/precise_and_formal/ from davb
16:44:38 [davb]
F:|Formal And Precise
16:44:38 [davb]
Software Patterns Representation Languages
16:44:38 [chump]
titled item F
16:44:52 [davb]
F:Software Patterns Representation Languages
16:44:52 [chump]
commented item F
16:45:14 [davb]
F:This page offers a collection of links and information of other resources about precise and formal specification languages for object oriented patterns, as well as tools supporting their application, recognition, and discovery.
16:45:14 [chump]
commented item F
16:56:15 [davb]
http://www.zope.org/Members/pje/Wikis/TransWarp/HomePage
16:56:16 [chump]
G: http://www.zope.org/Members/pje/Wikis/TransWarp/HomePage from davb
16:56:27 [davb]
G:|Aspect-oriented programming for Python
16:56:27 [chump]
titled item G
16:56:35 [davb]
http://lambda.weblogs.com/
16:56:36 [chump]
H: http://lambda.weblogs.com/ from davb
16:56:53 [davb]
H:|Lambda The Ultimate
16:56:53 [chump]
titled item H
16:56:58 [davb]
H:The Programming Languages Weblog
16:56:58 [chump]
commented item H
17:09:13 [hazmat]
tnice links
17:10:37 [davb]
well I stole the first two frm the third. that is a great place.
17:12:01 [rzolf]
rzolf (~rolf@adsl-21-207-214.mia.bellsouth.net) has joined #openacs
17:12:29 [markd2]
it's the invasion from #python
17:20:34 [markd2]
markd2 has quit (Read error: 104 (Connection reset by peer))
17:21:42 [davb]
https://www.projectdocs.com/
17:21:42 [chump]
I: https://www.projectdocs.com/ from davb
17:21:50 [davb]
I:|Projectdocs
17:21:50 [chump]
titled item I
17:21:54 [davb]
I: looks interesting
17:21:54 [chump]
commented item I
17:22:05 [davb]
I:"Projectdocs: An Online Document Management System"
17:22:05 [chump]
commented item I
17:22:45 [rzolf]
rzolf has quit ("[BX] Reserve your copy of BitchX-1.0c18 for Windows CE today!")
17:31:24 [davb]
hazmat: did you try NSSOAP or did you not have enough info to get it going?
17:31:46 [davb]
I want to think about an acs-service-contract for it.
17:33:22 [hazmat]
davb: i really don't have any need for it at the moment. esp. since i can do it using pywx in python just as well (actually better ;). i just fired up aolserver yesterday to finish my zope embedding, but otherwise i haven't touched it in a month.
17:36:19 [davb]
ah. I see.
17:36:41 [davb]
I want to use it with OpenACS, so I guess I'll have to figure it out.
17:36:42 [davb]
:)
18:20:18 [rzolf]
rzolf (~rolf@adsl-21-207-214.mia.bellsouth.net) has joined #openacs
19:19:51 [davb]
davb has quit (Read error: 104 (Connection reset by peer))
19:20:39 [davb]
davb (~dave@cm-208-136-23-203.nycap.rr.com) has joined #openacs
19:45:24 [davb]
http://www.tswoam.co.uk/files/blogger.el.txt
19:45:25 [chump]
J: http://www.tswoam.co.uk/files/blogger.el.txt from davb
19:45:31 [davb]
J:|Blogger API in emacs
19:45:32 [chump]
titled item J
19:52:53 [rzolf]
rzolf has quit ("[BX] Free sex with a BitchX upgrade! Call for details!")
20:29:26 [talli]
talli has left #openacs
20:35:35 [tils]
tils has quit (Read error: 110 (Connection timed out))
21:11:48 [davb]
davb has quit ()
21:30:56 [talli]
talli (talli@lti-4.dialup.access.net) has joined #openacs
21:55:46 [bilingualnanny]
bilingualnanny (~rolf@adsl-21-207-214.mia.bellsouth.net) has joined #openacs
21:56:56 [dario]
dario (dlk@as2-1-4.va.g.bonet.se) has joined #openacs
21:57:53 [hazmat]
sweet
21:58:06 [k2pts]
k2pts (~nkd@adsl-168-174.cytanet.com.cy) has joined #openacs
21:58:10 [k2pts]
hi guys
21:58:14 [hazmat]
welcome back
21:58:26 [k2pts]
hey hazmat
21:58:42 [k2pts]
hazmat: I was looking for you
21:58:51 [hazmat]
whats up?
22:01:11 [dario]
dario is now known as dlk
22:02:58 [bilingualnanny]
bilingualnanny is now known as rzolf
22:07:42 [talli]
hey k2pts!
22:07:45 [talli]
how's it going?
22:09:14 [talli]
rzolf: which ER diagram app are you going to use?
22:10:55 [k2pts]
hey talli
22:12:24 [rzolf]
talli i don't know.
22:13:05 [rzolf]
i don't use them, but maybe doc will want one.
22:15:22 [talli]
k2pts: how are things going? how's the last semeseter of school coming along?
22:15:46 [k2pts]
I'm starting next week.
22:16:14 [hazmat]
yo rzolf do you still have that examples tarball i sent of pywx and aolserver?
22:17:35 [talli]
k2pts: somebody gave you some props over at musea. we're installing and openfts and site wide search and it's been remarked that it's veyr nice code
22:18:56 [k2pts]
thx :)
22:19:13 [k2pts]
:)
22:20:01 [talli]
what are you working on?
22:21:02 [k2pts]
package specific mime-specific object-type specific, internationalization search :)
22:21:25 [talli]
very nice!
22:22:47 [rzolf]
hazmat i think i have that somewhere.
22:23:23 [hazmat]
rzolf: could you *please* email back to me? i lost my copy.
22:24:50 [rzolf]
heh
22:24:59 [rzolf]
sure
22:25:05 [hazmat]
thanks
22:43:18 [rzolf]
rzolf has quit ("[BX] Man I'm *SLEEPY*!!!! My keyboard is slipping away!")
23:03:57 [talli]
jim: you there?
23:14:27 [markd2]
markd2 (~Snak@166.102.30.178) has joined #openacs
23:22:43 [talli]
hazmat: you there?
23:23:36 [hazmat]
talli: whats up?
23:23:44 [talli]
do you have any experience with Mailman/
23:23:45 [talli]
?
23:24:07 [hazmat]
not much... why?
23:24:12 [shagster]
Mailman? the mailing list software ?
23:24:17 [hazmat]
www.list.org
23:24:26 [talli]
i know you were talking about mailing lists vs bboards, so i was wondering whether you have an idea what it would take to make some kind of integration with OACS
23:24:43 [talli]
working on a proposal where the client already has a legacy audience familiar with mailing lists
23:25:06 [hazmat]
talli: what kinda of interaction do you want to see?
23:25:35 [shagster]
Are you looking to intergrate or migrate?
23:26:46 [talli]
i think that the interaction would be pretty low end
23:26:48 [hazmat]
you could maybe do it as external integration. having each bboard become a list, and sending new messages to everyone on the list. poll replies and adding them to threads in the db, based on some sort of magic header (very fragile though), but that would get two way commuication.
23:27:17 [talli]
a user could register for a mailing list via their oacs user page
23:27:41 [talli]
and they could access their mailman management page using their OACS password
23:27:43 [talli]
that kind of stuff
23:27:52 [shagster]
I'd recommend looking at exmlm 0.53 (and ezmlm-idx 0.40)
23:28:07 [talli]
shagster: where's the homepage?
23:28:15 [shagster]
http://www.ezmlm.org
23:28:16 [chump]
K: http://www.ezmlm.org from shagster
23:28:36 [shagster]
K: EzMLM software, based on ezmlm from djb
23:28:37 [chump]
commented item K
23:29:04 [talli]
why do you recommend that one?
23:29:10 [shagster]
I've used in using a php based setup similar to yours (for an Intranet set)
23:29:40 [hazmat]
talli: if its helpful there is a zope integration with mailman... demo.iuveno.de i believe
23:29:51 [shagster]
It works a bit better, IMHO, intergrates with qmail
23:30:10 [shagster]
and always you to use postgres to store the members of the list
23:30:16 [hazmat]
http://demo.iuveno-net.de/iuveno/Products/ZMailman/
23:30:16 [chump]
L: http://demo.iuveno-net.de/iuveno/Products/ZMailman/ from hazmat
23:30:33 [hazmat]
loggy: zope mailman integration...
23:30:40 [hazmat]
fuck xchat.
23:30:47 [hazmat]
ugh..
23:30:56 [shagster]
only if she is cute, heh
23:31:33 [talli]
thanks shagster
23:31:54 [shagster]
sure...
23:32:22 [talli]
shagster: is there a reason to worry that it's v.4? i don't really care, but just wondering
23:32:51 [shagster]
they have always incremented it at .01
23:33:28 [shagster]
Its an add on for ezmlm (written by djb of qmail fame). His code is always tight so the base was good
23:33:29 [talli]
so .4 is equal to 4.0?
23:33:49 [shagster]
every much so.... it has been at .4 for about 2 years now
23:35:07 [talli]
thanks
23:35:29 [shagster]
if you need any help or have any question, shoot an email to mkovach@alal.com
23:35:38 [talli]
how have you found it to work with PG?
23:36:23 [shagster]
It has a config for it...
23:37:20 [k2pts]
k2pts has left #openacs
23:38:39 [shagster]
Take a look here http://nasty.alal.com:8080/INSTALL.idx
23:38:47 [talli]
thanks!
23:39:32 [shagster]
sure
23:46:53 [hazmat]
hazmat has left #openacs
23:51:15 [davb]
davb (~chatzilla@alb-24-58-160-239.nycap.rr.com) has joined #openacs
23:54:52 [talli]
hey davb
23:55:04 [talli]
do you know where there is documentation on the keylist stuf fin the oacs?
23:55:05 [davb]
hi talli
23:55:26 [davb]
keylist?
23:55:32 [talli]
keyword. sorry
23:55:37 [davb]
:)
23:55:40 [davb]
sure.
23:55:41 [talli]
sorry, phone
23:56:06 [davb]
http://developer.arsdigita.com/doc/acs-content-repository/guide/keywords.html
23:56:11 [chump]
M: http://developer.arsdigita.com/doc/acs-content-repository/guide/keywords.html from davb
23:56:24 [davb]
M:|Content Repository Keywords docs
23:56:24 [chump]
titled item M
23:56:35 [talli]
thanks alot
23:56:40 [davb]
np