Difference between revisions of "Talk:Site rendering problems"

From Organic Design wiki
(not an article...)
(quickbar problem not CDATA section)
 
Line 2: Line 2:
 
:What article is it in, look at hist and see when/why it got commented out... --[[User:Nad|Nad]] 09:03, 26 Oct 2006 (NZDT)
 
:What article is it in, look at hist and see when/why it got commented out... --[[User:Nad|Nad]] 09:03, 26 Oct 2006 (NZDT)
 
::its index.php, so i have to do a little digging on the server. --[[User:Phalseid|Phalseid]] 09:35, 26 Oct 2006 (NZDT)
 
::its index.php, so i have to do a little digging on the server. --[[User:Phalseid|Phalseid]] 09:35, 26 Oct 2006 (NZDT)
<pre>
+
:::The commenting out of the CDATA section is not the problem, its defined like that in includes/EditPage.php which has not changed from teh default, the other XmlWiki's quickbar's are working and they also have that CDATA section commented out... --[[User:Nad|Nad]] 10:38, 26 Oct 2006 (NZDT)
/*<![CDATA[*/
 
document.writeln("<div id='toolbar'>");
 
addButton('/wiki/skins/common/images/button_bold.png','Bold text','\'\'\'','\'\'\'','Bold text');
 
addButton('/wiki/skins/common/images/button_italic.png','Italic text','\'\'','\'\'','Italic text');
 
addButton('/wiki/skins/common/images/button_link.png','Internal link','[[',']]','Link title');
 
addButton('/wiki/skins/common/images/button_extlink.png','External link (remember http:// prefix)','[',']','http://www.example.com link title');
 
addButton('/wiki/skins/common/images/button_headline.png','Level 2 headline','\n== ',' ==\n','Headline text');
 
addButton('/wiki/skins/common/images/button_image.png','Embedded image','[[Image:',']]','Example.jpg');
 
addButton('/wiki/skins/common/images/button_media.png','Media file link','[[Media:',']]','Example.mp3');
 
addButton('/wiki/skins/common/images/button_math.png','Mathematical formula (LaTeX)','\<math\>','\</math\>','Insert formula here');
 
addButton('/wiki/skins/common/images/button_nowiki.png','Ignore wiki formatting','\<nowiki\>','\</nowiki\>','Insert non-formatted text here');
 
addButton('/wiki/skins/common/images/button_sig.png','Your signature with timestamp','--~~~~','','');
 
addButton('/wiki/skins/common/images/button_hr.png','Horizontal line (use sparingly)','\n----\n','','');
 
addInfobox('Click a button to get an example text','Please enter the text you want to be formatted.\\n It will be shown in the infobox for copy and pasting.\\nExample:\\n$1\\nwill become:\\n$2');
 
document.writeln("</div>");
 
/*]]>*/
 
</pre>
 

Latest revision as of 21:38, 25 October 2006

i noticed that a big chunk of code seems to be commented out...not sure where this is coming from, but found it by view source:

What article is it in, look at hist and see when/why it got commented out... --Nad 09:03, 26 Oct 2006 (NZDT)
its index.php, so i have to do a little digging on the server. --Phalseid 09:35, 26 Oct 2006 (NZDT)
The commenting out of the CDATA section is not the problem, its defined like that in includes/EditPage.php which has not changed from teh default, the other XmlWiki's quickbar's are working and they also have that CDATA section commented out... --Nad 10:38, 26 Oct 2006 (NZDT)