Difference between revisions of "Mediawiki RawFile"

From YobiWiki
Jump to navigation Jump to search
Line 17: Line 17:
 
<br>Transformation:
 
<br>Transformation:
 
<br><code><nowiki>[{{fullurl:{{PAGENAME}}|action=raw&filename=myscript.sh}} myscript.sh]</nowiki></code>
 
<br><code><nowiki>[{{fullurl:{{PAGENAME}}|action=raw&filename=myscript.sh}} myscript.sh]</nowiki></code>
<br> Test: save the following code as [{{fullurl:{{PAGENAME}}|action=raw&filename=myscript.sh}} myscript.sh]
 
 
<br> Test: save the following code as {{#rawsnippet: myscript.sh}}
 
<br> Test: save the following code as {{#rawsnippet: myscript.sh}}
 
<source lang=bash>
 
<source lang=bash>

Revision as of 00:19, 31 March 2008

Introduction

The idea is to be able to download directly a portion of code as a file.
I've numerous code examples in my wiki and I wast an easy way to download them, easier than a copy/paste!

  • It must work with pre, nowiki, js, css, code, source, so let's make it general: take the tag that comes after the parser function we'll create and select data up to the closing tag.

2 parts:

  • the parser magic word that will be converted into a "Save it as <filename>"
  • an extended action=raw that will strip the raw output to keep the desired code

Documentation

Syntax

{{#rawsnippet: myscript.sh}}
Do we need a MIME type?
Transformation:
[{{fullurl:{{PAGENAME}}|action=raw&filename=myscript.sh}} myscript.sh]
Test: save the following code as {{#rawsnippet: myscript.sh}}

#!/bin/bash

echo 'Hello world!'
exit 0

Hook on Raw

  • Must extract the right paragraph
    • Strip all up to the right rawsnippet: filename tag
    • Find the next tag
    • Select up to the closure tag
  • Must provide the filename to the browser