Re: bpContents 1.0 Alpha 2 Released
chouf1, I don’t have any .po files for this at all. I’m aware of the date issue. The terms table description is empty because there is no description for all the terms. Just name and slug. There is no way to maintain the name or description of the terms being created in this version.
“which terms?’ The terms the table holds all the terms for the tags and categories in bpc. Each tag/category is an instance of a term. When you create a tag what you are actually doing is creating a node in the content tree:
class OCI_Node{
var $id;
var $slug;
var $lft;
var $rgt;
var $node_type; // container, item
var $node_type_id; // id of to container or item in appropriate table
var $node_type_id_type; // type of item if item
var $parent_id;
[snip]
The node var $node_type_id points to a record in the terms table if the $node_type is a container (tag or cat). All tags with the same slug share the same term. So the tag ‘burt’ in one member’s profile refers to the same term as tag ‘burt’ in another member’s profile.