Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×
Programming Python

SourceForge Open-Sources Their Platform Software 58

rick446 writes "In late 2009 SourceForge embarked on a plan to 'reboot' our developer tools on an open platform including Python, MongoDB, RabbitMQ, and SOLR. The result was the Allura platform, and was released under the Apache License in February 2011." Note: Slashdot and SourceForge are both part of Geek.net.
This discussion has been archived. No new comments can be posted.

SourceForge Open-Sources Their Platform Software

Comments Filter:
  • You mean it wasn't already?

    • Re:Wait a second.... (Score:5, Informative)

      by ivucica ( 1001089 ) on Thursday March 10, 2011 @02:55PM (#35445634) Homepage
      It used to be. Then they closed it. Then last FLOSS version was forked as GForge [gforge.org] and others. I guess they're opening it again.
      • Then GForge closed up and was reopenned as fusionforge (http://fusionforge.org)

      • If they're serious about it, they won't require contributors to sign over the copyright to their code. Given their past actions, I don't trust them. Of course, this looks like a last-ditch effort to remain relevant in the face of github, etc.
        • by j-pimp ( 177072 )
          I really don't mind signing copyright over even at the risk of a project "going closed." If I was making a large contribution to the code, then maybe. However, for small patches to a large project, it seems like a small price to pay.
          • And don't forget that when it "goes closed" the last version is still open -- you can't retroactively remove the open source license permissions for existing code.
        • We are serious, and will be using an apache 2.0 license, and don't have any plans to ask for copyright assignment.
        • Why does copyright matter, if it is GPL'd?

          • Nevermind it is Apache, not GPL. I don't know much about that license or why/if that would matter either.

            • If you own the copyright, you can relicense it under a different license. If you contribute code to an FSF project, they will require you to sign over the copyright. That's why they could relicense all their code to GPL3 (that and the GPL v2 or later part... but it's now 3 or later). Of course, they could also change to a non-FREE license if they wanted. They probably wouldn't, but .... MySQL (and later Sun) also required copyright assignment, too. Now Oracle can do anything they want with it.

              For com

  • Does anyone even use SF anymore?
    • Github replaced iit for some people as a "real forge", but you'll probably find many more mature project on sf..
      So as an "advertisement platforme" SF is certainly a good bet for a team...

      And anyway the announcement make most sense for people who want to host their own forge, they need the software, not SF users..

    • GitHub replaced it for those who use Git. I don't, and many other people don't. I use Mercurial and SVN and hence mostly use BitBucket and Google Code. However I contribute(d) to some mature projects on SF.net, so it's pretty much still around in my 'verse. GitHub mostly isn't because it requires use of Git.
    • I try occasionally, but they've made the UI so bad that if a project is hosted on Sourceforge I generally look for a downstream source. It manages to make Savannah look good, which is quite impressive. It's even worse than Trac, which out not to be possible. I can't help wondering if by open sourcing it they're saying 'we completely broke it, please will someone else fix it for us?'
  • by Anonymous Coward

    So not to start a flame war or anything, but why would I choose SourceForge to host my project over GitHub or Project Hosting on Google Code?

    • by maxume ( 22995 )

      Because of the mailing lists? The ones with the terrible archive interface.

      I think this new platform may even be worse than the old travesty.

    • by jemmyw ( 624065 )

      You probably wouldn't. SF came first, so when Google Code came out it had to have better features to attract users, and it did. Then GitHub, again had to have better features to attract users, and it did. In my view the main improving feature as you jumped from one to the other was better usability.

    • Used to be you couldn't use a BSD license on Google Code, but that's apparently changed. My only remaining complaint is that there isn't a good way for me to take a project on Google Code (e.g. "dastoob") and assign a domain to it. I've got dastoob.net set up right now to 301 redirect to the relevant Google Code page.

      • I'm pretty sure 3-clause BSD was one of the original licenses they allowed (My google-hosted projects are all 3-clause BSD).
        • I recall not being able to use BSD for the first project I wanted to set up there. That was quite some time ago, though.

    • Comment removed based on user account deletion
  • Was the note about Geeknet really necessary? Anyone here that actually cares will already know.
  • Is it possible to mirror SourceForge, retaining all the updates and comments?

  • by bogaboga ( 793279 ) on Thursday March 10, 2011 @03:12PM (#35445832)

    ...and here's why.

    All along, I thought sites like www.slashdot.org ran on some open source database like PostgreSQL with a front end created by PHP.

    As the Allura platform shows, it's much more complex than that. The question is...does it have to be this complex?

    What would be the short comings of a PostgreSQL/PHP set-up?

    • Well, for starters, PHP. *ducks*

      But seriously, the chances are that a lot of the complexity in both site's code bases is that it's doing some very interesting and valuable stuff. Sometimes, when code seems over-complicated, it's for a bad reason like performance or bad design. But a lot of other times, it's to deal with the strange edge cases that were discovered after the code was running, or really useful behind-the-scenes features like appropriately distributed mirroring.

    • by mini me ( 132455 )

      Which parts are you finding needlessly complex?

      Python and PHP play the same role.
      MongoDB and PostgreSQL play the same role.
      SOLR is for full text searching, which you might also use in your PHP app.

      I have only had a quick look through he code, but it looks like RabbitMQ is used so that mail can be queued and delivered without reliance on the web application. You might consider doing the same in PHP if you have the same requirements.

      • by Anonymous Coward

        Python is far more sane. And please don't flame me about how easy PHP is if you don't know that '5,000' + '5,000' is 10.

        • by mini me ( 132455 )

          I'm not sure why you replied to me, I wouldn't touch PHP to build a web application with a ten foot pole for a long list of reasons.

          With that said, why shouldn't '5,000' + '5,000' equal 10? Most PHP functions are thin wrappers around C functions. strtoi() stops when it hits a non-numeric character, thus '5,000' is 5. 5 + 5 is 10. In that case, the result is fairly logical assuming you understand where PHP came from. There are much bigger problems with the language than that.

          By the way, the "." is used for s

    • slashdot is perl with mysql (customized, I believe). The code is (or was) available on openslash.org or someplace like that. Don't search for "open gash", though.
    • The problem with a plain vanilla PostgreSQL/PHP is that it doesn't scale well, especially when you're talking about more than just a website. Sure, you can throw more hardware at the problem, but there comes a point where it's more cost-effective to use different backend technology to do the data processing even if you're still using traditional web scripting (Perl, PHP, or even Python or Ruby) for the frontend.

  • by SimonTheSoundMan ( 1012395 ) on Thursday March 10, 2011 @03:41PM (#35446210)

    Pure slashvertisement at its best. Really, it is!

    • by Anonymous Coward

      This is totally news, because Mongo is webscale.

    • Uh? SF is an important piece of the opensource ecosystem. I find this quite interesting.

    • Slashdot and SourceForge are owned by the same company. What did you expect?
  • by markramm ( 1168187 ) on Thursday March 10, 2011 @04:46PM (#35447076) Homepage

    I work at SourceForge, and can probably describe a bit of the history.

    In 1999 when Sourceforge was released, it was conceived as a gift back to the open source community, and was released as open source software. But with the dot com crash, and the successive transformation of VA linux from a hardware company to a software company (VA Software) the then management decided to try out a proprietary software sales strategy, and created SourceForge Enterprise Edition.

    While things were proprietary due to that decision, much of the sf.net internal code became very tied up in the specifics of our infrastructure, and in some cases with code that we weren't able to open up.

    All of this happened before I came on with SourceForge, and my experience is of a very different company, that has been continually increasing our commitment to give back to open source, and have released a number of smaller projects. And then a year ago we started this new Python based platform, which was intended from day one to be released under an open source license.

    Trust me, we know that previous management actions have burned some bridges, but still feel like our obligation today is to do what's right for the site and the community. And I am convinced that the open source community deserves a truly open forge platform, where they can see the code, influence feature decisions, and even self host if that were to become necessary. And I know the current team is very committed to making that happen.

    • by sphix42 ( 144155 )

      You forgot to mention that when SF decided to close source their application they took the source code as-is and stole all the work open source developers like myself had contributed to the project. I had started contributing heavily just before they took the source and called it theirs with no reimbursement or acknowledgment to developers like me.

      For me SF has no credibility.

  • by Anonymous Coward

    If your wanting to be busy I say use it to make politicianforge every single one of them and how they voted and on what and every stupid idea they ever had.
    So in short us it to track politicians instead of software.

    Im to lazy but liked the idea.

Love may laugh at locksmiths, but he has a profound respect for money bags. -- Sidney Paternoster, "The Folly of the Wise"

Working...