[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [19433] branches/blender2.5/blender/source /blender: - made epydoc generator write a list of words used in descriptions

Campbell Barton ideasman42 at gmail.com
Sat Mar 28 12:44:07 CET 2009


Revision: 19433
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=19433
Author:   campbellbarton
Date:     2009-03-28 12:44:07 +0100 (Sat, 28 Mar 2009)

Log Message:
-----------
- made epydoc generator write a list of words used in descriptions
- fix spelling mistakes in rna docs (and some comments)

Modified Paths:
--------------
    branches/blender2.5/blender/source/blender/blenkernel/intern/constraint.c
    branches/blender2.5/blender/source/blender/blenkernel/intern/fcurve.c
    branches/blender2.5/blender/source/blender/blenkernel/intern/particle_system.c
    branches/blender2.5/blender/source/blender/editors/animation/keyframes_draw.c
    branches/blender2.5/blender/source/blender/editors/animation/keyframing.c
    branches/blender2.5/blender/source/blender/editors/transform/transform_conversions.c
    branches/blender2.5/blender/source/blender/imbuf/IMB_imbuf_types.h
    branches/blender2.5/blender/source/blender/makesrna/intern/rna_animation.c
    branches/blender2.5/blender/source/blender/makesrna/intern/rna_armature.c
    branches/blender2.5/blender/source/blender/makesrna/intern/rna_cloth.c
    branches/blender2.5/blender/source/blender/makesrna/intern/rna_color.c
    branches/blender2.5/blender/source/blender/makesrna/intern/rna_constraint.c
    branches/blender2.5/blender/source/blender/makesrna/intern/rna_curve.c
    branches/blender2.5/blender/source/blender/makesrna/intern/rna_fluidsim.c
    branches/blender2.5/blender/source/blender/makesrna/intern/rna_particle.c
    branches/blender2.5/blender/source/blender/makesrna/intern/rna_radio.c
    branches/blender2.5/blender/source/blender/makesrna/intern/rna_sensor.c
    branches/blender2.5/blender/source/blender/makesrna/intern/rna_userdef.c
    branches/blender2.5/blender/source/blender/makesrna/intern/rna_world.c
    branches/blender2.5/blender/source/blender/python/epy_doc_gen.py

Modified: branches/blender2.5/blender/source/blender/blenkernel/intern/constraint.c
===================================================================
--- branches/blender2.5/blender/source/blender/blenkernel/intern/constraint.c	2009-03-28 11:09:53 UTC (rev 19432)
+++ branches/blender2.5/blender/source/blender/blenkernel/intern/constraint.c	2009-03-28 11:44:07 UTC (rev 19433)
@@ -3108,7 +3108,7 @@
 
 /* ************************* Constraints Type-Info *************************** */
 /* All of the constraints api functions use bConstraintTypeInfo structs to carry out
- * and operations that involve constraint specifc code.
+ * and operations that involve constraint specific code.
  */
 
 /* These globals only ever get directly accessed in this file */

Modified: branches/blender2.5/blender/source/blender/blenkernel/intern/fcurve.c
===================================================================
--- branches/blender2.5/blender/source/blender/blenkernel/intern/fcurve.c	2009-03-28 11:09:53 UTC (rev 19432)
+++ branches/blender2.5/blender/source/blender/blenkernel/intern/fcurve.c	2009-03-28 11:44:07 UTC (rev 19433)
@@ -1748,7 +1748,7 @@
 
 /* F-Curve Modifier API --------------------------- */
 /* All of the F-Curve Modifier api functions use FModifierTypeInfo structs to carry out
- * and operations that involve F-Curve modifier specifc code.
+ * and operations that involve F-Curve modifier specific code.
  */
 
 /* These globals only ever get directly accessed in this file */

Modified: branches/blender2.5/blender/source/blender/blenkernel/intern/particle_system.c
===================================================================
--- branches/blender2.5/blender/source/blender/blenkernel/intern/particle_system.c	2009-03-28 11:09:53 UTC (rev 19432)
+++ branches/blender2.5/blender/source/blender/blenkernel/intern/particle_system.c	2009-03-28 11:44:07 UTC (rev 19433)
@@ -1575,7 +1575,7 @@
 		}
 #endif // XXX old animation system
 
-	/* need to get every rand even if we don't use them so that randoms don't affect eachother */
+	/* need to get every rand even if we don't use them so that randoms don't affect each other */
 		rand= BLI_frand();
 		if(part->randlife!=0.0)
 			pa->lifetime*= 1.0f - part->randlife*rand;

