The Future of Slash
1. Where is Slash going? Meaning, slash was originally concieved to run Slashdot. But, what is the purpose of it now? Are the core developers (Chris, Brian, and Pat) updating slash primarly to serve the needs of Slashdot? Or has it become an true independent project?
2. Will the ring of core developers ever expand outside of the Andover.net payroll, or is Andover also regulating slash?
3. What are some of the goals for Bender?
4. Need any more authors for the Slashcode site? Please?
Well, this is a bit to much for the magic 8 ball.
To answer question one, slashdot is quite important but slashcode lives on its own. Some of the largest changes in the next version of slashcode do nothing for slashdot.
Database independence is a large chuck of the changes (namely, now you will have two libraries to port, one that partially exists at the moment, and another that will exist fairly soon).
There are other changes though. The authenication is now functioning inside of Apache, outside of Slash.pm (in bender you can always rely on REMOTE_USER being set to the correct UID). Slashdotrc.pl will no longer exist and slashsites are determined by an Apache directive called SlashVirtualUser that can be confined within Virtualhost and Directory tags in the httpd.conf. The database handle is cached perl apache process/slashsite.
To answer question two we are always open to patches to the main distribution if they are well written and follow the basic design that we are striving for. With Bender though there are knew oportunities for helping though. Bender in part is designed with the idea that people will be able to write modules for slashcode to implement features that we don't have time to do. Bender will give you in the end an API to use to access table data and methods so that you can implement modules that should be simple for an end user to install.
We also have the issue of supporting databases that we aren't going to support ourselves (for instance, if you want slashcode to work under Sql Server or say Informix there will be two libraries you will have to port). I can easily see these being maintained by non-Andover employees.
How we will distribute these (and if they will come with the main distribution) is still up in the air. Slashcode is a publishing system, with the write modules you should be able to do just about anything.



Re:Session Management. Single LogON
(Score:1)( http://www.tangent.org/~brian/ | | Last Journal: Thursday January 17, @04:46AM )
So with the UID you can use a number of methods to get at any other piece of data you might want.
--
--
You can't grep a dead tree.
Our contributions
(Score:1)( http://www.mktv.com )
Many of our enhancements have been to improve the ability to add outside functionality. Additionally, we are developing a PHP toolkit to work with Slash so that we can add the new features in PHP. This toolkit will be placed on our soon to be added Open Source page.
Because this functionality is PHP based, I doubt that it will make the main distribution, but I look foward to the day when there are many sites to get Slash tools... hopefully all GPL'd.
Alex
My $.02
(Score:1)Slash administrators who have customized any of this text then have a real disincentive to upgrade to newer versions; they need to take diffs comparing their current code with the out-of-the-box code of the version they originally installed, and then try to apply those diffs to the new version (which, if the new version is substantially changed, they can't do with patch).
Getting these text and HTML fragments into the db will also simplify localization of Slash for non-English-speaking sites. It would then become possible to ship different default installations for different languages (slashdata_dump_en.sql, slashdata_dump_fr.sql, slashdata_dump_de.sql).
If my development project for Foresight Institute [foresight.org] gets funded, this is one of the changes I want to contribute to the code base.
Is the "core team"'s future direction for Slash development documented anywhere besides in this thread?
Re:Our contributions
(Score:1)( http://www.tangent.org/~brian/ | | Last Journal: Thursday January 17, @04:46AM )
We are still working out where contributions will go, but I would like to see it be fairly trivial for someone to add modules. I want the install to eventually be something that requires few technical skills, and I would like to see modules be the same way.
--
--
You can't grep a dead tree.
Session Management. Single LogON
(Score:1)( http://unix.developer.ch/~aghaffar )
I think that one piece that Slashcode should also look into is, how to pass the session information to other applications.
For example, if I am using a web mail app, a web cal app or a web XX app on the same site and providing my users these services then it makes no sense to ask them to login again and again cause the systems are either managing their own sessions or have different source of authentification.
RemoteUser var only gives me half of the information, the username, but not the password.
What if I want to pass this information to a webMail application that rely on Authentification to an IMAP server? I would have to ask the user the pass again. etc etc.
I had to do a project where single-sign on was a must. The application is at http://www.rslnet.ch
This application primarily uses IMP (A web mail system written in PHP), and also offers other services such as personal homepage, guest book etc. All except the IMP are written in perl.
Fortunately, IMP was using phplib that stores session data in a central database (this is solves the problem of authentification when using multiple servers for loadbalancing). Each application get the sessionHash from cookie or url which is a key inthe db table, extracts the data which is in base64 format, decodes it and uses the values (username, password) to authentify to the next application.
I would love to see that kind of development in Slash.
Also, it would be extremely nice if Slash starts using LDAP as the backend for authetification and user information storage. Again this can be reused.
my $0.2
vote for your favourite perl-site http://www.perl.ch/links
--
vote for your favourite perl-site http://www.perl.ch/links
Re:Supporting other databases
(Score:2)( http://pudge.net/ )
It shouldn't be too difficult, in comparison to the current Slash, to port bender to other databases, because you should only be concerned with one file, Slash::DB::MyDB (and maybe a line or two in Slash::DB itself, to help point to the right DB module).
Re:Session Management. Single LogON
(Score:1)( http://www.tangent.org/~brian/ | | Last Journal: Thursday January 17, @04:46AM )
Also, we populate REMOTE_USER with the authenticated UID. So any app written to work within the slashcode framework can take advantage of this.
--
--
You can't grep a dead tree.
Supporting other databases
(Score:1)( http://www.ctdata.com/ | | Last Journal: Monday December 23, @10:05PM )
- handling of concurrent pending SQL queries
- manipulating text columns and other sorts of BLOBs
- setting limits on result sets returned
- formatting of results
In the first three cases, there is not a line-for-line correspondence between Transact-SQL commands and mySQL commands.I have pointed this out to people who work for Blockstackers when they asked me about the techniques used in the CTDATA Site.
In all likelyhood, we will be in a position to contribute some or all of the code necessary to make a multi-DB-aware Slashcode distro run on Sybase and MS SQL Server. We have not contributed to the effort thus far because we are not running Slash on Linux (or Apache for that matter) at the moment.
--
Dave Aiello
Chatham Township Data Corporation
--
--
Dave Aiello
Chatham Township Data Corporation [ctdata.com]
Re:Session Management. Single LogON
(Score:0)