├── .gitignore ├── Gemfile ├── README.md ├── Rakefile ├── bin └── gollum-site ├── gollum-site.gemspec ├── lib ├── gollum-site.rb └── gollum-site │ ├── layout │ ├── _Layout.html │ ├── css │ │ ├── editbar.css │ │ ├── gollum.css │ │ ├── screen.css │ │ └── syntax.css │ └── javascript │ │ ├── MathJax │ │ ├── COPYING.txt │ │ ├── MathJax.js │ │ ├── README.txt │ │ ├── config │ │ │ ├── MMLorHTML.js │ │ │ ├── MathJax.js │ │ │ └── local │ │ │ │ └── local.js │ │ ├── extensions │ │ │ ├── TeX │ │ │ │ ├── AMSmath.js │ │ │ │ ├── AMSsymbols.js │ │ │ │ ├── autobold.js │ │ │ │ ├── boldsymbol.js │ │ │ │ ├── mathchoice.js │ │ │ │ ├── newcommand.js │ │ │ │ ├── noErrors.js │ │ │ │ ├── unicode.js │ │ │ │ └── verb.js │ │ │ ├── jsMath2jax.js │ │ │ ├── mml2jax.js │ │ │ ├── tex2jax.js │ │ │ └── toMathML.js │ │ ├── jax │ │ │ ├── element │ │ │ │ └── mml │ │ │ │ │ ├── jax.js │ │ │ │ │ └── optable │ │ │ │ │ ├── Arrows.js │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ ├── Dingbats.js │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ ├── SuppMathOperators.js │ │ │ │ │ └── SupplementalArrowsB.js │ │ │ ├── input │ │ │ │ ├── MathML │ │ │ │ │ ├── config.js │ │ │ │ │ ├── entities │ │ │ │ │ │ ├── a.js │ │ │ │ │ │ ├── b.js │ │ │ │ │ │ ├── c.js │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ ├── e.js │ │ │ │ │ │ ├── f.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── g.js │ │ │ │ │ │ ├── h.js │ │ │ │ │ │ ├── i.js │ │ │ │ │ │ ├── j.js │ │ │ │ │ │ ├── k.js │ │ │ │ │ │ ├── l.js │ │ │ │ │ │ ├── m.js │ │ │ │ │ │ ├── n.js │ │ │ │ │ │ ├── o.js │ │ │ │ │ │ ├── opf.js │ │ │ │ │ │ ├── p.js │ │ │ │ │ │ ├── q.js │ │ │ │ │ │ ├── r.js │ │ │ │ │ │ ├── s.js │ │ │ │ │ │ ├── scr.js │ │ │ │ │ │ ├── t.js │ │ │ │ │ │ ├── u.js │ │ │ │ │ │ ├── v.js │ │ │ │ │ │ ├── w.js │ │ │ │ │ │ ├── x.js │ │ │ │ │ │ ├── y.js │ │ │ │ │ │ └── z.js │ │ │ │ │ └── jax.js │ │ │ │ └── TeX │ │ │ │ │ ├── config.js │ │ │ │ │ └── jax.js │ │ │ └── output │ │ │ │ ├── HTML-CSS │ │ │ │ ├── autoload │ │ │ │ │ ├── menclose.js │ │ │ │ │ ├── mglyph.js │ │ │ │ │ └── ms.js │ │ │ │ ├── blank.gif │ │ │ │ ├── config.js │ │ │ │ ├── fonts │ │ │ │ │ ├── STIX │ │ │ │ │ │ ├── General │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ ├── AlphaPresentForms.js │ │ │ │ │ │ │ │ ├── Arrows.js │ │ │ │ │ │ │ │ ├── BoldFraktur.js │ │ │ │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ │ │ ├── ControlPictures.js │ │ │ │ │ │ │ │ ├── CurrencySymbols.js │ │ │ │ │ │ │ │ ├── Cyrillic.js │ │ │ │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ │ │ ├── GreekBold.js │ │ │ │ │ │ │ │ ├── GreekSSBold.js │ │ │ │ │ │ │ │ ├── IPAExtensions.js │ │ │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ │ │ ├── LatinExtendedAdditional.js │ │ │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ │ ├── MathBold.js │ │ │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ │ │ ├── MathSSBold.js │ │ │ │ │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ │ │ │ ├── NumberForms.js │ │ │ │ │ │ │ │ ├── PhoneticExtensions.js │ │ │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ │ │ ├── SuperAndSubscripts.js │ │ │ │ │ │ │ │ └── SuppMathOperators.js │ │ │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ │ │ ├── AlphaPresentForms.js │ │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ │ │ ├── ControlPictures.js │ │ │ │ │ │ │ │ ├── CurrencySymbols.js │ │ │ │ │ │ │ │ ├── Cyrillic.js │ │ │ │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ │ │ ├── GreekBoldItalic.js │ │ │ │ │ │ │ │ ├── GreekSSBoldItalic.js │ │ │ │ │ │ │ │ ├── IPAExtensions.js │ │ │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ │ │ ├── LatinExtendedAdditional.js │ │ │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ │ ├── MathBoldItalic.js │ │ │ │ │ │ │ │ ├── MathBoldScript.js │ │ │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ │ │ ├── MathSSItalicBold.js │ │ │ │ │ │ │ │ └── SpacingModLetters.js │ │ │ │ │ │ │ ├── Italic │ │ │ │ │ │ │ │ ├── AlphaPresentForms.js │ │ │ │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ │ │ ├── ControlPictures.js │ │ │ │ │ │ │ │ ├── CurrencySymbols.js │ │ │ │ │ │ │ │ ├── Cyrillic.js │ │ │ │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ │ │ ├── GreekItalic.js │ │ │ │ │ │ │ │ ├── IPAExtensions.js │ │ │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ │ │ ├── LatinExtendedAdditional.js │ │ │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ │ ├── MathItalic.js │ │ │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ │ │ ├── MathSSItalic.js │ │ │ │ │ │ │ │ ├── MathScript.js │ │ │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ │ │ └── ij.js │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ ├── AlphaPresentForms.js │ │ │ │ │ │ │ │ ├── Arrows.js │ │ │ │ │ │ │ │ ├── BBBold.js │ │ │ │ │ │ │ │ ├── BlockElements.js │ │ │ │ │ │ │ │ ├── BoldFraktur.js │ │ │ │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ │ │ │ ├── CJK.js │ │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ │ │ ├── ControlPictures.js │ │ │ │ │ │ │ │ ├── CurrencySymbols.js │ │ │ │ │ │ │ │ ├── Cyrillic.js │ │ │ │ │ │ │ │ ├── Dingbats.js │ │ │ │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ │ │ │ ├── Fraktur.js │ │ │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ │ │ ├── GreekBold.js │ │ │ │ │ │ │ │ ├── GreekBoldItalic.js │ │ │ │ │ │ │ │ ├── GreekItalic.js │ │ │ │ │ │ │ │ ├── GreekSSBold.js │ │ │ │ │ │ │ │ ├── GreekSSBoldItalic.js │ │ │ │ │ │ │ │ ├── Hiragana.js │ │ │ │ │ │ │ │ ├── IPAExtensions.js │ │ │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ │ │ ├── LatinExtendedAdditional.js │ │ │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ │ │ ├── LatinExtendedD.js │ │ │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ │ ├── MathBold.js │ │ │ │ │ │ │ │ ├── MathBoldItalic.js │ │ │ │ │ │ │ │ ├── MathBoldScript.js │ │ │ │ │ │ │ │ ├── MathItalic.js │ │ │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ │ │ ├── MathSS.js │ │ │ │ │ │ │ │ ├── MathSSBold.js │ │ │ │ │ │ │ │ ├── MathSSItalic.js │ │ │ │ │ │ │ │ ├── MathSSItalicBold.js │ │ │ │ │ │ │ │ ├── MathScript.js │ │ │ │ │ │ │ │ ├── MathTT.js │ │ │ │ │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ │ │ │ ├── MiscSymbolsAndArrows.js │ │ │ │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ │ │ │ ├── NumberForms.js │ │ │ │ │ │ │ │ ├── PhoneticExtensions.js │ │ │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ │ │ ├── Specials.js │ │ │ │ │ │ │ │ ├── SuperAndSubscripts.js │ │ │ │ │ │ │ │ ├── SuppMathOperators.js │ │ │ │ │ │ │ │ ├── SupplementalArrowsA.js │ │ │ │ │ │ │ │ ├── SupplementalArrowsB.js │ │ │ │ │ │ │ │ └── ij.js │ │ │ │ │ │ ├── IntegralsD │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ └── All.js │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── IntegralsSm │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ └── All.js │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── IntegralsUp │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ └── All.js │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── IntegralsUpD │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ └── All.js │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── IntegralsUpSm │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ └── All.js │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── NonUnicode │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ │ └── PrivateUse.js │ │ │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ │ └── PrivateUse.js │ │ │ │ │ │ │ ├── Italic │ │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ │ └── PrivateUse.js │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ │ └── PrivateUse.js │ │ │ │ │ │ ├── SizeFiveSym │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── SizeFourSym │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── SizeOneSym │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── SizeThreeSym │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── SizeTwoSym │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── Variants │ │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── fontdata-beta.js │ │ │ │ │ │ └── fontdata.js │ │ │ │ │ └── TeX │ │ │ │ │ │ ├── AMS │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── Arrows.js │ │ │ │ │ │ │ ├── BBBold.js │ │ │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ ├── Dingbats.js │ │ │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ │ │ ├── PUA.js │ │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ │ └── SuppMathOperators.js │ │ │ │ │ │ ├── Caligraphic │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── Fraktur │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ ├── Other.js │ │ │ │ │ │ │ └── PUA.js │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ ├── Other.js │ │ │ │ │ │ │ └── PUA.js │ │ │ │ │ │ ├── Greek │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── Italic │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── Main │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ ├── Arrows.js │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ │ ├── SuppMathOperators.js │ │ │ │ │ │ │ └── SupplementalArrowsA.js │ │ │ │ │ │ ├── Italic │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── Arrows.js │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ │ ├── SuppMathOperators.js │ │ │ │ │ │ │ └── SupplementalArrowsA.js │ │ │ │ │ │ ├── Math │ │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ └── Italic │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── SansSerif │ │ │ │ │ │ ├── Bold │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ └── Other.js │ │ │ │ │ │ ├── Italic │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ └── Other.js │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ └── Other.js │ │ │ │ │ │ ├── Script │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ └── Other.js │ │ │ │ │ │ ├── Size1 │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── Size2 │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── Size3 │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── Size4 │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── Typewriter │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ │ └── Other.js │ │ │ │ │ │ ├── WinChrome │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ ├── WinIE6 │ │ │ │ │ │ └── Regular │ │ │ │ │ │ │ ├── AMS.js │ │ │ │ │ │ │ ├── Bold.js │ │ │ │ │ │ │ └── Main.js │ │ │ │ │ │ └── fontdata.js │ │ │ │ ├── imageFonts.js │ │ │ │ └── jax.js │ │ │ │ └── NativeMML │ │ │ │ ├── config.js │ │ │ │ └── jax.js │ │ └── test │ │ │ ├── index-images.html │ │ │ ├── index.html │ │ │ └── sample.html │ │ ├── gollum.js │ │ ├── jquery-1.4.2.min.js │ │ ├── jquery.previewable_comment_form.js │ │ ├── jquery.tabs.js │ │ └── jquery.text_selection-1.0.0.min.js │ ├── log.rb │ ├── page.rb │ ├── sanitization.rb │ ├── site.rb │ ├── version.rb │ └── wiki.rb └── test ├── examples ├── test_footer_and_sidebar.git │ ├── COMMIT_EDITMSG │ ├── HEAD │ ├── config │ ├── description │ ├── hooks │ │ ├── applypatch-msg.sample │ │ ├── commit-msg.sample │ │ ├── post-commit.sample │ │ ├── post-receive.sample │ │ ├── post-update.sample │ │ ├── pre-applypatch.sample │ │ ├── pre-commit.sample │ │ ├── pre-rebase.sample │ │ ├── prepare-commit-msg.sample │ │ └── update.sample │ ├── index │ ├── info │ │ └── exclude │ ├── logs │ │ ├── HEAD │ │ └── refs │ │ │ └── heads │ │ │ └── master │ ├── objects │ │ ├── 11 │ │ │ └── 1fe2807960c86c8ee1c4d5141d068f52abadb6 │ │ ├── 07 │ │ │ └── 748c9bf3b10a2dbc88830595850c36b8908a94 │ │ ├── 0d │ │ │ └── 8513659a6a4837331c5a407b333acaa7260275 │ │ ├── 4b │ │ │ └── 9f13d3082668e68a988e7f74f7a94e34931652 │ │ ├── 8b │ │ │ └── 137891791fe96927ad78e64b0aad7bded08bdc │ │ ├── aa │ │ │ └── 69c7a27988b76fe398d1dccc171e25cfc99e3a │ │ ├── bb │ │ │ └── 4397734f9c55a065348686324f81be81769642 │ │ ├── c0 │ │ │ └── a8e615860c09ef147e590c3335210b5efb7725 │ │ ├── cc │ │ │ └── 628ccd10742baea8241c5924df992b5c019f71 │ │ ├── ce │ │ │ └── 013625030ba8dba906f756967f9e9ca394464a │ │ ├── e6 │ │ │ └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391 │ │ ├── f4 │ │ │ └── fcee7b7e2c4de453db5c4b70d7a6fc53ba9769 │ │ └── f8 │ │ │ └── 1dd0b9cec9c51bbf0ced5d75d329ab14ab4c69 │ ├── packed-refs │ └── refs │ │ ├── heads │ │ └── master │ │ └── remotes │ │ └── origin │ │ └── HEAD ├── test_site.git │ ├── COMMIT_EDITMSG │ ├── HEAD │ ├── config │ ├── description │ ├── hooks │ │ ├── applypatch-msg.sample │ │ ├── commit-msg.sample │ │ ├── post-update.sample │ │ ├── pre-applypatch.sample │ │ ├── pre-commit.sample │ │ ├── pre-push.sample │ │ ├── pre-rebase.sample │ │ ├── prepare-commit-msg.sample │ │ └── update.sample │ ├── index │ ├── info │ │ └── exclude │ ├── logs │ │ ├── HEAD │ │ └── refs │ │ │ ├── heads │ │ │ └── master │ │ │ └── remotes │ │ │ └── origin │ │ │ └── HEAD │ ├── objects │ │ ├── 12 │ │ │ └── d183189412aea09391023586297528722daa1b │ │ ├── 24 │ │ │ ├── 6104cdec11f15d582a78ffefc1be08b1566561 │ │ │ └── d9d55aef25343c5a1c6f2d3ac09512a37a8687 │ │ ├── 31 │ │ │ └── 34a0792941bf0df537c3a10d2502fdc3be08a5 │ │ ├── 33 │ │ │ └── c6cf51b72a58596114e5d2f03261b8deaaa0f0 │ │ ├── 43 │ │ │ └── a97c5259b27129a0fadff58ba8aa8ebbb62523 │ │ ├── 45 │ │ │ └── 170c1c68e6ddd4d4c08adfb2aaf3c12d9b6329 │ │ ├── 71 │ │ │ └── bb02bb7d563e86a558a0040d77f3cfc82dc4fd │ │ ├── 91 │ │ │ └── e0f12260f005632f42619886d02ee0a1f9cb2f │ │ ├── 0c │ │ │ └── e23474afb8381a2df45077c7897e72ea66bd82 │ │ ├── 4d │ │ │ ├── 1311a57ece3dc2840c6e48d1b9bf5978e3dc91 │ │ │ └── 905a41381ad39d616dee245cf3e324f9fcc02e │ │ ├── 6b │ │ │ └── a5b4d83ba18c2bd85fade0c03816e5b2bfa9f4 │ │ ├── 6c │ │ │ └── bc9f20aa7806196638e32f708e012568d4a959 │ │ ├── 7b │ │ │ └── 01dd393ee4bba9855ac7c46a1e571918104546 │ │ ├── 7d │ │ │ └── f37a9caf358dbb0244742503a456aeac1eaf82 │ │ ├── 9b │ │ │ ├── 063b69e53a11210e033ba953be56135a7b0281 │ │ │ └── 3d7fbc0ed4fc1db28f361729e4396208e6f846 │ │ ├── a5 │ │ │ └── 2b08f141c77fa0cd2397fb26f3285ea17bd6ea │ │ ├── b1 │ │ │ └── 99a056e7e0dfadc1350413de32d6c9a700e7fa │ │ ├── c2 │ │ │ └── 1da0b71136462ceda60b7c4fab79311338eafa │ │ ├── c3 │ │ │ └── d487fda322940d75eac154fc8383093f7bcdf3 │ │ ├── c4 │ │ │ └── 9a9d6386a9d955b3fac30f863c6b617d5830bc │ │ ├── cc │ │ │ └── 156aedb8a8f5ccabde7be915044e226621926f │ │ ├── cd │ │ │ └── 68dbcff0518c406e8caee2fa163006a90626b7 │ │ ├── d7 │ │ │ └── 0d4721df9e28ebab272ec8994ca0569974be92 │ │ ├── d9 │ │ │ └── 4ddf467ffb57a73ce424b123dd04e80c760719 │ │ ├── dd │ │ │ └── d9974bd919e3601cc015ee36d524f18b4b2df5 │ │ ├── e4 │ │ │ └── 2feb142e65f08532eb10ca858e2275a1135462 │ │ ├── e5 │ │ │ └── d334fc4683e3320e922b8eb07232fa6ba0d74a │ │ ├── e6 │ │ │ └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391 │ │ ├── e7 │ │ │ └── 0688deaa9cae7f981200111abc974a334a4426 │ │ ├── ea │ │ │ └── 8b884d4ac9807c17383bace8393379d15f8c2f │ │ ├── fe │ │ │ └── 8086cbd51dd30365c9cbaedf015036445fabe4 │ │ └── ff │ │ │ └── b5bbc20089dd64632b4aa7b2be312cfaddae35 │ ├── packed-refs │ └── refs │ │ ├── heads │ │ └── master │ │ └── remotes │ │ └── origin │ │ └── HEAD └── test_site_no_layout.git │ ├── COMMIT_EDITMSG │ ├── HEAD │ ├── config │ ├── description │ ├── hooks │ ├── applypatch-msg.sample │ ├── commit-msg.sample │ ├── post-commit.sample │ ├── post-receive.sample │ ├── post-update.sample │ ├── pre-applypatch.sample │ ├── pre-commit.sample │ ├── pre-rebase.sample │ ├── prepare-commit-msg.sample │ └── update.sample │ ├── index │ ├── info │ └── exclude │ ├── logs │ ├── HEAD │ └── refs │ │ └── heads │ │ └── master │ ├── objects │ ├── 28 │ │ └── 506d2802df89e6802c9b10babee796d8822be4 │ ├── 0c │ │ └── e23474afb8381a2df45077c7897e72ea66bd82 │ ├── 9f │ │ └── 7f67b620764cb58f23a0cdeefdd235a8499b93 │ ├── b1 │ │ └── 99a056e7e0dfadc1350413de32d6c9a700e7fa │ ├── cd │ │ └── 68dbcff0518c406e8caee2fa163006a90626b7 │ └── e7 │ │ └── 0688deaa9cae7f981200111abc974a334a4426 │ └── refs │ └── heads │ └── master ├── helper.rb └── test_site.rb /.gitignore: -------------------------------------------------------------------------------- 1 | pkg/* 2 | *.gem 3 | .bundle 4 | vendor 5 | Gemfile.lock 6 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "http://rubygems.org" 2 | 3 | # Include rake in Gemfile so that `bundle exec rake` doesn't raise an error 4 | gem 'rake', :group => :test 5 | 6 | # Specify your gem's dependencies in gollum-site.gemspec 7 | gemspec 8 | -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- 1 | require 'bundler' 2 | Bundler::GemHelper.install_tasks 3 | 4 | task :default => :test 5 | 6 | require 'rake/testtask' 7 | Rake::TestTask.new(:test) do |test| 8 | test.libs << 'lib' << 'test' << '.' 9 | test.pattern = 'test/**/test_*.rb' 10 | test.verbose = true 11 | end 12 | -------------------------------------------------------------------------------- /gollum-site.gemspec: -------------------------------------------------------------------------------- 1 | # -*- encoding: utf-8 -*- 2 | $:.push File.expand_path("../lib", __FILE__) 3 | require "gollum-site/version" 4 | 5 | Gem::Specification.new do |s| 6 | s.name = "gollum-site" 7 | s.version = Gollum::Site::VERSION 8 | s.platform = Gem::Platform::RUBY 9 | s.authors = ["Daniel Reverri"] 10 | s.email = ["dan@basho.com"] 11 | s.homepage = "http://rubygems.org/gems/gollum-site" 12 | s.summary = %q{Static site generator for Gollum Wikis} 13 | s.description = %q{Generate a static site for Gollum Wikis} 14 | 15 | s.rubyforge_project = "gollum-site" 16 | 17 | s.add_dependency('gollum-lib', '>=1.0.8') 18 | s.add_dependency('liquid', '>= 2.2.2') 19 | s.add_dependency('mixlib-log', '>= 1.1.0') 20 | s.add_dependency('directory_watcher') 21 | 22 | s.add_development_dependency('github-markdown', '~> 0.5.3') 23 | 24 | s.files = `git ls-files`.split("\n") 25 | s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") 26 | s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } 27 | s.require_paths = ["lib"] 28 | end 29 | -------------------------------------------------------------------------------- /lib/gollum-site.rb: -------------------------------------------------------------------------------- 1 | require 'gollum-lib' 2 | require 'liquid' 3 | require 'gollum-site/site' 4 | 5 | # Use custom Page class to overwrite cname and find method 6 | require 'gollum-site/page' 7 | 8 | # Absolutely awful hack 9 | require 'gollum-site/wiki' 10 | 11 | # Logging 12 | require 'mixlib/log' 13 | require 'gollum-site/log' 14 | 15 | require 'gollum-site/sanitization' 16 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/css/gollum.css: -------------------------------------------------------------------------------- 1 | a.absent { 2 | color: #a00; 3 | } 4 | 5 | /* Images */ 6 | 7 | .frame { 8 | margin: 0; 9 | display: inline-block; 10 | } 11 | 12 | .frame img { 13 | display: block; 14 | } 15 | 16 | .frame > span { 17 | display: block; 18 | border: 1px solid #aaa; 19 | padding: 4px; 20 | } 21 | 22 | .frame span span { 23 | display: block; 24 | font-size: 10pt; 25 | margin: 0; 26 | padding: 4px 0 2px 0; 27 | text-align: center; 28 | line-height: 10pt; 29 | font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; 30 | } 31 | 32 | .float-left { 33 | float: left; 34 | padding: .5em 1em .25em 0; 35 | } 36 | 37 | .float-right { 38 | float: right; 39 | padding: .5em 0 .25em 1em; 40 | } 41 | 42 | .align-left { 43 | display: block; 44 | text-align: left; 45 | } 46 | 47 | .align-center { 48 | display: block; 49 | text-align: center; 50 | } 51 | 52 | .align-right { 53 | display: block; 54 | text-align: right; 55 | } -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/config/local/local.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/config/local/local.js 4 | * 5 | * Include changes and configuration local to your installation 6 | * in this file. For example, common macros can be defined here 7 | * (see below). To use this file, add "local/local.js" to the 8 | * config array in MathJax.js or your MathJax.Hub.Config() call. 9 | * 10 | * --------------------------------------------------------------------- 11 | * 12 | * Copyright (c) 2009 Design Science, Inc. 13 | * 14 | * Licensed under the Apache License, Version 2.0 (the "License"); 15 | * you may not use this file except in compliance with the License. 16 | * You may obtain a copy of the License at 17 | * 18 | * http://www.apache.org/licenses/LICENSE-2.0 19 | * 20 | * Unless required by applicable law or agreed to in writing, software 21 | * distributed under the License is distributed on an "AS IS" BASIS, 22 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 23 | * See the License for the specific language governing permissions and 24 | * limitations under the License. 25 | */ 26 | 27 | 28 | MathJax.Hub.Register.StartupHook("TeX Jax Ready",function () { 29 | var TEX = MathJax.InputJax.TeX; 30 | 31 | // place macros here. E.g.: 32 | // TEX.Macro("R","{\\bf R}"); 33 | // TEX.Macro("op","\\mathop{\\rm #1}",1); // a macro with 1 parameter 34 | 35 | }); 36 | 37 | MathJax.Ajax.loadComplete("[MathJax]/config/local/local.js"); 38 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/element/mml/optable/CombDiacritMarks.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/optable/CombDiacritMarks.js 4 | * 5 | * Copyright (c) 2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MML) { 22 | var MO = MML.mo.OPTYPES; 23 | var TEXCLASS = MML.TEXCLASS; 24 | 25 | MathJax.Hub.Insert(MML.mo.prototype,{ 26 | OPTABLE: { 27 | postfix: { 28 | '\u0311': MO.ACCENT // combining inverted breve 29 | } 30 | } 31 | }); 32 | 33 | MathJax.Ajax.loadComplete(MML.optableDir+"/CombDiacritMarks.js"); 34 | 35 | })(MathJax.ElementJax.mml); 36 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/element/mml/optable/CombDiactForSymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/optable/CombDiactForSymbols.js 4 | * 5 | * Copyright (c) 2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MML) { 22 | var MO = MML.mo.OPTYPES; 23 | var TEXCLASS = MML.TEXCLASS; 24 | 25 | MathJax.Hub.Insert(MML.mo.prototype,{ 26 | OPTABLE: { 27 | postfix: { 28 | '\u20DB': MO.ACCENT // combining three dots above 29 | } 30 | } 31 | }); 32 | 33 | MathJax.Ajax.loadComplete(MML.optableDir+"/CombDiactForSymbols.js"); 34 | 35 | })(MathJax.ElementJax.mml); 36 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/element/mml/optable/Dingbats.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/optable/Dingbats.js 4 | * 5 | * Copyright (c) 2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MML) { 22 | var MO = MML.mo.OPTYPES; 23 | var TEXCLASS = MML.TEXCLASS; 24 | 25 | MathJax.Hub.Insert(MML.mo.prototype,{ 26 | OPTABLE: { 27 | infix: { 28 | '\u2713': MO.WIDEACCENT // check mark 29 | } 30 | } 31 | }); 32 | 33 | MathJax.Ajax.loadComplete(MML.optableDir+"/Dingbats.js"); 34 | 35 | })(MathJax.ElementJax.mml); 36 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/element/mml/optable/GeneralPunctuation.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/optable/GeneralPunctuation.js 4 | * 5 | * Copyright (c) 2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MML) { 22 | var MO = MML.mo.OPTYPES; 23 | var TEXCLASS = MML.TEXCLASS; 24 | 25 | MathJax.Hub.Insert(MML.mo.prototype,{ 26 | OPTABLE: { 27 | prefix: { 28 | '\u2018': [0,0,TEXCLASS.OPEN,{fence: true}], // left single quotation mark 29 | '\u201C': [0,0,TEXCLASS.OPEN,{fence: true}] // left double quotation mark 30 | }, 31 | postfix: { 32 | '\u2019': [0,0,TEXCLASS.CLOSE,{fence: true}], // right single quotation mark 33 | '\u201D': [0,0,TEXCLASS.CLOSE,{fence: true}] // right double quotation mark 34 | } 35 | } 36 | }); 37 | 38 | MathJax.Ajax.loadComplete(MML.optableDir+"/GeneralPunctuation.js"); 39 | 40 | })(MathJax.ElementJax.mml); 41 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/element/mml/optable/GreekAndCoptic.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/optable/GreekAndCoptic.js 4 | * 5 | * Copyright (c) 2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MML) { 22 | var MO = MML.mo.OPTYPES; 23 | var TEXCLASS = MML.TEXCLASS; 24 | 25 | MathJax.Hub.Insert(MML.mo.prototype,{ 26 | OPTABLE: { 27 | prefix: { 28 | '\u03C3': MO.ORD11 // greek small letter sigma 29 | } 30 | } 31 | }); 32 | 33 | MathJax.Ajax.loadComplete(MML.optableDir+"/GreekAndCoptic.js"); 34 | 35 | })(MathJax.ElementJax.mml); 36 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/element/mml/optable/Latin1Supplement.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/optable/Latin1Supplement.js 4 | * 5 | * Copyright (c) 2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MML) { 22 | var MO = MML.mo.OPTYPES; 23 | var TEXCLASS = MML.TEXCLASS; 24 | 25 | MathJax.Hub.Insert(MML.mo.prototype,{ 26 | OPTABLE: { 27 | postfix: { 28 | '\u00B0': MO.ORD, // degree sign 29 | '\u00B4': MO.ACCENT, // acute accent 30 | '\u00B8': MO.ACCENT // cedilla 31 | } 32 | } 33 | }); 34 | 35 | MathJax.Ajax.loadComplete(MML.optableDir+"/Latin1Supplement.js"); 36 | 37 | })(MathJax.ElementJax.mml); 38 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/element/mml/optable/LetterlikeSymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/optable/LetterlikeSymbols.js 4 | * 5 | * Copyright (c) 2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MML) { 22 | var MO = MML.mo.OPTYPES; 23 | var TEXCLASS = MML.TEXCLASS; 24 | 25 | MathJax.Hub.Insert(MML.mo.prototype,{ 26 | OPTABLE: { 27 | prefix: { 28 | '\u2145': MO.ORD21, // double-struck italic capital d 29 | '\u2146': [2,0,TEXCLASS.ORD], // double-struck italic small d 30 | '\u2147': MO.ORD, // double-struck italic small e 31 | '\u2148': MO.ORD, // double-struck italic small i 32 | '\u2149': MO.ORD // double-struck italic small j 33 | } 34 | } 35 | }); 36 | 37 | MathJax.Ajax.loadComplete(MML.optableDir+"/LetterlikeSymbols.js"); 38 | 39 | })(MathJax.ElementJax.mml); 40 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/element/mml/optable/MiscMathSymbolsA.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/optable/MiscMathSymbolsA.js 4 | * 5 | * Copyright (c) 2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MML) { 22 | var MO = MML.mo.OPTYPES; 23 | var TEXCLASS = MML.TEXCLASS; 24 | 25 | MathJax.Hub.Insert(MML.mo.prototype,{ 26 | OPTABLE: { 27 | prefix: { 28 | '\u27E6': MO.OPEN // mathematical left white square bracket 29 | }, 30 | postfix: { 31 | '\u27E7': MO.CLOSE // mathematical right white square bracket 32 | } 33 | } 34 | }); 35 | 36 | MathJax.Ajax.loadComplete(MML.optableDir+"/MiscMathSymbolsA.js"); 37 | 38 | })(MathJax.ElementJax.mml); 39 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/element/mml/optable/MiscTechnical.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/optable/MiscTechnical.js 4 | * 5 | * Copyright (c) 2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MML) { 22 | var MO = MML.mo.OPTYPES; 23 | var TEXCLASS = MML.TEXCLASS; 24 | 25 | MathJax.Hub.Insert(MML.mo.prototype,{ 26 | OPTABLE: { 27 | postfix: { 28 | '\u23B4': MO.WIDEACCENT, // top square bracket 29 | '\u23B5': MO.WIDEACCENT, // bottom square bracket 30 | '\u23DC': MO.WIDEACCENT, // top parenthesis 31 | '\u23DD': MO.WIDEACCENT // bottom parenthesis 32 | } 33 | } 34 | }); 35 | 36 | MathJax.Ajax.loadComplete(MML.optableDir+"/MiscTechnical.js"); 37 | 38 | })(MathJax.ElementJax.mml); 39 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/element/mml/optable/SpacingModLetters.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/optable/SpacingModLetters.js 4 | * 5 | * Copyright (c) 2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MML) { 22 | var MO = MML.mo.OPTYPES; 23 | var TEXCLASS = MML.TEXCLASS; 24 | 25 | MathJax.Hub.Insert(MML.mo.prototype,{ 26 | OPTABLE: { 27 | postfix: { 28 | '\u02DA': MO.ACCENT, // ring above 29 | '\u02DD': MO.ACCENT // double acute accent 30 | } 31 | } 32 | }); 33 | 34 | MathJax.Ajax.loadComplete(MML.optableDir+"/SpacingModLetters.js"); 35 | 36 | })(MathJax.ElementJax.mml); 37 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/input/MathML/config.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/input/MathML/config.js 4 | * 5 | * Initializes the MathML InputJax (the main definition is in 6 | * MathJax/jax/input/MathML/jax.js, which is loaded when needed). 7 | * 8 | * --------------------------------------------------------------------- 9 | * 10 | * Copyright (c) 2009 Design Science, Inc. 11 | * 12 | * Licensed under the Apache License, Version 2.0 (the "License"); 13 | * you may not use this file except in compliance with the License. 14 | * You may obtain a copy of the License at 15 | * 16 | * http://www.apache.org/licenses/LICENSE-2.0 17 | * 18 | * Unless required by applicable law or agreed to in writing, software 19 | * distributed under the License is distributed on an "AS IS" BASIS, 20 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 21 | * See the License for the specific language governing permissions and 22 | * limitations under the License. 23 | */ 24 | 25 | MathJax.InputJax.MathML = MathJax.InputJax({ 26 | name: "MathML", 27 | version: 1.0, 28 | directory: MathJax.InputJax.directory + "/MathML", 29 | extensionDir: MathJax.InputJax.extensionDir + "/MathML", 30 | entityDir: MathJax.InputJax.directory + "/MathML/entities", 31 | require: [MathJax.ElementJax.directory + "/mml/jax.js"], 32 | 33 | config: { 34 | useMathMLspacing: false // false means use TeX spacing, true means MML spacing 35 | } 36 | }); 37 | MathJax.InputJax.MathML.Register("math/mml"); 38 | 39 | MathJax.InputJax.MathML.loadComplete("config.js"); 40 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/input/MathML/entities/h.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/entities/h.js 4 | * 5 | * Copyright (c) 2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MATHML) { 22 | MathJax.Hub.Insert(MATHML.Parse.Entity,{ 23 | 'HARDcy': '\u042A', 24 | 'Hcirc': '\u0124', 25 | 'HilbertSpace': '\u210B', 26 | 'HorizontalLine': '\u2500', 27 | 'Hstrok': '\u0126', 28 | 'hArr': '\u21D4', 29 | 'hairsp': '\u200A', 30 | 'half': '\u00BD', 31 | 'hamilt': '\u210B', 32 | 'hardcy': '\u044A', 33 | 'harr': '\u2194', 34 | 'harrcir': '\u2948', 35 | 'hcirc': '\u0125', 36 | 'hearts': '\u2665', 37 | 'heartsuit': '\u2665', 38 | 'hercon': '\u22B9', 39 | 'hksearow': '\u2925', 40 | 'hkswarow': '\u2926', 41 | 'hoarr': '\u21FF', 42 | 'homtht': '\u223B', 43 | 'horbar': '\u2015', 44 | 'hslash': '\u210F', 45 | 'hstrok': '\u0127', 46 | 'hybull': '\u2043', 47 | 'hyphen': '\u2010' 48 | }); 49 | 50 | MathJax.Ajax.loadComplete(MATHML.entityDir+"/h.js"); 51 | 52 | })(MathJax.InputJax.MathML); 53 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/input/MathML/entities/j.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/entities/j.js 4 | * 5 | * Copyright (c) 2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MATHML) { 22 | MathJax.Hub.Insert(MATHML.Parse.Entity,{ 23 | 'Jcirc': '\u0134', 24 | 'Jcy': '\u0419', 25 | 'Jsercy': '\u0408', 26 | 'Jukcy': '\u0404', 27 | 'jcirc': '\u0135', 28 | 'jcy': '\u0439', 29 | 'jmath': '\u006A', 30 | 'jsercy': '\u0458', 31 | 'jukcy': '\u0454' 32 | }); 33 | 34 | MathJax.Ajax.loadComplete(MATHML.entityDir+"/j.js"); 35 | 36 | })(MathJax.InputJax.MathML); 37 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/input/MathML/entities/k.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/entities/k.js 4 | * 5 | * Copyright (c) 2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MATHML) { 22 | MathJax.Hub.Insert(MATHML.Parse.Entity,{ 23 | 'KHcy': '\u0425', 24 | 'KJcy': '\u040C', 25 | 'Kcedil': '\u0136', 26 | 'Kcy': '\u041A', 27 | 'kcedil': '\u0137', 28 | 'kcy': '\u043A', 29 | 'kgreen': '\u0138', 30 | 'khcy': '\u0445', 31 | 'kjcy': '\u045C' 32 | }); 33 | 34 | MathJax.Ajax.loadComplete(MATHML.entityDir+"/k.js"); 35 | 36 | })(MathJax.InputJax.MathML); 37 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/input/MathML/entities/q.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/entities/q.js 4 | * 5 | * Copyright (c) 2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MATHML) { 22 | MathJax.Hub.Insert(MATHML.Parse.Entity,{ 23 | 'qint': '\u2A0C', 24 | 'qprime': '\u2057', 25 | 'quaternions': '\u210D', 26 | 'quatint': '\u2A16', 27 | 'quest': '\u003F', 28 | 'questeq': '\u225F', 29 | 'quot': '\u0022' 30 | }); 31 | 32 | MathJax.Ajax.loadComplete(MATHML.entityDir+"/q.js"); 33 | 34 | })(MathJax.InputJax.MathML); 35 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/input/MathML/entities/w.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/entities/w.js 4 | * 5 | * Copyright (c) 2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MATHML) { 22 | MathJax.Hub.Insert(MATHML.Parse.Entity,{ 23 | 'Wcirc': '\u0174', 24 | 'wcirc': '\u0175', 25 | 'wedbar': '\u2A5F', 26 | 'wedge': '\u2227', 27 | 'wedgeq': '\u2259', 28 | 'wp': '\u2118', 29 | 'wr': '\u2240', 30 | 'wreath': '\u2240' 31 | }); 32 | 33 | MathJax.Ajax.loadComplete(MATHML.entityDir+"/w.js"); 34 | 35 | })(MathJax.InputJax.MathML); 36 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/input/MathML/entities/x.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/entities/x.js 4 | * 5 | * Copyright (c) 2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MATHML) { 22 | MathJax.Hub.Insert(MATHML.Parse.Entity,{ 23 | 'xcap': '\u22C2', 24 | 'xcirc': '\u25EF', 25 | 'xcup': '\u22C3', 26 | 'xdtri': '\u25BD', 27 | 'xhArr': '\u27FA', 28 | 'xharr': '\u27F7', 29 | 'xlArr': '\u27F8', 30 | 'xlarr': '\u27F5', 31 | 'xmap': '\u27FC', 32 | 'xnis': '\u22FB', 33 | 'xodot': '\u2A00', 34 | 'xoplus': '\u2A01', 35 | 'xotime': '\u2A02', 36 | 'xrArr': '\u27F9', 37 | 'xrarr': '\u27F6', 38 | 'xsqcup': '\u2A06', 39 | 'xuplus': '\u2A04', 40 | 'xutri': '\u25B3', 41 | 'xvee': '\u22C1', 42 | 'xwedge': '\u22C0' 43 | }); 44 | 45 | MathJax.Ajax.loadComplete(MATHML.entityDir+"/x.js"); 46 | 47 | })(MathJax.InputJax.MathML); 48 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/input/MathML/entities/y.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/entities/y.js 4 | * 5 | * Copyright (c) 2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MATHML) { 22 | MathJax.Hub.Insert(MATHML.Parse.Entity,{ 23 | 'YAcy': '\u042F', 24 | 'YIcy': '\u0407', 25 | 'YUcy': '\u042E', 26 | 'Yacute': '\u00DD', 27 | 'Ycirc': '\u0176', 28 | 'Ycy': '\u042B', 29 | 'Yuml': '\u0178', 30 | 'yacute': '\u00FD', 31 | 'yacy': '\u044F', 32 | 'ycirc': '\u0177', 33 | 'ycy': '\u044B', 34 | 'yicy': '\u0457', 35 | 'yucy': '\u044E', 36 | 'yuml': '\u00FF' 37 | }); 38 | 39 | MathJax.Ajax.loadComplete(MATHML.entityDir+"/y.js"); 40 | 41 | })(MathJax.InputJax.MathML); 42 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/input/MathML/entities/z.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/entities/z.js 4 | * 5 | * Copyright (c) 2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | (function (MATHML) { 22 | MathJax.Hub.Insert(MATHML.Parse.Entity,{ 23 | 'ZHcy': '\u0416', 24 | 'Zacute': '\u0179', 25 | 'Zcaron': '\u017D', 26 | 'Zcy': '\u0417', 27 | 'Zdot': '\u017B', 28 | 'ZeroWidthSpace': '\u200B', 29 | 'zacute': '\u017A', 30 | 'zcaron': '\u017E', 31 | 'zcy': '\u0437', 32 | 'zdot': '\u017C', 33 | 'zeetrf': '\u2128', 34 | 'zhcy': '\u0436' 35 | }); 36 | 37 | MathJax.Ajax.loadComplete(MATHML.entityDir+"/z.js"); 38 | 39 | })(MathJax.InputJax.MathML); 40 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/input/TeX/config.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/input/TeX/config.js 4 | * 5 | * Initializes the TeX InputJax (the main definition is in 6 | * MathJax/jax/input/TeX/jax.js, which is loaded when needed). 7 | * 8 | * --------------------------------------------------------------------- 9 | * 10 | * Copyright (c) 2009 Design Science, Inc. 11 | * 12 | * Licensed under the Apache License, Version 2.0 (the "License"); 13 | * you may not use this file except in compliance with the License. 14 | * You may obtain a copy of the License at 15 | * 16 | * http://www.apache.org/licenses/LICENSE-2.0 17 | * 18 | * Unless required by applicable law or agreed to in writing, software 19 | * distributed under the License is distributed on an "AS IS" BASIS, 20 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 21 | * See the License for the specific language governing permissions and 22 | * limitations under the License. 23 | */ 24 | 25 | MathJax.InputJax.TeX = MathJax.InputJax({ 26 | name: "TeX", 27 | version: 1.0, 28 | directory: MathJax.InputJax.directory + "/TeX", 29 | extensionDir: MathJax.InputJax.extensionDir + "/TeX", 30 | require: [MathJax.ElementJax.directory + "/mml/jax.js"], 31 | 32 | config: { 33 | TagSide: "right", 34 | TagIndent: "0.8em", 35 | MultLineWidth: "85%" 36 | } 37 | }); 38 | MathJax.InputJax.TeX.Register("math/tex"); 39 | 40 | MathJax.InputJax.TeX.loadComplete("config.js"); 41 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/blank.gif -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/AlphaPresentForms.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], 23 | { 24 | 0xFB00: [691,0,610,15,666], // LATIN SMALL LIGATURE FF 25 | 0xFB01: [691,0,556,14,536], // LATIN SMALL LIGATURE FI 26 | 0xFB02: [691,0,556,15,535], // LATIN SMALL LIGATURE FL 27 | 0xFB03: [691,0,833,15,813], // LATIN SMALL LIGATURE FFI 28 | 0xFB04: [691,0,833,15,812] // LATIN SMALL LIGATURE FFL 29 | } 30 | ); 31 | 32 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/AlphaPresentForms.js"); 33 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], 23 | { 24 | 0x2423: [31,120,500,40,460] // stix-round space indicator 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/ControlPictures.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], 23 | { 24 | 0x20A3: [676,0,611,11,583], // FRENCH FRANC SIGN 25 | 0x20A4: [684,16,500,21,477], // LIRA SIGN 26 | 0x20A7: [676,14,1369,16,1341], // PESETA SIGN 27 | 0x20AC: [672,12,500,29,478] // EURO SIGN 28 | } 29 | ); 30 | 31 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/CurrencySymbols.js"); 32 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], 23 | { 24 | 0x25B3: [811,127,1145,35,1110], // WHITE UP-POINTING TRIANGLE 25 | 0x25B7: [791,284,1043,70,1008], // WHITE RIGHT-POINTING TRIANGLE 26 | 0x25BD: [811,127,1145,35,1110], // WHITE DOWN-POINTING TRIANGLE 27 | 0x25C1: [791,284,1043,35,973], // WHITE LEFT-POINTING TRIANGLE 28 | 0x25CA: [795,289,790,45,745], // LOZENGE 29 | 0x25EC: [811,127,1145,35,1110] // WHITE UP-POINTING TRIANGLE WITH DOT 30 | } 31 | ); 32 | 33 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/GeometricShapes.js"); 34 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscMathSymbolsA.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], 23 | { 24 | 0x27C8: [547,13,1025,62,943], // REVERSE SOLIDUS PRECEDING SUBSET 25 | 0x27C9: [547,13,1025,62,943], // SUBSET PRECEDING SOLIDUS 26 | 0x27E8: [732,193,445,69,399], // MATHEMATICAL LEFT ANGLE BRACKET 27 | 0x27E9: [732,193,445,46,376] // MATHEMATICAL RIGHT ANGLE BRACKET 28 | } 29 | ); 30 | 31 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/MiscMathSymbolsA.js"); 32 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], 23 | { 24 | 0x266D: [740,5,437,86,389], // MUSIC FLAT SIGN 25 | 0x266E: [818,210,490,97,393], // MUSIC NATURAL SIGN 26 | 0x266F: [818,210,490,52,438] // MUSIC SHARP SIGN 27 | } 28 | ); 29 | 30 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/MiscSymbols.js"); 31 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/PhoneticExtensions.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], 23 | { 24 | 0x1D00: [475,0,515,9,503], // LATIN LETTER SMALL CAPITAL A 25 | 0x1D07: [461,0,531,20,511], // LATIN LETTER SMALL CAPITAL E 26 | 0x1D1C: [461,19,600,16,584] // LATIN LETTER SMALL CAPITAL U 27 | } 28 | ); 29 | 30 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/PhoneticExtensions.js"); 31 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Bold/SuperAndSubscripts.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold'], 23 | { 24 | 0x207F: [700,-275,491,15,478] // SUPERSCRIPT LATIN SMALL LETTER N 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Bold/SuperAndSubscripts.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/AlphaPresentForms.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], 23 | { 24 | 0xFB00: [698,205,613,-169,726], // LATIN SMALL LIGATURE FF 25 | 0xFB01: [703,205,556,-188,514], // LATIN SMALL LIGATURE FI 26 | 0xFB02: [704,205,556,-186,553], // LATIN SMALL LIGATURE FL 27 | 0xFB03: [703,205,856,-169,814], // LATIN SMALL LIGATURE FFI 28 | 0xFB04: [704,205,854,-169,851] // LATIN SMALL LIGATURE FFL 29 | } 30 | ); 31 | 32 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/AlphaPresentForms.js"); 33 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CombDiactForSymbols.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], 23 | { 24 | 0x20DD: [760,254,0,-753,256] // COMBINING ENCLOSING CIRCLE 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/CombDiactForSymbols.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/ControlPictures.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], 23 | { 24 | 0x2423: [31,120,500,40,460] // stix-round space indicator 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/ControlPictures.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/CurrencySymbols.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], 23 | { 24 | 0x20A3: [669,0,668,-13,661], // FRENCH FRANC SIGN 25 | 0x20A4: [683,12,500,-32,510], // LIRA SIGN 26 | 0x20A7: [669,13,1229,-28,1173], // PESETA SIGN 27 | 0x20AC: [681,17,562,34,546] // EURO SIGN 28 | } 29 | ); 30 | 31 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/CurrencySymbols.js"); 32 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/MathOperators.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-bold-italic'], 23 | { 24 | 0x2202: [686,10,559,44,559], // PARTIAL DIFFERENTIAL 25 | 0x2212: [297,-209,606,51,555] // MINUS SIGN 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/BoldItalic/MathOperators.js"); 30 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/AlphaPresentForms.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], 23 | { 24 | 0xFB00: [678,207,527,-147,673], // LATIN SMALL LIGATURE FF 25 | 0xFB01: [681,207,500,-141,481], // LATIN SMALL LIGATURE FI 26 | 0xFB02: [682,204,500,-141,518], // LATIN SMALL LIGATURE FL 27 | 0xFB03: [681,207,744,-147,725], // LATIN SMALL LIGATURE FFI 28 | 0xFB04: [682,207,745,-147,763] // LATIN SMALL LIGATURE FFL 29 | } 30 | ); 31 | 32 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/AlphaPresentForms.js"); 33 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ControlPictures.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], 23 | { 24 | 0x2423: [16,120,500,40,460] // stix-round space indicator 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/ControlPictures.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/CurrencySymbols.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], 23 | { 24 | 0x20A3: [653,0,611,8,645], // FRENCH FRANC SIGN 25 | 0x20A4: [670,8,500,10,517], // LIRA SIGN 26 | 0x20A7: [653,13,1149,0,1126], // PESETA SIGN 27 | 0x20AC: [664,12,500,16,538] // EURO SIGN 28 | } 29 | ); 30 | 31 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/CurrencySymbols.js"); 32 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathOperators.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], 23 | { 24 | 0x2202: [668,11,471,40,471], // PARTIAL DIFFERENTIAL 25 | 0x2212: [286,-220,675,86,590] // MINUS SIGN 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/MathOperators.js"); 30 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral-italic'], 23 | { 24 | 0x1D6A4: [441,11,278,47,235], // MATHEMATICAL ITALIC SMALL DOTLESS I 25 | 0x1D6A5: [441,207,278,-124,246] // MATHEMATICAL ITALIC SMALL DOTLESS J 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Italic/ij.js"); 30 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/AlphaPresentForms.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], 23 | { 24 | 0xFB00: [683,0,605,20,655], // LATIN SMALL LIGATURE FF 25 | 0xFB01: [683,0,558,32,523], // LATIN SMALL LIGATURE FI 26 | 0xFB02: [683,0,556,31,522], // LATIN SMALL LIGATURE FL 27 | 0xFB03: [683,0,832,20,797], // LATIN SMALL LIGATURE FFI 28 | 0xFB04: [683,0,830,20,796] // LATIN SMALL LIGATURE FFL 29 | } 30 | ); 31 | 32 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/AlphaPresentForms.js"); 33 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BlockElements.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], 23 | { 24 | 0x2580: [910,-304,1213,0,1213], // UPPER HALF BLOCK 25 | 0x2584: [303,303,1213,0,1213], // LOWER HALF BLOCK 26 | 0x2588: [910,303,1213,0,1213], // FULL BLOCK 27 | 0x258C: [910,303,1212,0,606], // LEFT HALF BLOCK 28 | 0x2590: [910,303,1212,606,1212], // RIGHT HALF BLOCK 29 | 0x2591: [860,258,1200,0,1200], // LIGHT SHADE 30 | 0x2592: [874,273,1200,0,1200], // MEDIUM SHADE 31 | 0x2593: [874,273,1200,0,1200] // DARK SHADE 32 | } 33 | ); 34 | 35 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/BlockElements.js"); 36 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], 23 | { 24 | 0x3012: [662,0,685,10,672], // POSTAL MARK 25 | 0x3030: [417,-93,1412,45,1367] // WAVY DASH 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/CJK.js"); 30 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ControlPictures.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], 23 | { 24 | 0x2423: [16,120,500,40,460] // stix-round space indicator 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/ControlPictures.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CurrencySymbols.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], 23 | { 24 | 0x20A3: [662,0,556,11,546], // FRENCH FRANC SIGN 25 | 0x20A4: [676,8,500,12,490], // LIRA SIGN 26 | 0x20A7: [662,10,1182,16,1141], // PESETA SIGN 27 | 0x20AC: [664,12,500,38,462] // EURO SIGN 28 | } 29 | ); 30 | 31 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/CurrencySymbols.js"); 32 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], 23 | { 24 | 0x306E: [661,41,901,37,840] // HIRAGANA LETTER NO 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/Hiragana.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/LatinExtendedD.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], 23 | { 24 | 0xA727: [683,233,481,9,427] // stix-heng (phonetic symbol) 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/LatinExtendedD.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], 23 | { 24 | 0xFFFD: [662,217,872,55,817] // REPLACEMENT CHARACTER 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/Specials.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/SuperAndSubscripts.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], 23 | { 24 | 0x207F: [676,-270,541,57,484] // SUPERSCRIPT LATIN SMALL LETTER N 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/SuperAndSubscripts.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXGeneral'], 23 | { 24 | 0x1D6A4: [441,11,278,47,235], // MATHEMATICAL ITALIC SMALL DOTLESS I 25 | 0x1D6A5: [441,207,278,-124,246] // MATHEMATICAL ITALIC SMALL DOTLESS J 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/General/Regular/ij.js"); 30 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsD'] = { 22 | directory: 'IntegralsD/Regular', 23 | family: 'STIXIntegralsD', 24 | Ranges: [ 25 | [0x20,0x20,"All"], 26 | [0xA0,0xA0,"All"], 27 | [0x222B,0x2233,"All"], 28 | [0x2A0B,0x2A1C,"All"] 29 | ], 30 | 0x222B: [2000,269,585,56,1035], // INTEGRAL 31 | 0x222E: [2000,269,635,56,1035] // CONTOUR INTEGRAL 32 | }; 33 | 34 | MathJax.OutputJax["HTML-CSS"].initFont("STIXIntegralsD"); 35 | 36 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsD/Regular/Main.js"); 37 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsSm'] = { 22 | directory: 'IntegralsSm/Regular', 23 | family: 'STIXIntegralsSm', 24 | Ranges: [ 25 | [0x20,0x20,"All"], 26 | [0xA0,0xA0,"All"], 27 | [0x222B,0x2233,"All"], 28 | [0x2A0B,0x2A1C,"All"] 29 | ], 30 | 0x222B: [690,189,496,41,552], // INTEGRAL 31 | 0x222E: [690,189,560,41,552] // CONTOUR INTEGRAL 32 | }; 33 | 34 | MathJax.OutputJax["HTML-CSS"].initFont("STIXIntegralsSm"); 35 | 36 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsSm/Regular/Main.js"); 37 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsUp'] = { 22 | directory: 'IntegralsUp/Regular', 23 | family: 'STIXIntegralsUp', 24 | Ranges: [ 25 | [0x20,0x20,"All"], 26 | [0xA0,0xA0,"All"], 27 | [0x222B,0x2233,"All"], 28 | [0x2A0B,0x2A1C,"All"] 29 | ], 30 | 0x222B: [824,320,366,59,408], // INTEGRAL 31 | 0x222E: [824,320,397,35,486] // CONTOUR INTEGRAL 32 | }; 33 | 34 | MathJax.OutputJax["HTML-CSS"].initFont("STIXIntegralsUp"); 35 | 36 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsUp/Regular/Main.js"); 37 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsUpD'] = { 22 | directory: 'IntegralsUpD/Regular', 23 | family: 'STIXIntegralsUpD', 24 | Ranges: [ 25 | [0x20,0x20,"All"], 26 | [0xA0,0xA0,"All"], 27 | [0x222B,0x2233,"All"], 28 | [0x2A0B,0x2A1C,"All"] 29 | ], 30 | 0x222B: [2000,269,467,58,512], // INTEGRAL 31 | 0x222E: [2000,269,616,56,685] // CONTOUR INTEGRAL 32 | }; 33 | 34 | MathJax.OutputJax["HTML-CSS"].initFont("STIXIntegralsUpD"); 35 | 36 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsUpD/Regular/Main.js"); 37 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXIntegralsUpSm'] = { 22 | directory: 'IntegralsUpSm/Regular', 23 | family: 'STIXIntegralsUpSm', 24 | Ranges: [ 25 | [0x20,0x20,"All"], 26 | [0xA0,0xA0,"All"], 27 | [0x222B,0x2233,"All"], 28 | [0x2A0B,0x2A1C,"All"] 29 | ], 30 | 0x222B: [690,189,357,52,375], // INTEGRAL 31 | 0x222E: [690,189,452,52,412] // CONTOUR INTEGRAL 32 | }; 33 | 34 | MathJax.OutputJax["HTML-CSS"].initFont("STIXIntegralsUpSm"); 35 | 36 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/IntegralsUpSm/Regular/Main.js"); 37 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode-bold'], 23 | { 24 | 0x20: [0,0,250,0,0], // SPACE 25 | 0xA0: [0,0,250,0,0] // NO-BREAK SPACE 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/Bold/All.js"); 30 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode-bold'] = { 22 | directory: 'NonUnicode/Bold', 23 | family: 'STIXNonUnicode', 24 | weight: 'bold', 25 | Ranges: [ 26 | [0x20,0x20,"All"], 27 | [0xA0,0xA0,"All"], 28 | [0xE000,0xF8FF,"PrivateUse"] 29 | ] 30 | 31 | }; 32 | 33 | MathJax.OutputJax["HTML-CSS"].initFont("STIXNonUnicode-bold"); 34 | 35 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/Bold/Main.js"); 36 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode-bold-italic'], 23 | { 24 | 0x20: [0,0,250,0,0], // SPACE 25 | 0xA0: [0,0,250,0,0] // NO-BREAK SPACE 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/BoldItalic/All.js"); 30 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode-bold-italic'] = { 22 | directory: 'NonUnicode/BoldItalic', 23 | family: 'STIXNonUnicode', 24 | weight: 'bold', 25 | style: 'italic', 26 | Ranges: [ 27 | [0x20,0x20,"All"], 28 | [0xA0,0xA0,"All"], 29 | [0xE000,0xF8FF,"PrivateUse"] 30 | ] 31 | 32 | }; 33 | 34 | MathJax.OutputJax["HTML-CSS"].initFont("STIXNonUnicode-bold-italic"); 35 | 36 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/BoldItalic/Main.js"); 37 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode-italic'], 23 | { 24 | 0x20: [0,0,250,0,0], // SPACE 25 | 0xA0: [0,0,250,0,0] // NO-BREAK SPACE 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/Italic/All.js"); 30 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXNonUnicode'], 23 | { 24 | 0x20: [0,0,250,0,0], // SPACE 25 | 0xA0: [0,0,250,0,0] // NO-BREAK SPACE 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/NonUnicode/Regular/All.js"); 30 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXSizeOneSym-bold'], 23 | { 24 | 0x2140: [1500,-22,1341,60,1281] // DOUBLE-STRUCK N-ARY SUMMATION 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SizeOneSym/Bold/All.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['STIXVariants-bold'] = { 22 | directory: 'Variants/Bold', 23 | family: 'STIXVariants', 24 | weight: 'bold', 25 | Ranges: [ 26 | [0x20,0x20,"All"], 27 | [0x77,0x7C,"All"], 28 | [0xA0,0xA0,"All"], 29 | [0x19B,0x19B,"All"], 30 | [0x2032,0x2057,"All"], 31 | [0x2140,0x2140,"All"], 32 | [0x2190,0x2193,"All"], 33 | [0x21D1,0x21E2,"All"], 34 | [0x2205,0x22ED,"All"] 35 | ], 36 | 0x2032: [586,-12,394,44,350], // PRIME 37 | 0x2205: [729,74,584,36,548], // EMPTY SET 38 | 0x2216: [732,193,518,45,473], // SET MINUS 39 | 0x221A: [943,-28,800,112,844] // SQUARE ROOT 40 | }; 41 | 42 | MathJax.OutputJax["HTML-CSS"].initFont("STIXVariants-bold"); 43 | 44 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Variants/Bold/Main.js"); 45 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x250C: [694,-306,500,54,444], // BOX DRAWINGS LIGHT DOWN AND RIGHT 25 | 0x2510: [695,-306,500,55,444], // BOX DRAWINGS LIGHT DOWN AND LEFT 26 | 0x2514: [367,23,500,54,444], // BOX DRAWINGS LIGHT UP AND RIGHT 27 | 0x2518: [366,22,500,55,445], // BOX DRAWINGS LIGHT UP AND LEFT 28 | 0x2571: [694,195,889,0,860], // BOX DRAWINGS LIGHT DIAGONAL UPPER RIGHT TO LOWER LEFT 29 | 0x2572: [694,195,889,0,860] // BOX DRAWINGS LIGHT DIAGONAL UPPER LEFT TO LOWER RIGHT 30 | } 31 | ); 32 | 33 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/BoxDrawing.js"); 34 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/CombDiacritMarks.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x302: [845,-561,0,-2347,13], // COMBINING CIRCUMFLEX ACCENT 25 | 0x303: [899,-628,0,-2332,-3] // COMBINING TILDE 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/CombDiacritMarks.js"); 30 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x2713: [707,35,833,84,749], // CHECK MARK 25 | 0x2720: [716,22,833,48,786] // MALTESE CROSS 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/Dingbats.js"); 30 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/EnclosedAlphanum.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x24C8: [709,175,902,8,894] // CIRCLED LATIN CAPITAL LETTER S 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/EnclosedAlphanum.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeneralPunctuation.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x2035: [560,-43,275,12,244] // REVERSED PRIME 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/GeneralPunctuation.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x25A0: [689,0,778,55,722], // BLACK SQUARE 25 | 0x25A1: [689,0,778,55,722], // WHITE SQUARE 26 | 0x25B2: [575,20,722,84,637], // BLACK UP-POINTING TRIANGLE 27 | 0x25B3: [575,20,722,84,637], // WHITE UP-POINTING TRIANGLE 28 | 0x25B6: [539,41,778,83,694], // BLACK RIGHT-POINTING TRIANGLE 29 | 0x25BC: [576,20,722,84,638], // BLACK DOWN-POINTING TRIANGLE 30 | 0x25BD: [576,20,722,84,638], // WHITE DOWN-POINTING TRIANGLE 31 | 0x25C0: [539,41,778,83,694], // BLACK LEFT-POINTING TRIANGLE 32 | 0x25CA: [716,132,667,56,612] // LOZENGE 33 | } 34 | ); 35 | 36 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/GeometricShapes.js"); 37 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x3DD: [605,85,778,55,719], // GREEK SMALL LETTER DIGAMMA 25 | 0x3F0: [434,6,667,37,734] // GREEK KAPPA SYMBOL 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/GreekAndCoptic.js"); 30 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Latin1Supplement.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0xA0: [0,0,250,0,0], // NO-BREAK SPACE 25 | 0xA5: [684,0,750,11,738], // YEN SIGN 26 | 0xAE: [709,175,947,32,915], // REGISTERED SIGN 27 | 0xF0: [749,21,556,42,510] // LATIN SMALL LETTER ETH 28 | } 29 | ); 30 | 31 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/Latin1Supplement.js"); 32 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x127: [695,13,540,42,562] // LATIN SMALL LETTER H WITH STROKE 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/LatinExtendedA.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LetterlikeSymbols.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x210F: [695,13,540,42,562], // stix-/hbar - Planck's over 2pi 25 | 0x2127: [685,22,722,44,675], // INVERTED OHM SIGN 26 | 0x2132: [695,1,556,55,497], // TURNED CAPITAL F 27 | 0x2136: [763,21,667,-22,687], // BET SYMBOL 28 | 0x2137: [764,43,444,-22,422], // GIMEL SYMBOL 29 | 0x2138: [764,43,667,54,640], // DALET SYMBOL 30 | 0x2141: [706,23,639,37,577] // TURNED SANS-SERIF CAPITAL G 31 | } 32 | ); 33 | 34 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/LetterlikeSymbols.js"); 35 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x29EB: [716,132,667,56,612] // BLACK LOZENGE 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/MiscMathSymbolsB.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x2605: [695,111,944,49,896] // BLACK STAR 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/MiscSymbols.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x2322: [378,-122,778,55,722], // stix-small down curve 25 | 0x2323: [378,-143,778,55,722] // stix-small up curve 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/MiscTechnical.js"); 30 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/SpacingModLetters.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_AMS'], 23 | { 24 | 0x2C6: [845,-561,2333,-14,2346], // MODIFIER LETTER CIRCUMFLEX ACCENT 25 | 0x2DC: [899,-628,2333,1,2330] // SMALL TILDE 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/AMS/Regular/SpacingModLetters.js"); 30 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Fraktur-bold'] = { 22 | directory: 'Fraktur/Bold', 23 | family: 'MathJax_Fraktur', 24 | weight: 'bold', 25 | testString: "MathJax Fraktur", 26 | Ranges: [ 27 | [0x0,0x7F,"BasicLatin"], 28 | [0x80,0xDFFF,"Other"], 29 | [0xE300,0xE310,"PUA"] 30 | ] 31 | 32 | }; 33 | 34 | MathJax.OutputJax["HTML-CSS"].initFont("MathJax_Fraktur-bold"); 35 | 36 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Fraktur/Bold/Main.js"); 37 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Fraktur-bold'], 23 | { 24 | 0xA0: [0,0,250,0,0], // NO-BREAK SPACE 25 | 0x2018: [708,-411,254,53,187], // LEFT SINGLE QUOTATION MARK 26 | 0x2019: [692,-394,254,58,193] // RIGHT SINGLE QUOTATION MARK 27 | } 28 | ); 29 | 30 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Fraktur/Bold/Other.js"); 31 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Fraktur-bold'], 23 | { 24 | 0xE301: [630,27,587,64,512], // ?? 25 | 0xE302: [693,212,394,37,408], // ?? 26 | 0xE303: [681,219,387,36,384], // ?? 27 | 0xE304: [473,212,593,67,531], // ?? 28 | 0xE305: [684,27,393,33,387], // ?? 29 | 0xE308: [679,220,981,32,875], // ?? 30 | 0xE309: [717,137,727,17,633] // ?? 31 | } 32 | ); 33 | 34 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Fraktur/Bold/PUA.js"); 35 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Fraktur'] = { 22 | directory: 'Fraktur/Regular', 23 | family: 'MathJax_Fraktur', 24 | testString: "MathJax Fraktur", 25 | Ranges: [ 26 | [0x0,0x7F,"BasicLatin"], 27 | [0x80,0xDFFF,"Other"], 28 | [0xE300,0xE310,"PUA"] 29 | ] 30 | 31 | }; 32 | 33 | MathJax.OutputJax["HTML-CSS"].initFont("MathJax_Fraktur"); 34 | 35 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Fraktur/Regular/Main.js"); 36 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Fraktur'], 23 | { 24 | 0xA0: [0,0,250,0,0], // NO-BREAK SPACE 25 | 0x2018: [708,-410,215,45,158], // LEFT SINGLE QUOTATION MARK 26 | 0x2019: [692,-395,215,49,163] // RIGHT SINGLE QUOTATION MARK 27 | } 28 | ); 29 | 30 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Fraktur/Regular/Other.js"); 31 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Fraktur'], 23 | { 24 | 0xE300: [683,32,497,75,430], // ?? 25 | 0xE301: [616,30,498,35,432], // ?? 26 | 0xE302: [680,215,333,29,339], // ?? 27 | 0xE303: [679,224,329,28,318], // ?? 28 | 0xE304: [471,214,503,52,449], // ?? 29 | 0xE305: [686,20,333,26,315], // ?? 30 | 0xE306: [577,22,334,29,347], // ?? 31 | 0xE307: [475,22,501,10,514] // ?? 32 | } 33 | ); 34 | 35 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Fraktur/Regular/PUA.js"); 36 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiactForSymbols.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], 23 | { 24 | 0x20D7: [723,-513,0,-542,-33] // COMBINING RIGHT ARROW ABOVE 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/CombDiactForSymbols.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], 23 | { 24 | 0x25B3: [711,-1,1022,68,953], // WHITE UP-POINTING TRIANGLE 25 | 0x25B9: [541,39,575,33,542], // WHITE RIGHT-POINTING SMALL TRIANGLE 26 | 0x25BD: [500,210,1022,68,953], // WHITE DOWN-POINTING TRIANGLE 27 | 0x25C3: [539,39,575,33,542], // WHITE LEFT-POINTING SMALL TRIANGLE 28 | 0x25EF: [711,211,1150,65,1084] // LARGE CIRCLE 29 | } 30 | ); 31 | 32 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/GeometricShapes.js"); 33 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], 23 | { 24 | 0xA0: [0,0,250,0,0], // NO-BREAK SPACE 25 | 0xA8: [695,-535,575,96,478], // DIAERESIS 26 | 0xAC: [371,-61,767,64,703], // NOT SIGN 27 | 0xAF: [607,-540,575,80,494], // MACRON 28 | 0xB0: [703,-536,575,160,414], // DEGREE SIGN 29 | 0xB1: [728,35,894,64,829], // PLUS-MINUS SIGN 30 | 0xB4: [706,-503,575,236,460], // ACUTE ACCENT 31 | 0xD7: [531,29,894,167,727], // MULTIPLICATION SIGN 32 | 0xF7: [597,96,894,64,828] // DIVISION SIGN 33 | } 34 | ); 35 | 36 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/Latin1Supplement.js"); 37 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], 23 | { 24 | 0x131: [453,8,394,24,367] // LATIN SMALL LETTER DOTLESS I 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/LatinExtendedA.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], 23 | { 24 | 0x237: [451,201,439,-12,420] // LATIN SMALL LETTER DOTLESS J 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/LatinExtendedB.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], 23 | { 24 | 0x210F: [694,8,668,45,642], // stix-/hbar - Planck's over 2pi 25 | 0x2111: [702,9,831,64,798], // BLACK-LETTER CAPITAL I 26 | 0x2113: [702,19,474,-1,447], // SCRIPT SMALL L 27 | 0x2118: [462,211,740,72,727], // SCRIPT CAPITAL P 28 | 0x211C: [711,17,831,41,824], // BLACK-LETTER CAPITAL R 29 | 0x2135: [694,1,703,64,639] // ALEF SYMBOL 30 | } 31 | ); 32 | 33 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/LetterlikeSymbols.js"); 34 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], 23 | { 24 | 0x27E8: [750,249,447,127,382], // MATHEMATICAL LEFT ANGLE BRACKET 25 | 0x27E9: [750,249,447,64,319] // MATHEMATICAL RIGHT ANGLE BRACKET 26 | } 27 | ); 28 | 29 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/MiscMathSymbolsA.js"); 30 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], 23 | { 24 | 0x2660: [720,130,894,63,829], // BLACK SPADE SUIT 25 | 0x2661: [711,24,894,65,828], // WHITE HEART SUIT 26 | 0x2662: [719,154,894,64,828], // WHITE DIAMOND SUIT 27 | 0x2663: [720,130,894,32,861], // BLACK CLUB SUIT 28 | 0x266D: [750,17,447,63,382], // MUSIC FLAT SIGN 29 | 0x266E: [741,223,447,56,390], // MUSIC NATURAL SIGN 30 | 0x266F: [724,224,447,63,383] // MUSIC SHARP SIGN 31 | } 32 | ); 33 | 34 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/MiscSymbols.js"); 35 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], 23 | { 24 | 0x2308: [750,248,511,194,493], // LEFT CEILING 25 | 0x2309: [750,248,511,17,317], // RIGHT CEILING 26 | 0x230A: [749,248,511,194,493], // LEFT FLOOR 27 | 0x230B: [749,248,511,17,317], // RIGHT FLOOR 28 | 0x2322: [405,-108,1150,64,1084], // stix-small down curve 29 | 0x2323: [393,-126,1150,64,1085] // stix-small up curve 30 | } 31 | ); 32 | 33 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/MiscTechnical.js"); 34 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], 23 | { 24 | 0x2C6: [694,-520,575,126,448], // MODIFIER LETTER CIRCUMFLEX ACCENT 25 | 0x2C7: [660,-515,575,130,444], // CARON 26 | 0x2C9: [607,-540,575,80,494], // MODIFIER LETTER MACRON 27 | 0x2CA: [706,-503,575,236,460], // MODIFIER LETTER ACUTE ACCENT 28 | 0x2CB: [706,-503,575,114,338], // MODIFIER LETTER GRAVE ACCENT 29 | 0x2D8: [694,-500,575,102,472], // BREVE 30 | 0x2D9: [695,-525,575,202,372], // DOT ABOVE 31 | 0x2DA: [703,-536,575,160,414], // RING ABOVE 32 | 0x2DC: [694,-551,575,96,478] // SMALL TILDE 33 | } 34 | ); 35 | 36 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/SpacingModLetters.js"); 37 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], 23 | { 24 | 0x2A3F: [687,1,900,38,861], // AMALGAMATION OR COPRODUCT 25 | 0x2AAF: [696,199,894,96,797], // PRECEDES ABOVE SINGLE-LINE EQUALS SIGN 26 | 0x2AB0: [698,199,894,96,797] // SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN 27 | } 28 | ); 29 | 30 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/SuppMathOperators.js"); 31 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SupplementalArrowsA.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-bold'], 23 | { 24 | 0x27F5: [519,18,1805,64,1741], // LONG LEFTWARDS ARROW 25 | 0x27F6: [519,18,1833,96,1774], // LONG RIGHTWARDS ARROW 26 | 0x27F7: [519,18,2126,64,2062], // LONG LEFT RIGHT ARROW 27 | 0x27F8: [548,46,1868,64,1804], // LONG LEFTWARDS DOUBLE ARROW 28 | 0x27F9: [548,47,1870,63,1804], // LONG RIGHTWARDS DOUBLE ARROW 29 | 0x27FA: [548,47,2126,64,2060], // LONG LEFT RIGHT DOUBLE ARROW 30 | 0x27FC: [519,18,1833,65,1774] // LONG RIGHTWARDS ARROW FROM BAR 31 | } 32 | ); 33 | 34 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Bold/SupplementalArrowsA.js"); 35 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/GeneralPunctuation.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-italic'], 23 | { 24 | 0x2013: [286,-248,511,91,554], // EN DASH 25 | 0x2014: [285,-248,1022,117,1038], // EM DASH 26 | 0x2018: [694,-379,307,197,362], // LEFT SINGLE QUOTATION MARK 27 | 0x2019: [694,-379,307,213,377], // RIGHT SINGLE QUOTATION MARK 28 | 0x201C: [694,-378,514,243,606], // LEFT DOUBLE QUOTATION MARK 29 | 0x201D: [694,-379,514,176,538] // RIGHT DOUBLE QUOTATION MARK 30 | } 31 | ); 32 | 33 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Italic/GeneralPunctuation.js"); 34 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Latin1Supplement.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-italic'], 23 | { 24 | 0xA0: [0,0,250,0,0] // NO-BREAK SPACE 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Italic/Latin1Supplement.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LatinExtendedA.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LatinExtendedA.js 4 | * 5 | * Copyright (c) 2009 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-italic'], 23 | { 24 | 0x131: [441,10,307,75,340] // LATIN SMALL LETTER DOTLESS I 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Italic/LatinExtendedA.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LatinExtendedB.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LatinExtendedB.js 4 | * 5 | * Copyright (c) 2009 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-italic'], 23 | { 24 | 0x237: [442,205,332,-32,327] // LATIN SMALL LETTER DOTLESS J 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Italic/LatinExtendedB.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/LetterlikeSymbols.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main-italic'], 23 | { 24 | 0x210F: [695,13,540,42,562] // stix-/hbar - Planck's over 2pi 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Italic/LetterlikeSymbols.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiactForSymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/CombDiactForSymbols.js 4 | * 5 | * Copyright (c) 2009 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'], 23 | { 24 | 0x20D7: [714,-516,0,29,471] // COMBINING RIGHT ARROW ABOVE 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/CombDiactForSymbols.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/GeometricShapes.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'], 23 | { 24 | 0x25B3: [716,0,889,59,828], // WHITE UP-POINTING TRIANGLE 25 | 0x25B9: [505,5,500,26,474], // WHITE RIGHT-POINTING SMALL TRIANGLE 26 | 0x25BD: [500,215,889,59,828], // WHITE DOWN-POINTING TRIANGLE 27 | 0x25C3: [505,5,500,26,473], // WHITE LEFT-POINTING SMALL TRIANGLE 28 | 0x25EF: [715,215,1000,56,944] // LARGE CIRCLE 29 | } 30 | ); 31 | 32 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/GeometricShapes.js"); 33 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Latin1Supplement.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Latin1Supplement.js 4 | * 5 | * Copyright (c) 2009 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'], 23 | { 24 | 0xA0: [0,0,250,0,0], // NO-BREAK SPACE 25 | 0xAC: [356,-89,667,55,611], // NOT SIGN 26 | 0xB1: [666,0,778,55,722], // PLUS-MINUS SIGN 27 | 0xD7: [491,-9,778,147,631], // MULTIPLICATION SIGN 28 | 0xF7: [537,36,778,55,721] // DIVISION SIGN 29 | } 30 | ); 31 | 32 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/Latin1Supplement.js"); 33 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/LatinExtendedA.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/LatinExtendedA.js 4 | * 5 | * Copyright (c) 2009 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'], 23 | { 24 | 0x131: [442,0,278,26,255] // LATIN SMALL LETTER DOTLESS I 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/LatinExtendedA.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/LatinExtendedB.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/LatinExtendedB.js 4 | * 5 | * Copyright (c) 2009 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'], 23 | { 24 | 0x237: [442,205,306,-55,218] // LATIN SMALL LETTER DOTLESS J 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/LatinExtendedB.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/LetterlikeSymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/LetterlikeSymbols.js 4 | * 5 | * Copyright (c) 2009 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'], 23 | { 24 | 0x210F: [695,13,540,42,562], // stix-/hbar - Planck's over 2pi 25 | 0x2111: [705,11,722,54,693], // BLACK-LETTER CAPITAL I 26 | 0x2113: [706,20,417,6,398], // SCRIPT SMALL L 27 | 0x2118: [453,216,636,67,625], // SCRIPT CAPITAL P 28 | 0x211C: [717,22,722,40,716], // BLACK-LETTER CAPITAL R 29 | 0x2135: [694,1,611,54,556] // ALEF SYMBOL 30 | } 31 | ); 32 | 33 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/LetterlikeSymbols.js"); 34 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscMathSymbolsA.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscMathSymbolsA.js 4 | * 5 | * Copyright (c) 2009 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'], 23 | { 24 | 0x27E8: [750,250,389,110,333], // MATHEMATICAL LEFT ANGLE BRACKET 25 | 0x27E9: [750,250,389,55,278], // MATHEMATICAL RIGHT ANGLE BRACKET 26 | 0x27EE: [743,242,400,100,344], // MATHEMATICAL LEFT FLATTENED PARENTHESIS 27 | 0x27EF: [743,241,400,56,301] // MATHEMATICAL RIGHT FLATTENED PARENTHESIS 28 | } 29 | ); 30 | 31 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/MiscMathSymbolsA.js"); 32 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'], 23 | { 24 | 0x2660: [727,131,778,55,723], // BLACK SPADE SUIT 25 | 0x2661: [716,33,778,55,723], // WHITE HEART SUIT 26 | 0x2662: [727,163,778,55,723], // WHITE DIAMOND SUIT 27 | 0x2663: [726,131,778,28,750], // BLACK CLUB SUIT 28 | 0x266D: [751,22,389,54,333], // MUSIC FLAT SIGN 29 | 0x266E: [734,223,389,65,324], // MUSIC NATURAL SIGN 30 | 0x266F: [723,223,389,54,334] // MUSIC SHARP SIGN 31 | } 32 | ); 33 | 34 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/MiscSymbols.js"); 35 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscTechnical.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscTechnical.js 4 | * 5 | * Copyright (c) 2009 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'], 23 | { 24 | 0x2308: [751,250,444,174,422], // LEFT CEILING 25 | 0x2309: [751,250,444,21,269], // RIGHT CEILING 26 | 0x230A: [750,251,444,174,422], // LEFT FLOOR 27 | 0x230B: [751,251,444,20,269], // RIGHT FLOOR 28 | 0x2322: [388,-122,1000,55,944], // stix-small down curve 29 | 0x2323: [378,-134,1000,55,944], // stix-small up curve 30 | 0x23B0: [743,241,512,56,456], // UPPER LEFT OR LOWER RIGHT CURLY BRACKET SECTION 31 | 0x23B1: [743,242,512,56,457] // UPPER RIGHT OR LOWER LEFT CURLY BRACKET SECTION 32 | } 33 | ); 34 | 35 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/MiscTechnical.js"); 36 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SpacingModLetters.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'], 23 | { 24 | 0x2DA: [715,-542,500,147,352] // RING ABOVE 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/SpacingModLetters.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SuppMathOperators.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SuppMathOperators.js 4 | * 5 | * Copyright (c) 2009 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'], 23 | { 24 | 0x2A3F: [684,0,750,28,721], // AMALGAMATION OR COPRODUCT 25 | 0x2AAF: [636,138,778,83,695], // PRECEDES ABOVE SINGLE-LINE EQUALS SIGN 26 | 0x2AB0: [636,138,778,83,694] // SUCCEEDS ABOVE SINGLE-LINE EQUALS SIGN 27 | } 28 | ); 29 | 30 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/SuppMathOperators.js"); 31 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SupplementalArrowsA.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/SupplementalArrowsA.js 4 | * 5 | * Copyright (c) 2009 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Main'], 23 | { 24 | 0x27F5: [511,12,1609,54,1525], // LONG LEFTWARDS ARROW 25 | 0x27F6: [512,11,1638,83,1554], // LONG RIGHTWARDS ARROW 26 | 0x27F7: [512,12,1859,54,1804], // LONG LEFT RIGHT ARROW 27 | 0x27F8: [525,24,1609,55,1553], // LONG LEFTWARDS DOUBLE ARROW 28 | 0x27F9: [525,25,1638,55,1582], // LONG RIGHTWARDS DOUBLE ARROW 29 | 0x27FA: [525,24,1858,55,1802], // LONG LEFT RIGHT DOUBLE ARROW 30 | 0x27FC: [512,11,1638,54,1554] // LONG RIGHTWARDS ARROW FROM BAR 31 | } 32 | ); 33 | 34 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Main/Regular/SupplementalArrowsA.js"); 35 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_SansSerif-bold'] = { 22 | directory: 'SansSerif/Bold', 23 | family: 'MathJax_SansSerif', 24 | weight: 'bold', 25 | testString: "MathJax SansSerif", 26 | Ranges: [ 27 | [0x0,0x7F,"BasicLatin"], 28 | [0x80,0xFFFF,"Other"], 29 | [0x300,0x36F,"CombDiacritMarks"] 30 | ] 31 | 32 | }; 33 | 34 | MathJax.OutputJax["HTML-CSS"].initFont("MathJax_SansSerif-bold"); 35 | 36 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SansSerif/Bold/Main.js"); 37 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_SansSerif-italic'] = { 22 | directory: 'SansSerif/Italic', 23 | family: 'MathJax_SansSerif', 24 | style: 'italic', 25 | testString: "MathJax SansSerif", 26 | Ranges: [ 27 | [0x0,0x7F,"BasicLatin"], 28 | [0x80,0xFFFF,"Other"], 29 | [0x300,0x36F,"CombDiacritMarks"] 30 | ] 31 | 32 | }; 33 | 34 | MathJax.OutputJax["HTML-CSS"].initFont("MathJax_SansSerif-italic"); 35 | 36 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SansSerif/Italic/Main.js"); 37 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_SansSerif'] = { 22 | directory: 'SansSerif/Regular', 23 | family: 'MathJax_SansSerif', 24 | testString: "MathJax SansSerif", 25 | Ranges: [ 26 | [0x0,0x7F,"BasicLatin"], 27 | [0x80,0xFFFF,"Other"], 28 | [0x300,0x36F,"CombDiacritMarks"] 29 | ] 30 | 31 | }; 32 | 33 | MathJax.OutputJax["HTML-CSS"].initFont("MathJax_SansSerif"); 34 | 35 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/SansSerif/Regular/Main.js"); 36 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.Hub.Insert( 22 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Script'], 23 | { 24 | 0xA0: [0,0,250,0,0] // NO-BREAK SPACE 25 | } 26 | ); 27 | 28 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Script/Regular/Other.js"); 29 | -------------------------------------------------------------------------------- /lib/gollum-site/layout/javascript/MathJax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js: -------------------------------------------------------------------------------- 1 | /************************************************************* 2 | * 3 | * MathJax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js 4 | * 5 | * Copyright (c) 2009-2010 Design Science, Inc. 6 | * 7 | * Licensed under the Apache License, Version 2.0 (the "License"); 8 | * you may not use this file except in compliance with the License. 9 | * You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, software 14 | * distributed under the License is distributed on an "AS IS" BASIS, 15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16 | * See the License for the specific language governing permissions and 17 | * limitations under the License. 18 | * 19 | */ 20 | 21 | MathJax.OutputJax['HTML-CSS'].FONTDATA.FONTS['MathJax_Typewriter'] = { 22 | directory: 'Typewriter/Regular', 23 | family: 'MathJax_Typewriter', 24 | testString: "MathJax Typewriter", 25 | Ranges: [ 26 | [0x0,0x7F,"BasicLatin"], 27 | [0x80,0xFFFF,"Other"], 28 | [0x300,0x36F,"CombDiacritMarks"] 29 | ] 30 | 31 | }; 32 | 33 | MathJax.OutputJax["HTML-CSS"].initFont("MathJax_Typewriter"); 34 | 35 | MathJax.Ajax.loadComplete(MathJax.OutputJax["HTML-CSS"].fontDir + "/Typewriter/Regular/Main.js"); 36 | -------------------------------------------------------------------------------- /lib/gollum-site/log.rb: -------------------------------------------------------------------------------- 1 | module Gollum 2 | class SiteLog 3 | extend Mixlib::Log 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /lib/gollum-site/version.rb: -------------------------------------------------------------------------------- 1 | module Gollum 2 | class Site 3 | VERSION = "0.1.12" 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /lib/gollum-site/wiki.rb: -------------------------------------------------------------------------------- 1 | module Gollum 2 | class Wiki 3 | # this is terrible hack and should be done better 4 | attr_accessor :site 5 | end 6 | end 7 | -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/COMMIT_EDITMSG: -------------------------------------------------------------------------------- 1 | second commit 2 | -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/config: -------------------------------------------------------------------------------- 1 | [core] 2 | repositoryformatversion = 0 3 | filemode = true 4 | bare = false 5 | logallrefupdates = true 6 | ignorecase = true 7 | [remote "origin"] 8 | fetch = +refs/heads/*:refs/remotes/origin/* 9 | url = /Users/dreverri/src/basho/gollum-site/test/examples/test_footer_and_sidebar.git 10 | [branch "master"] 11 | remote = origin 12 | merge = refs/heads/master 13 | -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/description: -------------------------------------------------------------------------------- 1 | Unnamed repository; edit this file 'description' to name the repository. 2 | -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/hooks/applypatch-msg.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # An example hook script to check the commit log message taken by 4 | # applypatch from an e-mail message. 5 | # 6 | # The hook should exit with non-zero status after issuing an 7 | # appropriate message if it wants to stop the commit. The hook is 8 | # allowed to edit the commit message file. 9 | # 10 | # To enable this hook, rename this file to "applypatch-msg". 11 | 12 | . git-sh-setup 13 | test -x "$GIT_DIR/hooks/commit-msg" && 14 | exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} 15 | : 16 | -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/hooks/commit-msg.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # An example hook script to check the commit log message. 4 | # Called by "git commit" with one argument, the name of the file 5 | # that has the commit message. The hook should exit with non-zero 6 | # status after issuing an appropriate message if it wants to stop the 7 | # commit. The hook is allowed to edit the commit message file. 8 | # 9 | # To enable this hook, rename this file to "commit-msg". 10 | 11 | # Uncomment the below to add a Signed-off-by line to the message. 12 | # Doing this in a hook is a bad idea in general, but the prepare-commit-msg 13 | # hook is more suited to it. 14 | # 15 | # SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') 16 | # grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" 17 | 18 | # This example catches duplicate Signed-off-by lines. 19 | 20 | test "" = "$(grep '^Signed-off-by: ' "$1" | 21 | sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { 22 | echo >&2 Duplicate Signed-off-by lines. 23 | exit 1 24 | } 25 | -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/hooks/post-commit.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # An example hook script that is called after a successful 4 | # commit is made. 5 | # 6 | # To enable this hook, rename this file to "post-commit". 7 | 8 | : Nothing 9 | -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/hooks/post-receive.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # An example hook script for the "post-receive" event. 4 | # 5 | # The "post-receive" script is run after receive-pack has accepted a pack 6 | # and the repository has been updated. It is passed arguments in through 7 | # stdin in the form 8 | # 9 | # For example: 10 | # aa453216d1b3e49e7f6f98441fa56946ddcd6a20 68f7abf4e6f922807889f52bc043ecd31b79f814 refs/heads/master 11 | # 12 | # see contrib/hooks/ for a sample, or uncomment the next line and 13 | # rename the file to "post-receive". 14 | 15 | #. /usr/share/doc/git-core/contrib/hooks/post-receive-email 16 | -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/hooks/post-update.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # An example hook script to prepare a packed repository for use over 4 | # dumb transports. 5 | # 6 | # To enable this hook, rename this file to "post-update". 7 | 8 | exec git update-server-info 9 | -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/hooks/pre-applypatch.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # An example hook script to verify what is about to be committed 4 | # by applypatch from an e-mail message. 5 | # 6 | # The hook should exit with non-zero status after issuing an 7 | # appropriate message if it wants to stop the commit. 8 | # 9 | # To enable this hook, rename this file to "pre-applypatch". 10 | 11 | . git-sh-setup 12 | test -x "$GIT_DIR/hooks/pre-commit" && 13 | exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} 14 | : 15 | -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/hooks/prepare-commit-msg.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # An example hook script to prepare the commit log message. 4 | # Called by "git commit" with the name of the file that has the 5 | # commit message, followed by the description of the commit 6 | # message's source. The hook's purpose is to edit the commit 7 | # message file. If the hook fails with a non-zero status, 8 | # the commit is aborted. 9 | # 10 | # To enable this hook, rename this file to "prepare-commit-msg". 11 | 12 | # This hook includes three examples. The first comments out the 13 | # "Conflicts:" part of a merge commit. 14 | # 15 | # The second includes the output of "git diff --name-status -r" 16 | # into the message, just before the "git status" output. It is 17 | # commented because it doesn't cope with --amend or with squashed 18 | # commits. 19 | # 20 | # The third example adds a Signed-off-by line to the message, that can 21 | # still be edited. This is rarely a good idea. 22 | 23 | case "$2,$3" in 24 | merge,) 25 | /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; 26 | 27 | # ,|template,) 28 | # /usr/bin/perl -i.bak -pe ' 29 | # print "\n" . `git diff --cached --name-status -r` 30 | # if /^#/ && $first++ == 0' "$1" ;; 31 | 32 | *) ;; 33 | esac 34 | 35 | # SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') 36 | # grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" 37 | -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_footer_and_sidebar.git/index -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/info/exclude: -------------------------------------------------------------------------------- 1 | # git ls-files --others --exclude-from=.git/info/exclude 2 | # Lines that start with '#' are comments. 3 | # For a project mostly in C, the following would be a good set of 4 | # exclude patterns (uncomment them if you want to use them): 5 | # *.[oa] 6 | # *~ 7 | -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/logs/HEAD: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000 f81dd0b9cec9c51bbf0ced5d75d329ab14ab4c69 Daniel Reverri 1305254691 -0700 clone: from /Users/dreverri/src/basho/gollum-site/test/examples/test_footer_and_sidebar.git 2 | f81dd0b9cec9c51bbf0ced5d75d329ab14ab4c69 0d8513659a6a4837331c5a407b333acaa7260275 Daniel Reverri 1305254741 -0700 commit: second commit 3 | -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/logs/refs/heads/master: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000 f81dd0b9cec9c51bbf0ced5d75d329ab14ab4c69 Daniel Reverri 1305254691 -0700 clone: from /Users/dreverri/src/basho/gollum-site/test/examples/test_footer_and_sidebar.git 2 | f81dd0b9cec9c51bbf0ced5d75d329ab14ab4c69 0d8513659a6a4837331c5a407b333acaa7260275 Daniel Reverri 1305254741 -0700 commit: second commit 3 | -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/objects/07/748c9bf3b10a2dbc88830595850c36b8908a94: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_footer_and_sidebar.git/objects/07/748c9bf3b10a2dbc88830595850c36b8908a94 -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/objects/0d/8513659a6a4837331c5a407b333acaa7260275: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_footer_and_sidebar.git/objects/0d/8513659a6a4837331c5a407b333acaa7260275 -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/objects/11/1fe2807960c86c8ee1c4d5141d068f52abadb6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_footer_and_sidebar.git/objects/11/1fe2807960c86c8ee1c4d5141d068f52abadb6 -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/objects/4b/9f13d3082668e68a988e7f74f7a94e34931652: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_footer_and_sidebar.git/objects/4b/9f13d3082668e68a988e7f74f7a94e34931652 -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/objects/8b/137891791fe96927ad78e64b0aad7bded08bdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_footer_and_sidebar.git/objects/8b/137891791fe96927ad78e64b0aad7bded08bdc -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/objects/aa/69c7a27988b76fe398d1dccc171e25cfc99e3a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_footer_and_sidebar.git/objects/aa/69c7a27988b76fe398d1dccc171e25cfc99e3a -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/objects/bb/4397734f9c55a065348686324f81be81769642: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_footer_and_sidebar.git/objects/bb/4397734f9c55a065348686324f81be81769642 -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/objects/c0/a8e615860c09ef147e590c3335210b5efb7725: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_footer_and_sidebar.git/objects/c0/a8e615860c09ef147e590c3335210b5efb7725 -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/objects/cc/628ccd10742baea8241c5924df992b5c019f71: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_footer_and_sidebar.git/objects/cc/628ccd10742baea8241c5924df992b5c019f71 -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/objects/ce/013625030ba8dba906f756967f9e9ca394464a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_footer_and_sidebar.git/objects/ce/013625030ba8dba906f756967f9e9ca394464a -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_footer_and_sidebar.git/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/objects/f4/fcee7b7e2c4de453db5c4b70d7a6fc53ba9769: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_footer_and_sidebar.git/objects/f4/fcee7b7e2c4de453db5c4b70d7a6fc53ba9769 -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/objects/f8/1dd0b9cec9c51bbf0ced5d75d329ab14ab4c69: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_footer_and_sidebar.git/objects/f8/1dd0b9cec9c51bbf0ced5d75d329ab14ab4c69 -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/packed-refs: -------------------------------------------------------------------------------- 1 | # pack-refs with: peeled 2 | f81dd0b9cec9c51bbf0ced5d75d329ab14ab4c69 refs/remotes/origin/master 3 | -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/refs/heads/master: -------------------------------------------------------------------------------- 1 | 0d8513659a6a4837331c5a407b333acaa7260275 2 | -------------------------------------------------------------------------------- /test/examples/test_footer_and_sidebar.git/refs/remotes/origin/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/remotes/origin/master 2 | -------------------------------------------------------------------------------- /test/examples/test_site.git/COMMIT_EDITMSG: -------------------------------------------------------------------------------- 1 | .txt is a valid page name now 2 | -------------------------------------------------------------------------------- /test/examples/test_site.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /test/examples/test_site.git/config: -------------------------------------------------------------------------------- 1 | [core] 2 | repositoryformatversion = 0 3 | filemode = true 4 | bare = false 5 | logallrefupdates = true 6 | ignorecase = true 7 | precomposeunicode = true 8 | [remote "origin"] 9 | url = /Users/dreverri/src/gollum-site/test/examples/test_site.git 10 | fetch = +refs/heads/*:refs/remotes/origin/* 11 | [branch "master"] 12 | remote = origin 13 | merge = refs/heads/master 14 | -------------------------------------------------------------------------------- /test/examples/test_site.git/description: -------------------------------------------------------------------------------- 1 | Unnamed repository; edit this file 'description' to name the repository. 2 | -------------------------------------------------------------------------------- /test/examples/test_site.git/hooks/applypatch-msg.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # An example hook script to check the commit log message taken by 4 | # applypatch from an e-mail message. 5 | # 6 | # The hook should exit with non-zero status after issuing an 7 | # appropriate message if it wants to stop the commit. The hook is 8 | # allowed to edit the commit message file. 9 | # 10 | # To enable this hook, rename this file to "applypatch-msg". 11 | 12 | . git-sh-setup 13 | test -x "$GIT_DIR/hooks/commit-msg" && 14 | exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} 15 | : 16 | -------------------------------------------------------------------------------- /test/examples/test_site.git/hooks/commit-msg.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # An example hook script to check the commit log message. 4 | # Called by "git commit" with one argument, the name of the file 5 | # that has the commit message. The hook should exit with non-zero 6 | # status after issuing an appropriate message if it wants to stop the 7 | # commit. The hook is allowed to edit the commit message file. 8 | # 9 | # To enable this hook, rename this file to "commit-msg". 10 | 11 | # Uncomment the below to add a Signed-off-by line to the message. 12 | # Doing this in a hook is a bad idea in general, but the prepare-commit-msg 13 | # hook is more suited to it. 14 | # 15 | # SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') 16 | # grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" 17 | 18 | # This example catches duplicate Signed-off-by lines. 19 | 20 | test "" = "$(grep '^Signed-off-by: ' "$1" | 21 | sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { 22 | echo >&2 Duplicate Signed-off-by lines. 23 | exit 1 24 | } 25 | -------------------------------------------------------------------------------- /test/examples/test_site.git/hooks/post-update.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # An example hook script to prepare a packed repository for use over 4 | # dumb transports. 5 | # 6 | # To enable this hook, rename this file to "post-update". 7 | 8 | exec git update-server-info 9 | -------------------------------------------------------------------------------- /test/examples/test_site.git/hooks/pre-applypatch.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # An example hook script to verify what is about to be committed 4 | # by applypatch from an e-mail message. 5 | # 6 | # The hook should exit with non-zero status after issuing an 7 | # appropriate message if it wants to stop the commit. 8 | # 9 | # To enable this hook, rename this file to "pre-applypatch". 10 | 11 | . git-sh-setup 12 | test -x "$GIT_DIR/hooks/pre-commit" && 13 | exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} 14 | : 15 | -------------------------------------------------------------------------------- /test/examples/test_site.git/hooks/pre-push.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # An example hook script to verify what is about to be pushed. Called by "git 4 | # push" after it has checked the remote status, but before anything has been 5 | # pushed. If this script exits with a non-zero status nothing will be pushed. 6 | # 7 | # This hook is called with the following parameters: 8 | # 9 | # $1 -- Name of the remote to which the push is being done 10 | # $2 -- URL to which the push is being done 11 | # 12 | # If pushing without using a named remote those arguments will be equal. 13 | # 14 | # Information about the commits which are being pushed is supplied as lines to 15 | # the standard input in the form: 16 | # 17 | # 18 | # 19 | # This sample shows how to prevent push of commits where the log message starts 20 | # with "WIP" (work in progress). 21 | 22 | remote="$1" 23 | url="$2" 24 | 25 | z40=0000000000000000000000000000000000000000 26 | 27 | IFS=' ' 28 | while read local_ref local_sha remote_ref remote_sha 29 | do 30 | if [ "$local_sha" = $z40 ] 31 | then 32 | # Handle delete 33 | : 34 | else 35 | if [ "$remote_sha" = $z40 ] 36 | then 37 | # New branch, examine all commits 38 | range="$local_sha" 39 | else 40 | # Update to existing branch, examine new commits 41 | range="$remote_sha..$local_sha" 42 | fi 43 | 44 | # Check for WIP commit 45 | commit=`git rev-list -n 1 --grep '^WIP' "$range"` 46 | if [ -n "$commit" ] 47 | then 48 | echo "Found WIP commit in $local_ref, not pushing" 49 | exit 1 50 | fi 51 | fi 52 | done 53 | 54 | exit 0 55 | -------------------------------------------------------------------------------- /test/examples/test_site.git/hooks/prepare-commit-msg.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # An example hook script to prepare the commit log message. 4 | # Called by "git commit" with the name of the file that has the 5 | # commit message, followed by the description of the commit 6 | # message's source. The hook's purpose is to edit the commit 7 | # message file. If the hook fails with a non-zero status, 8 | # the commit is aborted. 9 | # 10 | # To enable this hook, rename this file to "prepare-commit-msg". 11 | 12 | # This hook includes three examples. The first comments out the 13 | # "Conflicts:" part of a merge commit. 14 | # 15 | # The second includes the output of "git diff --name-status -r" 16 | # into the message, just before the "git status" output. It is 17 | # commented because it doesn't cope with --amend or with squashed 18 | # commits. 19 | # 20 | # The third example adds a Signed-off-by line to the message, that can 21 | # still be edited. This is rarely a good idea. 22 | 23 | case "$2,$3" in 24 | merge,) 25 | /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; 26 | 27 | # ,|template,) 28 | # /usr/bin/perl -i.bak -pe ' 29 | # print "\n" . `git diff --cached --name-status -r` 30 | # if /^#/ && $first++ == 0' "$1" ;; 31 | 32 | *) ;; 33 | esac 34 | 35 | # SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') 36 | # grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" 37 | -------------------------------------------------------------------------------- /test/examples/test_site.git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/index -------------------------------------------------------------------------------- /test/examples/test_site.git/info/exclude: -------------------------------------------------------------------------------- 1 | # git ls-files --others --exclude-from=.git/info/exclude 2 | # Lines that start with '#' are comments. 3 | # For a project mostly in C, the following would be a good set of 4 | # exclude patterns (uncomment them if you want to use them): 5 | # *.[oa] 6 | # *~ 7 | -------------------------------------------------------------------------------- /test/examples/test_site.git/logs/HEAD: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000 24d9d55aef25343c5a1c6f2d3ac09512a37a8687 Daniel Reverri 1396445208 -0400 clone: from /Users/dreverri/src/gollum-site/test/examples/test_site.git 2 | 24d9d55aef25343c5a1c6f2d3ac09512a37a8687 7b01dd393ee4bba9855ac7c46a1e571918104546 Daniel Reverri 1396446589 -0400 commit: .txt is a valid page name now 3 | -------------------------------------------------------------------------------- /test/examples/test_site.git/logs/refs/heads/master: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000 24d9d55aef25343c5a1c6f2d3ac09512a37a8687 Daniel Reverri 1396445208 -0400 clone: from /Users/dreverri/src/gollum-site/test/examples/test_site.git 2 | 24d9d55aef25343c5a1c6f2d3ac09512a37a8687 7b01dd393ee4bba9855ac7c46a1e571918104546 Daniel Reverri 1396446589 -0400 commit: .txt is a valid page name now 3 | -------------------------------------------------------------------------------- /test/examples/test_site.git/logs/refs/remotes/origin/HEAD: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000 24d9d55aef25343c5a1c6f2d3ac09512a37a8687 Daniel Reverri 1396445208 -0400 clone: from /Users/dreverri/src/gollum-site/test/examples/test_site.git 2 | -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/0c/e23474afb8381a2df45077c7897e72ea66bd82: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/0c/e23474afb8381a2df45077c7897e72ea66bd82 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/12/d183189412aea09391023586297528722daa1b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/12/d183189412aea09391023586297528722daa1b -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/24/6104cdec11f15d582a78ffefc1be08b1566561: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/24/6104cdec11f15d582a78ffefc1be08b1566561 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/24/d9d55aef25343c5a1c6f2d3ac09512a37a8687: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/24/d9d55aef25343c5a1c6f2d3ac09512a37a8687 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/31/34a0792941bf0df537c3a10d2502fdc3be08a5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/31/34a0792941bf0df537c3a10d2502fdc3be08a5 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/33/c6cf51b72a58596114e5d2f03261b8deaaa0f0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/33/c6cf51b72a58596114e5d2f03261b8deaaa0f0 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/43/a97c5259b27129a0fadff58ba8aa8ebbb62523: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/43/a97c5259b27129a0fadff58ba8aa8ebbb62523 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/45/170c1c68e6ddd4d4c08adfb2aaf3c12d9b6329: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/45/170c1c68e6ddd4d4c08adfb2aaf3c12d9b6329 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/4d/1311a57ece3dc2840c6e48d1b9bf5978e3dc91: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/4d/1311a57ece3dc2840c6e48d1b9bf5978e3dc91 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/4d/905a41381ad39d616dee245cf3e324f9fcc02e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/4d/905a41381ad39d616dee245cf3e324f9fcc02e -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/6b/a5b4d83ba18c2bd85fade0c03816e5b2bfa9f4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/6b/a5b4d83ba18c2bd85fade0c03816e5b2bfa9f4 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/6c/bc9f20aa7806196638e32f708e012568d4a959: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/6c/bc9f20aa7806196638e32f708e012568d4a959 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/71/bb02bb7d563e86a558a0040d77f3cfc82dc4fd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/71/bb02bb7d563e86a558a0040d77f3cfc82dc4fd -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/7b/01dd393ee4bba9855ac7c46a1e571918104546: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/7b/01dd393ee4bba9855ac7c46a1e571918104546 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/7d/f37a9caf358dbb0244742503a456aeac1eaf82: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/7d/f37a9caf358dbb0244742503a456aeac1eaf82 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/91/e0f12260f005632f42619886d02ee0a1f9cb2f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/91/e0f12260f005632f42619886d02ee0a1f9cb2f -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/9b/063b69e53a11210e033ba953be56135a7b0281: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/9b/063b69e53a11210e033ba953be56135a7b0281 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/9b/3d7fbc0ed4fc1db28f361729e4396208e6f846: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/9b/3d7fbc0ed4fc1db28f361729e4396208e6f846 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/a5/2b08f141c77fa0cd2397fb26f3285ea17bd6ea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/a5/2b08f141c77fa0cd2397fb26f3285ea17bd6ea -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/b1/99a056e7e0dfadc1350413de32d6c9a700e7fa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/b1/99a056e7e0dfadc1350413de32d6c9a700e7fa -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/c2/1da0b71136462ceda60b7c4fab79311338eafa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/c2/1da0b71136462ceda60b7c4fab79311338eafa -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/c3/d487fda322940d75eac154fc8383093f7bcdf3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/c3/d487fda322940d75eac154fc8383093f7bcdf3 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/c4/9a9d6386a9d955b3fac30f863c6b617d5830bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/c4/9a9d6386a9d955b3fac30f863c6b617d5830bc -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/cc/156aedb8a8f5ccabde7be915044e226621926f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/cc/156aedb8a8f5ccabde7be915044e226621926f -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/cd/68dbcff0518c406e8caee2fa163006a90626b7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/cd/68dbcff0518c406e8caee2fa163006a90626b7 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/d7/0d4721df9e28ebab272ec8994ca0569974be92: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/d7/0d4721df9e28ebab272ec8994ca0569974be92 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/d9/4ddf467ffb57a73ce424b123dd04e80c760719: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/d9/4ddf467ffb57a73ce424b123dd04e80c760719 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/dd/d9974bd919e3601cc015ee36d524f18b4b2df5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/dd/d9974bd919e3601cc015ee36d524f18b4b2df5 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/e4/2feb142e65f08532eb10ca858e2275a1135462: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/e4/2feb142e65f08532eb10ca858e2275a1135462 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/e5/d334fc4683e3320e922b8eb07232fa6ba0d74a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/e5/d334fc4683e3320e922b8eb07232fa6ba0d74a -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/e7/0688deaa9cae7f981200111abc974a334a4426: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/e7/0688deaa9cae7f981200111abc974a334a4426 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/ea/8b884d4ac9807c17383bace8393379d15f8c2f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/ea/8b884d4ac9807c17383bace8393379d15f8c2f -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/fe/8086cbd51dd30365c9cbaedf015036445fabe4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/fe/8086cbd51dd30365c9cbaedf015036445fabe4 -------------------------------------------------------------------------------- /test/examples/test_site.git/objects/ff/b5bbc20089dd64632b4aa7b2be312cfaddae35: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site.git/objects/ff/b5bbc20089dd64632b4aa7b2be312cfaddae35 -------------------------------------------------------------------------------- /test/examples/test_site.git/packed-refs: -------------------------------------------------------------------------------- 1 | # pack-refs with: peeled fully-peeled 2 | 24d9d55aef25343c5a1c6f2d3ac09512a37a8687 refs/remotes/origin/master 3 | -------------------------------------------------------------------------------- /test/examples/test_site.git/refs/heads/master: -------------------------------------------------------------------------------- 1 | 7b01dd393ee4bba9855ac7c46a1e571918104546 2 | -------------------------------------------------------------------------------- /test/examples/test_site.git/refs/remotes/origin/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/remotes/origin/master 2 | -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/COMMIT_EDITMSG: -------------------------------------------------------------------------------- 1 | Gollum wiki with no root directory layout 2 | -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/HEAD: -------------------------------------------------------------------------------- 1 | ref: refs/heads/master 2 | -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/config: -------------------------------------------------------------------------------- 1 | [core] 2 | repositoryformatversion = 0 3 | filemode = true 4 | bare = false 5 | logallrefupdates = true 6 | ignorecase = true 7 | -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/description: -------------------------------------------------------------------------------- 1 | Unnamed repository; edit this file 'description' to name the repository. 2 | -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/hooks/applypatch-msg.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # An example hook script to check the commit log message taken by 4 | # applypatch from an e-mail message. 5 | # 6 | # The hook should exit with non-zero status after issuing an 7 | # appropriate message if it wants to stop the commit. The hook is 8 | # allowed to edit the commit message file. 9 | # 10 | # To enable this hook, rename this file to "applypatch-msg". 11 | 12 | . git-sh-setup 13 | test -x "$GIT_DIR/hooks/commit-msg" && 14 | exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} 15 | : 16 | -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/hooks/commit-msg.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # An example hook script to check the commit log message. 4 | # Called by "git commit" with one argument, the name of the file 5 | # that has the commit message. The hook should exit with non-zero 6 | # status after issuing an appropriate message if it wants to stop the 7 | # commit. The hook is allowed to edit the commit message file. 8 | # 9 | # To enable this hook, rename this file to "commit-msg". 10 | 11 | # Uncomment the below to add a Signed-off-by line to the message. 12 | # Doing this in a hook is a bad idea in general, but the prepare-commit-msg 13 | # hook is more suited to it. 14 | # 15 | # SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') 16 | # grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" 17 | 18 | # This example catches duplicate Signed-off-by lines. 19 | 20 | test "" = "$(grep '^Signed-off-by: ' "$1" | 21 | sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { 22 | echo >&2 Duplicate Signed-off-by lines. 23 | exit 1 24 | } 25 | -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/hooks/post-commit.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # An example hook script that is called after a successful 4 | # commit is made. 5 | # 6 | # To enable this hook, rename this file to "post-commit". 7 | 8 | : Nothing 9 | -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/hooks/post-receive.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # An example hook script for the "post-receive" event. 4 | # 5 | # The "post-receive" script is run after receive-pack has accepted a pack 6 | # and the repository has been updated. It is passed arguments in through 7 | # stdin in the form 8 | # 9 | # For example: 10 | # aa453216d1b3e49e7f6f98441fa56946ddcd6a20 68f7abf4e6f922807889f52bc043ecd31b79f814 refs/heads/master 11 | # 12 | # see contrib/hooks/ for a sample, or uncomment the next line and 13 | # rename the file to "post-receive". 14 | 15 | #. /usr/share/doc/git-core/contrib/hooks/post-receive-email 16 | -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/hooks/post-update.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # An example hook script to prepare a packed repository for use over 4 | # dumb transports. 5 | # 6 | # To enable this hook, rename this file to "post-update". 7 | 8 | exec git update-server-info 9 | -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/hooks/pre-applypatch.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # An example hook script to verify what is about to be committed 4 | # by applypatch from an e-mail message. 5 | # 6 | # The hook should exit with non-zero status after issuing an 7 | # appropriate message if it wants to stop the commit. 8 | # 9 | # To enable this hook, rename this file to "pre-applypatch". 10 | 11 | . git-sh-setup 12 | test -x "$GIT_DIR/hooks/pre-commit" && 13 | exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} 14 | : 15 | -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/hooks/prepare-commit-msg.sample: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # An example hook script to prepare the commit log message. 4 | # Called by "git commit" with the name of the file that has the 5 | # commit message, followed by the description of the commit 6 | # message's source. The hook's purpose is to edit the commit 7 | # message file. If the hook fails with a non-zero status, 8 | # the commit is aborted. 9 | # 10 | # To enable this hook, rename this file to "prepare-commit-msg". 11 | 12 | # This hook includes three examples. The first comments out the 13 | # "Conflicts:" part of a merge commit. 14 | # 15 | # The second includes the output of "git diff --name-status -r" 16 | # into the message, just before the "git status" output. It is 17 | # commented because it doesn't cope with --amend or with squashed 18 | # commits. 19 | # 20 | # The third example adds a Signed-off-by line to the message, that can 21 | # still be edited. This is rarely a good idea. 22 | 23 | case "$2,$3" in 24 | merge,) 25 | /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; 26 | 27 | # ,|template,) 28 | # /usr/bin/perl -i.bak -pe ' 29 | # print "\n" . `git diff --cached --name-status -r` 30 | # if /^#/ && $first++ == 0' "$1" ;; 31 | 32 | *) ;; 33 | esac 34 | 35 | # SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') 36 | # grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" 37 | -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site_no_layout.git/index -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/info/exclude: -------------------------------------------------------------------------------- 1 | # git ls-files --others --exclude-from=.git/info/exclude 2 | # Lines that start with '#' are comments. 3 | # For a project mostly in C, the following would be a good set of 4 | # exclude patterns (uncomment them if you want to use them): 5 | # *.[oa] 6 | # *~ 7 | -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/logs/HEAD: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000 9f7f67b620764cb58f23a0cdeefdd235a8499b93 Daniel Reverri 1287674962 -0700 commit (initial): Gollum wiki with no root directory layout 2 | -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/logs/refs/heads/master: -------------------------------------------------------------------------------- 1 | 0000000000000000000000000000000000000000 9f7f67b620764cb58f23a0cdeefdd235a8499b93 Daniel Reverri 1287674962 -0700 commit (initial): Gollum wiki with no root directory layout 2 | -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/objects/0c/e23474afb8381a2df45077c7897e72ea66bd82: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site_no_layout.git/objects/0c/e23474afb8381a2df45077c7897e72ea66bd82 -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/objects/28/506d2802df89e6802c9b10babee796d8822be4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site_no_layout.git/objects/28/506d2802df89e6802c9b10babee796d8822be4 -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/objects/9f/7f67b620764cb58f23a0cdeefdd235a8499b93: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site_no_layout.git/objects/9f/7f67b620764cb58f23a0cdeefdd235a8499b93 -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/objects/b1/99a056e7e0dfadc1350413de32d6c9a700e7fa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site_no_layout.git/objects/b1/99a056e7e0dfadc1350413de32d6c9a700e7fa -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/objects/cd/68dbcff0518c406e8caee2fa163006a90626b7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site_no_layout.git/objects/cd/68dbcff0518c406e8caee2fa163006a90626b7 -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/objects/e7/0688deaa9cae7f981200111abc974a334a4426: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dreverri/gollum-site/94908f2d794ae8047eefda6b88a3e64663dbc37d/test/examples/test_site_no_layout.git/objects/e7/0688deaa9cae7f981200111abc974a334a4426 -------------------------------------------------------------------------------- /test/examples/test_site_no_layout.git/refs/heads/master: -------------------------------------------------------------------------------- 1 | 9f7f67b620764cb58f23a0cdeefdd235a8499b93 2 | -------------------------------------------------------------------------------- /test/helper.rb: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | require 'test/unit' 3 | require 'fileutils' 4 | 5 | dir = File.dirname(File.expand_path(__FILE__)) 6 | $LOAD_PATH.unshift(File.join(dir, '..', 'lib')) 7 | $LOAD_PATH.unshift(dir) 8 | 9 | require 'gollum-site' 10 | 11 | # Make sure we're in the test dir, the tests expect that to be the current 12 | # directory. 13 | TEST_DIR = File.join(File.dirname(__FILE__), *%w[.]) 14 | 15 | def testpath(path) 16 | File.join(TEST_DIR, path) 17 | end 18 | 19 | # test/spec/mini 3 20 | # http://gist.github.com/25455 21 | # chris@ozmm.org 22 | # file:lib/test/spec/mini.rb 23 | def context(*args, &block) 24 | return super unless (name = args.first) && block 25 | require 'test/unit' 26 | klass = Class.new(defined?(ActiveSupport::TestCase) ? ActiveSupport::TestCase : Test::Unit::TestCase) do 27 | def self.test(name, &block) 28 | define_method("test_#{name.gsub(/\W/,'_')}", &block) if block 29 | end 30 | def self.xtest(*args) end 31 | def self.setup(&block) define_method(:setup, &block) end 32 | def self.teardown(&block) define_method(:teardown, &block) end 33 | end 34 | (class << klass; self end).send(:define_method, :name) { name.gsub(/\W/,'_') } 35 | klass.class_eval &block 36 | end 37 | --------------------------------------------------------------------------------