On Wed, 25 Nov 2015 21:18:25 +0100 "Leif Halvard Silli" <verktyst...@russisk.no> wrote:
> This causes a problem: You are responsible for a collection of Web > pages > - such as a Web site - and you would like to hand over responsibility > of creating maintaining certaint fragments, only, to someone else. > You do not want to let that other person edit the entire page - you > only want him or her to edit that «Quote of today» section. Also, you > do not want to have to 'dig out' the useful fragment from a document > that contains lots of unnecessary stuff. You want the fragment to be > ready to be inserted once it has been edited. > > **Solution? XHTML to the resque- In tandemn with XmlMindXmlEditor.** Hi Leif, Yours is indeed a cool solution, but it's not the only solution. The solution I use is to invoke a very short javascript file, and it's that javascript file that gets changed. For instance, here's Troubleshooters.Com's monthfea.js file for November 2015 (sorry for the email wrap): <!-- //HIDE FROM NON-JAVASCRIPT BROWSERS ======================================================= function loaddiv() { elm = document.getElementById('monthfea'); line1='<p class="monthfea">November 2015 featured book:</p>'; line2='<p class="monthfea"><a href="http://www.troubleshooters.com/bookstore/ttech.htm">Troubleshooting Techniques<br/>of the Successful Technologist</a></p>'; elm.innerHTML=line1+line2; } //--> ======================================================= And the following is how it's used on the home page and about 15 other pages (sorry for the email wrap): ======================================================= <div class="monthfea" id="monthfea"> <p class="monthfea">See the <a href="http://www.troubleshooters.com/bookstore/">Troubleshooters.Com Bookstore</a>.</p> </div> ======================================================= You can see the end result in the yellow box titled "Featured book" near the top of http://www.troubleshooters.com/ Your way avoids Google's downgrading caused by external javascript. My way removes the text the person edits into its own file and enables multiple web pages to be modified by changing that one file. I think what I did could be better accomplished by server side includes, but I wasn't sure my web host would work with server side includes. SteveT Steve Litt November 2015 featured book: Troubleshooting Techniques of the Successful Technologist http://www.troubleshooters.com/techniques -- XMLmind XML Editor Support List xmleditor-support@xmlmind.com http://www.xmlmind.com/mailman/listinfo/xmleditor-support