Difference between revisions of "User:Paxed/src geshi test"

From NetHackWiki
Jump to navigation Jump to search
m (moved User:Paxed/test to User:Paxed/src geshi test: better name for the page)
m (more pondering)
Line 4: Line 4:
  
 
*Added <tt>lineid</tt> to the <tt><nowiki><syntaxhighlight></nowiki></tt>.
 
*Added <tt>lineid</tt> to the <tt><nowiki><syntaxhighlight></nowiki></tt>.
*Edited geshi.php to output the id without the dash before the number.
+
*Edited geshi.php to output the id without the dash before the number. (So line number hrefs are <tt>#line1234</tt>, to keep compatible with current ones)
  
 
TODO:
 
TODO:
  
*Geshi should not strip out empty lines at the end of the highlighting block.
+
*<s>Geshi</s>The extension should not strip out empty lines at the end of the highlighting block.
 
*nethack function url links? (need to add the nethack functions and a lookup url ($geshi->add_keyword(), $geshi->add_keyword_group()))
 
*nethack function url links? (need to add the nethack functions and a lookup url ($geshi->add_keyword(), $geshi->add_keyword_group()))
 +
**Geshi only supports function name variable, eg. <tt>http://nethackwiki.com/wiki/SrcFunc:{FNAME}</tt>, when we need both the src filename and the function name.
 
*[[Des-file format]]? (tricky if we want to color both the syntax and the MAP characters)
 
*[[Des-file format]]? (tricky if we want to color both the syntax and the MAP characters)
 +
**Could be solved by colorizing MAPs separate from other parts, or by using Geshi devel version.
  
 
----
 
----

Revision as of 10:34, 17 November 2010

This is a test of tiny highlight-extension modification:

Done:

  • Added lineid to the <syntaxhighlight>.
  • Edited geshi.php to output the id without the dash before the number. (So line number hrefs are #line1234, to keep compatible with current ones)

TODO:

  • GeshiThe extension should not strip out empty lines at the end of the highlighting block.
  • nethack function url links? (need to add the nethack functions and a lookup url ($geshi->add_keyword(), $geshi->add_keyword_group()))
  • Des-file format? (tricky if we want to color both the syntax and the MAP characters)
    • Could be solved by colorizing MAPs separate from other parts, or by using Geshi devel version.

/* Called in several places - may produce output */
/* eg ship_object() and dropy() -> sellobj() both produce output */
void
dropx(obj)
register struct obj *obj;
{
#ifndef GOLDOBJ
        if (obj->oclass != COIN_CLASS || obj == invent) freeinv(obj);
#else
        /* Ensure update when we drop gold objects */
        if (obj->oclass == COIN_CLASS) flags.botl = 1;
        freeinv(obj);
#endif
        if (!u.uswallow) {
            if (ship_object(obj, u.ux, u.uy, FALSE)) return;
            if (IS_ALTAR(levl[u.ux][u.uy].typ))
                doaltarobj(obj); /* set bknown */
        }
        dropy(obj);
}