From: Florian S. <ml-...@fl...> - 2024-06-20 15:56:41
|
Hi Ted, i assume "/open in the eXist database/" means to open the file in *eXide*. If yes, then check the file type in the upper right corner. If it's HTML, you can't "run" or "eval" it in eXide: Changing the file type to "xquery" should at least enable the "eval" button. For static HTML files (as in your case), you can use the arrow symbol in the lower left corner of the code area to open the file in a new browser tab: Greetings, Florian Am 20.06.24 um 01:40 schrieb Ted Hickox: > I adjusted my code and my project finally worked. My HTML document > was properly validated by my schema. But I have a new problem. > This is my HTML code: > > <html xmlns="http://www.TedTheSpeedlearner.com > <http://www.TedTheSpeedlearner.com>" > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" > xsi:schemaLocation="http://www.TedTheSpeedlearner.com > <http://www.TedTheSpeedlearner.com> SVG_Ellipse_Webpage_XML_Schema.xsd"> > <head> > <title>SVG Ellipse</title> > <link rel="stylesheet" type="text/css" > href="http://localhost:8080/exist/rest/db/apps/HTML_Student/SVG_Ellipse.css"/> > <script language="javascript" > src="http://localhost:8080/exist/rest/db/apps/HTML_Student/SVG_Ellipse.js"/> > </head> > <body onload="Setup()"> > <svg id="Image_Box"> > <ellipse id="My_Ellipse"/> > </svg> > </body> > </html> > > When I open this in the eXist database, the run button is grayed > out. Is there something wrong with my code? |