Merge branch 'bzr/golem' of /Users/distler/Sites/code/instiki
This commit is contained in:
commit
1290dfc9ae
|
@ -97,6 +97,7 @@
|
||||||
% Renames \sqrt as \oldsqrt and redefine root to result in \sqrt[#1]{#2}
|
% Renames \sqrt as \oldsqrt and redefine root to result in \sqrt[#1]{#2}
|
||||||
\let\oldroot\root
|
\let\oldroot\root
|
||||||
\def\root#1#2{\oldroot #1 \of{#2}}
|
\def\root#1#2{\oldroot #1 \of{#2}}
|
||||||
|
\renewcommand{\sqrt}[2][]{\oldroot #1 \of{#2}}
|
||||||
|
|
||||||
% Manually declare the txfonts symbolsC font
|
% Manually declare the txfonts symbolsC font
|
||||||
\DeclareSymbolFont{symbolsC}{U}{txsyc}{m}{n}
|
\DeclareSymbolFont{symbolsC}{U}{txsyc}{m}{n}
|
||||||
|
|
|
@ -142,6 +142,7 @@ class WikiControllerTest < ActionController::TestCase
|
||||||
|
|
||||||
# Tempfile doesn't know how to open files with binary flag, hence the two-step process
|
# Tempfile doesn't know how to open files with binary flag, hence the two-step process
|
||||||
Tempfile.open('instiki_export_file') { |f| @tempfile_path = f.path }
|
Tempfile.open('instiki_export_file') { |f| @tempfile_path = f.path }
|
||||||
|
@tempfile_path.to_s
|
||||||
begin
|
begin
|
||||||
File.open(@tempfile_path, 'wb') { |f| f.write(r.body); @exported_file = f.path }
|
File.open(@tempfile_path, 'wb') { |f| f.write(r.body); @exported_file = f.path }
|
||||||
Zip::ZipFile.open(@exported_file) do |zip|
|
Zip::ZipFile.open(@exported_file) do |zip|
|
||||||
|
@ -1141,6 +1142,7 @@ class WikiControllerTest < ActionController::TestCase
|
||||||
% Renames \sqrt as \oldsqrt and redefine root to result in \sqrt[#1]{#2}
|
% Renames \sqrt as \oldsqrt and redefine root to result in \sqrt[#1]{#2}
|
||||||
\let\oldroot\root
|
\let\oldroot\root
|
||||||
\def\root#1#2{\oldroot #1 \of{#2}}
|
\def\root#1#2{\oldroot #1 \of{#2}}
|
||||||
|
\renewcommand{\sqrt}[2][]{\oldroot #1 \of{#2}}
|
||||||
|
|
||||||
% Manually declare the txfonts symbolsC font
|
% Manually declare the txfonts symbolsC font
|
||||||
\DeclareSymbolFont{symbolsC}{U}{txsyc}{m}{n}
|
\DeclareSymbolFont{symbolsC}{U}{txsyc}{m}{n}
|
||||||
|
|
Loading…
Reference in a new issue