Modified: incubator/openmeetings/trunk/singlewebapp/xdocs/installation.xml URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/xdocs/installation.xml?rev=1363674&r1=1363673&r2=1363674&view=diff ============================================================================== --- incubator/openmeetings/trunk/singlewebapp/xdocs/installation.xml (original) +++ incubator/openmeetings/trunk/singlewebapp/xdocs/installation.xml Fri Jul 20 08:24:52 2012 @@ -29,7 +29,7 @@ </a> . </p> - <p> + <div> <a href="downloads.html" rel="nofollow"> <img src="images/installation_instructions.png" alt="Grafik" /> </a> @@ -45,7 +45,7 @@ for more options </i> </p> - </p> + </div> <ol> <li> <b>Recommendation for production environment</b> @@ -54,7 +54,7 @@ For production environment you should consider using <a href="MySQLConfig.html">MySQL</a> , - <a href="/PostgresConfig.html">Postgres</a> + <a href="PostgresConfig.html">Postgres</a> , or for example <a href="IBMDB2Config.html">IBM DB2</a> , or @@ -204,16 +204,16 @@ rel="nofollow">blog-entry</a> </li> <li> - <a href="/p/openmeetings/wiki/VMWareImageDebian051">VMWareImageDebian051</a> + <a href="http://code.google.com/p/openmeetings/wiki/VMWareImageDebian051">VMWareImageDebian051</a> </li> <li> - <a href="/p/openmeetings/wiki/VMWareImageMoodlePackOM052">VMWareImageMoodlePackOM052</a> + <a href="http://code.google.com/p/openmeetings/wiki/VMWareImageMoodlePackOM052">VMWareImageMoodlePackOM052</a> </li> <li> - <a href="/p/openmeetings/wiki/VMImageRev2056">VMImageRev2056</a> + <a href="http://code.google.com/p/openmeetings/wiki/VMImageRev2056">VMImageRev2056</a> </li> <li> - <a href="/p/openmeetings/wiki/VMWareImageRunningOpenmeetingsV1_0RC1">VMWareImageRunningOpenmeetingsV1_0RC1</a> + <a href="http://code.google.com/p/openmeetings/wiki/VMWareImageRunningOpenmeetingsV1_0RC1">VMWareImageRunningOpenmeetingsV1_0RC1</a> </li> </ul> </section> @@ -250,7 +250,7 @@ ( <i>cient-side</i> ). - <a href="/p/openmeetings/wiki/RecommendedHardwareList">See all recommendations</a> + <a href="http://code.google.com/p/openmeetings/wiki/RecommendedHardwareList">See all recommendations</a> for cameras, headsets and speakerphones. </li> </ul> @@ -338,10 +338,7 @@ to move red5\wrapper\wrapper.exe to red5\wrapper.exe. Then change some path in conf\wrapper.conf (like ..\lib\foo.jar to lib\foo.jar). And finally change the register key in - HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet - <a href="/p/openmeetings/w/edit/CurrentControlSet">?</a> - \Services\Red5\ImagePath - <a href="/p/openmeetings/w/edit/ImagePath">?</a> + HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Red5\ImagePath to point to the new wrapper. </li> <li>
Modified: incubator/openmeetings/trunk/singlewebapp/xdocs/stylesheets/project.xml URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/xdocs/stylesheets/project.xml?rev=1363674&r1=1363673&r2=1363674&view=diff ============================================================================== --- incubator/openmeetings/trunk/singlewebapp/xdocs/stylesheets/project.xml (original) +++ incubator/openmeetings/trunk/singlewebapp/xdocs/stylesheets/project.xml Fri Jul 20 08:24:52 2012 @@ -12,8 +12,10 @@ See the License for the specific language governing permissions and limitations under the License. --> -<project name="Apache OpenMeetings Project" - href="http://incubator.apache.org/openmeetings/"> +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="project.xsd" + name="Apache OpenMeetings Project" + href="http://incubator.apache.org/openmeetings/"> <title>Apache OpenMeetings [Incubating]</title> <!-- --> @@ -102,6 +104,7 @@ <subitem name="Navigation" href="/Navigation.html" /> <subitem name="Calendar and timezone" href="/CalendarAndTimezone.html" /> <subitem name="Custom room type" href="/CustomRoomTypeHowTo.html" /> + <subitem name="Custom ctypt mechanism" href="/CustomCryptMechanism.html" /> <subitem name="General Configuration" href="/GeneralConfiguration.html" /> </item> <item name="Security" > Added: incubator/openmeetings/trunk/singlewebapp/xdocs/stylesheets/project.xsd URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/xdocs/stylesheets/project.xsd?rev=1363674&view=auto ============================================================================== --- incubator/openmeetings/trunk/singlewebapp/xdocs/stylesheets/project.xsd (added) +++ incubator/openmeetings/trunk/singlewebapp/xdocs/stylesheets/project.xsd Fri Jul 20 08:24:52 2012 @@ -0,0 +1,63 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + --> +<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"> + <xs:element name="project"> + <xs:complexType> + <xs:sequence> + <xs:element ref="title"/> + <xs:element ref="logo"/> + <xs:element ref="body"/> + </xs:sequence> + <xs:attribute name="href" use="required" type="xs:anyURI"/> + <xs:attribute name="name" use="required"/> + </xs:complexType> + </xs:element> + <xs:element name="title" type="xs:string"/> + <xs:element name="logo"> + <xs:complexType mixed="true"> + <xs:attribute name="href" use="required"/> + </xs:complexType> + </xs:element> + <xs:element name="body"> + <xs:complexType> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="menu"/> + </xs:sequence> + </xs:complexType> + </xs:element> + <xs:element name="menu"> + <xs:complexType> + <xs:sequence> + <xs:element maxOccurs="unbounded" ref="item"/> + </xs:sequence> + <xs:attribute name="name" use="required"/> + </xs:complexType> + </xs:element> + <xs:element name="item"> + <xs:complexType> + <xs:sequence> + <xs:element minOccurs="0" maxOccurs="unbounded" ref="subitem"/> + </xs:sequence> + <xs:attribute name="href" type="xs:anyURI"/> + <xs:attribute name="name" use="required"/> + </xs:complexType> + </xs:element> + <xs:element name="subitem"> + <xs:complexType> + <xs:attribute name="href" use="required"/> + <xs:attribute name="name" use="required"/> + </xs:complexType> + </xs:element> +</xs:schema> Modified: incubator/openmeetings/trunk/singlewebapp/xdocs/stylesheets/site.vsl URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/xdocs/stylesheets/site.vsl?rev=1363674&r1=1363673&r2=1363674&view=diff ============================================================================== --- incubator/openmeetings/trunk/singlewebapp/xdocs/stylesheets/site.vsl (original) +++ incubator/openmeetings/trunk/singlewebapp/xdocs/stylesheets/site.vsl Fri Jul 20 08:24:52 2012 @@ -49,7 +49,7 @@ limitations under the License. #foreach ( $items in $feature.getChildren() ) #if ($items.getName().equals("image")) <p> - <a class="fancybox-buttons" data-fancybox-group="button" href="$items.getAttribute("fullhref").getValue()"> + <a class="group1 fancybox-buttons" href="$items.getAttribute("fullhref").getValue()"> <img src="$items.getAttribute("href").getValue()" alt="" width="$items.getAttribute("width").getValue()" height="$items.getAttribute("height").getValue()" /> </a>
