You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(7) |
Nov
(29) |
Dec
(101) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(90) |
Feb
(101) |
Mar
(173) |
Apr
(141) |
May
(38) |
Jun
(28) |
Jul
(14) |
Aug
(7) |
Sep
(3) |
Oct
(7) |
Nov
(15) |
Dec
(9) |
2002 |
Jan
(2) |
Feb
(5) |
Mar
(11) |
Apr
|
May
(4) |
Jun
(6) |
Jul
(7) |
Aug
(12) |
Sep
(8) |
Oct
(1) |
Nov
(4) |
Dec
(7) |
2003 |
Jan
(7) |
Feb
(1) |
Mar
(9) |
Apr
(2) |
May
(3) |
Jun
(4) |
Jul
(19) |
Aug
(4) |
Sep
(8) |
Oct
(30) |
Nov
(25) |
Dec
(22) |
2004 |
Jan
(6) |
Feb
(12) |
Mar
|
Apr
(2) |
May
|
Jun
(10) |
Jul
(18) |
Aug
(2) |
Sep
(4) |
Oct
(4) |
Nov
(4) |
Dec
(4) |
2005 |
Jan
(8) |
Feb
(4) |
Mar
(6) |
Apr
(5) |
May
|
Jun
(2) |
Jul
(1) |
Aug
|
Sep
(1) |
Oct
(4) |
Nov
(3) |
Dec
|
2006 |
Jan
(9) |
Feb
(6) |
Mar
(11) |
Apr
|
May
(2) |
Jun
|
Jul
(2) |
Aug
(10) |
Sep
(8) |
Oct
|
Nov
(1) |
Dec
(1) |
2007 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(7) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <no...@so...> - 2001-05-18 23:13:44
|
Patches item #425334, was updated on 2001-05-18 16:13 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=304421&aid=425334&group_id=4421 Category: MAIN branch Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: fix extracolumns editing Initial Comment: on line 139 in plugins/Admin/templates/ editStory;admin;default , storyref.val should be storyref.$val ... 139c139 < <INPUT TYPE="TEXT" NAME="[% val %]" VALUE="[% FILTER strip_attribute; storyref.$val; END %]" SIZE="64"> --- > <INPUT TYPE="TEXT" NAME="[% val %]" VALUE="[% FILTER strip_attribute; storyref.val; END %]" SIZE="64"> ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=304421&aid=425334&group_id=4421 |
From: Nathan V. <na...@th...> - 2001-05-18 22:30:19
|
I'm working on something similar to the book reviews section on slashdot, and it looks like the book reviews stuff is sort of still in slash 2.0.0, but not really. I can get the extra fields to show up in the story editor but only after hitting preview once, and they don't seem to get filled with previously saved data. And the extra fields get stuck on the story object (for display by the dispStory template) when I preview, but never from article.pl. I think something in my article.pl is broken too because sometimes it won't display any of the story. But that's another issue. I am a bit stumped following the trail of internal _get_generic* subs in Slash::DB::Mysql though. So I guess I have a one question: 1. Has anyone else had article.pl not displaying story info, but only comments? It disturbs me. And, 2. Since getStory just calls _genericGetCache('stories', 'sid', 'story_param', @_), it's not really prepared to make a call to a second table like it needs to for the extracols stuff. So I guess I should do it explicitly within getStory, right? Drat, two questions. No, three: 3. When I get it working, should I submit a patch to sourceforge? Or is this already something you guys are working on in fry, which is for slashdot? Thanks, -n -- Nathan Vonnahme na...@th... senior web developer third sector technologies http://enteuxis.org/nathan http://thethirdsector.com |
From: Chris N. <pu...@po...> - 2001-05-14 11:24:42
|
At 22:20 +0200 2001.05.13, Atif Ghaffar wrote: >I dont know if this has come up before, >Are there any plans to move using CSS?. There's nothing to do to move to CSS. Just add it yourself in the templates. There are no plans to move the slashcode theme to CSS, and I don't think there ever will be any such plans. If you want to create a new theme (from scratch, or based on the slashcode theme) then you could add CSS to that. -- Chris Nandor pu...@po... http://pudge.net/ Open Source Development Network pu...@os... http://osdn.com/ |
From: shane <sh...@lo...> - 2001-05-14 11:21:58
|
At 10:20 PM 5/13/2001 +0200, you wrote: >Hi, > >I dont know if this has come up before, >Are there any plans to move using CSS?. > >If, yes, Ill be glad to help. >cheers Here's how I did it. I'm not sure I did it in the best method, it's a work in progress: 1. Changed html-header by adding this: <link rel="STYLESHEET" type="text/css" href="[% dir %]/[% section %]default.css"> So far, so good. I'm not sure whether or not I need a 2nd "/" after section to guarantee the file is included correctly. And, because of the way Slash.pm's header sub works, it only calls html-header if $title was passed to it. So, I think, if a page doesn't have a title then the stylesheet may not be included. 2. I dumped all the templates, and search/replaced for specific things that I wanted css to replace. YMMV. When I first tried messing with stylesheets under slash, I put the stylesheet into a template, and included that template. That was easier to manage then the above (for which you would need shell access to edit the file) *but* the idea of the sytle sheet is that you download that one file and the browser can reference it over and over. With it in a template the browser is downloading it each hit. That seems too wasteful to me so I put it into a file. I thought about keeping it in a template, but dumping it to a file routinely with portald-site. I also thought about modifying Slash.pm's header sub and putting in something like if ($constants->{show_css}) { $css = getCSS(1); } and then modify the header template such that it looks like this: __section__ default __description__ Text that makes up the top of a page No specially passed variables __title__ __page__ misc __lang__ en_US __name__ header __template__ [% IF constants.show_css %] [% INCLUDE csscode %] [% END %] </HEAD> <BODY> etc etc etc.... I too would appreciate any suggestions you might have as to the best way to implement this. Thanks, Shane |
From: Atif G. <agh...@de...> - 2001-05-13 20:21:07
|
Hi, I dont know if this has come up before, = Are there any plans to move using CSS?. If, yes, Ill be glad to help. cheers -- = Atif Ghaffar Internet Development Manager 4unet AG/SA/Ltd. -------------------------. +41 21 351 53 60 =A6 voice +41 78 787 51 45 =A6 mobile +41 86 0796598972=A6 fax http://www.4unet.net =A6 www http://atif.developer.ch =A6 homepage ati...@4u... =A6 email |
From: demo <tor...@st...> - 2001-05-13 10:21:31
|
Hi, I have just entered a project using (a slightly modified) slash as a forum, and encountered some problems with paging of comments. (just user.commentlimit comments on each page) This works ok with a threaded view, but when switching to a flat view - the limit only works for the toplevel comments. The whole slash-code is supposed to be quite modified.. I've tried to read up on the code, but I'm still lost... Does anyone here know what might be causing this? Any wild speculations? Even a description of the pageing code would help - or just a pointer of where to look. --=20 Eld p=E5 =E5ren og sol p=E5 eng gjer mannen fegen og fj=E5g. [J=F8tul] <demo> |
From: Eric D. <eri...@ja...> - 2001-05-11 20:07:24
|
Yeah, it's messed up. CPAN wanted to install perl 5.6.1, and then all this other stuff. A real mess. I had to blow away the perl libs and install them off a backup. Everything works fine now....... Kinda a little off the subject, but, my FreeBSD system has Perl 5.003 and 5.6.0 on it. Should I only have 5.6.1 perl? If so, are there any good reads about how to get rid of the other older versions? Chris Nandor wrote: > At 10:19 -0700 2001.05.11, Eric Dannewitz wrote: > >Chris Nandor wrote: > > > >> At 10:05 -0700 2001.05.11, Eric Dannewitz wrote: > >> >I updated my bundles from CPAN and I'm getting this: > >> > > >> >Bundle summary: The following items in bundle Bundle::Slash had > >> >installation problems: > >> > Bundle::CPAN Bundle::DBD::mysql Template and the following items had > >> > problems during recursive bundle calls: Bundle::libnet DBD::mysql > >> > Data::Dumper Mysql > >> > >> CPAN surely told you why each failed. > > >Well, yeah, but....any ideas? > > Yep. Look at what the errors are. :-) > > >I've been messing with this for a couple of hours. The DBD::mysql::2.0900 > >bundle/library is a particular problem. I can't get that to compile. > >Manually, or via CPAN > > Yes, someone seriously f****d up. They put an experimental version of > DBD::mysql on CPAN and did not mark it as experimental. If you want to, > you can try to install it by hand in this manner: > > cpan> install J/JW/JWIED/Msql-Mysql-modules-1.1835.tar.gz > > That will get the "old" version. My apologies for the problems with the > new version of DBD::mysql. I will look into a solution. > > -- > Chris Nandor pu...@po... http://pudge.net/ > Open Source Development Network pu...@os... http://osdn.com/ > > _______________________________________________ > Slashcode-development mailing list > Sla...@li... > http://lists.sourceforge.net/lists/listinfo/slashcode-development -- What we have to learn to do, we learn by doing. - Aristotle Eric Dannewitz - Adventurer, saxophonist, good-timer (crook? quite possibly), clarinetist, manic self-publicist, part-time flautist(flutist?), macintosher, and often thought to be completely out to lunch. http://www.jazz-sax.com |
From: Chris N. <pu...@po...> - 2001-05-11 17:54:58
|
At 10:19 -0700 2001.05.11, Eric Dannewitz wrote: >Chris Nandor wrote: > >> At 10:05 -0700 2001.05.11, Eric Dannewitz wrote: >> >I updated my bundles from CPAN and I'm getting this: >> > >> >Bundle summary: The following items in bundle Bundle::Slash had >> >installation problems: >> > Bundle::CPAN Bundle::DBD::mysql Template and the following items had >> > problems during recursive bundle calls: Bundle::libnet DBD::mysql >> > Data::Dumper Mysql >> >> CPAN surely told you why each failed. >Well, yeah, but....any ideas? Yep. Look at what the errors are. :-) >I've been messing with this for a couple of hours. The DBD::mysql::2.0900 >bundle/library is a particular problem. I can't get that to compile. >Manually, or via CPAN Yes, someone seriously f****d up. They put an experimental version of DBD::mysql on CPAN and did not mark it as experimental. If you want to, you can try to install it by hand in this manner: cpan> install J/JW/JWIED/Msql-Mysql-modules-1.1835.tar.gz That will get the "old" version. My apologies for the problems with the new version of DBD::mysql. I will look into a solution. -- Chris Nandor pu...@po... http://pudge.net/ Open Source Development Network pu...@os... http://osdn.com/ |
From: shane <sh...@lo...> - 2001-05-11 17:37:00
|
At 10:19 AM 5/11/2001 -0700, you wrote: >Well, yeah, but....any ideas? > >I've been messing with this for a couple of hours. The DBD::mysql::2.0900 >bundle/library is a particular problem. I can't get that to compile. >Manually, or via CPAN > Go into the cache/download directory and install them by hand. A similar thing happened to me, I couldn't install them through cpan, but by hand they installed OK. Shane >Chris Nandor wrote: > > > At 10:05 -0700 2001.05.11, Eric Dannewitz wrote: > > >I updated my bundles from CPAN and I'm getting this: > > > > > >Bundle summary: The following items in bundle Bundle::Slash had > > >installation problems: > > > Bundle::CPAN Bundle::DBD::mysql Template and the following items had > > > problems during recursive bundle calls: Bundle::libnet DBD::mysql > > > Data::Dumper Mysql > > > > CPAN surely told you why each failed. > > > > -- > > Chris Nandor pu...@po... http://pudge.net/ > > Open Source Development Network pu...@os... http://osdn.com/ > > > > _______________________________________________ > > Slashcode-development mailing list > > Sla...@li... > > http://lists.sourceforge.net/lists/listinfo/slashcode-development > >-- >What we have to learn to do, we learn by doing. - Aristotle > >Eric Dannewitz - Adventurer, saxophonist, good-timer (crook? quite >possibly), clarinetist, manic self-publicist, >part-time flautist(flutist?), macintosher, and often thought to be >completely out to lunch. http://www.jazz-sax.com > > > >_______________________________________________ >Slashcode-development mailing list >Sla...@li... >http://lists.sourceforge.net/lists/listinfo/slashcode-development |
From: Eric D. <eri...@ja...> - 2001-05-11 17:18:50
|
Well, yeah, but....any ideas? I've been messing with this for a couple of hours. The DBD::mysql::2.0900 bundle/library is a particular problem. I can't get that to compile. Manually, or via CPAN Chris Nandor wrote: > At 10:05 -0700 2001.05.11, Eric Dannewitz wrote: > >I updated my bundles from CPAN and I'm getting this: > > > >Bundle summary: The following items in bundle Bundle::Slash had > >installation problems: > > Bundle::CPAN Bundle::DBD::mysql Template and the following items had > > problems during recursive bundle calls: Bundle::libnet DBD::mysql > > Data::Dumper Mysql > > CPAN surely told you why each failed. > > -- > Chris Nandor pu...@po... http://pudge.net/ > Open Source Development Network pu...@os... http://osdn.com/ > > _______________________________________________ > Slashcode-development mailing list > Sla...@li... > http://lists.sourceforge.net/lists/listinfo/slashcode-development -- What we have to learn to do, we learn by doing. - Aristotle Eric Dannewitz - Adventurer, saxophonist, good-timer (crook? quite possibly), clarinetist, manic self-publicist, part-time flautist(flutist?), macintosher, and often thought to be completely out to lunch. http://www.jazz-sax.com |
From: Chris N. <pu...@po...> - 2001-05-11 17:14:50
|
At 10:05 -0700 2001.05.11, Eric Dannewitz wrote: >I updated my bundles from CPAN and I'm getting this: > >Bundle summary: The following items in bundle Bundle::Slash had >installation problems: > Bundle::CPAN Bundle::DBD::mysql Template and the following items had > problems during recursive bundle calls: Bundle::libnet DBD::mysql > Data::Dumper Mysql CPAN surely told you why each failed. -- Chris Nandor pu...@po... http://pudge.net/ Open Source Development Network pu...@os... http://osdn.com/ |
From: Eric D. <eri...@ja...> - 2001-05-11 17:04:59
|
I updated my bundles from CPAN and I'm getting this: Bundle summary: The following items in bundle Bundle::Slash had installation problems: Bundle::CPAN Bundle::DBD::mysql Template and the following items had problems during recursive bundle calls: Bundle::libnet DBD::mysql Data::Dumper Mysql Any ideas? |
From: Alessio B. <al...@al...> - 2001-05-10 15:48:03
|
I don't know if I'm the only one actively trying to run Slash 2.0.0 on PostgreSQL, anyway I can share my experience. After applying the patches that I just submitted to Sourceforge, I have a system that does a complete installation, with slashd running and working, but no web pages displayed. This most probably is linked to problems in the inheritance tree of different modules. That's the standstill. I will offline for some ten days, after the break I will try to investigate things further. -- Alessio F. Bragadini al...@al... APL Financial Services http://village.albourne.com Nicosia, Cyprus phone: +357-2-755750 "It is more complicated than you think" -- The Eighth Networking Truth from RFC 1925 |
From: <no...@so...> - 2001-05-10 14:47:23
|
Patches item #423050, was updated on 2001-05-10 07:47 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=304421&aid=423050&group_id=4421 Category: MAIN branch Group: None Status: Open Resolution: None Priority: 5 Submitted By: Alessio Bragadini (alessio) Assigned to: Nobody/Anonymous (nobody) Summary: Patch for Slash::DB::PostgreSQL Initial Comment: This is my work so far on Slash::DB::PostgreSQL ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=304421&aid=423050&group_id=4421 |
From: <no...@so...> - 2001-05-10 13:57:15
|
Patches item #423031, was updated on 2001-05-10 06:57 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=304421&aid=423031&group_id=4421 Category: MAIN branch Group: None Status: Open Resolution: None Priority: 5 Submitted By: Alessio Bragadini (alessio) Assigned to: Nobody/Anonymous (nobody) Summary: Patch for DB::Static::PostgreSQL Initial Comment: This is ugly! In fact, this is working, but only because I've copied a bunch of subroutines from the MySQL.pm counterpart even if they don't need to be redefined. Needs to be rechecked once all inheritance problems are fixed. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=304421&aid=423031&group_id=4421 |
From: <no...@so...> - 2001-05-10 13:28:17
|
Patches item #423022, was updated on 2001-05-10 06:28 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=304421&aid=423022&group_id=4421 Category: MAIN branch Group: None Status: Open Resolution: None Priority: 5 Submitted By: Alessio Bragadini (alessio) Assigned to: Nobody/Anonymous (nobody) Summary: Fixing a LAST_INSERT_ID in Journal.pm Initial Comment: Using getLastInsertId instead of LAST_INSERT_ID ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=304421&aid=423022&group_id=4421 |
From: <no...@so...> - 2001-05-10 13:24:12
|
Patches item #423020, was updated on 2001-05-10 06:24 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=304421&aid=423020&group_id=4421 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Alessio Bragadini (alessio) Assigned to: Nobody/Anonymous (nobody) Summary: Fixes for PostgreSQL Initial Comment: Various fixes for Slash theme datadump, to be applied once the tables are split again as in MySQL version (see my other patch) text values must be quoted in INSERT (does MySql allows such a thing?!) "INSERT INTO users" doesn't need uid field: the SERIAL field will pick1 by itself, otherwise if feeded with a value the sequence will not advance and will pick 1 again screwing the install Inserted ancillary users tables for uid 1 (_comments, _index, etc.) ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=304421&aid=423020&group_id=4421 |
From: <no...@so...> - 2001-05-10 13:00:42
|
Patches item #423008, was updated on 2001-05-10 06:00 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=304421&aid=423008&group_id=4421 Category: MAIN branch Group: None Status: Open Resolution: None Priority: 5 Submitted By: Alessio Bragadini (alessio) Assigned to: Nobody/Anonymous (nobody) Summary: Schema changes for PostgreSQL Initial Comment: This patch fixes some bugs in the PostgreSQL database schema, and tries to ease the port from MySQL. Aligned PostgreSQL tables to MySQL tables as much as possible. Split back users table into users_*. Fixed some char(x) when varchar(x) makes much more sense. Added mysql emulation functions: ifnull, from_unixtime, unix_timestamp, to_days, from_days This patch supercedes an earlier, not commited patch. ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=304421&aid=423008&group_id=4421 |
From: <no...@so...> - 2001-05-10 10:56:48
|
Patches item #422981, was updated on 2001-05-10 03:56 You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=304421&aid=422981&group_id=4421 Category: MAIN branch Group: None Status: Open Resolution: None Priority: 5 Submitted By: Alvaro del Castillo (acs2) Assigned to: Nobody/Anonymous (nobody) Summary: ACL support for slashcode 2.0.0 Initial Comment: This patch includes functions to manage ACLs for the users. When a user access slashcode web it receives with the other params the ACLs she has. I have to modify Slash::DB::MySQL getUser and setUser functions and Slash::Utility to include the manage functions. You need to create a new table calles users_acl. In this table will live all the information about the ACLs and the users. ACL is an acronym fro Access Control List and it is a mechanism very powerfull to give power to the users in a very precise way. To apply the patch copy the file in the main slashcode2 directory and execute: bash-2.03$ tar xvfz slash-2.0.0-acl.tgz slash2-bp/ACL.patch slash2-bp/sql/mysql/users_acl.sql bash-2.03$ patch -p0 < slash2-bp/ACL.patch patching file `Slash/DB/MySQL/MySQL.pm' patching file `Slash/Utility/Utility.pm' bash-2.03$ mysql slash < slash2-bp/sql/mysql/users_acl.sql Where slash is your database. The script for the database only works with MySQL but it's very easy to modify it for Postgres or Oracle. If you have any problem please, contact me: ac...@ba... ---------------------------------------------------------------------- You can respond by visiting: http://sourceforge.net/tracker/?func=detail&atid=304421&aid=422981&group_id=4421 |
From: Alvaro d. C. <ac...@ba...> - 2001-05-10 04:56:24
|
Great work guys! I have waiting this moment the last weeks ;-) Time to work !!!! -- Alvaro El 09 May 2001 16:20:15 -0400, Chris Nandor escribió: > Slash 2.0.0 is finally out. This is it. No caveats, no -bender tag, no > -pre tag, just pure, unadulterated, released code. > > http://slashcode.com/article.pl?sid=01/05/09/2015207 > > http://sourceforge.net/project/showfiles.php?group_id=4421&release_id=34462 > ftp://ftp.slashdot.org/pub/slashcode/slash-2.0.0.tar.gz > > -- > Chris Nandor pu...@po... http://pudge.net/ > Open Source Development Network pu...@os... http://osdn.com/ > > _______________________________________________ > Slashcode-development mailing list > Sla...@li... > http://lists.sourceforge.net/lists/listinfo/slashcode-development > |
From: Chris N. <pu...@os...> - 2001-05-09 20:20:31
|
Slash 2.0.0 is finally out. This is it. No caveats, no -bender tag, no -pre tag, just pure, unadulterated, released code. http://slashcode.com/article.pl?sid=01/05/09/2015207 http://sourceforge.net/project/showfiles.php?group_id=4421&release_id=34462 ftp://ftp.slashdot.org/pub/slashcode/slash-2.0.0.tar.gz -- Chris Nandor pu...@po... http://pudge.net/ Open Source Development Network pu...@os... http://osdn.com/ |
From: Alessio B. <al...@al...> - 2001-05-08 13:59:51
|
Chris Nandor wrote: > Can you, please, add Slash::DB::Utility to @Slash::DB::ISAPg (in > Slash/DB.pm) and see if that "fixes" it? No, it's still the same. And adding Slash::DB::Utility to @Slash::DB::ISA breaks things even more, Apache doesn't start at all. Quite puzzled. -- Alessio F. Bragadini al...@al... APL Financial Services http://village.albourne.com Nicosia, Cyprus phone: +357-2-755750 "It is more complicated than you think" -- The Eighth Networking Truth from RFC 1925 |
From: Chris N. <pu...@po...> - 2001-05-08 13:18:11
|
At 15:57 +0300 2001.05.08, Alessio Bragadini wrote: >I'm patching Slash 2.0pre3 for PostgreSQL. I've reworked heavily >Slash::DB::PostregSQL, but I didn't touch the @ISA scheme. And I've got >a problem in this. > >I've managed to have slashd working fine, fixing >Slash::DB::Static::PostgreSQL. But every web request ends up in >something like > >[Tue May 8 15:48:09 2001] [error] Can't locate object method >"sqlConnect" via package "Slash::DB" at >/usr/local/lib/site_perl/i386-linux/Slash/Apache/User.pm line 75. > >sqlConnect is in fact located in Slash::DB::Utility, >@Slash::DB::ISA = qw[ Slash::Utility ] but at runtime it (should) get >@Slash::DB::ISAPg = qw[ Slash::Utility Slash::DB::PostgreSQL >Slash::DB::MySQL ]; >and >@Slash::DB::PostgreSQL::ISA = qw(Slash::DB::Utility) > >it's not simple at all and I get confused... But what I understand is >that sqlConnect should be called from Slash::DB -> Slash::DB::PostgreSQL >-> Slash::DB::Utility . This doesn't happen. > >Any idea :-? Can you, please, add Slash::DB::Utility to @Slash::DB::ISAPg (in Slash/DB.pm) and see if that "fixes" it? -- Chris Nandor pu...@po... http://pudge.net/ Open Source Development Network pu...@os... http://osdn.com/ |
From: Alessio B. <al...@al...> - 2001-05-08 12:57:50
|
I'm patching Slash 2.0pre3 for PostgreSQL. I've reworked heavily Slash::DB::PostregSQL, but I didn't touch the @ISA scheme. And I've got a problem in this. I've managed to have slashd working fine, fixing Slash::DB::Static::PostgreSQL. But every web request ends up in something like [Tue May 8 15:48:09 2001] [error] Can't locate object method "sqlConnect" via package "Slash::DB" at /usr/local/lib/site_perl/i386-linux/Slash/Apache/User.pm line 75. sqlConnect is in fact located in Slash::DB::Utility, @Slash::DB::ISA = qw[ Slash::Utility ] but at runtime it (should) get @Slash::DB::ISAPg = qw[ Slash::Utility Slash::DB::PostgreSQL Slash::DB::MySQL ]; and @Slash::DB::PostgreSQL::ISA = qw(Slash::DB::Utility) it's not simple at all and I get confused... But what I understand is that sqlConnect should be called from Slash::DB -> Slash::DB::PostgreSQL -> Slash::DB::Utility . This doesn't happen. Any idea :-? I am using a test environment of Apache 1.3.19 and mod_perl 1.25 (perl 5.005_03) on Debian potato, connecting to a PostgreSQL 7.1.1 database on Digital Unix. -- Alessio F. Bragadini al...@al... APL Financial Services http://village.albourne.com Nicosia, Cyprus phone: +357-2-755750 "It is more complicated than you think" -- The Eighth Networking Truth from RFC 1925 |
From: Blake D. <bl...@ar...> - 2001-05-06 18:56:40
|
Anybody have any idea how i could add some html to the end of every "set of threaded replies"? After all those one-line threads for a certain comment, i need to close a table, but since displayThread is recursive, im not quite sure where to put that. Blake Day home: (770) 338-1589 mobile: (678) 485-0519 |