This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package | |
{ | |
import flash.display.Sprite; | |
import flash.display.Loader; | |
import flash.net.URLRequest; | |
/** | |
* Loads SwfB in the same way a swf usually loads a swf. | |
*/ | |
public class SwfA extends Sprite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# svndiff2html runs svn diff on the current directory path and outputs a | |
# formatted HTML file to provide easier legibility. | |
diff=""; | |
out=""; | |
html=""; | |
args=""; |