Root/
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 | /* * * C++ Portable Types Library (PTypes) * Version 2.1.1 Released 27-Jun-2007 * * Copyright (C) 2001-2007 Hovik Melikyan * * */ #include <stdlib.h> #include <stdio.h> #include <ptypes.h> #include <ptime.h> #include "config.h" #include "sysutils.h" #include "utils.h" #include "urlutils.h" USING_PTYPES char trail_char( const string& s) { if (isempty(s)) return 0; else return *(pconst(s) + length(s) - 1); } void trunc_trail_char(string& s) { if (isempty(s)) return ; else setlength(s, length(s) - 1); } static const cset htchars = "<>&\"~00" ; void html_encode(outstm& s, const char * p) { while (*p != 0) { const char * b = p; while (!(*p & htchars)) p++; s.write(b, p - b); switch (*p) { case '<' : s.put( "<" ); break ; case '>' : s.put( ">" ); break ; case '&' : s.put( "&" ); break ; case '"' : s.put("""); break ; case '\xa0' : s.put( " " ); break ; } if (*p != 0) p++; } } void std_html_header(outstm& s, const string& title) { s.put( "<html><head>\n" ); s.put( "<title>" ); html_encode(s, title); s.put( "</title>\n" ); s.put(STD_CSS); s.put( "</head><body>\n" ); s.put( "<h3><br>" ); html_encode(s, title); s.put( "</h3>\n" ); } void std_html_footer(outstm& s) { s.put( "<p><hr noshade size=1>" ); s.put(SERVER_APP_NAME); s.put( " at " ); s.put(cfg_server_name); if (cfg_port != DEF_HTTP_PORT) s.put( ':' + itostring(cfg_port)); s.put("</p>\n<script> (function(i,s,o,g,r,a,m){i[ 'GoogleAnalyticsObject' ]=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1* new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document, 'script' , '//www.google-analytics.com/analytics.js' , 'ga' ); ga( 'create' , 'UA-41898676-1' , 'srchub.org' ); ga( 'send' , 'pageview' ); |
Source at commit 209d6fa3805c created 11 years 10 months ago. By Nathan Adams, Updating tparray to use variants as array because tpodlist was causing variant data corruption |
---|