You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
(12) |
Aug
(6) |
Sep
(2) |
Oct
(3) |
Nov
(7) |
Dec
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <ben...@id...> - 2004-05-22 12:09:20
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
|
From: Scott M. <sc...@cs...> - 2003-11-13 20:59:22
|
Eric, I am not sure what kind of performance hit this will produce.=20 Connections (opening and closing) are a resource heavy operation. A good=20= idea though. Give it a try! On Tuesday, November 11, 2003, at 11:09 AM, Eric Covert wrote: > Hey guys, > =A0 > I'm doing a few little sites right now for Tony Patrick, and I've=20 > convinced him to let me use the DNACMS. The one thing from Nuke that I=20= > would like to be able to give him is the ability to share the users=20 > table across sites so that people visiting these sites can use the = same=20 > username and password for each site. Now the way Nuke does this, is=20 > multiple sites will share the same database, and you give the tables = in=20 > the database a different prefix for each site. Then you tell nuke what=20= > the prefix is for the users table, and they all share it. > =A0 > If I was goind to implement this ability into the DNACMS, do you think=20= > I should go with a similar approach to that? I was thinking that a=20 > better option may be to let each site have their own database, then=20 > tell the CMS which of the databases to use for user info. I would = think=20 > that would be easier to manage instead of having multiple instances of=20= > each table in one database with different prefixes. However, that = means=20 > the engine will be connecting to two different databases (potentially=20= > on two different servers)... will that be a speed issue? > =A0 > Your thoughts? > =A0 > Eric > Best regards, Scott McCrindle Web Application Developer Certified Macromedia Flash MX Designer Compu-SOLVE Internet Services 520 Bryne Dr. Unit 6 Barrie, Ontario, CANADA L4N 9P6 Phone: (705) 725-1212 ext.107 Fax: (705) 725-1313 Toll-Free: (877) 567-6593 http://www.csolve.net |
|
From: Eric C. <e_c...@ro...> - 2003-11-11 16:09:40
|
Hey guys, I'm doing a few little sites right now for Tony Patrick, and I've = convinced him to let me use the DNACMS. The one thing from Nuke that I = would like to be able to give him is the ability to share the users = table across sites so that people visiting these sites can use the same = username and password for each site. Now the way Nuke does this, is = multiple sites will share the same database, and you give the tables in = the database a different prefix for each site. Then you tell nuke what = the prefix is for the users table, and they all share it. If I was goind to implement this ability into the DNACMS, do you think I = should go with a similar approach to that? I was thinking that a better = option may be to let each site have their own database, then tell the = CMS which of the databases to use for user info. I would think that = would be easier to manage instead of having multiple instances of each = table in one database with different prefixes. However, that means the = engine will be connecting to two different databases (potentially on two = different servers)... will that be a speed issue? Your thoughts? Eric |
|
From: Scott M. <sc...@cs...> - 2003-11-06 13:38:46
|
Derek,
The more element that are common throughout the system will give the
system more flexibility (just like the custom includes used by both PHP
and Perl). It makes sense to me.
I just find the entire piece of software too complicated.
On Wednesday, November 5, 2003, at 11:46 AM, Derek Buttineau wrote:
> On the PHP side of things, I'm thinking we should redo the {request}
> object.
>
> Currently we just use the $_REQUEST array from PHP which contains all
> variable methods, I'm thinking we should create an array with
> categories of.
>
> param = combination of $_GET and $_POST
>
> cookie = $_COOKIE
> file = $_FILE
>
> etc
>
> That way it would more closely simulate the Perl side of things, and
> allow differentation between submission methods.
>
> Thoughts?
>
> -- Regards,
>
> Derek Buttineau
> Internet Systems Administrator
> Compu-SOLVE Internet Services
>
>
>
>
> -------------------------------------------------------
> This SF.net email is sponsored by: SF.net Giveback Program.
> Does SourceForge.net help you be more productive? Does it
> help you create better code? SHARE THE LOVE, and help us help
> YOU! Click Here: http://sourceforge.net/donate/
> _______________________________________________
> Dnacms-devel mailing list
> Dna...@li...
> https://lists.sourceforge.net/lists/listinfo/dnacms-devel
>
>
Best regards,
Scott McCrindle
Web Application Developer
Compu-SOLVE Internet Services
520 Bryne Dr. Unit 6
Barrie, Ontario, CANADA
L4N 9P6
Phone: (705) 725-1212 ext.107
Fax: (705) 725-1313
Toll-Free: (877) 567-6593
http://www.csolve.net
|
|
From: Derek B. <de...@cs...> - 2003-11-05 16:55:33
|
On the PHP side of things, I'm thinking we should redo the {request} object.
Currently we just use the $_REQUEST array from PHP which contains all
variable methods, I'm thinking we should create an array with categories of.
param = combination of $_GET and $_POST
cookie = $_COOKIE
file = $_FILE
etc
That way it would more closely simulate the Perl side of things, and
allow differentation between submission methods.
Thoughts?
--
Regards,
Derek Buttineau
Internet Systems Administrator
Compu-SOLVE Internet Services
|
|
From: Derek B. <de...@cs...> - 2003-11-03 22:35:02
|
Okay, I've added the ability to collapse categories (only in PHP atm will do Perl tomorrow).. it uses DOM and not only can you collapse them, but it will remember its state on the computer at least until the browser is closed. Can also set defaults in the categories table whether you want certain categories minimized by default. Derek Derek Buttineau wrote: > Thoughts on this.. > > While plugging in stuff for Staff3 (which has a lot of > categorization).. I'm wondering if it would make any sense to persue > doing collapsing menu blocks? Could probably do it using DOM, just > generate the menu table HTML in a jscript array, then on expand, just > replace the table element with the expanded table. > > Thoughts? > -- Regards, Derek Buttineau Internet Systems Administrator Compu-SOLVE Internet Services |
|
From: Derek B. <de...@cs...> - 2003-11-03 16:18:13
|
Thoughts on this.. While plugging in stuff for Staff3 (which has a lot of categorization).. I'm wondering if it would make any sense to persue doing collapsing menu blocks? Could probably do it using DOM, just generate the menu table HTML in a jscript array, then on expand, just replace the table element with the expanded table. Thoughts? -- Regards, Derek Buttineau Internet Systems Administrator Compu-SOLVE Internet Services |
|
From: Scott M. <sc...@cs...> - 2003-11-03 13:45:26
|
Me three. On Friday, October 31, 2003, at 02:56 PM, Eric Covert wrote: > Derek, > > Really good point. That's exactly why we changed the pages to be > alphanumeric instead of autonum... I don't know why we didn't think of > it > before for the plugins... I think it definitely bears consideration, and > would probably benefit greatly from the change. > > Eric > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Dnacms-devel mailing list > Dna...@li... > https://lists.sourceforge.net/lists/listinfo/dnacms-devel > > Best regards, Scott McCrindle Web Application Developer Compu-SOLVE Internet Services 520 Bryne Dr. Unit 6 Barrie, Ontario, CANADA L4N 9P6 Phone: (705) 725-1212 ext.107 Fax: (705) 725-1313 Toll-Free: (877) 567-6593 http://www.csolve.net |
|
From: Derek B. <de...@cs...> - 2003-10-31 20:08:10
|
I'm going to go ahead with setting up a plugin registry tool similar to staff2 (it uses autonum too), to save myself some sanity on porting staff2 to staff3.. Once that's in place we should be able to evaluate using plugin strings instead of autonum easier, though it will require a significant amount of reprogramming at this point. Derek Eric Covert wrote: >Derek, > >Really good point. That's exactly why we changed the pages to be >alphanumeric instead of autonum... I don't know why we didn't think of it >before for the plugins... I think it definitely bears consideration, and >would probably benefit greatly from the change. > >Eric > > |
|
From: Eric C. <e_c...@ro...> - 2003-10-31 19:57:02
|
Derek, Really good point. That's exactly why we changed the pages to be alphanumeric instead of autonum... I don't know why we didn't think of it before for the plugins... I think it definitely bears consideration, and would probably benefit greatly from the change. Eric |
|
From: Derek B. <de...@cs...> - 2003-10-31 19:48:32
|
Looking at it now as I try to make the DCMS usable for staff3, I'm thinking we would have been better off to use a alphanumeric key for plugins instead of a number.. it's hard to maintain consistancy when adding plugins between multiple sites when the autonum is different. Thoughts? Should we look at changing the whole plugin method? -- Regards, Derek Buttineau Internet Systems Administrator Compu-SOLVE Internet Services |
|
From: Derek B. <de...@cs...> - 2003-09-04 20:46:57
|
We should probably require an installer to be included in plugins.. Should be a fairly simple procedure to include a script that creates necessary tables and registers the plugin no? Derek Scott McCrindle wrote: > Hey sausageheads! > > Please find attached a text file detailing how to install a plugin. > Your comments are welcome! Where do we put documentation? Should we > author a big-ass README.txt file? > > Eric - dude, are you still alive? |
|
From: Scott M. <sc...@cs...> - 2003-09-04 20:43:08
|
Hey sausageheads! Please find attached a text file detailing how to install a plugin. Your comments are welcome! Where do we put documentation? Should we author a big-ass README.txt file? Eric - dude, are you still alive? |
|
From: Derek B. <de...@cs...> - 2003-08-27 20:37:23
|
It's a system where by the "public" user can request an account. For most instancing of the DCMS this will be a necessity. As for the bugs, you need to post them to the list as well as noting them on the site! Derek Scott McCrindle wrote: > Derek, > > What is a registration system? > > I think that we need to address outstanding bugs, first. |
|
From: Scott M. <sc...@cs...> - 2003-08-27 20:30:25
|
Derek, What is a registration system? I think that we need to address outstanding bugs, first. On Wednesday, August 27, 2003, at 03:09 PM, Derek Buttineau wrote: > Hey Scott/Eric, > > We really need/should get to work on a registration system for DCMS.. > would one of you like to take lead on this subproject? > > Derek > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Dnacms-devel mailing list > Dna...@li... > https://lists.sourceforge.net/lists/listinfo/dnacms-devel > > Best regards, Scott McCrindle Web Application Developer Compu-SOLVE Internet Services 520 Bryne Dr. Unit 6 Barrie, Ontario, CANADA L4N 9P6 Phone: (705) 725-1212 ext.107 Fax: (705) 725-1313 http://www.csolve.net |
|
From: Derek B. <de...@cs...> - 2003-08-27 19:09:29
|
Hey Scott/Eric, We really need/should get to work on a registration system for DCMS.. would one of you like to take lead on this subproject? Derek |
|
From: Scott M. <sc...@cs...> - 2003-08-13 12:38:35
|
Derek, Thanks! Good job! On Tuesday, August 12, 2003, at 04:40 PM, Derek Buttineau wrote: > SourceForge CVS has been updated with a few files to notably fix: > > -Coolmenus background issue > -Category/Parent drop down generation in the Page editor. > > -- Regards, > > Derek Buttineau > Internet Systems Administrator > Compu-SOLVE Internet Services > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click- > url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > Dnacms-devel mailing list > Dna...@li... > https://lists.sourceforge.net/lists/listinfo/dnacms-devel > > Best regards, Scott McCrindle Web Application Developer Compu-SOLVE Internet Services 520 Bryne Dr. Unit 6 Barrie, Ontario, CANADA L4N 9P6 Phone: (705) 725-1212 ext.107 Fax: (705) 725-1313 http://www.csolve.net |
|
From: Derek B. <de...@cs...> - 2003-08-12 20:47:58
|
SourceForge CVS has been updated with a few files to notably fix: -Coolmenus background issue -Category/Parent drop down generation in the Page editor. -- Regards, Derek Buttineau Internet Systems Administrator Compu-SOLVE Internet Services |
|
From: Derek B. <de...@cs...> - 2003-08-06 17:43:06
|
Ya know we musta buggered up Cool Menus somewhere in development.. for example in Konqueror, home.csolve.net's cool menus work no problemo.. but dcms.csolve.net buggers the shit out of it. Might be worth looking into.. I know we've had problems in Netscape with it as well with the new version. -- Regards, Derek Buttineau Internet Systems Administrator Compu-SOLVE Internet Services |
|
From: Derek B. <de...@cs...> - 2003-07-24 20:50:33
|
Release 0.0.1 is up on SourceForge.. CVS has been updated there as well. Derek Derek Buttineau wrote: > Nah version 0.0.1 :P > > Derek > > Scott McCrindle wrote: > >> Eric, >> >> Dude. Skin is complete. Derek is tidying things up a bit and then we >> have a version 1.0. Not perfect, but a start! >> > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > _______________________________________________ > Dnacms-devel mailing list > Dna...@li... > https://lists.sourceforge.net/lists/listinfo/dnacms-devel > > |
|
From: Derek B. <de...@cs...> - 2003-07-24 15:54:45
|
Nah version 0.0.1 :P Derek Scott McCrindle wrote: > Eric, > > Dude. Skin is complete. Derek is tidying things up a bit and then we > have a version 1.0. Not perfect, but a start! > |
|
From: Scott M. <sc...@cs...> - 2003-07-24 15:52:28
|
Eric, Dude. Skin is complete. Derek is tidying things up a bit and then we have a version 1.0. Not perfect, but a start! On Thursday, July 24, 2003, at 10:48 AM, Eric Covert wrote: > Hey guys! I was taking a look at the dcms.csolve.net... looks really > good. I've been keeping an eye on sourceforge to see if the files had > gone up yet.... any idea when they might be up? I'm a little anxious to > get my fingers back into some code :) > Anyway, hope things are going well... ttyl > Eric > > > Protect your PC - Click here for McAfee.com VirusScan Online Best regards, Scott McCrindle Web Application Developer Compu-SOLVE Internet Services 520 Bryne Dr. Unit 6 Barrie, Ontario, CANADA L4N 9P6 Phone: (705) 725-1212 ext.107 Fax: (705) 725-1313 http://www.csolve.net |
|
From: Derek B. <de...@cs...> - 2003-07-24 15:07:55
|
Soon (TM) Eric Covert wrote: > Hey guys! I was taking a look at the dcms.csolve.net... looks really > good. I've been keeping an eye on sourceforge to see if the files had > gone up yet.... any idea when they might be up? I'm a little anxious > to get my fingers back into some code :) > Anyway, hope things are going well... ttyl > Eric > > ------------------------------------------------------------------------ > Protect your PC - Click here <http://g.msn.com/8HMMENCA/2755??PS=> for > McAfee.com VirusScan Online > ------------------------------------------------------- This SF.Net > email sponsored by: Free pre-built ASP.NET sites including Data > Reports, E-commerce, Portals, and Forums are available now. Download > today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ Dnacms-devel mailing > list Dna...@li... > https://lists.sourceforge.net/lists/listinfo/dnacms-devel |
|
From: Eric C. <e_c...@ho...> - 2003-07-24 14:48:32
|
<html><div style='background-color:'><DIV>Hey guys! I was taking a look at the dcms.csolve.net... looks really good. I've been keeping an eye on sourceforge to see if the files had gone up yet.... any idea when they might be up? I'm a little anxious to get my fingers back into some code :)</DIV> <DIV>Anyway, hope things are going well... ttyl</DIV> <DIV>Eric</DIV></div><br clear=all><hr>Protect your PC - <a href="http://g.msn.com/8HMMENCA/2755??PS=">Click here </a> for McAfee.com VirusScan Online </html> |
|
From: Scott M. <sc...@cs...> - 2003-07-21 13:56:37
|
Derek, Slowly. Trying to do 3 things at once. Probably will be done today. On Monday, July 21, 2003, at 09:43 AM, Derek Buttineau wrote: > How comes the skinning Scotty? > > Derek > > > > ------------------------------------------------------- > This SF.net email is sponsored by: VM Ware > With VMware you can run multiple operating systems on a single machine. > WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the > same time. Free trial click here: http://www.vmware.com/wl/offer/345/0 > _______________________________________________ > Dnacms-devel mailing list > Dna...@li... > https://lists.sourceforge.net/lists/listinfo/dnacms-devel > > Best regards, Scott McCrindle Web Application Developer Compu-SOLVE Internet Services 520 Bryne Dr. Unit 6 Barrie, Ontario, CANADA L4N 9P6 Phone: (705) 725-1212 ext.107 Fax: (705) 725-1313 http://www.csolve.net |