hmm, where can we find the latest version?
52 2009-01-28 07:11
Re: Ajax framework (31 replies, posted in Feature requests)
hmm there is a wiki for something like this
http://punbb.informer.com/wiki/ajaxframework
but to not write all code duplicate i think we first need a simple way to read and write to the db
thats why i'm building an oo inetrface to easely do this
53 2009-01-27 12:42
Re: Ajax framework (31 replies, posted in Feature requests)
ok cool lets start on this
'm currently doing an oo interface to punbb, which will help us a lot in getting the data dynamicly
we should start building a list of stuff that we want to have included ...
54 2009-01-27 09:06
Re: PunBB OO interface (3 replies, posted in Discussions)
the current dev code (not musch at the moment is @ http://cereal.box.sk/punbbclass/
55 2009-01-26 16:00
Re: [release] prototype and scriptacoulus (12 replies, posted in PunBB 1.3 extensions)
hmm, ok then i could use google api
56 2009-01-26 15:54
Re: [release] prototype and scriptacoulus (12 replies, posted in PunBB 1.3 extensions)
If you load it from google's api directory then it would not cost anyone any disk-space and if you use it the your datalimit is not going to be bigger.
For small sites it does not matter perhaps but for big sites it would.
ok thats a valid point, but if you load if from google api, its always the latest version, for example in jsbase there is 1.6.3 of prototype, and prototype just released 1.6.4 and one of the eextensions use a methode/function thats changed between these evrsions. with api on google this will cause problems, with a static version it won't
57 2009-01-26 14:28
Topic: PunBB OO interface (3 replies, posted in Discussions)
i'm currently working on an OO interface to punbb in order to solve some problems in punbb
liek:
http://punbb.informer.com/forums/topic/ … framework/
http://punbb.informer.com/forums/topic/ … -long-run/
and this could later be used in punBB 2.0 since its on teh road map to work towards an oo design (http://punbb.informer.com/wiki/punbb20/start)
its currently in a draft but i'm working on it, any comments are welcome
58 2009-01-26 14:23
Re: [release] prototype and scriptacoulus (12 replies, posted in PunBB 1.3 extensions)
why would we?
59 2009-01-26 08:58
Re: Ajax framework (31 replies, posted in Feature requests)
hmm, if i have to do this by my own, this will more like months
i have some other projects running that require qttention to
60 2009-01-26 08:49
Re: Ajax framework (31 replies, posted in Feature requests)
i'll have a look at it, but this will take time
since i'll have to write some sort of punbb class, that will be the basic api for this extension ...
61 2009-01-26 08:06
Re: Ajax framework (31 replies, posted in Feature requests)
well i have to say ...
it won't be possible todo this with punbb in the current state
punbb in the current state is relaying to ahrd on static files (like viewtopic.php, ..)
to be able to do this a basic db wrapper around the db has to be written, something like
class punbb {
public function getForums()
public fucntion getPosts( topicid )
public function getTopics( forumid )
}
62 2009-01-26 06:57
Re: Integration between punbb and feed.informer.com (2 replies, posted in Feature requests)
bah rails framework ....
but still it would be handy
63 2009-01-26 06:56
Re: Ajax framework (31 replies, posted in Feature requests)
yeah that would be possible
let me see if i can get this done easely
64 2009-01-23 07:15
Re: Where the chuff are all the Devs? (8 replies, posted in General discussion)
yeah, it would be cool to have the dev team in here a lot more
maybe if tyhey don't have a lot of time, they should think of allowing much more people into the dev team, so punbb can move forward.
i see punbb dev as some sort of obstacle course, sometimes its going good (like dev to 1.3) other times its completely down and nothing is hapening, it would be good to have a team that can work on it the whole year ...
65 2009-01-21 14:39
Re: Users reporting logging in problem (41 replies, posted in PunBB 1.3 bug reports)
i need people in japan, india to test
66 2009-01-20 12:44
Re: CMS integration - on the long run (3 replies, posted in Discussions)
Well at the moment i'm working on a way to control punbb remotely
i'm creating some sort of api to create posts, topics and users on punbb
it will work based on an xmlrpc protocol, but i'll have the backend for a full api so this will be possible in the near feature.
i know this is not exactly what you sugest, but when this is finished someone can create a plucin (dunno how its called in drupal) to use punbb in stead of the current forums
67 2009-01-19 18:00
Re: Quotable Quotes (17 replies, posted in PunBB 1.3 extensions)
version 1.1 is online
changes:
- added enable/disable to settings page
- made it possible to have 2 quote outputed (forum_qq and forum_qq_2)
version 1.2 wil include:
- will be depended on jsbase
- quotes will be dynamicly updated (every x seconds), of course configured
- update possibility, without dropping the db
68 2009-01-19 16:33
Re: manifest.xml troubles (4 replies, posted in PunBB 1.3 extensions)
yeah i first uninstall and then install the extension ..
69 2009-01-19 13:34
Re: manifest.xml troubles (4 replies, posted in PunBB 1.3 extensions)
if i check the output from teh parse_xml function i get the folowing ...
Array ( [extension] => Array ( [content] => [attributes] => Array ( [engine] => 1.0 ) [id] => qq [title] => Quotable Quotes [version] => 1.0 [description] => Will add a quotable quotes to any punbb page [author] => Maikel Punie [minversion] => 1.3.2 [maxtestedon] => 1.3.2 [open] => Array ( [content] => $schema = array( 'FIELDS' => array( 'id' => array( 'datatype' => 'SERIAL', 'allow_null' => false ), 'txt' => array( 'datatype' => 'TEXT', 'allow_null' => false ), 'author' => array( 'datatype' => 'VARCHAR(64)', 'allow_null' => false ), ), 'PRIMARY KEY' => array('id'), ); $forum_db->create_table('qq', $schema); $new_config = array( 'o_qq_switch' => 'false' ); foreach($new_config as $key => $value) { if (!isset($forum_config[$key])) { $query = array( 'INSERT' => 'conf_name, conf_value', 'INTO' => 'config', 'VALUES' => '\''.$key.'\', \''.$value.'\'' ); $forum_db->query_build($query) or error(__FILE__, __LINE__); } } ]> Array ( ) ) )
70 2009-01-18 15:22
Re: [release] prototype and scriptacoulus (12 replies, posted in PunBB 1.3 extensions)
new version online,
added livevalidtion class (htt://livevalidation.com)
71 2009-01-18 13:46
Re: [release] prototype and scriptacoulus (12 replies, posted in PunBB 1.3 extensions)
there is a dloadable tar in the web svn repository, but here it is:
72 2009-01-18 13:34
Topic: [release] prototype and scriptacoulus (12 replies, posted in PunBB 1.3 extensions)
a verry simple extension that adds prototype and script aculous javascript library to punbb
this extension is going tobe a dependency for a couple off other extensions i'm going to write in the near futur
73 2009-01-18 13:11
Re: Paid Punbb modification/extension work (14 replies, posted in Discussions)
hmm, so when will this group start
74 2009-01-18 12:13
Topic: manifest.xml troubles (4 replies, posted in PunBB 1.3 extensions)
hi,
i'm trying to do some modifications to my manifest.xml file, but it seems that something is going wrong.
when i install this extension, none of the hooks are recognized (not inserted into the db) and the install/uninstall code is not run/recognized
http://punbb.informer.com/unofficial/pu … nifest.xml
thats my latest manifest.xml
75 2009-01-18 09:34
Re: Quotable Quotes (17 replies, posted in PunBB 1.3 extensions)
nops, it not possible yet