summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* #794: Fast-forwardpjlinkRamón M. Gómez2019-10-017-24/+27
|\
| * #794: Fast-forward.Ramón M. Gómez2018-11-26138-1888/+2725
| |\
| * | #794: New projector types.Ramón M. Gómez2018-06-296-18/+32
| | |
| * | #794: Enabling contextual menu for projectors and correcting errata.Ramón M. Gómez2018-06-286-31/+27
| | |
| * | #794: New projector form and properties.Ramón M. Gómez2018-06-259-52/+159
| | |
| * | Merge branch 'devel' into pjlinkRamón M. Gómez2018-06-2566-417/+422
| |\ \
| * | | #794: Projector properties form (initial version).Ramón M. Gómez2018-06-143-0/+366
| | | |
| * | | #794: Applying new commits from {{{devel}}} branch to {{{pjlink}}} branch.Ramón M. Gómez2018-06-1452-673/+1008
| |\ \ \
| * | | | #794: instalar y actualizar dependencias para PJLink.Ramón M. Gómez2018-05-172-4/+8
| | | | |
| * | | | #794: integrar r5448 de SVN en rama {{{pjlink}}} de Git.Ramón M. Gómez2018-05-173-3/+131
| | | | |
* | | | | #794: New projector types.Ramón M. Gómez2019-10-016-18/+32
| | | | |
* | | | | #794: Enabling contextual menu for projectors and correcting errata.Ramón M. Gómez2019-10-016-31/+27
| | | | |
* | | | | #794: New projector form and properties.Ramón M. Gómez2019-10-019-52/+159
| | | | |
* | | | | #794: Projector properties form (initial version).Ramón M. Gómez2019-10-013-0/+366
| | | | |
* | | | | #794: instalar y actualizar dependencias para PJLink.Ramón M. Gómez2019-10-012-3/+14
| | | | |
* | | | | #794: integrar r5448 de SVN en rama {{{pjlink}}} de Git.Ramón M. Gómez2019-10-013-3/+131
| | | | |
* | | | | #802 #888: Fix bug when replacing PXE template names.Ramón M. Gómez2019-09-272-6/+6
| | | | |
* | | | | #802 #888 opengnsys_update.sh: The names of PXE templates for BIOS are ↵Irina Gómez2019-09-272-1/+13
| | | | | | | | | | | | | | | | | | | | changed for compatibility with UEFI computers.
* | | | | #925: settoken: new server script to generate service access tokens.Ramón M. Gómez2019-09-262-0/+114
| | | | |
* | | | | #929 setsslkey: Script for configurate public key authentication in ogLive.Irina Gómez2019-09-252-0/+133
| | | | |
* | | | | #914: Removed code from unused functions: ogInstallLinuxClient and ↵Ramón M. Gómez2019-09-251-95/+8
| | | | | | | | | | | | | | | | | | | | ogInstallWindowsClient.
* | | | | #914: Remove unused files: ogAdmLnxClient, ogAdmWinClient and Chinese Grub4Dos.Ramón M. Gómez2019-09-255-0/+0
| | | | |
* | | | | #914: Updated list of closed tickets.Ramón M. Gómez2019-09-251-12/+28
| | | | |
* | | | | #802 #888 setclientmode: fix web user detection.Ramón M. Gómez2019-09-241-4/+5
| | | | |
* | | | | #802 #888 setclientmode: User must be root or console. mention of the fourth ↵Irina Gómez2019-09-241-3/+9
| | | | | | | | | | | | | | | | | | | | parameter is removed
* | | | | #839: Reservation (power-on) operation is also sent to client repository (as ↵Ramón M. Gómez2019-09-231-3/+17
| | | | | | | | | | | | | | | | | | | | in {{{e57b608}}} commit).
* | | | | #928 Multicast ports are allowed from 9000 to 9100.Irina Gómez2019-09-233-4/+4
| | | | |
* | | | | #919: How to use new URLs in menus.Ramón M. Gómez2019-09-232-16/+6
| | | | |
* | | | | #919: Browser binary and locales.Ramón M. Gómez2019-09-233-0/+0
| | | | |
* | | | | #919: Fix Qt download URL to build the Browser.Ramón M. Gómez2019-09-231-5/+4
| | | | |
* | | | | #914: Fix OGAgent installation instructions.Ramón M. Gómez2019-09-201-5/+4
| | | | |
* | | | | #914: Installed/Update newest ogLive version.Ramón M. Gómez2019-09-202-5/+5
| | | | |
* | | | | #922 Fixing code cleanup: the^CgLiveAdapter.lib content is located in ↵Irina Gómez2019-09-202-19/+5
| | | | | | | | | | | | | | | | | | | | ogGrubInstall.
* | | | | #915: Fix file descriptor leak in og_socket_server_init() from exit pathRoberto Hueso Gómez2019-09-191-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Call close() to release the socket in the event of an error. infer says: sources/ogAdmServer.cpp:1244: error: RESOURCE_LEAK resource acquired by call to `socket()` at line 1236, column 6 is not released after line 1244, column 3. 1242. sizeof(on)); 1243. if (res < 0) { 1244. > syslog(LOG_ERR, "cannot set broadcast socket\n"); 1245. return false; 1246. } Not a real problem since OS releases process resources if the server cannot bind to the port, but just to be correct here.
* | | | | #915: Return 400 status code in POST methods when no payload is attachedRoberto Hueso Gómez2019-09-192-12/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If no payload is attached to method that requires a payload, then the API returns a 400 status code (following RFC 7231) instead of the previous 404. test_0001_get_clients.py is also modified to fit the new status code.
* | | | | bootOsCustom.template: supports several disk and one data partition.Irina Gómez2019-09-191-24/+33
| | | | |
* | | | | #873 opengnsys_import.sh: The names of PXE templates for BIOS are changed ↵Irina Gómez2019-09-191-0/+13
| | | | | | | | | | | | | | | | | | | | for compatibility with UEFI computers.
* | | | | #915: Fix incorrect method and code in invalid GET requestsRoberto Hueso Gómez2019-09-184-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | Some tests should perform GET requests however they incorrectly use POST. Return codes for these tests have also been fixed.
* | | | | #915: Remove duplicated testRoberto Hueso Gómez2019-09-181-4/+0
| | | | | | | | | | | | | | | | | | | | This test is already performed in test_0001_get_clients.py
* | | | | #915: more descriptive function name in testRoberto Hueso Gómez2019-09-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | This test sends a POST with no body, which is illegal, use a function name that describes this.
* | | | | #858: The tip of the day is shown only when entering the web console. change ↵Irina Gómez2019-09-186-29/+43
| | | | | | | | | | | | | | | | | | | | in style: align image center and maximum width for text.
* | | | | #914: Fix duplicates when detecting network parameters and get main ↵Ramón M. Gómez2019-09-172-7/+8
| | | | | | | | | | | | | | | | | | | | nameserver with Systemd.
* | | | | #914: Remove unused binary {{{ld-mac}}}.Ramón M. Gómez2019-09-122-4/+1
| | | | |
* | | | | #914: Remove obsolete code from Vagrant file for development environment.Ramón M. Gómez2019-09-111-25/+5
| | | | |
* | | | | #919: Show instructions to compile locale files in the Browser's Vagrant file.Ramón M. Gómez2019-09-111-2/+12
| | | | |
* | | | | #919: Updating Browser translation strings.Ramón M. Gómez2019-09-112-48/+56
| | | | |
* | | | | #914: Avoiding external script calls and parsing input with stricter regular ↵Ramón M. Gómez2019-09-112-20/+13
| | | | | | | | | | | | | | | | | | | | expressions in {{{sendFileMcast}}}.
* | | | | #915 add test for too large HTTP request fieldsJavier Sánchez Parra2019-09-101-0/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This test checks for wrong headers HTTP requests: 1. POST /clients with a content length larger than a signed int. 2. POST /clients with an auth token larger than 63 characters.
* | | | | #915 check HTTP Content-Length sizeJavier Sánchez Parra2019-09-101-1/+3
| | | | | | | | | | | | | | | | | | | | If Content-Length is too large ogAdmServer, close the connection..
* | | | | #858 Messages and images for tip of the day are included.Irina Gómez2019-09-0613-2/+80
| | | | |