Author Topic: The Greenie board comes back  (Read 16601 times)

Paddles

  • Hero Member
  • *****
  • Posts: 721
  • Lurking around
    • vLSO blog
The Greenie board comes back
« on: December 10, 2013, 05:35:07 pm »
Ok, guys
Let's talk about the Greenie board again and here's how I see it could be done.

Usually in a virtual squadron there's a person assigned to carry out LSO duties, including maintaining the Greenie board. The procedure is simple: virtual aviators send their vLSO logbooks (or selected parts) to their LSO and he then processes them, fills a greenie board and uploads it to a squadron's web page.

There are many possible ways to maintain the Greenie board.
Generally speaking a greenie board is a plain table where rows and columns represent each pilot's record with graded passes, or landing attempts, for a given time period. The LSO could draw this table on paper, then scan and upload it. Or he could use a software such as Excel to fill the table... Many ways to do it manually. ;-)
Any web page is a HTML, or hypertext, document. The hypertext format has a number of tags specifically designed for tables, so the table paradigm could be easily implemented in HTML format.

Again, there are many ways to create a greenie board HTML table. Some advanced techniques like PHP or CGI, especially using SQL servers, would require certain skills and knowledge from the LSO, so I think the easiest way would be to use a static HTML file, which would require some basic skills only.

To start off here's my quick and simple Greenie board sample:


The sample source files are attached for your convenience, so you can play with this sample to grasp the idea. What is what:
sample.htm - the main HTML file
greenieboard.css - the sample cascading style sheet, or CSS, file
\images - the images folder
\images\*.png - sample pictures of grade badges (the PNG format supports transparency)
\images\*.jpg - two background images for the sample

Both HTML and CSS files are plain text files, so you can use Notepad, or whatever text editor, to edit them.
Doubleclick on the sample.htm to open it in your default browser.

I think the part of this file between the <!-- Start of the greenie board --> and <!-- End of the greenie board --> comments (or even the whole file) could be created programmatically. How? I don't yet know  ;D

Any ideas, suggestions and feedback from virtual squadrons are welcome  ;)
Want it done right? Do it yourself!


Wood

  • Newbie
  • *
  • Posts: 9
    • Virtual Carrier Wing Three
Re: The Greenie board comes back
« Reply #1 on: December 10, 2013, 06:38:15 pm »
Hi Paddles
Got your email/ Thank you. We will definitely put something together with this.

Wood

GOONIE

  • Sr. Member
  • ****
  • Posts: 483
Re: The Greenie board comes back
« Reply #2 on: December 11, 2013, 04:03:58 pm »
Very nice!

GOONIE
"You've got to land here, son. This is where the food is."

Reject

  • Newbie
  • *
  • Posts: 3
Re: The Greenie board comes back
« Reply #3 on: December 21, 2013, 02:12:11 am »
Hey guys, new here but i have some ideas, if the logbook is formatted in xml or json, its not all that hard to have a php file read the document and either upload it to a database or even to a text doc that gets read out as html?

The php file could be included, and could be handled by people without much knowledge of the language?

I would be more than happy to write it up as well.
Regards Nick.

Orion

  • Hero Member
  • *****
  • Posts: 753
Re: The Greenie board comes back
« Reply #4 on: December 21, 2013, 06:14:17 am »
I had asked a while ago if it was possible to read the logbook format, but I was linked to this forum post:

At the very beginning of this project I've spent a lot of time evaluating suitability of various logbook data formats, and no viable solutions other than a binary format were found. This binary logbook format is kind of proprietory, or 'closed', format which is specific to this program. Due to its binary nature it is very uneasy to modify and tweak or fake one's stats. I don't mean it's impossible, I mean it's quite difficult, to say the least.  ;) Thus, anyone claiming he's a super-duper-hooker would have to present to the community his RAW logbook data to prove that.  8)
Should I think about some additional 'anti-cheating countermeasures'?

However, the other side of this binary nature is versions incompatibility, because some data being added, some data being removed from the data structure. For example, the upcoming 0.7 beta will not be compatible with any previous versions....

I guess XML serialization isn't an option?
« Last Edit: December 21, 2013, 06:15:48 am by Orion »

Paddles

  • Hero Member
  • *****
  • Posts: 721
  • Lurking around
    • vLSO blog
Re: The Greenie board comes back
« Reply #5 on: December 21, 2013, 04:27:14 pm »
I guess XML serialization isn't an option?

Nothing is impossible  ;D

