From 4693392a61aa319b6a03f06871b7efe28eafeda6 Mon Sep 17 00:00:00 2001 From: inga-lovinde <52715130+inga-lovinde@users.noreply.github.com> Date: Fri, 10 Sep 2010 16:51:29 +0000 Subject: [PATCH] TexCompiler implemented; UploadManager slight refactoring; Tex and Math UBBCodes implemented --- Builder/IISMainHandler/build.txt | 2 +- Builder/IISMainHandler/product.wxs | 10 +++ Common/BBCodes/Math.cs | 21 +++++++ Common/BBCodes/Tex.cs | 21 +++++++ Common/BBCodes/helpers/TexProcessor.cs | 19 ++++++ Common/Common.csproj | 7 +++ Common/UBBParser.cs | 2 + Common/UploadManager.cs | 15 ++++- FLocal.sln | 8 +++ .../handlers/request/UploadHandler.cs | 7 +-- .../handlers/request/avatars/AddHandler.cs | 6 +- TexCompiler/Compiler.cs | 59 +++++++++++++++++ TexCompiler/Properties/AssemblyInfo.cs | 36 +++++++++++ TexCompiler/TexCompiler.csproj | 63 +++++++++++++++++++ 14 files changed, 262 insertions(+), 14 deletions(-) create mode 100644 Common/BBCodes/Math.cs create mode 100644 Common/BBCodes/Tex.cs create mode 100644 Common/BBCodes/helpers/TexProcessor.cs create mode 100644 TexCompiler/Compiler.cs create mode 100644 TexCompiler/Properties/AssemblyInfo.cs create mode 100644 TexCompiler/TexCompiler.csproj diff --git a/Builder/IISMainHandler/build.txt b/Builder/IISMainHandler/build.txt index 0d30c07..b5811ff 100644 --- a/Builder/IISMainHandler/build.txt +++ b/Builder/IISMainHandler/build.txt @@ -1 +1 @@ -1189 \ No newline at end of file +1207 \ No newline at end of file diff --git a/Builder/IISMainHandler/product.wxs b/Builder/IISMainHandler/product.wxs index 9e74dfd..921d041 100644 --- a/Builder/IISMainHandler/product.wxs +++ b/Builder/IISMainHandler/product.wxs @@ -72,6 +72,12 @@ + + + + + + + \ No newline at end of file