Sophie

Sophie

distrib > Mandriva > 2010.1 > i586 > media > contrib-updates > by-pkgid > 9b1d8ed04bd6642d162034533b805d28 > files > 35

apache-mod_python-3.3.1-14.1mdv2010.2.i586.rpm

<%-- $Id: psp_parser.psp 332353 2005-11-10 19:00:55Z jgallacher $ --%>
# format of this file
# Comment lines are ignored (python or psp).
# Lines beginning with test will be included, which 
# includes lines generated by python code.
# Blank lines are ignored.
#
# The test format is "test:expected_result:test_string$"
# where the string '$' is a token to indicate the end of the test line.
# The '$' character was chosen as it's unlikely to be in the output of
# the parser.
# In processing the expected_result,  the '-' character will be replace
# by the '\' character.
# The following substitutions will also be made in the expect_result
# LF	linefeed character
# CR 	carriage-return character
# TB	tab character


# BEGIN$
test:-n:\n$
test:-r:\r$
test:-t:\t$
test:-r-n:\r\n$
<%
req.write("test:-n:\\n$")
%>

<%
test_str='single_quotes'
%>
test:'single_quotes':'<%= test_str %>'$
<%
test_str='double_quotes'
%>
test:"double_quotes":"<%= test_str %>"$