IRC log of openacs on 2002-02-26
Timestamps are in UTC.
- 00:12:59 [talilee]
- talilee (~root@xcdfddb76.ip.ggn.net) has joined #openacs
- 00:16:04 [jim]
- it would seem to me that hookups are needed: deleting a bboard msg deletes its attachments, deleting a bboard forum deletes its messages, deleting a bboard package instance deletes its forums, deleting bboard package deletes its package instances
- 00:17:01 [jim]
- it doesn't make sense to keep data around unless it can be referred to and accessed
- 00:17:13 [jim]
- not to me, anyway :)
- 00:17:59 [jim]
- but additionally, not only should deleting hookups be placed, backup hookups should also
- 00:18:29 [davb]
- ok. still should apm_package.delete delete the content itself or ask the package to delete it?
- 00:18:31 [jim]
- but that's a whole separate project, and backing up of all data in a site on a daily basis seems sufficient
- 00:18:37 [davb]
- right.
- 00:18:49 [jim]
- should ask the package to do it
- 00:19:28 [jim]
- if you want to follow the oop idiom, then a package should be completely capable of handling its own business
- 00:19:55 [jim]
- (using other packages as necessary of course)
- 00:22:40 [jim]
- dunno about the following, but the package might be given a veto power, perhaps by returning false it could say "don't want to delete data"
- 00:23:05 [davb]
- ah.
- 00:23:12 [davb]
- we could the acs-service-contract
- 00:23:18 [jim]
- except that doesn't give an automatic way of recovering... the assumption is the admin wants it toast
- 00:23:19 [davb]
- that is what it is for
- 00:23:48 [davb]
- or just add a row to the pacakge table that is the name of a tcl proc that will handle it.
- 00:24:33 [jim]
- for now, you probably have to allow for the possibility that a package won't provide a hook
- 00:25:07 [jim]
- better, pl/sql proc
- 00:25:53 [jim]
- but another possibility exists here...
- 00:26:29 [jim]
- it could be that acs_object__delete() already deletes things that are its children?
- 00:26:39 [davb]
- no, that it does not.
- 00:27:08 [davb]
- content_item__delete does. but all apm_package.dellete does is delete the apm_package object for that isntance.
- 00:27:08 [jim]
- so that makes an acs_object an appendage
- 00:27:48 [davb]
- * davb is not sure what that means
- 00:28:01 [davb]
- also my 3 year old is trying to install windows 98 on his computer...
- 00:28:10 [jim]
- heh
- 00:28:14 [jim]
- really?
- 00:28:30 [davb]
- well he doesn't know what he's doing he said "can I fix my computer myself..."
- 00:29:48 [davb]
- i showed him the Next button and said keep clicking on this...
- 00:32:17 [davb]
- unless this should be doing the deleting: PERFORM site_node__delete(cur_val.node_id);
- 00:32:25 [talli]
- whoa
- 00:32:32 [talli]
- you got your 3 year old hacking OACS too?
- 00:32:40 [talli]
- good work davb!
- 00:32:47 [jim]
- maybe when he's 3.5 :)
- 00:32:51 [talli]
- rbm, are you noting davb's work? you're kid is next
- 00:33:23 [jim]
- now's the time to start teaching him SICP :)
- 00:33:36 [jim]
- bbias
- 00:33:37 [davb]
- heh, he will probably finish it before I do
- 00:33:40 [jim]
- f
- 00:33:55 [talli]
- well, at his age he doesnt' care about girls anyway
- 00:33:59 [talli]
- so he could make a good hacker
- 00:36:07 [davb]
- nope. site node delete does not delete anythign except the actual site node object.
- 00:48:33 [djg_]
- djg_ (~dirk@212.84.246.68) has joined #openacs
- 00:51:42 [talilee]
- talilee has quit ("using sirc version 2.211+KSIRC/1.1")
- 00:58:12 [jim]
- back
- 01:10:58 [jim]
- davb: ok, I see a coupla options...
- 01:11:21 [jim]
- one of them is really vague, the other is status quo, pretty much
- 01:12:06 [jim]
- the vague one says: save the data if it was not explicitly deleted, such that it could be either backed up or reattached to a package instance
- 01:12:31 [jim]
- (policy here being: if admin didn't delete the data, you -save- it)
- 01:15:15 [jim]
- the status quo one is a package instance being deleted takes all data associated with it... either package provides a "delete instance data" pl/sql func, or if it doesn't, (another vague piece follows:) instance deleter tries to delete all data by trying to find associated data in some manner and deleting it
- 01:16:46 [jim]
- if instance deleter tries to delete associated data itself, should be enclosed in a transaction
- 01:17:06 [jim]
- if transaction rolls back, it's sorry charlie :)
- 01:17:20 [davb]
- right.
- 01:17:55 [davb]
- that is easy I think to write the query that selects all the objects using the tree_sortkey. just select them in the right order and delete them all.
- 01:18:33 [davb]
- but... for example, the content-repository has its own delete function. wp has its own function built on top of the cr function etc...
- 01:19:05 [jim]
- another possibility is to be closer to status quo: if package doesn't provide instance deleter hook, then can't delete instance?
- 01:19:30 [jim]
- ok, then those packages provide a null func
- 01:19:45 [jim]
- or no
- 01:20:20 [jim]
- those packages provide a hook that calls the existing deleter (since instance deleting presently only deletes an apm stub)
- 01:21:04 [davb]
- jim: the isntance delete should check to see if a package has any child objects, if it does, don't delete?
- 01:21:20 [davb]
- maybe we need a core acs hacker to make an executive decision :)
- 01:21:48 [jim]
- yeah, we're definitely at a point where we have a buncha ideas
- 01:22:40 [jim]
- we could still try stuff, I guess...
- 01:23:08 [jim]
- but an executive decision of sorts was made yesterday wrt the coming beta release
- 01:23:34 [jim]
- which is: don't clean up delete scripts now
- 01:25:34 [talli]
- talli has quit (Read error: 104 (Connection reset by peer))
- 01:25:34 [davb]
- ah.
- 01:25:40 [davb]
- good point.
- 01:33:55 [jim]
- ok, I just found apm_application.delete
- 01:36:41 [jim]
- that's the thing that deletes an instance
- 01:36:47 [davb]
- oooh that sounds good
- 02:09:17 [davb]
- but its not... :(
- 02:12:55 [talli]
- talli (~talli@lti-4.dialup.access.net) has joined #openacs
- 02:13:21 [davb]
- I wonder how to get all the objects under another object using tree_sortkey...
- 02:14:12 [talli]
- what is tree_sortkey and why does everyone talk about it?
- 02:14:39 [jim]
- we'll have to come up with a few alternitave proposals for package instance deletion
- 02:15:27 [rafa]
- rafa (rafa@ebt.ee.usyd.edu.au) has joined #openacs
- 02:15:35 [talli]
- hey rafa
- 02:15:45 [rafa]
- hi Talli, guys
- 02:16:02 [jim]
- ok, I'm out for about 4 hours
- 02:16:03 [davb]
- hi
- 02:16:39 [davb]
- jim: right. first I want to try the delete all content associates with this package_id approach, but I need a query to select all those items :)
- 02:18:47 [rafa]
- I was also going to ask about updated status and the release of a formal 4x distro
- 02:19:00 [davb]
- beta this weekend hopefully
- 02:19:19 [rafa]
- daveb: oacs 4x?
- 02:19:26 [davb]
- rafa yes.
- 02:19:59 [rafa]
- maybe sloan/openforce could open a user acc for testing?
- 02:20:10 [rafa]
- even if we do not see the code...
- 02:20:19 [davb]
- I would much rather see the code.
- 02:20:44 [rafa]
- I know, me too , but that would give as an idea of how thing are going
- 02:21:27 [rafa]
- "personal implementation" means that it is not vapor-ware... a huge diff
- 02:22:19 [davb]
- ah good point.
- 02:28:06 [davb]
- can I put a subselect in a function call like so: tree_right(Select somthing to pass to function)
- 02:40:13 [talli]
- davb, what do you think should be done about etp?
- 02:40:26 [davb]
- Well it depends on what you think it should be for.
- 02:40:32 [davb]
- as a nice simple CMS, it works great.
- 02:40:56 [davb]
- I am leaning towards using it as the super-package that can be customized to collect any sort of data.
- 02:41:05 [talli]
- i think that's a good idea
- 02:41:14 [davb]
- right now the interface does not scale for many extended attributes.
- 02:41:16 [talli]
- but that's separate from what jun did with modetp
- 02:41:33 [davb]
- I am collecting names and addresses and other very specific types of data in it.
- 02:41:36 [davb]
- talli: yes.
- 02:41:55 [talli]
- i was thinking that perhaps mod_etp should be made a branch of ETP while ETP is extended to not only have a better interface but keep all the powerful attribute extensions
- 02:42:20 [davb]
- mod_etp is a nice fast page generator and is enough for most sites.
- 02:42:47 [davb]
- by adding workflow, developers can create custom screens for each custom etp application.
- 02:43:29 [davb]
- and then you can have any kind of worklfow, post, confirm, live or a moderated admin-approval or anything.
- 02:43:42 [talli]
- i agree with that
- 02:43:50 [talli]
- but can that be done with mod_etp?
- 02:43:55 [davb]
- another thing I am planning on using it for is job postings, classified ads, that kind of stuff.
- 02:43:55 [talli]
- i mean, in its current state?
- 02:44:01 [davb]
- talli: not according to luke.
- 02:44:01 [talli]
- cool!
- 02:44:11 [talli]
- that's what we need for OACS.org
- 02:44:36 [davb]
- but each of those has a different model for the data. so seperate forms would be better.
- 02:44:38 [talli]
- i don't think i'll be able to finish that email today since i have some massive things to right tonight
- 02:44:46 [davb]
- np.
- 02:44:58 [davb]
- beta was pushed back to next weekend...
- 02:45:11 [davb]
- it will all come together.
- 02:45:39 [talli]
- so if i hear you correctly, are you suggesting that ETP should not be released as 2.0 with modetp?
- 02:45:44 [davb]
- talli: have you looked at ezpublish?
- 02:45:54 [talli]
- hmmm... sounds familiar
- 02:46:02 [davb]
- talli: I won't use it for this site I am building :)
- 02:46:20 [davb]
- I need those features, so if this site gets funding, they go in anyway.
- 02:46:30 [talli]
- right
- 02:46:33 [davb]
- JUst depends if you want to call it ETP or not.
- 02:46:51 [talli]
- i think that modetp should be released as ETP 1.1 or something
- 02:46:54 [davb]
- ezpublish has good support for adding photos, etc to pages.
- 02:47:21 [davb]
- talli: maybe, or the super-pacakge can be called something else, and ETP continues in a different direction.
- 02:47:36 [talli]
- yeah, i think that's what should be done
- 02:47:38 [davb]
- of course, the super-pacakge will support a simplified app like ETP.
- 02:47:44 [talli]
- in the same way that mozilla has branch development
- 02:48:07 [davb]
- but mod ETP looks great and would be nice to get out with OpenACS 4 or right after. you can have a site up in a day!
- 02:48:12 [davb]
- or hours really.
- 02:48:27 [talli]
- i agree. but you can do that with ETP too. it's just that modetp has a nicer interface
- 02:48:36 [davb]
- someone suggested even shipping OpenACS 4 with ETP mounted at the site root.
- 02:48:48 [talli]
- and it's almost impossible to extend modetp
- 02:48:54 [davb]
- right.
- 02:49:12 [davb]
- but the other one will take to long. so get the pretty etp out there, then we add the new stuff.
- 02:49:27 [talli]
- so might as well spin modetp off as something separate as ETP is improved so that it both has good UI and has good attribues
- 02:49:36 [davb]
- it will look the same when we are done for the default application, but be powerful to customize.
- 02:49:41 [talli]
- that's true, but the extra extensions of ETP are important
- 02:50:09 [davb]
- remember, I have no software development experience, so strategy-wise, I don't know what is best :)
- 02:50:10 [talli]
- so i don't think that it's good to say that modetp is a new, improved ETP, it's just a different one with a better interface
- 02:50:19 [davb]
- right.
- 02:50:31 [talli]
- c'mon now davb. you know more about OACS4 than anyone in this channel!
- 02:50:33 [davb]
- it looks great, and you can upload arbitrary binary files into the tree.
- 02:50:44 [davb]
- 3 bots and docwolf?
- 02:50:57 [davb]
- :)
- 02:51:02 [talli]
- well, that's a good point.
- 02:51:20 [talli]
- but docwolf is pretty, so that must count for something
- 02:51:32 [davb]
- anyway, I haven;t looked at the modetp code. I am doing straight graphics work on the top secret project for now.
- 02:51:45 [talli]
- cool. how's that coming along?
- 02:51:51 [davb]
- I am also on a mission with jim to clean up as much of the ickyness in Opeancs4 as we can find.
- 02:52:01 [davb]
- the guy I am working with can't make a decision.
- 02:52:13 [talli]
- with the graphics?
- 02:52:15 [davb]
- also he is too cheap to hire a professional illustrator, so he got me. but its working.
- 02:52:17 [talli]
- that's the worst part of a site
- 02:52:24 [talli]
- at least the development
- 02:52:40 [talli]
- a client has no idea what the hell the backend does, but they love to tinker with the "look and feel"
- 02:52:45 [davb]
- If I can get over this hurdle, the rest of the site will build itself.
- 02:52:47 [talli]
- it's always the part where we lose money
- 02:52:57 [davb]
- yeah, i keep asking "what do you want the site to do?"
- 02:53:45 [davb]
- I did get a degree in grapgic design then promptly switched to hacking openacs for the last two years...
- 02:54:07 [talli]
- that's the way to do it :)
- 02:55:46 [davb]
- I will have to find some more openacs hackers if he ever gets some $$$
- 02:57:14 [davb]
- oh yeah, one more thing, the super-etp will also accept user-contributed content.
- 02:57:23 [talli]
- nice
- 02:57:41 [talli]
- ok, i need to go do some payin' work
- 02:57:48 [talli]
- talk to you guys later
- 02:57:49 [davb]
- all right. have fun!
- 02:57:56 [talli]
- thanks :(
- 03:21:02 [davb]
- I think I have a query to select all children of an object, but it doesn't select the acs_object itself.
- 03:21:15 [davb]
- or its parents.
- 03:21:29 [davb]
- I can do two seperate select/delete loops.
- 03:25:53 [davb]
- there must be an official approved way to do this :)
- 03:32:25 [davb]
- looks like I need both queries.
- 03:37:08 [davb]
- ok, it won't work just selecting all the children. depending on their type, some need content_item__delete or some other function applied to them.
- 03:38:06 [davb]
- ok, time for bed anyway. I'll think tomorrow.
- 03:39:31 [davb]
- davb has quit ("Client Exiting")
- 12:16:58 [jim]
- davb: I know you8're not on channel now... but if you read this, here is an idea: to do proper instance deleting, we start by provicing a diff off of /doc/apm-requirements.html and add the specific requirement that apm_application.delete() should be capable of deleting the actual application objects generated as a normal course of the app's use. Then, the design document should be ammended to spell out exactly what this should do: either do not
- 12:16:59 [jim]
- hing but try to delete itself (unfortunate default) or the package provides a specific call to delete an instance (in which case apm_application.delete() would call that "callback".)
- 12:19:10 [jim]
- (of course, if you have something that can make the "unfortunate default" work better, icing on the cake... but truth is, each package creates its own data structures, which it should be able to destroy)
- 12:19:43 [jim]
- (and it's easier to let packages do said destruction... and also safer)
- 13:26:52 [talilee]
- talilee (~talli@lti-4.dialup.access.net) has joined #openacs
- 13:26:53 [talli]
- talli has quit (Read error: 104 (Connection reset by peer))
- 15:01:01 [davb]
- davb (~dave@rrcs-nys-24-97-22-203.biz.rr.com) has joined #openacs
- 15:02:06 [davb]
- Hello
- 15:07:10 [davb]
- I am tasked with spiffing up the configuration on a win98 machine. I should have brought the kid to work :)
- 16:04:45 [talilee]
- talilee is now known as talli
- 16:16:02 [davb]
- http://www.laputan.org/mud/mud.html
- 16:16:02 [chump]
- A: http://www.laputan.org/mud/mud.html from davb
- 16:16:45 [talli]
- ugh
- 16:16:54 [talli]
- that's a good name for bad softgware
- 16:17:08 [talli]
- i usually call it the "ad hoc software approach" with my clients
- 16:17:13 [talli]
- same idea. crap crap crap
- 16:23:43 [davb]
- A:|Big Ball of Mud
- 16:23:43 [chump]
- titled item A
- 16:24:37 [davb]
- Hey, I wonder if there should be a programming contest like junkyard wars.
- 16:24:53 [davb]
- Take a heap of code and turn it into a working program.
- 16:24:54 [davb]
- :)
- 16:28:21 [rbm]
- moo
- 16:28:34 [talli]
- yo rbm
- 16:28:35 [rbm]
- This software would never sell in Latin countries though.
- 16:28:55 [talli]
- latin countries are uncomfortable with mud?
- 16:29:01 [rbm]
- "Laputan" is way too close to "La Puta" which translates to "The Bitch"
- 16:29:08 [talli]
- haha
- 16:29:29 [talli]
- kinda of like the Chevy Nova
- 16:29:38 [talli]
- No va ... No go...
- 16:29:39 [rbm]
- "We're Offering you 'The Bitch' for your network needs"
- 16:29:48 [rbm]
- talli: precisely :-)
- 16:30:05 [talli]
- well, for the mysogynists of latin america, that sounds pretty good
- 16:30:20 [rbm]
- What's a mysoginist?
- 16:30:26 [talli]
- a person that hates women
- 16:30:28 [rbm]
- err. mysogynist
- 16:30:59 [talli]
- i think it may even be a pathological hatred of women
- 16:31:04 [talli]
- a chauvinist
- 16:31:22 [rbm]
- I don't think so. It's a macho thing remnant of centuries ago.
- 16:31:43 [rbm]
- But it is cultural.
- 16:32:09 [talli]
- yeah, i agree. i was joking. although latin american countries are patriarchical bordering on mysogony. as is basically every other culture in the world...
- 16:32:35 [talli]
- in orthodox judaism, if you're a man, there's a prayer thanking god for not creaing you as a woman
- 16:32:46 [rbm]
- Psychologically, men are afraid and frustrated about Women. Almost every men in the western hemisphere. This fear and frustration are higher during puberty
- 16:33:00 [talli]
- in hebrew, the term for husband "baal" translates literally to "master"
- 16:33:19 [talli]
- and the term for wife "isha" translates literally to "woman"
- 16:33:28 [rbm]
- hmmm
- 16:33:49 [talli]
- hebrew is a bit of an, uhm, antiquated language
- 16:33:58 [talli]
- bbiam.
- 16:37:09 [davb]
- brb
- 16:37:13 [davb]
- davb has quit ()
- 16:41:46 [davb]
- davb (~dave@rrcs-nys-24-97-22-203.biz.rr.com) has joined #openacs
- 17:37:13 [djg_]
- djg_ has quit (Ping timeout: 14400 seconds)
- 17:46:18 [davb]
- http://www.sneakingsuspicions.com/a0217232002.htm#022102
- 17:46:18 [chump]
- B: http://www.sneakingsuspicions.com/a0217232002.htm#022102 from davb
- 17:46:28 [davb]
- B:|Dear Mr. Abbas Bundu:
- 17:46:28 [chump]
- titled item B
- 18:20:35 [davb]
- davb has quit ()
- 18:37:08 [djg_]
- djg_ (~dirk@212.84.246.68) has joined #openacs
- 19:07:21 [davb]
- davb (~dave@rrcs-nys-24-97-22-203.biz.rr.com) has joined #openacs
- 19:21:41 [davb]
- talli: have you seen lycoris linux?
- 19:22:06 [davb]
- http://www.lycoris.com/products/
- 19:22:06 [chump]
- C: http://www.lycoris.com/products/ from davb
- 19:26:23 [davb]
- C:[review of Lycoris Desktop/LX|http://www.extremetech.com/print_article/0,3428,a=23186,00.asp]
- 19:26:23 [chump]
- commented item C
- 19:33:40 [davb]
- davb has quit ()
- 20:53:24 [davb]
- davb (~dave@rrcs-nys-24-97-22-203.biz.rr.com) has joined #openacs
- 20:53:30 [davb]
- hi
- 20:57:14 [jim]
- heya davb, I can't stay... but I wanted to make sure you saw some stuff...
- 20:57:33 [jim]
- davb: I know you8're not on channel now... but if you read this, here is an idea: to do proper instance deleting, we start by provicing a diff off of /doc/apm-requirements.html and add the specific requirement that apm_application.delete() should be capable of deleting the actual application objects generated as a normal course of the app's use. Then, the design document should be ammended to spell out exactly what this should do: either do not
- 20:57:33 [jim]
- hing but try to delete itself (unfortunate default) or the package provides a specific call to delete an instance (in which case apm_application.delete() would call that "callback".)
- 20:58:13 [jim]
- not \n hing is "nothing", btw
- 20:58:33 [jim]
- (of course, if you have something that can make the "unfortunate default" work better, icing on the cake... but truth is, each package creates its own data structures, which it should be able to destroy
- 20:58:52 [jim]
- and it's easier to let packages do said destruction... and also safer)
- 20:59:47 [jim]
- comments?
- 21:00:23 [davb]
- yes. :) packages should delete their own content. its the only way.
- 21:00:42 [davb]
- we probably should come up with a tested proposal and post to the bboard.
- 21:00:51 [jim]
- right, because they define their own structure
- 21:01:28 [jim]
- agreed
- 21:01:55 [jim]
- (but note...
- 21:02:13 [jim]
- I been looking at the vision statement of the apm requirements doc...
- 21:02:24 [jim]
- and this would be right in line with it)
- 21:02:24 [davb]
- ah, I should read that :)
- 21:02:38 [davb]
- cool.
- 21:02:45 [jim]
- the whole idea is to make all that stuff easy to do
- 21:02:52 [davb]
- so basically, they just never got around to it?
- 21:03:10 [jim]
- dunno if they even identified it as a necessity
- 21:03:22 [davb]
- ah, could be they didn't even think about it.
- 21:03:39 [davb]
- especially because the CR grew out of the seperately developed CMS.
- 21:04:00 [jim]
- I looked at the design document, and lack of commentary on the apm_application package would seem to support that
- 21:04:07 [davb]
- and if a pacakge has content that is not an acs_object, the apm wouldn't even notice.
- 21:04:30 [jim]
- right, leak leak leak :)
- 21:04:51 [davb]
- heh. well the package is responsible to take care of its own content :)
- 21:05:12 [jim]
- like you said, that's the only way to go...
- 21:05:21 [davb]
- I like adding a service contract to abstract out the process of asking a package to delete its own content.
- 21:05:42 [davb]
- or I like the concept anyway. Not sure if it will work or if it needs to be less abstract.
- 21:06:22 [jim]
- once this thing is in place in the kernel, it behaves the same as before until packages are altered to use the feature
- 21:06:27 [davb]
- probably should just make it work, then get fancy later.
- 21:06:34 [davb]
- right. either way the packages need to be updated.
- 21:06:46 [jim]
- I forgot to read up on service contract...
- 21:06:55 [davb]
- its one page :)
- 21:07:14 [davb]
- but the sample code is very informative.
- 21:07:24 [davb]
- I used it to make static-pages searchable.
- 21:08:38 [jim]
- kind of like the gestalt() call in the macos
- 21:08:45 [davb]
- could be :)
- 21:09:12 [jim]
- lemme ask this:
- 21:09:23 [davb]
- yes. (I goggled)
- 21:09:36 [davb]
- (googled that is)
- 21:10:36 [jim]
- what if a package doesn't use service contract at all? what if then, you ask it "can you fulfil the contract of being able to delete instances?"?
- 21:13:12 [jim]
- ok, I see... but it's tcl; could be a problem in the delete script
- 21:13:23 [davb]
- yeah.
- 21:13:56 [davb]
- acs-sc is tcl only so far. hopefully will add pl/[pg]sql implementations one day.
- 21:14:45 [jim]
- maybe today (mroeorless) is that day?
- 21:15:33 [jim]
- sc seems simple enuf...
- 21:16:18 [jim]
- I have to head over to school pretty soon, but I'd be happy to look it over to see if that's possible, and how it might be done
- 21:16:19 [davb]
- sure. contact neophytos if you have an idea how to do it.
- 21:16:39 [davb]
- I know he has already thought about it.
- 21:16:54 [jim]
- he has? maybe not so simple...
- 21:17:08 [jim]
- still, I'll look after shower/coffee
- 21:17:14 [davb]
- also that is needed to convert the oracle SWS to use acs-sc to get data frm packages ( I think)
- 21:17:16 [davb]
- np.
- 21:17:34 [jim]
- SWS?
- 21:17:39 [davb]
- I didn't think it was that hard, just a little beyond my skills.
- 21:17:41 [jim]
- site wide search
- 21:17:45 [davb]
- yes.
- 21:17:50 [davb]
- intermedia is a super PITA
- 21:18:13 [davb]
- but SWS uses acs-interface which is a really bad implementation of the concepts in acs-sc
- 21:18:52 [talli]
- jim, more coffeee????
- 21:19:46 [jim]
- I have one cup a day :)
- 21:19:48 [davb]
- hey, its another dat
- 21:19:51 [jim]
- almost never more :)
- 21:20:18 [talli]
- how big is the cup jim?
- 21:20:27 [jim]
- but if I make it, it's usually super rocket fuel :)
- 21:20:34 [jim]
- pretty big
- 21:21:15 [jim]
- talli: hiya, btw
- 21:21:21 [talli]
- hi
- 21:21:37 [jim]
- ok, gotta go start all that if I'm gonna be able to look at that before 3
- 21:21:54 [jim]
- otherwise after 6
- 21:22:05 [jim]
- and it's about 1:15 my time now
- 21:22:43 [jim]
- bb
- 21:22:50 [davb]
- http://www.skippingdot.net/2002/02/18
- 21:22:50 [chump]
- D: http://www.skippingdot.net/2002/02/18 from davb
- 21:22:55 [davb]
- D:|Open Source Works
- 21:22:55 [chump]
- titled item D
- 21:23:03 [davb]
- D: more from SkippingDot.Net
- 21:23:03 [chump]
- commented item D
- 21:23:22 [davb]
- D: a real developr explains how he benefitted from having access to source
- 21:23:22 [chump]
- commented item D
- 21:25:31 [davb]
- D: too bad he's using Zope :)
- 21:25:31 [chump]
- commented item D
- 21:25:56 [davb]
- I must now depart. I shall return! :)
- 21:26:00 [davb]
- davb has quit ()
- 22:27:32 [the_docwolf]
- the_docwolf (~docwolf@adsl-34-207-203.bct.bellsouth.net) has joined #openacs
- 22:27:54 [the_docwolf]
- the_docwolf has left #openacs
- 22:28:23 [jim]
- date
- 22:28:25 [hazmat]
- hazmat (~ender@adsl-66-123-57-58.dsl.lsan03.pacbell.net) has joined #openacs
- 22:34:16 [rbm]
- paje: status?
- 22:34:16 [paje]
- Since Sat Feb 23 00:11:09 2002, there have been 2 modifications and 7 questions. I have been awake for 3 days, 15 hours, 25 minutes, 3 seconds this session, and currently reference 177 factoids. Addressing is in require mode.
- 22:34:29 [rbm]
- paje: Thank you
- 22:34:29 [paje]
- rbm: de rien
- 22:56:45 [davb]
- davb (dave@alb-24-58-162-46.nycap.rr.com) has joined #openacs
- 22:56:53 [davb]
- davb is now known as davb-in-and-out
- 23:16:10 [denshi]
- denshi (~chatzilla@adsl-216-62-223-193.dsl.rcsntx.swbell.net) has joined #openacs
- 23:16:31 [denshi]
- paje: status?
- 23:16:32 [paje]
- Since Sat Feb 23 00:11:09 2002, there have been 2 modifications and 8 questions. I have been awake for 3 days, 16 hours, 7 minutes, 18 seconds this session, and currently reference 177 factoids. Addressing is in require mode.
- 23:16:44 [denshi]
- paje: hungry?
- 23:16:44 [paje]
- wish i knew, denshi
- 23:17:03 [denshi]
- paje: I have some fine cheesecake you might enjoy.
- 23:17:03 [paje]
- denshi: excuse me?
- 23:17:38 [denshi]
- paje: what? You some kind of militant vegan? No worries, mate. Have a Guinness.
- 23:17:38 [paje]
- denshi: i'm not following you...
- 23:18:03 [rbm]
- hey denshi
- 23:18:24 [denshi]
- hey father-to-be
- 23:18:28 [rbm]
- :)
- 23:19:04 [denshi]
- have you started saving for h[is|er] college tuition?
- 23:19:25 [rbm]
- denshi: I'm trying to pay for my own college before I can save for somebody else's :)
- 23:22:31 [denshi]
- I encourage you to save early. Intelligent kids who have no financial support often turn to escoteric crime to support their differential equations habit.
- 23:22:49 [denshi]
- not that I would know anything about that.
- 23:22:49 [davb-in-and-out]
- hi denshi
- 23:23:00 [denshi]
- hey davb
- 23:23:33 [rbm]
- denshi: I will, but I'm not in a position to save right now. Heck, I make US$ 9.5/hr.
- 23:24:31 [rbm]
- * rbm wishes for a scanner
- 23:25:38 [denshi]
- rbm: buy one and write it off on your taxes.
- 23:26:03 [davb-in-and-out]
- thats what I do.
- 23:29:16 [rbm]
- s/de/the/
- 23:30:59 [davb-in-and-out]
- I allegedly develop web sites.
- 23:32:06 [davb-in-and-out]
- :)
- 23:32:28 [rbm]
- davb-in-and-out: Yes, but I can't work off-campus unless in an internship, like the one I took with Openforce in 2000.
- 23:32:41 [davb-in-and-out]
- ah. tricky
- 23:32:42 [denshi]
- I'm starting to think the most powerful weapon in the world is a good accountant.
- 23:33:03 [davb-in-and-out]
- with a shredder?
- 23:33:12 [rbm]
- I usually get almost nothing in tax return because the "tax cuts" don't apply to "aliens"
- 23:33:20 [davb-in-and-out]
- * davb-in-and-out reads the User Group HOWTO
- 23:33:24 [davb-in-and-out]
- sneaky!
- 23:33:54 [rbm]
- In summary, we are required to pay all the taxes as non-aliens, but we don't get any tax cuts.
- 23:34:29 [rbm]
- The first time a government official called me an "alien" I was offended
- 23:34:55 [denshi]
- are you on permanent resident status or what?
- 23:35:00 [davb-in-and-out]
- that is icky.
- 23:35:02 [rbm]
- denshi: nope. student status.
- 23:35:22 [denshi]
- what about your wife?
- 23:35:25 [rbm]
- Permanent residents are not considered "aliens" anymore.
- 23:35:34 [rbm]
- My wife is a student as well. She's also from Brazil.
- 23:37:46 [denshi]
- tricky..
- 23:42:06 [rbm]
- do people still actually think that there's polygamy in Utah?
- 23:43:58 [denshi]
- 3 things:
- 23:44:25 [denshi]
- 1. Even though it's illegal, it still exists in rural areas in southern utah.
- 23:44:54 [denshi]
- 2. many people looking in won't bother to perceive the difference.
- 23:45:02 [rbm]
- I meant if people still think that there's _widespread_ polygamy in Utah.
- 23:45:27 [rbm]
- There's people with several wives/husbands everywhere in the world. Heck, JFK had 11 affairs.
- 23:45:29 [denshi]
- 3. Aside from the above, polygamy will be a running joke about mormonism forever.
- 23:45:44 [denshi]
- mostly it's just #3 that's important.
- 23:45:50 [rbm]
- I guess so.
- 23:47:20 [rbm]
- http://www.opennms.com/ <-- "an open-source project dedicated to the creation of an enterprise grade network management platform"
- 23:47:20 [chump]
- E: http://www.opennms.com/ from rbm
- 23:47:28 [denshi]
- life lesson: avoid anything that can become a running joke.
- 23:47:36 [rbm]
- E:| an open-source project dedicated to the creation of an enterprise grade network management platform
- 23:47:36 [chump]
- titled item E
- 23:50:15 [denshi]
- speaking of running jokes, I busted one of my foot tendons running last week.
- 23:50:48 [denshi]
- this is vastly increasing the number of hours I log on my computer.
- 23:51:42 [denshi]
- http://keepersoflists.org/?lid=848
- 23:51:42 [chump]
- F: http://keepersoflists.org/?lid=848 from denshi
- 23:51:53 [denshi]
- F: Elmo knows where you live!
- 23:51:53 [chump]
- commented item F
- 23:53:23 [denshi]
- paje: go find talli.
- 23:53:23 [paje]
- denshi: sorry...
- 23:53:33 [denshi]
- paje: what's it going to cost me?
- 23:53:33 [paje]
- denshi: no idea
- 23:53:41 [denshi]
- rbm, smack your bot.
- 23:55:57 [rbm]
- denshi: :)
- 23:56:26 [rbm]
- paje: smack denshi
- 23:56:26 [paje]
- rbm: i'm not following you...
- 23:56:32 [rbm]
- paje: smack?
- 23:56:33 [paje]
- rbm: smack yourself !@#$%!$^!!
- 23:56:45 [denshi]
- paje: kick a man while he's down.
- 23:56:45 [paje]
- denshi: huh?
- 23:56:59 [denshi]
- paje: your mother was abot.
- 23:56:59 [paje]
- denshi: i'm not following you...
- 23:57:09 [denshi]
- paje: insult paje.
- 23:57:10 [paje]
- paje. is nothing but a dizzy-eyed thimbleful of thick bat toenails.
- 23:57:21 [rbm]
- * rbm goes out in search of a scanner
- 23:57:35 [rbm]
- recommendations?