[ros-diffs] [cfinck] 29515: Replace the hard-coded menu in the Wiki skin by readfile() statements, which include autogenerated menu files of RosCMS (getbuilds does it the same)

cfinck at svn.reactos.org cfinck at svn.reactos.org
Thu Oct 11 21:55:03 CEST 2007


Author: cfinck
Date: Thu Oct 11 23:55:03 2007
New Revision: 29515

URL: http://svn.reactos.org/svn/reactos?rev=29515&view=rev
Log:
Replace the hard-coded menu in the Wiki skin by readfile() statements, which include autogenerated menu files of RosCMS (getbuilds does it the same)

Modified:
    trunk/web/reactos.org/htdocs/wiki/skins/RosCMS.php

Modified: trunk/web/reactos.org/htdocs/wiki/skins/RosCMS.php
URL: http://svn.reactos.org/svn/reactos/trunk/web/reactos.org/htdocs/wiki/skins/RosCMS.php?rev=29515&r1=29514&r2=29515&view=diff
==============================================================================
--- trunk/web/reactos.org/htdocs/wiki/skins/RosCMS.php (original)
+++ trunk/web/reactos.org/htdocs/wiki/skins/RosCMS.php Thu Oct 11 23:55:03 2007
@@ -95,35 +95,11 @@
 <body <?php if($this->data['body_ondblclick']) { echo "ondblclick=\"". $this->text('body_ondblclick') ."\""; } ?>
 <?php if($this->data['body_onload']) { echo "onload=\"". $this->text('body_onload') ."\""; } ?>
  class="mediawiki <?php $this->text('nsclass') ?> <?php $this->text('dir') ?> <?php $this->text('pageclass') ?>">
- 
-<div id="top">
-	<div id="topMenu"> 
-		<!-- 
-			Use <p> to align things for links/lynx, then in the css make it
-			margin: 0; and use text-align: left/right/etc;.
-		-->
-		<p align="center"> 
-			<a href="/?page=index">Home</a> <font color="#ffffff">|</font> 
-			<a href="/?page=about">Info</a> <font color="#ffffff">|</font> 
-			<a href="/?page=community">Community</a> <font color="#ffffff">|</font> 
-			<a href="/?page=dev">Development</a> <font color="#ffffff">|</font> 
-			<a href="/roscms/?page=user">myReactOS</a>
-		</p>
-	</div>
-</div>
-
-<table border="0" width="100%" cellpadding="0" cellspacing="0">
-	<tr valign="top">
-		<td width="147" id="leftNav">
-			<div class="navTitle">Navigation</div>
-			<ol>
-				<li><a href="/?page=index">Home</a></li>
-				<li><a href="/?page=about">Info</a></li>
-				<li><a href="/?page=community">Community</a></li>
-				<li><a href="/?page=dev">Development</a></li>
-				<li><a href="/roscms/?page=user">myReactOS</a></li>
-			</ol>
-			<p></p>
+
+<?php
+	readfile("http://www.reactos.org/en/subsys_extern_menu_top.html");
+	readfile("http://www.reactos.org/en/subsys_extern_menu_left.html");
+?>
 
 			<div class="navTitle">Wiki</div>
 			<ol>




More information about the Ros-diffs mailing list