Я хотел попробовать заставить NVelocity автоматически кодировать HTML-код определенных строк в моем приложении MonoRail.
Я просмотрел исходный код NVelocity и обнаружил EventCartridge
, который, кажется, является классом, который вы можете подключить для изменения различных типов поведения.
В частности, в этом классе есть метод ReferenceInsert
, который, кажется, делает именно то, что я хочу. Он в основном вызывается непосредственно перед тем, как значение ссылки (например, $ foobar) получает вывод, и позволяет вам изменять результаты.
Что я не могу понять, так это как настроить NVelocity / механизм просмотра MonoRail NVelocity для использования моей реализации?
Документы Velocity предполагают, что speed.properties может содержать записи для добавления определенных обработчиков событий, подобных этой, но я не могу найти нигде в исходном коде NVelocity, который ищет эту конфигурацию.
Любая помощь с благодарностью!
Редактировать: простой тест, который показывает эту работу (подтверждение концепции, а не производственный код!)
private VelocityEngine _velocityEngine;
private VelocityContext _velocityContext;
[SetUp]
public void Setup()
{
_velocityEngine = new VelocityEngine();
_velocityEngine.Init();
// creates the context...
_velocityContext = new VelocityContext();
// attach a new event cartridge
_velocityContext.AttachEventCartridge(new EventCartridge());
// add our custom handler to the ReferenceInsertion event
_velocityContext.EventCartridge.ReferenceInsertion += EventCartridge_ReferenceInsertion;
}
[Test]
public void EncodeReference()
{
_velocityContext.Put("thisShouldBeEncoded", "<p>This \"should\" be 'encoded'</p>");
var writer = new StringWriter();
var result = _velocityEngine.Evaluate(_velocityContext, writer, "HtmlEncodingEventCartridgeTestFixture.EncodeReference", @"<p>This ""shouldn't"" be encoded.</p> $thisShouldBeEncoded");
Assert.IsTrue(result, "Evaluation returned failure");
Assert.AreEqual(@"<p>This ""shouldn't"" be encoded.</p> <p>This "should" be 'encoded'</p>", writer.ToString());
}
private static void EventCartridge_ReferenceInsertion(object sender, ReferenceInsertionEventArgs e)
{
var originalString = e.OriginalValue as string;
if (originalString == null) return;
e.NewValue = HtmlEncode(originalString);
}
private static string HtmlEncode(string value)
{
return value
.Replace("&", "&")
.Replace("<", "<")
.Replace(">", ">")
.Replace("\"", """)
.Replace("'", "'"); // ' does not work in IE
}