/usr/share/axiom-20170501/src/algebra/AXSERV.spad is in axiom-source 20170501-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 | )abbrev package AXSERV AxiomServer
++ Author: Arthur Ralfs, Timothy Daly, Alfredo Portes
++ Description:
++ This package provides a functions to support a web server for the
++ new Axiom Browser functions.
AxiomServer() : SIG == CODE where
SIG ==> with
axServer : (Integer, SExpression->Void) -> Void
multiServ : SExpression -> Void
getDatabase : (String,String) -> String
CODE ==> add
getFile: (SExpression,String) -> Void
getCommand: (SExpression,String) -> Void
getDescription: String -> String
getInterp: (SExpression,String) -> Void
getLisp: (SExpression,String) -> Void
getShow: (SExpression,String) -> Void
lastStep: () -> String
lastType: () -> String
formatMessages: String -> String
makeErrorPage: String -> String
getSourceFile: (String,String,String) -> String
makeDBPage: String -> String
getContentType: String -> String
readTheFile: SExpression -> String
outputToSocket: (SExpression,String,String) -> Void
getDatabase(constructor:String, key:String):String ==
answer:=string GETDATABASE(INTERN$Lisp constructor,INTERN$Lisp key)$Lisp
-- WriteLine$Lisp concat ["getDatabase: ",constructor," ",key," ",answer]
answer
axServer(port:Integer,serverfunc:SExpression->Void):Void ==
WriteLine$Lisp "listening on port 8085"
s := SiSock(port,serverfunc)$Lisp
-- To listen for just one connection and then close the socket
-- uncomment i := 0.
i:Integer := 1
while (i > 0) repeat
if not null?(SiListen(s)$Lisp)$SExpression then
w := SiAccept(s)$Lisp
serverfunc(w)
multiServ(s:SExpression):Void ==
-- WriteLine("multiServ begin")$Lisp
headers:String := ""
char:String
-- read in the http headers
while (char := _
STRING(READ_-CHAR_-NO_-HANG(s,NIL$Lisp,'EOF)$Lisp)$Lisp) ^= "EOF"_
repeat
headers := concat [headers,char]
-- sayTeX$Lisp headers
StringMatch("([^ ]*)", headers)$Lisp
u:UniversalSegment(Integer)
u := segment(MatchBeginning(1)$Lisp+1,_
MatchEnd(1)$Lisp)$UniversalSegment(Integer)
reqtype:String := headers.u
-- sayTeX$Lisp concat ["request type: ",reqtype]
if reqtype = "GET" then
StringMatch("GET ([^ ]*)",headers)$Lisp
u:UniversalSegment(Integer)
u := segment(MatchBeginning(1)$Lisp+1,_
MatchEnd(1)$Lisp)$UniversalSegment(Integer)
getFile(s,headers.u)
if reqtype = "POST" and StringMatch("command=(.*)$",headers)$Lisp > 0
then
u:UniversalSegment(Integer)
u := segment(MatchBeginning(1)$Lisp+1,_
MatchEnd(1)$Lisp)$UniversalSegment(Integer)
getCommand(s,headers.u)
if reqtype = "POST" and StringMatch("interpcall=(.*)$",headers)$Lisp > 0
then
u:UniversalSegment(Integer)
u := segment(MatchBeginning(1)$Lisp+1,_
MatchEnd(1)$Lisp)$UniversalSegment(Integer)
getInterp(s,headers.u)
if reqtype = "POST" and StringMatch("lispcall=(.*)$",headers)$Lisp > 0
then
u:UniversalSegment(Integer)
u := segment(MatchBeginning(1)$Lisp+1,_
MatchEnd(1)$Lisp)$UniversalSegment(Integer)
getLisp(s,headers.u)
if reqtype = "POST" and StringMatch("showcall=(.*)$",headers)$Lisp > 0
then
u:UniversalSegment(Integer)
u := segment(MatchBeginning(1)$Lisp+1,_
MatchEnd(1)$Lisp)$UniversalSegment(Integer)
getShow(s,headers.u)
-- WriteLine("multiServ end")$Lisp
-- WriteLine("")$Lisp
getFile(s:SExpression,pathvar:String):Void ==
-- WriteLine("")$Lisp
WriteLine$Lisp concat ["getFile: ",pathvar]
params:=split(pathvar,char "?")
if #params = 1
then if not null? PATHNAME_-NAME(PATHNAME(pathvar)$Lisp)$Lisp
then
contentType:String := getContentType(pathvar)
q:=Open(pathvar)$Lisp
if null? q
then
q := MAKE_-STRING_-INPUT_-STREAM(_
makeErrorPage("File doesn't exist"))$Lisp
else
q:=MAKE_-STRING_-INPUT_-STREAM(_
makeErrorPage("Problem with file path"))$Lisp
else
q:=MAKE_-STRING_-INPUT_-STREAM(makeDBPage(pathvar))$Lisp
outputToSocket(s,readTheFile(q),contentType)
makeErrorPage(msg:String):String ==
page:String:="<!DOCTYPE html PUBLIC "
page:=page "_"-//W3C//DTD XHTML 1.0 Strict//EN_" "
page:=page "_"http://www.w3.org/TR/xthml1/DTD/xhtml1-strict.dtd_">"
page:=page "<html xmlns=_"http://www.w3.org/1999/xhtml_">"
page:=page "<head><title>Error</title></head><body>" msg "</body></html>"
-- WriteLine(page)$Lisp
page
getDescription(dom:String):String ==
d:=CADR(CADAR(GETDATABASE(INTERN(dom)$Lisp,'DOCUMENTATION)$Lisp)$Lisp)$Lisp
string d
getSourceFile(constructorkind:String,_
abbreviation:String,_
dom:String):String ==
sourcekey:="@<<" constructorkind " " abbreviation " " dom ">>"
-- WriteLine(sourcekey)$Lisp
sourcefile:=lowerCase last split(getDatabase(dom,"SOURCEFILE"),char "/")
sourcefile:=sourcefile ".pamphlet"
makeDBPage(pathvar:String):String ==
params:List(String):=split(pathvar,char "?")
for i in 1..#params repeat WriteLine$Lisp concat ["params: ",params.i]
pathparts:List(String):=split(params.1,char "/")
for i in 1..#pathparts repeat
WriteLine$Lisp concat ["pathparts: ",pathparts.i]
pagename:=last pathparts
WriteLine$Lisp concat ["pagename: ",pagename]
cmd:=first split(pagename,char ".")
WriteLine$Lisp concat ["cmd: ",cmd]
args:List(String):=split(params.2, char "&")
for i in 1..#args repeat WriteLine$Lisp concat ["args: ",args.i]
page:String:="<!DOCTYPE html PUBLIC "
page:=page "_"-//W3C//DTD XHTML 1.0 Strict//EN_" "
page:=page "_"http://www.w3.org/TR/xthml1/DTD/xhtml1-strict.dtd_">"
page:=page "<html xmlns=_"http://www.w3.org/1999/xhtml_">"
page:=page "<head>"
page:=page "<meta http-equiv=_"Content-Type_" content=_"text/html_""
page:=page " charset=_"us-ascii_"/>"
page:=page "<title>" cmd " " args.1 "</title></head>"
page:=page "<style> html { background-color: #ECEA81; } </style>"
page:=page "<body>"
cmd = "db" =>
dom:=args.1
domi:=INTERN(dom)$Lisp
-- category, domain, or package?
constructorkind:=getDatabase(dom,"CONSTRUCTORKIND")
abbreviation:=getDatabase(dom, "ABBREVIATION")
sourcefile:=getDatabase(dom, "SOURCEFILE")
constructorkind.1:=upperCase constructorkind.1
description:=getDescription(dom)
page:=page "<div align=_"center_">"
page:=page "<img align=_"middle_" src=_"doctitle.png_"/></div><hr/>"
page:=page "<div align=_"center_">" constructorkind " " dom "</div><hr/>"
page:=page "<table>"
page:=page "<tr><td valign=_"top_">Description: </td>"
page:=page "<td>" description "</td></tr>"
page:=page "<tr><td>Abbreviation: </td><td>" abbreviation "</td></tr>"
page:=page "<tr><td>Source File: </td><td>" sourcefile "</td></tr>"
page:=page "</table><hr/>"
page:=page "<table>"
page:=page "<tr>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=Ancestors_">Ancestors</a>"
page:=page "</td>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=Dependents_">Dependents</a>"
page:=page "</td>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=Exports_">Exports</a>"
page:=page "</td>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=Parents_">Parents</a>"
page:=page "</td>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=Users_">Users</a>"
page:=page "</td>"
page:=page "</tr>"
page:=page "<tr>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=Attributes_">Attributes</a>"
page:=page "</td>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=Examples_">Examples</a>"
page:=page "</td>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=Operations_">Operations</a>"
page:=page "</td>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=SearchPath_">Search Path</a>"
page:=page "</td>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=Uses_">Uses</a>"
page:=page "</td>"
page:=page "</tr>"
page:=page "</table>"
cmd = "op" =>
dom:=args.1
domi:=INTERN(dom)$Lisp
-- category, domain, or package?
constructorkind:=getDatabase(dom,"CONSTRUCTORKIND")
abbreviation:=getDatabase(dom, "ABBREVIATION")
sourcefile:=getDatabase(dom, "SOURCEFILE")
constructorkind.1:=upperCase constructorkind.1
description:=getDescription(dom)
page:=page "<div align=_"center_">"
page:=page "<img align=_"middle_" src=_"doctitle.png_"/></div><hr/>"
page:=page "<div align=_"center_">" constructorkind " " dom "</div><hr/>"
page:=page "<table>"
page:=page "<tr><td valign=_"top_">Description: </td>"
page:=page "<td>" description "</td></tr>"
page:=page "<tr><td>Abbreviation: </td><td>" abbreviation "</td></tr>"
page:=page "<tr><td>Source File: </td><td>" sourcefile "</td></tr>"
page:=page "</table><hr/>"
page:=page "<table>"
page:=page "<tr>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=Ancestors_">Ancestors</a>"
page:=page "</td>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=Dependents_">Dependents</a>"
page:=page "</td>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=Exports_">Exports</a>"
page:=page "</td>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=Parents_">Parents</a>"
page:=page "</td>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=Users_">Users</a>"
page:=page "</td>"
page:=page "</tr>"
page:=page "<tr>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=Attributes_">Attributes</a>"
page:=page "</td>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=Examples_">Examples</a>"
page:=page "</td>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=Operations_">Operations</a>"
page:=page "</td>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=SearchPath_">Search Path</a>"
page:=page "</td>"
page:=page "<td>"
page:=page "<a href=_"?" dom "&lookup=Uses_">Uses</a>"
page:=page "</td>"
page:=page "</tr>"
page:=page "</table>"
-- WriteLine(page)$Lisp
page:=page "</body></html>"
page
readTheFile(q:SExpression):String ==
-- WriteLine("begin reading file")$Lisp
r := MAKE_-STRING_-OUTPUT_-STREAM()$Lisp
SiCopyStream(q,r)$Lisp
filestream:String := GET_-OUTPUT_-STREAM_-STRING(r)$Lisp
CLOSE(r)$Lisp
CLOSE(q)$Lisp
-- WriteLine("end reading file")$Lisp
filestream
outputToSocket(s:SExpression,filestream:String,contentType:String):Void ==
filelength:String := string(#filestream)
file:String := ""
nl:String:=STRING(NewLine$Lisp)$Lisp
file := concat ["Content-Length: ",filelength,nl,nl,file]
file := concat ["Connection: close",nl,file]
file := concat ["Content-Type: ",contentType,nl,file]
file := concat ["HTTP/1.1 200 OK",nl,file]
file := concat [file,filestream]
-- WriteLine(file)$Lisp
f:=MAKE_-STRING_-INPUT_-STREAM(file)$Lisp
SiCopyStream(f,s)$Lisp
CLOSE(f)$Lisp
CLOSE(s)$Lisp
getCommand(s:SExpression,command:String):Void ==
WriteLine$Lisp concat ["getCommand: ",command]
SETQ(tmpmathml$Lisp, MAKE_-STRING_-OUTPUT_-STREAM()$Lisp)$Lisp
SETQ(tmpalgebra$Lisp, MAKE_-STRING_-OUTPUT_-STREAM()$Lisp)$Lisp
SETQ(savemathml$Lisp, _$texOutputStream$Lisp)$Lisp
SETQ(savealgebra$Lisp, _$algebraOutputStream$Lisp)$Lisp
SETQ(_$texOutputStream$Lisp,tmpmathml$Lisp)$Lisp
SETQ(_$algebraOutputStream$Lisp,tmpalgebra$Lisp)$Lisp
ans := string parseAndEvalToStringEqNum$Lisp command
SETQ(resultmathml$Lisp,_
GET_-OUTPUT_-STREAM_-STRING(_$texOutputStream$Lisp)$Lisp)$Lisp
SETQ(resultalgebra$Lisp,_
GET_-OUTPUT_-STREAM_-STRING(_$algebraOutputStream$Lisp)$Lisp)$Lisp
SETQ(_$texOutputStream$Lisp,savemathml$Lisp)$Lisp
SETQ(_$algebraOutputStream$Lisp,savealgebra$Lisp)$Lisp
CLOSE(tmpmathml$Lisp)$Lisp
CLOSE(tmpalgebra$Lisp)$Lisp
-- Since strings returned from axiom are going to be displayed in html I
-- should really check for the characters &,<,> and replace them with
-- &,<,>.
-- At present I only check for ampersands in formatMessages.
mathml:String := string(resultmathml$Lisp)
algebra:String := string(resultalgebra$Lisp)
algebra := formatMessages(algebra)
-- At this point mathml contains the mathml for the output but does not
-- include step number or type information.
-- We should also save the command.
-- I get the type and step number from the $internalHistoryTable
axans:String := _
concat ["<div class=_"stepnum_">", lastStep(), "</div>_
<div class=_"command_">", command, "</div>_
<div class=_"algebra_">",algebra,"</div>_
<div class=_"mathml_">",mathml,"</div>_
<div class=_"type_">",lastType(),"</div>"]
-- WriteLine$Lisp concat ["mathml answer: ",mathml]
-- WriteLine$Lisp concat ["algebra answer: ",algebra]
q:=MAKE_-STRING_-INPUT_-STREAM(axans)$Lisp
SiCopyStream(q,s)$Lisp
CLOSE(q)$Lisp
CLOSE(s)$Lisp
getInterp(s:SExpression,command:String):Void ==
WriteLine$Lisp concat ["getInterp: ",command]
SETQ(tmpmathml$Lisp, MAKE_-STRING_-OUTPUT_-STREAM()$Lisp)$Lisp
SETQ(tmpalgebra$Lisp, MAKE_-STRING_-OUTPUT_-STREAM()$Lisp)$Lisp
SETQ(savemathml$Lisp, _$texOutputStream$Lisp)$Lisp
SETQ(savealgebra$Lisp, _$algebraOutputStream$Lisp)$Lisp
SETQ(_$texOutputStream$Lisp,tmpmathml$Lisp)$Lisp
SETQ(_$algebraOutputStream$Lisp,tmpalgebra$Lisp)$Lisp
ans := string parseAndEvalToStringEqNum$Lisp command
SETQ(resultmathml$Lisp,_
GET_-OUTPUT_-STREAM_-STRING(_$texOutputStream$Lisp)$Lisp)$Lisp
SETQ(resultalgebra$Lisp,_
GET_-OUTPUT_-STREAM_-STRING(_$algebraOutputStream$Lisp)$Lisp)$Lisp
SETQ(_$texOutputStream$Lisp,savemathml$Lisp)$Lisp
SETQ(_$algebraOutputStream$Lisp,savealgebra$Lisp)$Lisp
CLOSE(tmpmathml$Lisp)$Lisp
CLOSE(tmpalgebra$Lisp)$Lisp
-- Since strings returned from axiom are going to be displayed in html I
-- should really check for the characters &,<,> and replace them with
-- &,<,>.
-- At present I only check for ampersands in formatMessages.
mathml:String := string(resultmathml$Lisp)
algebra:String := string(resultalgebra$Lisp)
algebra := formatMessages(algebra)
-- At this point mathml contains the mathml for the output but does not
-- include step number or type information.
-- We should also save the command.
-- I get the type and step number from the $internalHistoryTable
axans:String := _
concat ["<div class=_"stepnum_">", lastStep(), "</div>_
<div class=_"command_">", command, "</div>_
<div class=_"algebra_">",algebra,"</div>_
<div class=_"mathml_">",mathml,"</div>_
<div class=_"type_">",lastType(),"</div>"]
-- WriteLine$Lisp concat ["mathml answer: ",mathml]
-- WriteLine$Lisp concat ["algebra answer: ",algebra]
q:=MAKE_-STRING_-INPUT_-STREAM(axans)$Lisp
SiCopyStream(q,s)$Lisp
CLOSE(q)$Lisp
CLOSE(s)$Lisp
getLisp(s:SExpression,command:String):Void ==
WriteLine$Lisp concat ["getLisp: ",command]
evalresult:=EVAL(READ_-FROM_-STRING(command)$Lisp)$Lisp
mathml:String:=string(evalresult)
-- WriteLine$Lisp concat ["getLisp: after ",mathml]
-- WriteLine$Lisp concat ["getLisp output: ",mathml]
SETQ(tmpalgebra$Lisp, MAKE_-STRING_-OUTPUT_-STREAM()$Lisp)$Lisp
SETQ(savemathml$Lisp, _$texOutputStream$Lisp)$Lisp
SETQ(savealgebra$Lisp, _$algebraOutputStream$Lisp)$Lisp
SETQ(_$texOutputStream$Lisp,tmpmathml$Lisp)$Lisp
SETQ(_$algebraOutputStream$Lisp,tmpalgebra$Lisp)$Lisp
SETQ(resultalgebra$Lisp,_
GET_-OUTPUT_-STREAM_-STRING(_$algebraOutputStream$Lisp)$Lisp)$Lisp
SETQ(_$texOutputStream$Lisp,savemathml$Lisp)$Lisp
SETQ(_$algebraOutputStream$Lisp,savealgebra$Lisp)$Lisp
CLOSE(tmpalgebra$Lisp)$Lisp
-- Since strings returned from axiom are going to be displayed in html I
-- should really check for the characters &,<,> and replace them with
-- &,<,>.
-- At present I only check for ampersands in formatMessages.
algebra:String := string(resultalgebra$Lisp)
algebra := formatMessages(algebra)
-- At this point mathml contains the mathml for the output but does not
-- include step number or type information.
-- We should also save the command.
-- I get the type and step number from the $internalHistoryTable
axans:String := _
concat ["<div class=_"stepnum_">", lastStep(), "</div>_
<div class=_"command_">", command, "</div>_
<div class=_"algebra_">",algebra,"</div>_
<div class=_"mathml_">",mathml,"</div>_
<div class=_"type_">",lastType(),"</div>"]
-- WriteLine$Lisp concat ["mathml answer: ",mathml]
-- WriteLine$Lisp concat ["algebra answer: ",algebra]
q:=MAKE_-STRING_-INPUT_-STREAM(axans)$Lisp
SiCopyStream(q,s)$Lisp
CLOSE(q)$Lisp
CLOSE(s)$Lisp
getShow(s:SExpression,showarg:String):Void ==
WriteLine$Lisp concat ["getShow: ",showarg]
realarg:=SUBSEQ(showarg,6)$Lisp
show:=_
"(progn (setq |$options| '((|operations|))) (|show| '|" realarg "|))"
-- WriteLine$Lisp concat ["getShow: ",show]
SETQ(SAVESTREAM$Lisp,_*STANDARD_-OUTPUT_*$Lisp)$Lisp
SETQ(_*STANDARD_-OUTPUT_*$Lisp,_
MAKE_-STRING_-OUTPUT_-STREAM()$Lisp)$Lisp
evalresult:=EVAL(READ_-FROM_-STRING(show)$Lisp)$Lisp
SETQ(evalresult,_
GET_-OUTPUT_-STREAM_-STRING(_*STANDARD_-OUTPUT_*$Lisp)$Lisp)$Lisp
SETQ(_*STANDARD_-OUTPUT_*$Lisp,SAVESTREAM$Lisp)$Lisp
mathml:String:=string(REPLACE_-ENTITIES(evalresult)$Lisp)
SETQ(tmpalgebra$Lisp, MAKE_-STRING_-OUTPUT_-STREAM()$Lisp)$Lisp
SETQ(savemathml$Lisp, _$texOutputStream$Lisp)$Lisp
SETQ(savealgebra$Lisp, _$algebraOutputStream$Lisp)$Lisp
SETQ(_$texOutputStream$Lisp,tmpmathml$Lisp)$Lisp
SETQ(_$algebraOutputStream$Lisp,tmpalgebra$Lisp)$Lisp
SETQ(resultalgebra$Lisp,_
GET_-OUTPUT_-STREAM_-STRING(_$algebraOutputStream$Lisp)$Lisp)$Lisp
SETQ(_$texOutputStream$Lisp,savemathml$Lisp)$Lisp
SETQ(_$algebraOutputStream$Lisp,savealgebra$Lisp)$Lisp
CLOSE(tmpalgebra$Lisp)$Lisp
-- Since strings returned from axiom are going to be displayed in html I
-- should really check for the characters &,<,> and replace them with
-- &,<,>.
-- At present I only check for ampersands in formatMessages.
algebra:String := string(resultalgebra$Lisp)
algebra := formatMessages(algebra)
-- At this point mathml contains the mathml for the output but does not
-- include step number or type information.
-- We should also save the command.
-- I get the type and step number from the $internalHistoryTable
axans:String := _
concat ["<div class=_"stepnum_">", lastStep(), "</div>_
<div class=_"command_">", showarg, "</div>_
<div class=_"algebra_">",algebra,"</div>_
<div class=_"mathml_">",mathml,"</div>_
<div class=_"type_">",lastType(),"</div>"]
-- WriteLine$Lisp concat ["mathml answer: ",mathml]
q:=MAKE_-STRING_-INPUT_-STREAM(axans)$Lisp
SiCopyStream(q,s)$Lisp
CLOSE(q)$Lisp
CLOSE(s)$Lisp
lastType():String ==
SETQ(first$Lisp,FIRST(_$internalHistoryTable$Lisp)$Lisp)$Lisp
count:Integer := 0
hisLength:Integer := LIST_-LENGTH(_$internalHistoryTable$Lisp)$Lisp
length:Integer := LIST_-LENGTH(first$Lisp)$Lisp
-- This initializes stepSav. The test is a bit of a hack, maybe I'll
-- figure out the right way to do it later.
if string stepSav$Lisp = "#<OBJNULL>" then SETQ(stepSav$Lisp, 0$Lisp)$Lisp
-- If hisLength = 0 then the history table has been reset to NIL
-- and we're starting numbering over
if hisLength = 0 then SETQ(stepSav$Lisp, 0$Lisp)$Lisp
if hisLength > 0 and
car(car(_$internalHistoryTable$Lisp)$Lisp)$Lisp ^= stepSav$Lisp then
SETQ(stepSav$Lisp,car(car(_$internalHistoryTable$Lisp)$Lisp)$Lisp)$Lisp
while count < length repeat
position(char "%",string FIRST(first$Lisp)$Lisp) = 2 =>
count := length+1
count := count +1
SETQ(first$Lisp,REST(first$Lisp)$Lisp)$Lisp
count = length + 1 =>
string SECOND(SECOND(FIRST(first$Lisp)$Lisp)$Lisp)$Lisp
""
lastStep():String ==
string car(car(_$internalHistoryTable$Lisp)$Lisp)$Lisp
formatMessages(str:String):String ==
-- WriteLine("formatMessages")$Lisp
-- I need to replace any ampersands with & and may also need to
-- replace < and > with < and >
strlist:List String
-- WriteLine(str)$Lisp
strlist := split(str,char "&")
str := ""
-- oops, if & is the last character in the string this method
-- will eliminate it. Need to redo this.
for s in strlist repeat
str := concat [str,s,"&"]
strlen:Integer := #str
str := str.(1..(#str - 5))
-- WriteLine(str)$Lisp
-- Here I split the string into lines and put each line in a "div".
strlist := split(str, char string NewlineChar$Lisp)
str := ""
-- WriteLine("formatMessages1")$Lisp
-- WriteLine(concat strlist)$Lisp
for s in strlist repeat
-- WriteLine(s)$Lisp
str := concat [str,"<div>",s,"</div>"]
str
getContentType(pathvar:String):String ==
-- WriteLine("getContentType begin")$Lisp
-- set default content type
contentType:String := "text/plain"
-- need to test for successful match?
StringMatch(".*\.(.*)$", pathvar)$Lisp
u:UniversalSegment(Integer)
u := segment(MatchBeginning(1)$Lisp+1,_
MatchEnd(1)$Lisp)$UniversalSegment(Integer)
extension:String := pathvar.u
-- WriteLine$Lisp concat ["file extension: ",extension]
-- test for extensions: html, htm, xml, xhtml, js, css
if extension = "html" then
contentType:String := "text/html"
else if extension = "htm" then
contentType:String := "text/html"
else if extension = "xml" then
contentType:String := "text/xml"
else if extension = "xhtml" then
contentType:String := "application/xhtml+xml"
else if extension = "js" then
contentType:String := "text/javascript"
else if extension = "css" then
contentType:String := "text/css"
else if extension = "png" then
contentType:String := "image/png"
else if extension = "jpg" then
contentType:String := "image/jpeg"
else if extension = "jpeg" then
contentType:String := "image/jpeg"
-- WriteLine$Lisp concat ["Content-Type: ",contentType]
-- WriteLine("getContentType end")$Lisp
contentType
|