Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2011-02-27 23:10:08 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2011-02-27 23:10:08 +0300
commit5a760e22fcb915cd517c180b9e37e2d74391eb55 (patch)
treed7b2b1621d1b748cf7d8cd899019584369e36ad0 /source/blender/python/intern
parent92ea5eda9024bd59e17219793c775d1dccf0df84 (diff)
doxygen: blender/python tagged.
Diffstat (limited to 'source/blender/python/intern')
-rw-r--r--source/blender/python/intern/bpy.c5
-rw-r--r--source/blender/python/intern/bpy.h5
-rw-r--r--source/blender/python/intern/bpy_app.c5
-rw-r--r--source/blender/python/intern/bpy_app.h5
-rw-r--r--source/blender/python/intern/bpy_driver.c5
-rw-r--r--source/blender/python/intern/bpy_driver.h5
-rw-r--r--source/blender/python/intern/bpy_interface.c5
-rw-r--r--source/blender/python/intern/bpy_operator.c7
-rw-r--r--source/blender/python/intern/bpy_operator.h5
-rw-r--r--source/blender/python/intern/bpy_operator_wrap.c7
-rw-r--r--source/blender/python/intern/bpy_operator_wrap.h5
-rw-r--r--source/blender/python/intern/bpy_props.c5
-rw-r--r--source/blender/python/intern/bpy_props.h5
-rw-r--r--source/blender/python/intern/bpy_rna.c5
-rw-r--r--source/blender/python/intern/bpy_rna.h5
-rw-r--r--source/blender/python/intern/bpy_rna_array.c5
-rw-r--r--source/blender/python/intern/bpy_rna_callback.c5
-rw-r--r--source/blender/python/intern/bpy_rna_callback.h5
-rw-r--r--source/blender/python/intern/bpy_traceback.c5
-rw-r--r--source/blender/python/intern/bpy_traceback.h5
-rw-r--r--source/blender/python/intern/bpy_util.c5
-rw-r--r--source/blender/python/intern/bpy_util.h5
-rw-r--r--source/blender/python/intern/stubs.c5
23 files changed, 117 insertions, 2 deletions
diff --git a/source/blender/python/intern/bpy.c b/source/blender/python/intern/bpy.c
index 3cb9e500852..1f66e106374 100644
--- a/source/blender/python/intern/bpy.c
+++ b/source/blender/python/intern/bpy.c
@@ -21,6 +21,11 @@
*
* ***** END GPL LICENSE BLOCK *****
*/
+
+/** \file blender/python/intern/bpy.c
+ * \ingroup pythonintern
+ */
+
/* This file defines the '_bpy' module which is used by python's 'bpy' package.
* a script writer should never directly access this module */
diff --git a/source/blender/python/intern/bpy.h b/source/blender/python/intern/bpy.h
index e3064fe3ca1..0f298c1daf1 100644
--- a/source/blender/python/intern/bpy.h
+++ b/source/blender/python/intern/bpy.h
@@ -20,6 +20,11 @@
* Contributor(s): Campbell Barton
*
* ***** END GPL LICENSE BLOCK ***** */
+
+/** \file blender/python/intern/bpy.h
+ * \ingroup pythonintern
+ */
+
void BPy_init_modules( void );
extern PyObject *bpy_package_py;
diff --git a/source/blender/python/intern/bpy_app.c b/source/blender/python/intern/bpy_app.c
index e58afe8eace..c4e2500f221 100644
--- a/source/blender/python/intern/bpy_app.c
+++ b/source/blender/python/intern/bpy_app.c
@@ -22,6 +22,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/python/intern/bpy_app.c
+ * \ingroup pythonintern
+ */
+
+
#include <Python.h>
#include "bpy_app.h"
diff --git a/source/blender/python/intern/bpy_app.h b/source/blender/python/intern/bpy_app.h
index cf19218f0b0..d57e4688f46 100644
--- a/source/blender/python/intern/bpy_app.h
+++ b/source/blender/python/intern/bpy_app.h
@@ -21,6 +21,11 @@
*
* ***** END GPL LICENSE BLOCK *****
*/
+
+/** \file blender/python/intern/bpy_app.h
+ * \ingroup pythonintern
+ */
+
#ifndef BPY_APP_H
#define BPY_APP_H
diff --git a/source/blender/python/intern/bpy_driver.c b/source/blender/python/intern/bpy_driver.c
index 7072fbc09a7..0445298649f 100644
--- a/source/blender/python/intern/bpy_driver.c
+++ b/source/blender/python/intern/bpy_driver.c
@@ -21,6 +21,11 @@
*
* ***** END GPL LICENSE BLOCK *****
*/
+
+/** \file blender/python/intern/bpy_driver.c
+ * \ingroup pythonintern
+ */
+
/* ****************************************** */
/* Drivers - PyExpression Evaluation */
diff --git a/source/blender/python/intern/bpy_driver.h b/source/blender/python/intern/bpy_driver.h
index 3e7cd68eef0..5d29e171e2d 100644
--- a/source/blender/python/intern/bpy_driver.h
+++ b/source/blender/python/intern/bpy_driver.h
@@ -21,6 +21,11 @@
*
* ***** END GPL LICENSE BLOCK *****
*/
+
+/** \file blender/python/intern/bpy_driver.h
+ * \ingroup pythonintern
+ */
+
#ifndef BPY_DRIVER_H
#define BPY_DRIVER_H
diff --git a/source/blender/python/intern/bpy_interface.c b/source/blender/python/intern/bpy_interface.c
index 60ada6e983b..ade7ff62519 100644
--- a/source/blender/python/intern/bpy_interface.c
+++ b/source/blender/python/intern/bpy_interface.c
@@ -22,6 +22,11 @@
*
* ***** END GPL LICENSE BLOCK *****
*/
+
+/** \file blender/python/intern/bpy_interface.c
+ * \ingroup pythonintern
+ */
+
/* grr, python redefines */
#ifdef _POSIX_C_SOURCE
diff --git a/source/blender/python/intern/bpy_operator.c b/source/blender/python/intern/bpy_operator.c
index cb527f562eb..e4df94cfbc0 100644
--- a/source/blender/python/intern/bpy_operator.c
+++ b/source/blender/python/intern/bpy_operator.c
@@ -1,5 +1,5 @@
-/**
+/*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK *****
@@ -23,6 +23,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/python/intern/bpy_operator.c
+ * \ingroup pythonintern
+ */
+
+
/* Note, this module is not to be used directly by the user.
* Internally its exposed as '_bpy.ops', which provides functions for 'bpy.ops', a python package.
* */
diff --git a/source/blender/python/intern/bpy_operator.h b/source/blender/python/intern/bpy_operator.h
index a8bf8436e83..60cb78f9af5 100644
--- a/source/blender/python/intern/bpy_operator.h
+++ b/source/blender/python/intern/bpy_operator.h
@@ -21,6 +21,11 @@
*
* ***** END GPL LICENSE BLOCK *****
*/
+
+/** \file blender/python/intern/bpy_operator.h
+ * \ingroup pythonintern
+ */
+
#ifndef BPY_OPERATOR_H
#define BPY_OPERATOR_H
diff --git a/source/blender/python/intern/bpy_operator_wrap.c b/source/blender/python/intern/bpy_operator_wrap.c
index 51ab889e321..78b731fdde1 100644
--- a/source/blender/python/intern/bpy_operator_wrap.c
+++ b/source/blender/python/intern/bpy_operator_wrap.c
@@ -1,5 +1,5 @@
-/**
+/*
* $Id$
*
* ***** BEGIN GPL LICENSE BLOCK *****
@@ -23,6 +23,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/python/intern/bpy_operator_wrap.c
+ * \ingroup pythonintern
+ */
+
+
#include <Python.h>
#include "bpy_operator_wrap.h"
diff --git a/source/blender/python/intern/bpy_operator_wrap.h b/source/blender/python/intern/bpy_operator_wrap.h
index 599a42f7bd8..f833b2f0028 100644
--- a/source/blender/python/intern/bpy_operator_wrap.h
+++ b/source/blender/python/intern/bpy_operator_wrap.h
@@ -21,6 +21,11 @@
*
* ***** END GPL LICENSE BLOCK *****
*/
+
+/** \file blender/python/intern/bpy_operator_wrap.h
+ * \ingroup pythonintern
+ */
+
#ifndef BPY_OPERATOR_WRAP_H
#define BPY_OPERATOR_WRAP_H
diff --git a/source/blender/python/intern/bpy_props.c b/source/blender/python/intern/bpy_props.c
index c8af0d63e3b..bae32090529 100644
--- a/source/blender/python/intern/bpy_props.c
+++ b/source/blender/python/intern/bpy_props.c
@@ -22,6 +22,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/python/intern/bpy_props.c
+ * \ingroup pythonintern
+ */
+
+
#include <Python.h>
#include "bpy_props.h"
diff --git a/source/blender/python/intern/bpy_props.h b/source/blender/python/intern/bpy_props.h
index 828c6719ffc..f306d6898d1 100644
--- a/source/blender/python/intern/bpy_props.h
+++ b/source/blender/python/intern/bpy_props.h
@@ -22,6 +22,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/python/intern/bpy_props.h
+ * \ingroup pythonintern
+ */
+
+
#ifndef BPY_PROPS_H
#define BPY_PROPS_H
diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c
index f18b1aee5ab..c8ec97420da 100644
--- a/source/blender/python/intern/bpy_rna.c
+++ b/source/blender/python/intern/bpy_rna.c
@@ -22,6 +22,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/python/intern/bpy_rna.c
+ * \ingroup pythonintern
+ */
+
+
#include <Python.h>
#include <stddef.h>
diff --git a/source/blender/python/intern/bpy_rna.h b/source/blender/python/intern/bpy_rna.h
index e213ce90dae..bedf5376b18 100644
--- a/source/blender/python/intern/bpy_rna.h
+++ b/source/blender/python/intern/bpy_rna.h
@@ -21,6 +21,11 @@
*
* ***** END GPL LICENSE BLOCK *****
*/
+
+/** \file blender/python/intern/bpy_rna.h
+ * \ingroup pythonintern
+ */
+
#ifndef BPY_RNA_H
#define BPY_RNA_H
diff --git a/source/blender/python/intern/bpy_rna_array.c b/source/blender/python/intern/bpy_rna_array.c
index 8f5af1e366e..dc2f56fea99 100644
--- a/source/blender/python/intern/bpy_rna_array.c
+++ b/source/blender/python/intern/bpy_rna_array.c
@@ -21,6 +21,11 @@
*
* ***** END GPL LICENSE BLOCK *****
*/
+
+/** \file blender/python/intern/bpy_rna_array.c
+ * \ingroup pythonintern
+ */
+
#include <Python.h>
#include "bpy_rna.h"
diff --git a/source/blender/python/intern/bpy_rna_callback.c b/source/blender/python/intern/bpy_rna_callback.c
index a455a588c04..81ec955300a 100644
--- a/source/blender/python/intern/bpy_rna_callback.c
+++ b/source/blender/python/intern/bpy_rna_callback.c
@@ -22,6 +22,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/python/intern/bpy_rna_callback.c
+ * \ingroup pythonintern
+ */
+
+
#include <Python.h>
#include "bpy_rna.h"
diff --git a/source/blender/python/intern/bpy_rna_callback.h b/source/blender/python/intern/bpy_rna_callback.h
index 8b218aaefb2..2cea99fe20c 100644
--- a/source/blender/python/intern/bpy_rna_callback.h
+++ b/source/blender/python/intern/bpy_rna_callback.h
@@ -22,6 +22,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/python/intern/bpy_rna_callback.h
+ * \ingroup pythonintern
+ */
+
+
struct BPy_StructRNA;
struct PyObject;
diff --git a/source/blender/python/intern/bpy_traceback.c b/source/blender/python/intern/bpy_traceback.c
index ca94378a72a..171454da19b 100644
--- a/source/blender/python/intern/bpy_traceback.c
+++ b/source/blender/python/intern/bpy_traceback.c
@@ -20,6 +20,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/python/intern/bpy_traceback.c
+ * \ingroup pythonintern
+ */
+
+
#include <Python.h>
#include <frameobject.h>
diff --git a/source/blender/python/intern/bpy_traceback.h b/source/blender/python/intern/bpy_traceback.h
index ade1c067c9c..3ed1f99aa20 100644
--- a/source/blender/python/intern/bpy_traceback.h
+++ b/source/blender/python/intern/bpy_traceback.h
@@ -20,6 +20,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/python/intern/bpy_traceback.h
+ * \ingroup pythonintern
+ */
+
+
#ifndef BPY_TRACEBACK_H
#define BPY_TRACEBACK_H
diff --git a/source/blender/python/intern/bpy_util.c b/source/blender/python/intern/bpy_util.c
index 95d2f3bba9f..3d5090b73fa 100644
--- a/source/blender/python/intern/bpy_util.c
+++ b/source/blender/python/intern/bpy_util.c
@@ -22,6 +22,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/python/intern/bpy_util.c
+ * \ingroup pythonintern
+ */
+
+
#include <Python.h>
#include "bpy_util.h"
diff --git a/source/blender/python/intern/bpy_util.h b/source/blender/python/intern/bpy_util.h
index b35a6b20306..9b217e77844 100644
--- a/source/blender/python/intern/bpy_util.h
+++ b/source/blender/python/intern/bpy_util.h
@@ -22,6 +22,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/python/intern/bpy_util.h
+ * \ingroup pythonintern
+ */
+
+
#ifndef BPY_UTIL_H
#define BPY_UTIL_H
diff --git a/source/blender/python/intern/stubs.c b/source/blender/python/intern/stubs.c
index 7f87dd36f6d..1e9f430e2b3 100644
--- a/source/blender/python/intern/stubs.c
+++ b/source/blender/python/intern/stubs.c
@@ -26,6 +26,11 @@
* ***** END GPL LICENSE BLOCK *****
*/
+/** \file blender/python/intern/stubs.c
+ * \ingroup pythonintern
+ */
+
+
/* python, will come back */
//void BPY_script_exec(void) {}
//void BPY_python_start(void) {}