From 30461b7e078300f76fbc14cc837410ef074d151f Mon Sep 17 00:00:00 2001 From: "Dr. Martin Goik" <goik@pdc1.srv.mi.hdm-stuttgart.de> Date: Fri, 23 Oct 2015 14:02:44 +0200 Subject: [PATCH] Parallel Maven builds --- Makefile | 2 +- .../webapp/VAADIN/themes/mytheme/styles.css | 22 +++++++++---------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Makefile b/Makefile index 44c136557..8c2487457 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ doc: cd Doc;$(MAKE) -j ${numCores} all all:doc - mvn --fail-at-end install || exit 0 + mvn -T ${numCores} --fail-at-end install || exit 0 mvn -T ${numCores} --fail-at-end javadoc:javadoc || exit 0 mkdir -p Doc/target/navi/de.hdm_stuttgart.mi.lectures/P cd P;$(MAKE) install diff --git a/P/Sda2/forum_1/src/main/webapp/VAADIN/themes/mytheme/styles.css b/P/Sda2/forum_1/src/main/webapp/VAADIN/themes/mytheme/styles.css index 8bcf75fcd..daad9b139 100644 --- a/P/Sda2/forum_1/src/main/webapp/VAADIN/themes/mytheme/styles.css +++ b/P/Sda2/forum_1/src/main/webapp/VAADIN/themes/mytheme/styles.css @@ -5,7 +5,7 @@ * @param {value} $var - the value to search for * @param {bool} $recursive (false) - should any contained lists be checked for the value * - * @return {bool}��true if the value is found from the list, false otherwise + * @return {bool}??true if the value is found from the list, false otherwise * * @group lists */ @@ -258,7 +258,7 @@ * * @param {color} $color ($v-background-color) - The base color for the gradient color stops * @param {list} $gradient ($v-gradient) - Valo-specific gradient value. See the documentation for $v-gradient. - * @param {color}��$fallback (null) - A fallback color for browser which do not support linear gradients (IE8 and IE9 in particular). If null, the base $color is used instead. + * @param {color}??$fallback (null) - A fallback color for browser which do not support linear gradients (IE8 and IE9 in particular). If null, the base $color is used instead. * @param {string} $direction (to bottom) - the direction of the linear gradient. The color stops are by default so that a lighter shade is at the start and a darker shade is at the end. */ @@ -267,7 +267,7 @@ * * @group style * - * @param {list}��$border ($v-border) - CSS border value which can contain any of the color keywords + * @param {list}??$border ($v-border) - CSS border value which can contain any of the color keywords * @param {color} $color ($v-background-color) - the base color to which the color keywords are applied to * @param {color} $context (null) - context/surrounding color where the border is expected to appear. The color of the final border is the darker of the two parameters passed to this function. * @param {number} $strength (1) - adjustment for the border contrast @@ -280,7 +280,7 @@ * * @param {string} $to-align (()) - The selector to match the elements which you wish to align vertically. The targeted elements should be inline or inline-block elements. * @param {string} $align (middle) - The vertical-align value, e.g. top, middle, bottom - * @param {string}��$pseudo-element (after) - Which pseudo element to use for the vertical align guide + * @param {string}??$pseudo-element (after) - Which pseudo element to use for the vertical align guide * * @group util */ @@ -539,7 +539,7 @@ * Outputs the selectors and properties for the Accordion component. * * @param {string} $primary-stylename (v-accordion) - the primary style name for the selectors - * @param {bool}��$include-additional-styles - should the mixin output all the different style variations of the component + * @param {bool}??$include-additional-styles - should the mixin output all the different style variations of the component * @group accordion */ @@ -547,7 +547,7 @@ * Outputs the selectors and properties for the Button component. * * @param {string} $primary-stylename (v-button) - the primary style name for the selectors - * @param {bool}��$include-additional-styles - should the mixin output all the different style variations of the component + * @param {bool}??$include-additional-styles - should the mixin output all the different style variations of the component * * @group button */ @@ -570,7 +570,7 @@ * Outputs the selectors and properties for the CheckBox component. * * @param {string} $primary-stylename (v-checkbox) - the primary style name for the selectors - * @param {bool}��$include-additional-styles - should the mixin output all the different style variations of the component + * @param {bool}??$include-additional-styles - should the mixin output all the different style variations of the component * * @group checkbox */ @@ -588,7 +588,7 @@ * Outputs the selectors and properties for the ComboBox component. * * @param {string} $primary-stylename (v-filterselect) - the primary style name for the selectors - * @param {bool}��$include-additional-styles - should the mixin output all the different style variations of the component + * @param {bool}??$include-additional-styles - should the mixin output all the different style variations of the component * * @group combobox */ @@ -604,7 +604,7 @@ * Outputs the selectors and properties for the DateField component. * * @param {string} $primary-stylename (v-datefield) - the primary style name for the selectors - * @param {bool}��$include-additional-styles - should the mixin output all the different style variations of the component + * @param {bool}??$include-additional-styles - should the mixin output all the different style variations of the component * * @group datefield */ @@ -621,7 +621,7 @@ * Outputs the selectors and properties for the FormLayout component. * * @param {string} $primary-stylename (v-formlayout) - the primary style name for the selectors - * @param {bool}��$include-additional-styles - should the mixin output all the different style variations of the component + * @param {bool}??$include-additional-styles - should the mixin output all the different style variations of the component * * @group formlayout */ @@ -666,7 +666,7 @@ * Outputs the selectors and properties for the TextArea component. * * @param {string} $primary-stylename (v-textarea) - the primary style name for the selectors - * @param {bool}��$include-additional-styles - should the mixin output all the different style variations of the component + * @param {bool}??$include-additional-styles - should the mixin output all the different style variations of the component * * @group textarea */ -- GitLab