1 (edited by maverikch 2006-03-06 02:30)

Topic: Opensource?

Hi Mr Andersson

Just wundering if you are going opensource with your product? why not place your project on
- http://www.soureforge.net or
- http://developer.berlios.de/

kind regards
Maverik

Re: Opensource?

PunBB is already open source (GPL).

As for not being on Sourceforge or BerliOS, I don't know, but I don't really see what difference it would make.

Looking for a certain modification for your forum? Please take a look here before posting.

3 (edited by maverikch 2006-03-06 02:39)

Re: Opensource?

Well the benefits of sf.net or berlios are for development.
- cvs and file management.
- webspace and a project.sourceforge.net resp. project.berlios.de
- task management
- mailinglist
- RSS Feed
- etc.

and also the goal of thoes portals is to be a place of all OSS people may find them on one point. for developers instred in getting similar ideas may join project and work on existing than re-invent it.

kind regards
Maverik

Re: Opensource?

http://sourceforge.net/projects/punbb
It's there wink

- cvs and file management.

Rickard has SVN/Trac set up and maintained by Textdrive

- webspace and a project.sourceforge.net resp. project.berlios.de

Textdrive hosts PunBB for free (I think) because it's an open source project

- task management

Trac?

- mailinglist

Already have one wink

- RSS Feed

See extern.php

and also the goal of thoes portals is to be a place of all OSS people may find them on one point. for developers instred in getting similar ideas may join project and work on existing than re-invent it.

I don't think Rickard is interested in recuriting other developers wink

5 (edited by maverikch 2006-03-06 18:13)

Re: Opensource?

kk, i see, you have found other tools for development.
well finally you have to work with ^^
i'm just one of the people which like to find OSS Projects on one Portal.

what where the reasons not to use sf.net functions?

PS: Hm, I had a look at Trac. It doesn't satisfy me at all as an Project Admin as well as the software used on sf.net. it seams there is for no good tracking and file management software to find in OSS Community or i didn't found it yet ^^

but with my OSS Project i'm fine at sf.net smile

About RSS Feed

See extern.php

Where do you mean exactly? well www.punbb.org/extern.php doesnt work ^^

Reason i'm asking for is: I would like to get the file release announcements over RSS Feed.

Re: Opensource?

You have to give in some parameters for extern.php to work wink

extern.php wrote:

INSTRUCTIONS

  This script is used to include information about your board from
  pages outside the forums and to syndicate news about recent
  discussions via RSS. The script can display a list of recent
  discussions (sorted by post time or last post time), a list of
  active users or a collection of general board statistics. The
  script can be called directly via an URL (for RSS), from a PHP
  include command or through the use of Server Side Includes (SSI).

  The scripts behaviour is controlled via variables supplied in the
  URL to the script. The different variables are: action (what to
  output), show (how many topics to display), fid (the ID or ID's of
  the forum(s) to poll for topics), nfid (the ID or ID's of forums
  that should be excluded) and type (output as HTML or RSS). The
  only mandatory variable is action. Possible/default values are:

    action: active (show most recently active topics) (HTML or RSS)
            new (show newest topics) (HTML or RSS)
            online (show users online) (HTML)
            online_full (as above, but includes a full list) (HTML)
            stats (show board statistics) (HTML)

    show:   Any integer value between 1 and 50. This variables is
            ignored for RSS output. The default is 15.

    fid:    One or more forum ID's (comma-separated). If ignored,
            topics from all guest-readable forums will be polled.

    nfid:   One or more forum ID's (comma-separated) that are to be
            excluded. E.g. the ID of a a test forum.

    type:   RSS. Anything else means HTML output.

  Here are some examples using PHP include().

    Show the 15 most recently active topics from all forums:
    include('http://host.com/forums/extern.php?action=active');

    Show the 10 newest topics from forums with ID 5, 6 and 7:
    include('http://host.com/forums/extern.php?action=new&show=10&fid=5,6,7');

    Show users online:
    include('http://host.com/forums/extern.php?action=online');

    Show users online with full listing of users:
    include('http://host.com/forums/extern.php?action=online_full');

    Show board statistics:
    include('http://host.com/forums/extern.php?action=stats');

  Here are some examples using SSI.

    Show the 5 newest topics from forums with ID 11 and 22:
    <!--#include virtual="forums/extern.php?action=new&show=5&fid=11,22" -->

    Show board statistics:
    <!--#include virtual="forums/extern.php?action=stats" -->

  And finally some examples using extern.php to output an RSS 0.91
  feed.

    Output the 15 most recently active topics:
    http://host.com/extern.php?action=active&type=RSS

    Output the 15 newest topics from forum with ID=2:
    http://host.com/extern.php?action=activ … &fid=2

  Below you will find some variables you can edit to tailor the
  scripts behaviour to your needs.

7

Re: Opensource?

http://punbb.org/forums/extern.php?acti … amp;fid=48

See the documentation for more on using extern for RSS.