1/*
2 *  pgn4web javascript chessboard
3 *  copyright (C) 2009-2012 Paolo Casaschi
4 *  see README file and http://pgn4web.casaschi.net
5 *  for credits, license and more details
6 */
7
8//
9// some parameters that might need reconfiguring for implementing pgn4web on your server
10//
11
12"use strict";
13
14//
15// the URL for the board widged to be used in the board-generator tool, default = "board.html"
16// used by: board-generator.html
17//
18var pgn4web_board_url = "board.html";
19// var pgn4web_board_url = "http://pgn4web-board.casaschi.net/";
20//
21
22//
23// the URL for the board generator tool, default = "board-generator.html"
24// used by: board-generator.html, home.html, widget.html
25//
26var pgn4web_generator_url = "board-generator.html";
27// var pgn4web_generator_url = "http://pgn4web-board-generator.casaschi.net/";
28//
29
30//
31// login/key pair for the bitly URL shortening service, default blank (then tinyurl is used instead)
32// used by: board-generator.html
33//
34var pgn4web_bitly_login = "";
35var pgn4web_bitly_apiKey = "";
36// var pgn4web_bitly_login = "";
37// var pgn4web_bitly_apiKey = "";
38//
39
40//
41// pointer URL for the live games broadcast, default = "."
42// used by: flash-replacement.html, home.html, live.html, live/index.html
43//
44var pgn4web_live_pointer_url = ".";
45// var pgn4web_live_pointer_url = "http://pgn4web-live.casaschi.net";
46//
47
48