Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [babel-dev] Almost to Zero.




Denis Roy wrote:
Thanks for the summary, Gabe.  I put some polish in this morning too:

- added a link to Bugzilla, for reporting bugs
- fixed some broken DIVs
- fixed the "logout" link to actually log you out
- fixed that map_files.php didn't actually require you to be a committer (ouch) - changed the login page intro text to not mention the word 'complain' :-)


I really like the new website pages you've put up.

As for the "what's left":


EXPORTING LANGUAGE PACKS:
- output of scripts needs to be logged somewhere on the server for later diagnosis (Denis)

Please provide specifics ... which scripts? Do you mean just a logfile location?

Sorry about not being specific enough. The language pack building script (export/generate1.php) outputs what it is processing on. It would be nice to store the output so we can debug issues with language packs. Just need to know where we can store them.

Also, I noticed that export/generate1.php has a static reference to the babelstg database, with the database username and password right there in CVS. Obviously this can't be used live.

I'm pretty sure you can replace those two mysql lines with this, as $dbh is defined globally, and it will use the correct DB (live or staging) depending on where it's running:
if(defined('BABEL_BASE_DIR')){
    require_once(BABEL_BASE_DIR."html/global.php");
}else{
    define('BABEL_BASE_DIR', "../../");
    require_once("../global.php");
}

InitPage("login");

I will work on putting the code above into the script. Now that I think about it we might want to move the export directory because it doesn't need to be called directly. Ideally we want make it a cron job that makes fresh languages pack every night.



SERVER:
- all Babel committers need access to a script to release code from the staging server to the live server

I don't have any ideas on how to easily make this happen. Can we make this a post-0 thing?

I am fine with this being done after the launch of version 0 (one more bug to open up once we launch).


Denis



PROJECT MANAGEMENT
   - covert all open issue to bugzilla bugs for tracking

After these are done we can tag, release, and enjoy.

gO'
_______________________________________________
babel-dev mailing list
babel-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/babel-dev


_______________________________________________
babel-dev mailing list
babel-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/babel-dev



Back to the top