| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
| |
use trUtf8() instead of tr()
|
|
|
|
|
| |
* don't remove BUILDDIR when called with --clean from wrong directory
* set SCRIPTNAME before displaying it
|
|
|
|
| |
sort the Sessions by priority/short description before displaying them
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* fixed compiler warnings, added -Werror to CMakeLists.txt
* removed LibXml2 and boost stuff from CMakeLists.txt
* fixed some things cpplint.py complains about:
* make single-argument constructors explicit
* add space before if/for/while/...
* don't put { on a line of its own
* remove space after ! operator
* add space between // and comment
* remove extra space before ( in function call
* remove extra space before )
* shorten lines to <= 80 characters
* remove blank lines at the start of a code block
* maybe others
|
|
|
|
| |
command_line_options.{cpp,h} must have slipped
|
| |
|
|
|
|
|
|
|
|
| |
* anyoption has been replaced by getopt
* replaces huge unmaintainable .cpp and .h files from an external source by standard POSIX library calls
* I would suggest using Boost.Program_options if cross-platform support is needed
* support user/global configuration file
|
|
|
|
| |
VSession::readXmlDir() now reads .xml files in subdirectories as well
|
|
|
|
| |
xsession.init(file) can initialize an XSession from a single .desktop file
|
| |
|
|
|
|
|
|
| |
Translation can be done with .ts-files in src/i18n/de.ts. The resulting .qm-files are stored as resources in the program binary.
build.sh has a new option --update-translations that causes the .ts files to be updated
|
|
|
|
|
|
| |
This patch makes vmchooser hightlight the previous session run.
Selection of the session is only based on the session name.
The topmost session with the same name as the previous session will be highlighted.
|
|
|
|
|
|
|
|
|
|
| |
This patch adds a GroupBox with PVS access restriction options to vmchooser.
Vmchooser checks if a PVS daemon is running and if so, displays some access configuration options.
The options will be sent to the PVS daemon after a session has been started (just before vmchooser exits).
All PVS configuration program logic is contained in the Dialog class. (It would probably be better to use a custom widget for the PVS options.)
The file org.openslx.pvs.xml has been copied from a PVS build. This file has to be updated manually when the PVS D-Bus specification changes.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
.xml files for Virtual Sessions may have an "active"-element
this patch allows a date range to be given as a parameter for that element
<active param="[YYYY-MM-DD]/[YYYY-MM-DD]"/>
examples:
* <active param="1970-01-01/1971-01-01">
active from Jan 1st 1970 till Jan 1st 1971
* <active param="/1971-01-01">
active till Jan 1st 1971
* <active param="1970-01-01/">
active from Jan 1st 1970 onwards
notes:
* invalid dates are treated like empty dates (eg. "1984-01-01/1984-02-30" is equal to "1984-01-01/")
* active defaults to "true" for all values except "false" and past or future date ranges
* an inactive session will not be displayed by vmchooser, this does not prevent the user from manually starting the corrensponding virtual machine image
|
|
|
|
|
|
|
|
|
| |
TreeView with SessionTreeModel replaces the old List View
Other changes:
* fixed bad copy and paste in CMakeLists.txt
* added make clean to build.sh
* removed moc_ and ui_ files from src
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Major change:
* struct DataEntry has become class Session with sub-classes XSession and VSession
* functions from addInfo.cpp, addPrinters.cpp, addScanners.cpp, readLinSess.cpp, readXmlDir.cpp, runImage.cpp have been moved to XSession and VSession
Several minor changes:
* new files globals.h and globals.cpp for global variables (replaces constants.h and paths.h)
* replaced (all) libxml2, (much) std:: and (most) boost:: stuff by Qt stuff
Things left to do:
* remove tons of debug printfs
* show error messages on errors
* tidy up anyoption stuff in main()
* highlight session run previously
* readGroupXml stuff
* tree view (with "X Sessions" and "Virtual Sessions" sections) instead of list view for session selection
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Switched to cmake:
CMakeLists.txt in base directory
use ./build.sh to build vmchooser (or mkdir -p build; cd build cmake .. && make)
updated README
removed fltk/
removed libxml2/
removed mesgdisp/
renamed vmchooser/ to src/
moved all header files (.h) from vmchooser/inc/ to src/
added files to repository that must have slipped the last time
|
| |
|
|
|
|
| |
This reverts commit 7fd5c1176f04b6351dc41132888eddcb14720fc0.
|
| |
|
|
|
|
| |
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@3202 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
| |
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@3195 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
|
|
|
|
|
|
| |
===============================
* now omits <active> flag when starting xml explicitly
* reads <active param="false" /> and just does not display them
* fixed ugly bug, when the above mentioned flag was false ;-)
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@3135 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
| |
* until now it displayed only windows logo
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@3043 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
| |
* added right selection of icons
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@3034 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
|
|
|
| |
* added an option to support selecting an image via command line "--default|-d"
-> just specify a part of the display name (short_description).
Attention: If you use this feature, it will disable the saved session feature
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@3032 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
|
|
| |
* added option to select icon for image <icon param="bsd" />
* added default vmware icon
* added icons for: macos, bsd, gentoo, suse, ubuntu
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@3031 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* added support for feature #426 (nodes from group specific xml in /etc/opt/openslx/vmchooser-${ENV}.xml gets added into xml to run)
-> printers.sh / scanners.sh are still usable - but no more warning messages are printed.
* removed some unnecessary output (also about missing printers.sh/scanners.sh)
* new version 0.0.10 ;-))
* Changed CMakeLists.txt to produce a "release" binary
* changed svn:ignore to ignore eclipse project files etc.
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2965 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Now supports reading from /etc/opt/openslx/vmchooser-stage3.conf for the xml filter path
* new binary included
* changed make system to CMake to support better platform specific handling
-> in the past different boost libraries had to be changed in the makefile
* Closes Feature Request #429
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2947 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
|
|
|
| |
* Added support for the "active" parameter
-> if in xml file something is not equal <active param="true".*
the entry is discarded (only if "active" node is available)
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2859 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
|
|
| |
- added fix suggested by Klaus - thx
- new version for 5.0-branch and trunk
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2792 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
|
|
|
|
| |
* added various fixes to vmchooser sources
* changed default printer.sh and scanner.sh path to /etc/opt/openslx
* imported missing libraries (fltk+libxml2 soft ignored from svn)
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2790 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
|
| |
* removed some useless files
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2787 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
|
| |
* added fltk libs and includes
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2778 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
|
|
|
|
| |
* Various fixes found by Valgrind
* libxml2 lib included
* fltk from weekly snapshot updated
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2777 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
| |
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2737 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
|
|
| |
* added support for starting xml with argument
* version: 0.0.8
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2703 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
|
| |
* path to xml file included in node 'image_name'
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2644 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
|
|
|
| |
* Added source support for .openslx-folder
-> uses boost filesystem libs
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2629 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
| |
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2626 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
| |
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2625 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
| |
next time.
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2619 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
|
|
| |
* set the default script to "/var/X11R6/bin/run-virt.sh"
* in sources and binary
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2583 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
|
| |
till we removed vmconfigs/
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2513 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
|
| |
* Fixed bug in binary: Memory gets freed to early
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2479 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
|
|
| |
* fixed bug: Linux sessions getting message "Starting Image:"
* added <computername param=* /> - parseable by bootpgm
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2476 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
| |
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2393 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
|
|
|
|
| |
* added 10 secs messge to tell about image start
* fixed bug with waiting on fork()
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2390 95ad53e4-c205-0410-b2fa-d234c58c8868
|
|
|
|
| |
git-svn-id: http://svn.openslx.org/svn/openslx/openslx-src-tools/vmchooser/trunk@2354 95ad53e4-c205-0410-b2fa-d234c58c8868
|