So, forum is in working condition, the SSL/https certificate is WIP, we still tune and harden the Linux server, but feel free to post your feature requests in here....
--
Srdja
New Forum Online - Post Feature Requests Here
Moderators: hgm, chrisw, Rebel
-
- Posts: 2989
- Joined: Wed Mar 10, 2010 10:18 pm
- Location: Hamburg, Germany
- Full name: Srdja Matovic
-
- Posts: 2989
- Joined: Wed Mar 10, 2010 10:18 pm
- Location: Hamburg, Germany
- Full name: Srdja Matovic
Re: New Forum Online - Post Feature Requests Here
-
- Posts: 2989
- Joined: Wed Mar 10, 2010 10:18 pm
- Location: Hamburg, Germany
- Full name: Srdja Matovic
Re: New Forum Online - Post Feature Requests Here
Guenther wrote: ↑Tue Mar 05, 2024 11:18 am No idea if it was already mentioned, but the the default search box shows 'Search...' in white letters,
with a darkblue background, but if you type something in this box directly it is black on darkblue (thus unreadable)
Of course it works after using the lense symbol or the advanced search, because then you type black text into white.
Guenther
-
- Posts: 2989
- Joined: Wed Mar 10, 2010 10:18 pm
- Location: Hamburg, Germany
- Full name: Srdja Matovic
Re: New Forum Online - Post Feature Requests Here
Old "prosilver" style is now available, I think we can maintain two styles, Absolution and prosilver:smatovic wrote: ↑Tue Mar 05, 2024 11:37 am
User Control Panel -> Edit global settings -> My board style: Absolution || prosilver
--
Srdja
-
- Posts: 2989
- Joined: Wed Mar 10, 2010 10:18 pm
- Location: Hamburg, Germany
- Full name: Srdja Matovic
Re: New Forum Online - Post Feature Requests Here
Fixed.smatovic wrote: ↑Tue Mar 05, 2024 11:38 amGuenther wrote: ↑Tue Mar 05, 2024 11:18 am No idea if it was already mentioned, but the the default search box shows 'Search...' in white letters,
with a darkblue background, but if you type something in this box directly it is black on darkblue (thus unreadable)
Of course it works after using the lense symbol or the advanced search, because then you type black text into white.
Guenther
--
Srdja
-
- Posts: 4718
- Joined: Wed Oct 01, 2008 6:33 am
- Location: Regensburg, Germany
- Full name: Guenther Simon
Re: New Forum Online - Post Feature Requests Here
Thanks! That was quick :)smatovic wrote: ↑Tue Mar 05, 2024 5:57 pmFixed.smatovic wrote: ↑Tue Mar 05, 2024 11:38 amGuenther wrote: ↑Tue Mar 05, 2024 11:18 am No idea if it was already mentioned, but the the default search box shows 'Search...' in white letters,
with a darkblue background, but if you type something in this box directly it is black on darkblue ;) (thus unreadable)
Of course it works after using the lense symbol or the advanced search, because then you type black text into white.
Guenther
--
Srdja
-
- Posts: 2989
- Joined: Wed Mar 10, 2010 10:18 pm
- Location: Hamburg, Germany
- Full name: Srdja Matovic
Re: New Forum Online - Post Feature Requests Here
Thx for reporting, but I am not qualified to fix layout/design for mobiles and test for all browsers out there, I am more backend developer than frontend, usually those phpBB styles are conformant with all browsers, but, phpBB might not be that edgy, maybe if we start another crowdfunding, we can hire an designer and frontend developer to ensure compatibility with all devices and browser out there, or alike, the alternative is to switch to an more edgy forum software.chesskobra wrote: ↑Tue Mar 05, 2024 2:14 pm No issues on desktop, but on mobile (android) I have the following issues with formatting.
1. The page goes outside the screen (which happened with older site also), which can usually be fixed by zooming out, but I cannot zoom out on diagrams.
Old "silverpro" style is available for users to switch, see posts above.
--
Srdja
-
- Posts: 28205
- Joined: Fri Mar 10, 2006 10:06 am
- Location: Amsterdam
- Full name: H G Muller
Re: New Forum Online - Post Feature Requests Here
Well, I have a feature request, which I should be able to fulfil myself, but I want to check if there would any security issues with it. I have this viewer that I used to broadcast chess games over the internet, and it seems cool to integrate that with the forum. Somewhat like this:
The idea is that by [ viewer] tags in a posting, with a user specification, (like in this case [ viewer=hgm] would cause a viewer to appear in that posting, consisting of a chess board, clocks, space for the names of the players (now 'undefined'), and text fields for the game history and possibly for PVs (which I did not yet generate). Loading the page would then start a JavaScript program that (through AJAX) periodically loads a file on the server dedicated to this user, to read the game that it holds, and show it in the viewer. In this example I put a file there with a few opening moves.
The user specified in the viewer tag should then be able to upload new moves to that file, which would be appended to the game it already contains, or submit a special code to clear the file (so a new game can start). This of course is the dangerous part. I was thinking to use a GET method for this, which specifies the move in the query string. By rejecting anything that does not have chess-move syntax, and stoping appending when the file reaches a certain maximum size, it seems the risk can be limited.
Of course there still is the issue of how to make sure the file cannot be used by anyone else than the member mentioned in the viewer tags, which could be done by including some sort of password in the query string.
variant=FIDE
theme=SV
enableAI=0
| Move history |
The idea is that by [ viewer] tags in a posting, with a user specification, (like in this case [ viewer=hgm] would cause a viewer to appear in that posting, consisting of a chess board, clocks, space for the names of the players (now 'undefined'), and text fields for the game history and possibly for PVs (which I did not yet generate). Loading the page would then start a JavaScript program that (through AJAX) periodically loads a file on the server dedicated to this user, to read the game that it holds, and show it in the viewer. In this example I put a file there with a few opening moves.
The user specified in the viewer tag should then be able to upload new moves to that file, which would be appended to the game it already contains, or submit a special code to clear the file (so a new game can start). This of course is the dangerous part. I was thinking to use a GET method for this, which specifies the move in the query string. By rejecting anything that does not have chess-move syntax, and stoping appending when the file reaches a certain maximum size, it seems the risk can be limited.
Of course there still is the issue of how to make sure the file cannot be used by anyone else than the member mentioned in the viewer tags, which could be done by including some sort of password in the query string.
-
- Posts: 2989
- Joined: Wed Mar 10, 2010 10:18 pm
- Location: Hamburg, Germany
- Full name: Srdja Matovic
Re: New Forum Online - Post Feature Requests Here
I myself prefer to serve content only from local server, this is old fashioned, meanwhile the web-sites all use so called micro-services....everything external you include can be use for exploits in theory, cross-site scripting:
https://en.wikipedia.org/wiki/Cross-site_scripting
maybe take a closer look into pgn4web, the demo site shows live game viewers...
http://pgn4web.casaschi.net/home.html
http://pgn4web.casaschi.net/demo.html
might spare some time and headache.
--
Srdja
-
- Posts: 8
- Joined: Mon Feb 19, 2024 7:50 am
- Full name: Manuel Hohmann
Re: New Forum Online - Post Feature Requests Here
I think it would be nice to have avatars - currently the user control panel says they are disabled.
In any case, thanks for the nice works on the forum - especially the possibilities to post (fairy) chess positions and game logs are pretty nice!
In any case, thanks for the nice works on the forum - especially the possibilities to post (fairy) chess positions and game logs are pretty nice!