DaveParillo / code-ladder

Automatically exported from code.google.com/p/code-ladder
Other
0 stars 0 forks source link

Problem specific help link label should support more than 1 link #2

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What is the current behavior you'd like changed?

The current link label can link to only a single help topic for a question, but 
in an advanced problem, "problem specific" help might easily include both a 
link to IfThen and TryParse.  Currently, you would have to pick one and guess 
which might be most helpful.

What is your enhancement request or suggestion?

Not only does the UI need to change, but the underlying XML schema for 
questions does also.
The current schema is pretty basic:

<help>https://code.google.com/p/code-ladder/wiki/TryParse</help>

but should probably be something more like:

<helpList>
  <help title="Try-Parse"  href="https://code.google.com/p/code-ladder/wiki/TryParse"  />
  <help title="If Then"  href="https://code.google.com/p/code-ladder/wiki/IfThen"  />
</helpList>

Original issue reported on code.google.com by DaveParillo on 24 Jan 2015 at 6:53

GoogleCodeExporter commented 9 years ago

Original comment by DaveParillo on 24 Jan 2015 at 6:55