Modified: branches/blender2.5/blender/source/blender/editors/animation/keyframes_draw.c
===================================================================
--- branches/blender2.5/blender/source/blender/editors/animation/keyframes_draw.c	2009-03-28 11:09:53 UTC (rev 19432)
+++ branches/blender2.5/blender/source/blender/editors/animation/keyframes_draw.c	2009-03-28 11:44:07 UTC (rev 19433)
@@ -96,7 +96,7 @@
 
 static void add_bezt_to_keycolumnslist(ListBase *keys, BezTriple *bezt)
 {
-	/* The equivilant of add_to_cfra_elem except this version 
+	/* The equivalent of add_to_cfra_elem except this version 
 	 * makes ActKeyColumns - one of the two datatypes required
 	 * for action editor drawing.
 	 */
@@ -136,7 +136,7 @@
 
 static void add_bezt_to_keyblockslist(ListBase *blocks, FCurve *fcu, int index)
 {
-	/* The equivilant of add_to_cfra_elem except this version 
+	/* The equivalent of add_to_cfra_elem except this version 
 	 * makes ActKeyBlocks - one of the two datatypes required
 	 * for action editor drawing.
 	 */

Modified: branches/blender2.5/blender/source/blender/editors/animation/keyframing.c
===================================================================
--- branches/blender2.5/blender/source/blender/editors/animation/keyframing.c	2009-03-28 11:09:53 UTC (rev 19432)
+++ branches/blender2.5/blender/source/blender/editors/animation/keyframing.c	2009-03-28 11:44:07 UTC (rev 19433)
@@ -994,7 +994,7 @@
 		/* name */
 	RNA_def_string(ot->srna, "name", "KeyingSet", 64, "Name", "Name of Keying Set");
 		/* flags */
-	RNA_def_boolean(ot->srna, "absolute", 1, "Absolute", "Keying Set defines specifc paths/settings to be keyframed (i.e. is not reliant on context info)");
+	RNA_def_boolean(ot->srna, "absolute", 1, "Absolute", "Keying Set defines specific paths/settings to be keyframed (i.e. is not reliant on context info)");
 		/* keying flags */
 	RNA_def_boolean(ot->srna, "insertkey_needed", 0, "Insert Keyframes - Only Needed", "Only insert keyframes where they're needed in the relevant F-Curves.");
 	RNA_def_boolean(ot->srna, "insertkey_visual", 0, "Insert Keyframes - Visual", "Insert keyframes based on 'visual transforms'.");

Modified: branches/blender2.5/blender/source/blender/editors/transform/transform_conversions.c
===================================================================
--- branches/blender2.5/blender/source/blender/editors/transform/transform_conversions.c	2009-03-28 11:09:53 UTC (rev 19432)
+++ branches/blender2.5/blender/source/blender/editors/transform/transform_conversions.c	2009-03-28 11:44:07 UTC (rev 19433)
@@ -4429,7 +4429,7 @@
 		if (t->customData)
 			MEM_freeN(t->customData);
 		if (t->data)
-			MEM_freeN(t->data); // XXX postTrans useually does this
+			MEM_freeN(t->data); // XXX postTrans usually does this
 	}
 	else if (t->spacetype == SPACE_ACTION) {
 		SpaceAction *saction= (SpaceAction *)t->sa->spacedata.first;

Modified: branches/blender2.5/blender/source/blender/imbuf/IMB_imbuf_types.h
===================================================================
--- branches/blender2.5/blender/source/blender/imbuf/IMB_imbuf_types.h	2009-03-28 11:09:53 UTC (rev 19432)
+++ branches/blender2.5/blender/source/blender/imbuf/IMB_imbuf_types.h	2009-03-28 11:44:07 UTC (rev 19433)
@@ -97,7 +97,7 @@
 	unsigned int   encodedsize;       /**< Size of data written to encodedbuffer */
 	unsigned int   encodedbuffersize; /**< Size of encodedbuffer */
 
-	float *rect_float;		/**< floating point Rect equivilant */
+	float *rect_float;		/**< floating point Rect equivalent */
 	int channels;			/**< amount of channels in rect_float (0 = 4 channel default) */
 	float dither;			/**< random dither value, for conversion from float -> byte rect */
 	

Modified: branches/blender2.5/blender/source/blender/makesrna/intern/rna_animation.c
===================================================================
--- branches/blender2.5/blender/source/blender/makesrna/intern/rna_animation.c	2009-03-28 11:09:53 UTC (rev 19432)
+++ branches/blender2.5/blender/source/blender/makesrna/intern/rna_animation.c	2009-03-28 11:44:07 UTC (rev 19433)
@@ -147,7 +147,7 @@
 		/* TODO: for now, this is editable, but do we really want this to happen? */
 	prop= RNA_def_property(srna, "absolute", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", KEYINGSET_ABSOLUTE);
-	RNA_def_property_ui_text(prop, "Absolute", "Keying Set defines specifc paths/settings to be keyframed (i.e. is not reliant on context info)");
+	RNA_def_property_ui_text(prop, "Absolute", "Keying Set defines specific paths/settings to be keyframed (i.e. is not reliant on context info)");
 	
 	/* Keyframing Flags */
 	prop= RNA_def_property(srna, "insertkey_needed", PROP_BOOLEAN, PROP_NONE);

Modified: branches/blender2.5/blender/source/blender/makesrna/intern/rna_armature.c
===================================================================
--- branches/blender2.5/blender/source/blender/makesrna/intern/rna_armature.c	2009-03-28 11:09:53 UTC (rev 19432)
+++ branches/blender2.5/blender/source/blender/makesrna/intern/rna_armature.c	2009-03-28 11:44:07 UTC (rev 19433)
@@ -190,7 +190,7 @@
 	
 	prop= RNA_def_property(srna, "cyclic_offset", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", BONE_NO_CYCLICOFFSET);
-	RNA_def_property_ui_text(prop, "Cyclic Offset", "When bone doesn't have a parent, it recieves cyclic offset effects.");
+	RNA_def_property_ui_text(prop, "Cyclic Offset", "When bone doesn't have a parent, it receives cyclic offset effects.");
 	
 	prop= RNA_def_property(srna, "editmode_locked", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", BONE_EDITMODE_LOCKED);
@@ -244,7 +244,7 @@
 	
 	prop= RNA_def_property(srna, "roll", PROP_FLOAT, PROP_NONE);
 	RNA_def_property_range(prop, 0.0f, 2.0f);
-	RNA_def_property_ui_text(prop, "Bone Roll", "In Edit Mode, the 'roll' (i.e. rotation around the bone vector, equivilant to local Y-axis rotation).");
+	RNA_def_property_ui_text(prop, "Bone Roll", "In Edit Mode, the 'roll' (i.e. rotation around the bone vector, equivalent to local Y-axis rotation).");
 }
 
 void rna_def_armature(BlenderRNA *brna)

Modified: branches/blender2.5/blender/source/blender/makesrna/intern/rna_cloth.c
===================================================================
--- branches/blender2.5/blender/source/blender/makesrna/intern/rna_cloth.c	2009-03-28 11:09:53 UTC (rev 19432)
+++ branches/blender2.5/blender/source/blender/makesrna/intern/rna_cloth.c	2009-03-28 11:44:07 UTC (rev 19433)
@@ -188,7 +188,7 @@
 	prop= RNA_def_property(srna, "air_damping", PROP_FLOAT, PROP_NONE);
 	RNA_def_property_float_sdna(prop, NULL, "Cvi");
 	RNA_def_property_range(prop, 0.0f, 10.0f);
-	RNA_def_property_ui_text(prop, "Air Damping", "Air has normaly some thickness which slows falling things down.");
+	RNA_def_property_ui_text(prop, "Air Damping", "Air has normally some thickness which slows falling things down.");
 
 	prop= RNA_def_property(srna, "pin_cloth", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flags", CLOTH_SIMSETTINGS_FLAG_GOAL);

Modified: branches/blender2.5/blender/source/blender/makesrna/intern/rna_color.c
===================================================================
--- branches/blender2.5/blender/source/blender/makesrna/intern/rna_color.c	2009-03-28 11:09:53 UTC (rev 19432)
+++ branches/blender2.5/blender/source/blender/makesrna/intern/rna_color.c	2009-03-28 11:44:07 UTC (rev 19433)
@@ -218,12 +218,12 @@
 
 	prop= RNA_def_property(srna, "black_level", PROP_FLOAT, PROP_COLOR);
 	RNA_def_property_float_sdna(prop, NULL, "black");
-	RNA_def_property_ui_text(prop, "Black Level", "For RGB curves, the colour that black is mapped to");
+	RNA_def_property_ui_text(prop, "Black Level", "For RGB curves, the color that black is mapped to");
 	RNA_def_property_float_funcs(prop, NULL, "rna_CurveMapping_black_level_set", NULL);
 
 	prop= RNA_def_property(srna, "white_level", PROP_FLOAT, PROP_COLOR);
 	RNA_def_property_float_sdna(prop, NULL, "white");

@@ Diff output truncated at 10240 characters. @@




More information about the Bf-blender-cvs mailing list