/*
 *  pgn4web javascript chessboard
 *  copyright (C) 2009, 2010 Paolo Casaschi
 *  see README file and http://pgn4web.casaschi.net
 *  for credits, license and more details
 */

//
// some parameters that might need reconfiguring for implementing pgn4web on
// your server
//

//
// the email for the project, default = 'pgn4web@casaschi.net'
// affects home.html and board-generator.html (not it's also in pgn4web.js)
//
pgn4web_project_email = 'pgn4web@casaschi.net';
//

//
// the URL for the project's blog, default = 'http://pgn4web-blog.casaschi.net'
// affects home.html
//
pgn4web_project_blog = 'http://pgn4web-blog.casaschi.net';
//

//
// the URL for the board widged to be used in the board-generator tool, default = full URL of local board.html file = pgn4web_board_url = location.protocol + "//" + location.hostname+location.pathname.substr(0, location.pathname.lastIndexOf("/")) + "/board.html";
// affects board-generator.html only
//
pgn4web_board_url = location.protocol + "//" + location.hostname+location.pathname.substr(0, location.pathname.lastIndexOf("/")) + "/board.html";
pgn4web_board_url = 'http://pgn4web-board.casaschi.net';
//

//
// the URL for the board generator tool, default = 'board-generator.html'
// affects widget.html only
//
pgn4web_generator_url = 'board-generator.html';
pgn4web_generator_url = 'http://pgn4web-board-generator.casaschi.net';
//

//
// the URL for the content of the live games broadcast, default = 'live.html'
// affects live.html only
//
pgn4web_live_compact_url = 'live-compact.html';
pgn4web_live_compact_url = 'http://pgn4web-live-compact.casaschi.net';
//

