[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[tor-commits] r24835: {} add the codeswarm config files that made the movies for tor (in projects/misc/phobos: . codeswarm)



Author: phobos
Date: 2011-06-23 02:49:11 +0000 (Thu, 23 Jun 2011)
New Revision: 24835

Added:
   projects/misc/phobos/codeswarm/
   projects/misc/phobos/codeswarm/tor-web.config
   projects/misc/phobos/codeswarm/tor.config
Log:
add the codeswarm config files that made the movies for tor website
commits and tor git commits.


Added: projects/misc/phobos/codeswarm/tor-web.config
===================================================================
--- projects/misc/phobos/codeswarm/tor-web.config	                        (rev 0)
+++ projects/misc/phobos/codeswarm/tor-web.config	2011-06-23 02:49:11 UTC (rev 24835)
@@ -0,0 +1,125 @@
+# This is a sample configuration file for code_swarm
+
+# Frame width
+Width=640
+
+# Frame height
+Height=480
+
+# Input file
+InputFile=data/tor-website-svn.xml
+
+# Particle sprite file
+ParticleSpriteFile=src/particle.png
+
+#Font Settings
+Font=SansSerif
+FontSize=11
+BoldFontSize=14
+
+# Project time per frame
+#MillisecondsPerFrame=21600000
+
+# Maximum number of Background processes
+MaxThreads=4
+
+# Optional Method instead of MillisecondsPerFrame
+FramesPerDay=4
+
+# Background in R,G,B
+Background=0,0,0
+
+# Color assignment rules
+# Keep in order, do not skip numbers. Numbers start
+# at 1.
+# 
+# Pattern:  "Label", "regex", R,G,B, R,G,B
+# Label is optional.  If it is omitted, the regex
+# will be used.
+#
+ColorAssign1="HTML",".*.html", 86,51,122, 86,51,122
+ColorAssign2="WML",".*.wml", 0,153,51, 0,153,51
+ColorAssign3="Text Files",".*.txt", 102,0,255, 102,0,255
+ColorAssign4="JPG",".*.jpg", 0,255,255, 0,255,255
+ColorAssign5="LaTeX",".*.tex", 255,255,0, 255,255,0
+ColorAssign6="Shell Scripts",".*.sh", 119,68,119, 119,68,119
+ColorAssign7="PDF",".*.pdf", 255,0,0, 255,0,0
+ColorAssign8="PNG",".*.png", 204,255,0, 204,255,0
+ColorAssign9="Manual Pages",".*.1", 238,102,68, 238,102,68
+ColorAssign10="Perl",".*.pl", 238,68,119, 238,68,119
+
+# Save each frame to an image?
+TakeSnapshots=true
+
+# Where to save each frame
+SnapshotLocation=frames/code_swarm-#####.png
+
+# Draw names (combinatory) :
+# Draw sharp names?
+DrawNamesSharp=true
+# And draw a glow around names? (Runs slower)
+DrawNamesHalos=false
+
+# Draw files (combinatory) :
+# Draw sharp files
+DrawFilesSharp=false
+# Draw fuzzy files
+DrawFilesFuzzy=true
+# Draw jelly files
+DrawFilesJelly=true
+
+# Show the Legend at start
+ShowLegend=true
+
+# Show the History at start
+ShowHistory=true
+
+# Show the Date at start
+ShowDate=true
+
+# Show edges between authors and files, mostly for debug purpose
+ShowEdges=false
+
+# Turn on Debug counts.
+ShowDebug=false
+
+# Natural distance of files to people
+EdgeLength=75
+
+# Amount of life to decrement
+EdgeDecrement=-2
+FileDecrement=-2
+PersonDecrement=-1
+
+#Speeds.
+#Optional: NodeSpeed=7.0, If used, FileSpeed and PersonSpeed need not be set.
+#
+FileSpeed=7.0
+PersonSpeed=2.0
+
+#Masses
+FileMass=1.0
+PersonMass=10.0
+
+# Life of an Edge
+EdgeLife=250
+
+# Life of a File
+FileLife=200
+
+# Life of a Person
+PersonLife=255
+
+# Highlight percent.
+# This is the amount of time that the person or
+# file will be highlighted.
+HighlightPct=5
+
+## Physics engine selection and configuration
+# Directory physics engine config files reside in.
+PhysicsEngineConfigDir=physics_engine
+# Force calculation algorithms ("PhysicsEngineLegacy", "PhysicsEngineSimple"...) :
+PhysicsEngineSelection=PhysicsEngineLegacy
+
+# OpenGL is experimental. Use at your own risk.
+UseOpenGL=false

Added: projects/misc/phobos/codeswarm/tor.config
===================================================================
--- projects/misc/phobos/codeswarm/tor.config	                        (rev 0)
+++ projects/misc/phobos/codeswarm/tor.config	2011-06-23 02:49:11 UTC (rev 24835)
@@ -0,0 +1,125 @@
+# This is a sample configuration file for code_swarm
+
+# Frame width
+Width=640
+
+# Frame height
+Height=480
+
+# Input file
+InputFile=data/tor-git-activity.xml
+
+# Particle sprite file
+ParticleSpriteFile=src/particle.png
+
+#Font Settings
+Font=SansSerif
+FontSize=11
+BoldFontSize=14
+
+# Project time per frame
+#MillisecondsPerFrame=21600000
+
+# Maximum number of Background processes
+MaxThreads=4
+
+# Optional Method instead of MillisecondsPerFrame
+FramesPerDay=4
+
+# Background in R,G,B
+Background=0,0,0
+
+# Color assignment rules
+# Keep in order, do not skip numbers. Numbers start
+# at 1.
+# 
+# Pattern:  "Label", "regex", R,G,B, R,G,B
+# Label is optional.  If it is omitted, the regex
+# will be used.
+#
+ColorAssign1="C Code",".*.c", 86,51,122, 86,51,122
+ColorAssign2="Headers",".*.h", 0,153,51, 0,153,51
+ColorAssign3="Text Files",".*.txt", 102,0,255, 102,0,255
+ColorAssign4="Makefile","Makefile.*", 0,255,255, 0,255,255
+ColorAssign5="LaTeX",".*.tex", 255,255,0, 255,255,0
+ColorAssign6="Shell Scripts",".*.sh", 119,68,119, 119,68,119
+ColorAssign7="PDF",".*.pdf", 255,0,0, 255,0,0
+ColorAssign8="Ruby",".*.rb", 204,255,0, 204,255,0
+ColorAssign9="Manual Pages",".*.1", 238,102,68, 238,102,68
+ColorAssign10="Perl",".*.pl", 238,68,119, 238,68,119
+
+# Save each frame to an image?
+TakeSnapshots=true
+
+# Where to save each frame
+SnapshotLocation=frames/code_swarm-#####.png
+
+# Draw names (combinatory) :
+# Draw sharp names?
+DrawNamesSharp=true
+# And draw a glow around names? (Runs slower)
+DrawNamesHalos=false
+
+# Draw files (combinatory) :
+# Draw sharp files
+DrawFilesSharp=false
+# Draw fuzzy files
+DrawFilesFuzzy=true
+# Draw jelly files
+DrawFilesJelly=true
+
+# Show the Legend at start
+ShowLegend=true
+
+# Show the History at start
+ShowHistory=true
+
+# Show the Date at start
+ShowDate=true
+
+# Show edges between authors and files, mostly for debug purpose
+ShowEdges=false
+
+# Turn on Debug counts.
+ShowDebug=false
+
+# Natural distance of files to people
+EdgeLength=75
+
+# Amount of life to decrement
+EdgeDecrement=-2
+FileDecrement=-2
+PersonDecrement=-1
+
+#Speeds.
+#Optional: NodeSpeed=7.0, If used, FileSpeed and PersonSpeed need not be set.
+#
+FileSpeed=7.0
+PersonSpeed=2.0
+
+#Masses
+FileMass=1.0
+PersonMass=10.0
+
+# Life of an Edge
+EdgeLife=250
+
+# Life of a File
+FileLife=200
+
+# Life of a Person
+PersonLife=255
+
+# Highlight percent.
+# This is the amount of time that the person or
+# file will be highlighted.
+HighlightPct=5
+
+## Physics engine selection and configuration
+# Directory physics engine config files reside in.
+PhysicsEngineConfigDir=physics_engine
+# Force calculation algorithms ("PhysicsEngineLegacy", "PhysicsEngineSimple"...) :
+PhysicsEngineSelection=PhysicsEngineLegacy
+
+# OpenGL is experimental. Use at your own risk.
+UseOpenGL=false

_______________________________________________
tor-commits mailing list
tor-commits@xxxxxxxxxxxxxxxxxxxx
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits