-
Notifications
You must be signed in to change notification settings - Fork 6
/
pgn4web-server-config.js
57 lines (49 loc) · 1.78 KB
/
pgn4web-server-config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
* 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 = '[email protected]'
// used by: home.html, board-generator.html and pgn4web.js
//
pgn4web_project_email = '[email protected]';
//
//
// the URL for the project's blog, default = 'http://pgn4web-blog.casaschi.net'
// used by: 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";
// used by: board-generator.html
//
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'
// used by: board-generator.html, widget.html
//
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-compact.html'
// used by: live.html
//
pgn4web_live_compact_url = 'live-compact.html';
// pgn4web_live_compact_url = 'http://pgn4web-live-compact.casaschi.net';
//
//
// the URL for the game viewer tool, default = 'demo.html?frame=inputform'
// used by: home.html
//
pgn4web_viewer_url = 'demo.html?frame=inputform';
// pgn4web_viewer_url = 'viewer.php';
//