if the logbook is formatted in xml or json, its not all that hard to have a php file read the document and either upload it to a database or even to a text doc that gets read out as html?

The php file could be included, and could be handled by people without much knowledge of the language?

I would be more than happy to write it up as well.

Ok guys. The XML format is good for data exchange, which is it's main purpose I believe. So, I attached a XML test table with some fictitious logbook data just to show you how these data look like in XML form. I decided to use MS Office schema so that this file could well be  parsed by a PHP script or loaded right into MS Excel.

However, the XML is no good to store the raw logbook data, mainly because of its text nature. That's why I have chosen the binary format which is the fastest...
« Last Edit: December 21, 2013, 05:51:33 pm by Paddles »
Want it done right? Do it yourself!


Reject

  • Newbie
  • *
  • Posts: 3
Re: The Greenie board comes back
« Reply #6 on: January 04, 2014, 10:46:23 am »

However, the XML is no good to store the raw logbook data, mainly because of its text nature. That's why I have chosen the binary format which is the fastest...


How much of a task is it to convert from binary to XML "on-the-fly" so to speak

pyroperson87

  • Full Member
  • ***
  • Posts: 191
  • To those who love aviation, the sky is home.
Re: The Greenie board comes back
« Reply #7 on: January 04, 2014, 07:31:48 pm »
So circle on the greenie board means you're a qual, and square means you aren't yet, right?
Pops

Paddles

  • Hero Member
  • *****
  • Posts: 721
  • Lurking around
    • vLSO blog
Re: The Greenie board comes back
« Reply #8 on: January 05, 2014, 12:45:08 pm »
How much of a task is it to convert from binary to XML "on-the-fly" so to speak

Not much, actually. But if you mean using the XML format to store raw data, there are a number of drawbacks/weaknesses which prevented me from using this format. At the very beginning of this project I did seriously consider the XML, but had to stay with the binary.

So circle on the greenie board means you're a qual, and square means you aren't yet, right?

They mean nothing  ;D These are there just to demonstrate various forms, backgrounds etc. The shape, color and all that stuff is completely at your squadron authorities' discretion.
Want it done right? Do it yourself!


Reject

  • Newbie
  • *
  • Posts: 3
Re: The Greenie board comes back
« Reply #9 on: January 06, 2014, 02:07:41 am »
Not much, actually. But if you mean using the XML format to store raw data, there are a number of drawbacks/weaknesses which prevented me from using this format. At the very beginning of this project I did seriously consider the XML, but had to stay with the binary.

Being able to click a button to export to a clear text format (XML or other) would be a massive start, from there the only task is getting it on a server and formatting it.
I know i could write up the php(and or mysql) to place it all nice looking on a page and even write the ability to commit the file to a database, but i'm not sure how that works for the community at large.

Also, if an "Upload" feature was avalible this would make the above even more hands free, again not sure how others like this?

I (or someone else?) could come up with an easy format to write this particular data, maybe even in XHTML, I'm not all that great with javascript, but that would be another option that could avoid playing with databases by just committing every new logbook to a text file "on server" (A Sort of global Greenie board)

Paddles

  • Hero Member
  • *****
  • Posts: 721
  • Lurking around
    • vLSO blog
Re: The Greenie board comes back
« Reply #10 on: January 06, 2014, 01:56:30 pm »
With the upcoming beta 0.8 you will be able to export and import logbook data in XML and vLSO native format. So, you just send your logbook, or a part of it, to your friends, or to your LSO. For example, the LSO loads and reviews your passes and then exports them to a XML file to compose a greenie board, using a PHP (or whatever) script.

I think that there are certain drawbacks in sending data directly to a greenie board server. The server could be down or inoperable, the pilot could have no Internet connection at that time... Not mention tweaking NAT, firewalls etc both on server and pilot side... Besides, in reality no one expects an LSO rushing down to a ready room and updating the greenie board after each landing attempt.  ;D

So, I think, much more easier and convenient would be to export data to a file, attach it and email to the LSO (or other person in charge). Or upload the file to a given server... Or LSO could request his pilots' logbook data for a given date or date range.

The new version will also keep info on pilot's currency, as you can see on the updated stat board. This feature would be useful both for pilots and LSOs.
Want it done right? Do it yourself!


GOONIE

  • Sr. Member
  • ****
  • Posts: 483
Re: The Greenie board comes back
« Reply #11 on: January 06, 2014, 06:09:02 pm »
I like the currency addition, BZ  8)
"You've got to land here, son. This is where the food is."