Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Babel » How to add a new project
How to add a new project [message #885768] Wed, 13 June 2012 14:54 Go to next message
Yves Langisch is currently offline Yves LangischFriend
Messages: 3
Registered: June 2012
Junior Member
Hi,

I've just setup my own babel server. But now I have no idea how to add my own project? By default there is only eclipse available. The page map_files.php does not seem to allow to add a new project which is not in the database.

Thanks
Yves
Re: How to add a new project [message #885862 is a reply to message #885768] Wed, 13 June 2012 18:26 Go to previous message
Denis Roy is currently offline Denis RoyFriend
Messages: 483
Registered: October 2004
Location: Ottawa, Ontario, Canada
Senior Member

Hi Yves,

At Eclipse, Babel takes its project information from Bugzilla, so there is no UI to add new projects.


You can add new projects with SQL queries:
insert into projects set project_id = 'eclipse', is_active = 1 ;

You can then define versions:

insert into project_versions set project_id = "eclipse", version = "3.3", is_active = 1;
insert into project_versions set project_id = "eclipse", version = "3.4", is_active = 1;


You can then define release trains (ie, multiple projects that follow the same release cycle):
insert into release_trains values ('helios', '3.6.0', 1);
insert into release_trains values ('indigo', '3.7.0', 1);

Binding specific versions of a project to a release train (cycle) is then done via the map_files.php UI.

I hope this helps!


Denis Roy
Eclipse Webmaster -- webmaster@eclipse.org
Previous Topic:Runtime inconsistent translation for preference page
Next Topic:Babel not available?
Goto Forum:
  


Current Time: Thu Mar 28 17:25:41 GMT 2024

Powered by FUDForum. Page generated in 0.02895 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top