[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [36662] branches/cycles/intern/cycles/doc: Cycles: remove developer docs, all moved to wiki now.

Brecht Van Lommel brechtvanlommel at pandora.be
Fri May 13 13:10:31 CEST 2011


Revision: 36662
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=36662
Author:   blendix
Date:     2011-05-13 11:10:30 +0000 (Fri, 13 May 2011)
Log Message:
-----------
Cycles: remove developer docs, all moved to wiki now.

Modified Paths:
--------------
    branches/cycles/intern/cycles/doc/CMakeLists.txt
    branches/cycles/intern/cycles/doc/generate.py
    branches/cycles/intern/cycles/doc/index.html
    branches/cycles/intern/cycles/doc/templates/reference.html

Removed Paths:
-------------
    branches/cycles/intern/cycles/doc/development/
    branches/cycles/intern/cycles/doc/templates/development.html

Modified: branches/cycles/intern/cycles/doc/CMakeLists.txt
===================================================================
--- branches/cycles/intern/cycles/doc/CMakeLists.txt	2011-05-13 10:59:30 UTC (rev 36661)
+++ branches/cycles/intern/cycles/doc/CMakeLists.txt	2011-05-13 11:10:30 UTC (rev 36662)
@@ -4,28 +4,6 @@
 SET(doc_sources
 	index.html
 
-	development/build.html
-	development/bvh.html
-	development/design.html
-	development/device_abstraction.html
-	development/displacement.html
-	development/feature_todo.html
-	development/known_issues.html
-	development/geometric_issues.html
-	development/ideas.html
-	development/index.html
-	development/kernel.html
-	development/license.html
-	development/node_guidelines.html
-	development/optimization.html
-	development/osl_gpu.html
-	development/papers.html
-	development/sobol.html
-	development/source.html
-	development/subdivision.html
-	development/threads.html
-	development/units_colors.html
-
 	reference/camera.html
 	reference/curve.html
 	reference/devices.html
@@ -60,9 +38,6 @@
 	reference/shader/volume_textures.html)
 
 SET(doc_extra
-	development/images/rng_lcg_50_pass.png
-	development/images/rng_sobol_50_pass.png
-	development/threads.svg
 	reference/camera_ortho.svg
 	reference/camera_persp.svg
 	reference/material/material.svg
@@ -70,7 +45,6 @@
 	style/style.css)
 
 SET(doc_templates
-	templates/development.html
 	templates/footer.html
 	templates/header.html
 	templates/nodes.html

Modified: branches/cycles/intern/cycles/doc/generate.py
===================================================================
--- branches/cycles/intern/cycles/doc/generate.py	2011-05-13 10:59:30 UTC (rev 36661)
+++ branches/cycles/intern/cycles/doc/generate.py	2011-05-13 11:10:30 UTC (rev 36662)
@@ -16,7 +16,7 @@
 
 # version
 def get_version():
-	proc = subprocess.Popen(['git', 'describe', '--tags'], stdout=subprocess.PIPE)
+	proc = subprocess.Popen(['svnversion'], stdout=subprocess.PIPE)
 	out, err = proc.communicate()
 	return out
 
@@ -34,7 +34,6 @@
 # templates
 header = open("templates/header.html", "r").read()
 ref = open("templates/reference.html", "r").read()
-dev = open("templates/development.html", "r").read()
 index = open("templates/index.html", "r").read()
 nodes = open("templates/nodes.html", "r").read()
 footer = open("templates/footer.html", "r").read()
@@ -63,8 +62,6 @@
 	f.write(process(base, title, ref))
 	if from_file.startswith("reference/shader"):
 		f.write(process(base, title, nodes))
-elif from_file.startswith("development"):
-	f.write(process(base, title, dev))
 else:
 	f.write(process(base, title, index))
 

Modified: branches/cycles/intern/cycles/doc/index.html
===================================================================
--- branches/cycles/intern/cycles/doc/index.html	2011-05-13 10:59:30 UTC (rev 36661)
+++ branches/cycles/intern/cycles/doc/index.html	2011-05-13 11:10:30 UTC (rev 36662)
@@ -4,8 +4,6 @@
 <br/>
 <span style="font-size: 1.5em;"><a href="@base/reference at index">Reference</a></span><br/>
 <br/>
-<span style="font-size: 1.5em;"><a href="@base/development at index">Developer Notes</a></span><br/>
 <br/>
-<br/>
 </center>
 

Deleted: branches/cycles/intern/cycles/doc/templates/development.html
===================================================================
--- branches/cycles/intern/cycles/doc/templates/development.html	2011-05-13 10:59:30 UTC (rev 36661)
+++ branches/cycles/intern/cycles/doc/templates/development.html	2011-05-13 11:10:30 UTC (rev 36662)
@@ -1,50 +0,0 @@
-
-<!-- TITLE -->
-
-<div class="logo-page">
-<div style="float: left;">
-<a href="@base/development at index" class="logolink">Cycles Developer Notes</a> <span class="version">@version</span>
-</div>
-<div style="float: right;">
- <span class="other"><a href="@base/reference at index">» Reference</a></span>
-</div>
-<div style="clear: both;"></div>
-</div>
-
-<!-- MENU -->
-
-<!-- PAGE -->
-
-<div class="page">
-
-<div class="menu menu-left">
-
-<h4 style="margin-top: 0;">Algorithms</h4>
-<a href="@base/development/bvh at html">BVH<br/>
-<a href="@base/development/sobol at html">Random Numbers</a><br/>
-<a href="@base/development/papers at html">Interesting Papers</a><br/>
-<a href="@base/development/geometric_issues at html">Geometric Issues</a><br/>
-<a href="@base/development/subdivision at html">Subdivision</a><br/>
-<a href="@base/development/displacement at html">Displacement</a><br/>
-
-<h3>Code</h3>
-<a href="@base/development/source at html">Source Code</a><br/>
-<a href="@base/development/build at html">Building</a><br/>
-<a href="@base/development/license at html">License</a><br/>
-<a href="@base/development/kernel at html">Kernel</a><br/>
-
-<h3>Design</h3>
-<a href="@base/development/threads at html">Threads</a><br/>
-<a href="@base/development/device_abstraction at html">Device Abstraction</a><br/>
-<a href="@base/development/units_colors at html">Units & Colors</a><br/>
-<a href="@base/development/node_guidelines at html">Node Guidelines</a><br/>
-
-<h3>Future</h3>
-<a href="@base/development/feature_todo at html">Feature ToDo</a><br/>
-<a href="@base/development/known_issues at html">Known Issues</a><br/>
-<a href="@base/development/ideas at html">Implementation Ideas</a><br/>
-<a href="@base/development/optimization at html">Optimization Ideas</a><br/>
-<a href="@base/development/osl_gpu at html">OSL on the GPU</a><br/>
-
-</div>
-

Modified: branches/cycles/intern/cycles/doc/templates/reference.html
===================================================================
--- branches/cycles/intern/cycles/doc/templates/reference.html	2011-05-13 10:59:30 UTC (rev 36661)
+++ branches/cycles/intern/cycles/doc/templates/reference.html	2011-05-13 11:10:30 UTC (rev 36662)
@@ -5,9 +5,6 @@
 <div style="float: left;">
 <a href="@base/reference at index" class="logolink">Cycles Reference</a> <span class="version">@version</span>
 </div>
-<div style="float: right;">
- <span class="other"><a href="@base/development at index">» Developer Notes</a></span>
-</div>
 <div style="clear: both;"></div>
 </div>
 




More information about the Bf-blender-cvs mailing list