summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorSol Jerome <sol.jerome@gmail.com>2012-03-17 16:00:38 -0500
committerSol Jerome <sol.jerome@gmail.com>2012-03-17 16:00:38 -0500
commit60c79ef728f1d932e8da8583e2719b6acd900d9e (patch)
treef385e04757261072456161d2c4b1cf0033b0e8ee /doc
parent9f85b8af0ccf2c90aa5d806dd7baefab68237f3a (diff)
parent8a45b809eaef80d3cff337e54f3ec3aa0bbaa62a (diff)
downloadbcfg2-60c79ef728f1d932e8da8583e2719b6acd900d9e.tar.gz
bcfg2-60c79ef728f1d932e8da8583e2719b6acd900d9e.tar.bz2
bcfg2-60c79ef728f1d932e8da8583e2719b6acd900d9e.zip
Merge branch 'fix-svn-keywords'
Diffstat (limited to 'doc')
-rw-r--r--doc/development/plugins.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/doc/development/plugins.txt b/doc/development/plugins.txt
index 15b512365..b2b70f553 100644
--- a/doc/development/plugins.txt
+++ b/doc/development/plugins.txt
@@ -164,7 +164,6 @@ Example Connector
Bcfg2.Server.Plugin.Connector):
'''The Foo plugin is here to illustrate a barebones connector'''
name = 'Foo'
- version = '$Revision: $'
experimental = True
def __init__(self, core, datastore):
@@ -195,13 +194,10 @@ do so. We will call our new plugin `MyMetadata`.
.. code-block:: python
- __revision__ = '$Revision$'
-
import Bcfg2.Server.Plugins.Metadata
class MyMetadata(Bcfg2.Server.Plugins.Metadata.Metadata):
'''This class contains data for bcfg2 server metadata'''
- __version__ = '$Id$'
__author__ = 'bcfg-dev@mcs.anl.gov'
def __init__(self, core, datastore, watch_clients=True):