]> code.citadel.org Git - citadel.git/commitdiff
* Every generated page now includes a meta tag to disable evil "smart tags"
authorArt Cancro <ajc@citadel.org>
Thu, 28 Jun 2001 15:03:49 +0000 (15:03 +0000)
committerArt Cancro <ajc@citadel.org>
Thu, 28 Jun 2001 15:03:49 +0000 (15:03 +0000)
  (see http://smarttags.manilasites.com/ for more information)

webcit/ChangeLog
webcit/roomops.c
webcit/webcit.c

index 89b84afbff28597bd97ea4f9a07d4f3ea16b2e99..1fbb577ccf742465599fd8dc9d7f516e3e108085 100644 (file)
@@ -1,4 +1,8 @@
 $Log$
+Revision 300.2  2001/06/28 15:03:49  ajc
+* Every generated page now includes a meta tag to disable evil "smart tags"
+  (see http://smarttags.manilasites.com/ for more information)
+
 Revision 300.1  2001/06/28 02:39:54  ajc
 * Placated users who whine about privacy policy by adding MESG ROOMACCESS to
   the screen where you can create a room...
@@ -596,3 +600,4 @@ Sun Dec  6 19:50:55 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
+
index 36db3899f3edd53d3c795807e6ed01545299b9e4..b89081d80f9a0458a0e037b355fd48938d4ebe6d 100644 (file)
@@ -388,6 +388,7 @@ void gotoroom(char *gname, int display_name)
 
                wprintf("<HTML><HEAD>\n"
                        "<META HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\">\n"
+                       "<meta name=\"MSSmartTagsPreventParsing\" content=\"TRUE\">\n"
                        "</HEAD>\n");
                do_template("background.html");
        }
index a957af4ae8dbcddc95d06ee284497e91ab4a0802..49d52eccadf11718d1a6bd378b5df353fdb1ae1c 100644 (file)
@@ -323,7 +323,8 @@ void output_headers(int controlcode)
                escputs(serv_info.serv_humannode);
                wprintf("</TITLE>\n"
                        "<META HTTP-EQUIV=\"Expires\" CONTENT=\"0\">\n"
-                       "<META HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\">\n");
+                       "<META HTTP-EQUIV=\"Pragma\" CONTENT=\"no-cache\">\n"
+                       "<meta name=\"MSSmartTagsPreventParsing\" content=\"TRUE\">\n");
                if (refresh30) wprintf(
                        "<META HTTP-EQUIV=\"refresh\" CONTENT=\"30\">\n");
                wprintf("</HEAD>\n");