~ubuntu-branches/ubuntu/trusty/blender/trusty

« back to all changes in this revision

Viewing changes to source/tools/spell_check_source_config.py

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-03-06 12:08:47 UTC
  • mfrom: (1.5.1) (14.1.8 experimental)
  • Revision ID: package-import@ubuntu.com-20130306120847-frjfaryb2zrotwcg
Tags: 2.66a-1ubuntu1
* Resynchronize with Debian (LP: #1076930, #1089256, #1052743, #999024,
  #1122888, #1147084)
* debian/control:
  - Lower build-depends on libavcodec-dev since we're not
    doing the libav9 transition in Ubuntu yet

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
# correct spelling but ignore
24
24
dict_custom = {
 
25
    "instantiation",
25
26
    "iterable",
26
27
    "prepend",
27
28
    "subclass", "subclasses", "subclassing",
32
33
    "subdirectory",
33
34
    "decrement",
34
35
    "boolean",
 
36
    "decrementing",
35
37
 
36
38
    # python types
37
39
    "str",
38
40
    "enum", "enums",
39
41
    "int", "ints",
40
42
    "tuple", "tuples",
41
 
    # python funcs
 
43
    
 
44
    # python functions
42
45
    "repr",
43
46
    "func",
44
47
 
58
61
    "tooltip",
59
62
 
60
63
    # general computer terms
 
64
    "endian",
 
65
    "contructor",
61
66
    "unicode",
62
67
    "jitter",
63
68
    "quantized",
64
69
    "searchable",
65
70
    "metadata",
66
71
    "hashable",
67
 
    "normals",
 
72
    "stdin",
 
73
    "stdout",
68
74
    "stdin",
69
75
    "opengl",
70
76
    "boids",
71
77
    "keymap",
72
 
    "voxel",
 
78
    "voxel", "voxels",
73
79
    "vert", "verts",
74
80
    "euler", "eulers",
75
81
    "booleans",
76
82
    "intrinsics",
77
 
    "xml",
 
83
    "XXX",
 
84
    "segfault",
 
85
    "wiki",
 
86
    "foo",
 
87
    "diff",
 
88
    "diffs",
 
89
    "sudo",
 
90
    "http",
 
91
    "url",
 
92
    "usr",
 
93
    "env",
 
94
    "app",
 
95
    "preprocessor",
 
96
 
 
97
    # specific computer terms/brands
 
98
    "posix",
 
99
    "unix",
 
100
    "amiga",
 
101
    "netscape",
 
102
    "mozilla",
 
103
    "irix",
 
104
    "kde",
 
105
    "qtcreator",
 
106
    "ack",
78
107
 
79
108
    # general computer graphics terms
 
109
    "colinear",
 
110
    "coplanar",
 
111
    "barycentric",
 
112
    "bezier",
 
113
    "fresnel",
80
114
    "radiosity",
 
115
    "reflectance",
81
116
    "specular",
82
117
    "nurbs",
 
118
    "ngon", "ngons",
 
119
    "bicubic",
83
120
    "compositing",
84
121
    "deinterlace",
85
122
    "shader",
86
123
    "shaders",
87
124
    "centroid",
 
125
    "emissive",
 
126
    "quaternions",
 
127
    "lacunarity",
 
128
    "musgrave",
 
129
    "normals",
88
130
 
89
131
    # blender terms
 
132
    "bmain",
 
133
    "bmesh",
90
134
    "bpy",
 
135
    "bge",
91
136
    "mathutils",
92
137
    "fcurve",
93
138
    "animviz",
94
139
    "animsys",
95
140
    "eekadoodle",
 
141
    "editmode",
 
142
    "obdata",
 
143
    "doctree",
96
144
 
97
145
    # should have apostrophe but ignore for now
98
146
    # unless we want to get really picky!
126
174
    "a-z",
127
175
    "id-block",
128
176
    "node-trees",
 
177
    "pyflakes",
 
178
    "pylint",
129
179
 
130
180
    # acronyms
 
181
    "cpu",
 
182
    "gpu",
131
183
    "nan",
132
184
    "utf",
133
185
    "rgb",
141
193
    "lhs",
142
194
    "ik",
143
195
    "smpte",
 
196
    "svn",
 
197
    "hg",
 
198
    "gl",
 
199
    
 
200
    # extensions
 
201
    "xpm",
 
202
    "xml",
 
203
    "py",
 
204
    "rst",
144
205
 
145
206
    # tags
146
207
    "fixme",
156
217
    # names
157
218
    "jahka",
158
219
    "campbell",
 
220
    "mikkelsen", "morten",
159
221
}