Format of Published Results

I’m planning to move to Sailwave and have run a couple of test events on it.

In reference to http://www.hyc.ie/reshyc/2012/open/springwarmer/class3.htm

In Edit-Race - in the ‘Published date or day’ box I entered the dates
14/4, 21/4 & 28/4.

These dates are displayed under the race number in the Overall Result.

However, the word ‘at’ is added after these dates in the header of the individual race results.

I have two questions …

  1. How do I get rid of the ‘at’ ? (I dont want ‘at time’)
  2. The word ‘class’ is added after the class name in the headers of the overall & race results. How do I get rid of this ‘class’ word?

I suspect that the words ‘class’ and ‘at’ are built into the program.

In the Publish menu, in the Options tab, I suspect that you have the
`Publish race times’ box checked.

The word Class must be something you have entered somewhere, e.g.

fleet name. How are you scoring - as one group, or separately (e.g.
by fleet)?

···
regards,
Malcolm Osborne
Sedgefield South Africa

          I'm planning to move to Sailwave and have run a couple of

test events on it.

In reference to http://www.hyc.ie/reshyc/2012/open/springwarmer/class3.htm

          In Edit-Race - in the 'Published date or day' box I

entered the dates
14/4, 21/4 & 28/4.

          These dates are displayed under the race number in the

Overall Result.

          However, the word 'at' is added after these dates in the

header of the individual race results.

I have two questions …

  1. How do I get rid of the ‘at’ ? (I dont want ‘at time’)
    2. The word ‘class’ is added after the class name in the
    headers of the overall & race results. How do I get
    rid of this ‘class’ word?
          I suspect that the words 'class' and 'at' are built into

the program.

deane,

  if you are using the latest version you can use javascript though

i think the “at” problem is fixed.

  when publishing the results template click "use javascript" which

tells it to not do the hardwiring you are referring to.

  then at the next stage click the scripts checkbox and include the

results script.

  you should end up with the same looking results - they are however

generated using javascript.

  copy results.js from program files/sailwave/javascript to a folder

of your choice

  in sailwave - in the global settings folders tab tell sailwave

where your scripts are

  tweak your copy of results.js as you like - should be easy to find

the “at” and the “class”

  restart sailwave and try your script

  nb:

  the class thing can be done by editing the resSummaryTitle

function so it looks like this:-

  function resSummaryTitle() {

    if (swSummary.Field)

      document.write('<h3 class="summarytitle" id="summary' +

swSummary.TagValue + ‘">’ + ‘’ + ’ ’ + swSummary.FieldName +
‘’);

    else

      document.write('<h3 class="summarytitle">' +

swStr.SummaryTitle + ‘’);

  }

  the at thing can be done by finding the line towards the top of

the file:-

    swStr.Wordat                  = 'at';

  and changing to:-

    swStr.Wordat                  = '';
···

Cheers,

  Colin J

http://sailwave.com

          I'm planning to move to Sailwave and have run a couple of

test events on it.

In reference to http://www.hyc.ie/reshyc/2012/open/springwarmer/class3.htm

          In Edit-Race - in the 'Published date or day' box I

entered the dates
14/4, 21/4 & 28/4.

          These dates are displayed under the race number in the

Overall Result.

          However, the word 'at' is added after these dates in the

header of the individual race results.

I have two questions …

  1. How do I get rid of the ‘at’ ? (I dont want ‘at time’)
    2. The word ‘class’ is added after the class name in the
    headers of the overall & race results. How do I get
    rid of this ‘class’ word?
          I suspect that the words 'class' and 'at' are built into

the program.

    No virus

found in this message.
Checked by AVG - www.avg.com
Version: 2012.0.1913 / Virus Database: 2411/4971 - Release Date:
05/01/12

Thanks Malcolm

No I just have "Include Race Dates" ticked.

In Columns I selected "Class" as the header for the groups of boats which we call "Classes"

In "Score Series" I clicked the lower radio button:
"Score Groups of competitors separately"
and selected "Class" as the Grouping Field (to match the above).

However, Colin answered both my queries.

"At" was removed in v2.5 which I downloaded - so thats ok.

The word "Class" appears after the class name by default.
Colin suggested a way to hide it by using a modified script which he gave me in his mail.

John

···

--- In sailwave@yahoogroups.com, Malcolm Osborne <malcolmo@...> wrote:

In the Publish menu, in the Options tab, I suspect that you have the
`Publish race times' box checked.

The word Class must be something you have entered somewhere, e.g. fleet
name. How are you scoring - as one group, or separately (e.g. by fleet)?

regards,
Malcolm Osborne
Sedgefield South Africa

On 2012/05/01 23:16, deane111 wrote:
>
> I'm planning to move to Sailwave and have run a couple of test events
> on it.
>
> In reference to http://www.hyc.ie/reshyc/2012/open/springwarmer/class3.htm
>
> In Edit-Race - in the 'Published date or day' box I entered the dates
> 14/4, 21/4 & 28/4.
>
> These dates are displayed under the race number in the Overall Result.
>
> However, the word 'at' is added after these dates in the header of the
> individual race results.
>
> I have two questions ...
>
> 1. How do I get rid of the 'at' ? (I dont want 'at time')
> 2. The word 'class' is added after the class name in the headers of
> the overall & race results. How do I get rid of this 'class' word?
>
> I suspect that the words 'class' and 'at' are built into the program.
>
>

Thanks Colin

The "At" is solved in v2.5

I tried playing with scripts but got an odd output.

Hence my mail sent direct to you.