]> git.sesse.net Git - vlc/commitdiff
python bindings: svn propset svn:keywords
authorOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Thu, 21 Dec 2006 15:00:04 +0000 (15:00 +0000)
committerOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Thu, 21 Dec 2006 15:00:04 +0000 (15:00 +0000)
bindings/python/vlc_input.c
bindings/python/vlc_instance.c
bindings/python/vlc_mediacontrol.c
bindings/python/vlc_module.c
bindings/python/vlc_object.c
bindings/python/vlc_position.c
bindings/python/vlcglue.h
bindings/python/vlcwidget.py
bindings/python/vlcwrapper.py

index 424013f1718e9a94e53ba467eccc3b6ee73b4623..8ca7aff9d7b0dcbd7387c9d418f9a7a77700b333 100644 (file)
@@ -2,7 +2,7 @@
  * vlc_input.c: vlc.Input binding
  *****************************************************************************
  * Copyright (C) 2006 the VideoLAN team
- * $Id$
+ * $Id$
  *
  * Authors: Olivier Aubert <oaubert at bat710.univ-lyon1.fr>
  *
index 6bf3e9ed96c49264a406c625decf49f40fa6b472..fbceaf8f84bad974853814b1fa65692b2d2bbf92 100644 (file)
@@ -2,7 +2,7 @@
  * vlc_instance.c: vlc.Instance binding
  *****************************************************************************
  * Copyright (C) 2006 the VideoLAN team
- * $Id$
+ * $Id$
  *
  * Authors: Olivier Aubert <oaubert at bat710.univ-lyon1.fr>
  *
index bf4203688d101f5ab3b8e83b5ea20ba6fb10f311..c7f22b6e3f4d8ffb8af9141becfe4cb70ddbc744 100644 (file)
@@ -2,7 +2,7 @@
  * vlc_mediacontrol.c: vlc.MediaControl binding
  *****************************************************************************
  * Copyright (C) 2006 the VideoLAN team
- * $Id$
+ * $Id$
  *
  * Authors: Olivier Aubert <oaubert at bat710.univ-lyon1.fr>
  *
index 94fba63455928e93bd9a557e57b4182fd0407403..f3995e666a73a1f9c4b01e662ac14bf9bdbb32c8 100644 (file)
@@ -2,7 +2,7 @@
  * vlc_module.c: vlc python binding module
  *****************************************************************************
  * Copyright (C) 2006 the VideoLAN team
- * $Id$
+ * $Id$
  *
  * Authors: Olivier Aubert <oaubert at bat710.univ-lyon1.fr>
  *
index 95e855ad969fa7fad035cbbded7439c2b5709d03..1edc56ffaab0c5659900072799c7cb3758a309ec 100644 (file)
@@ -2,7 +2,7 @@
  * vlc_object.c: vlc.Object
  *****************************************************************************
  * Copyright (C) 2006 the VideoLAN team
- * $Id$
+ * $Id$
  *
  * Authors: Olivier Aubert <oaubert at bat710.univ-lyon1.fr>
  *
index 2e6b527e119dd6e50ce7adc3dbe170bf27308acb..1a42be7bbdf99c3f88ac5db9188819182c3fc0a4 100644 (file)
@@ -2,7 +2,7 @@
  * vlc_position.c: vlc.Position binding
  *****************************************************************************
  * Copyright (C) 2006 the VideoLAN team
- * $Id$
+ * $Id$
  *
  * Authors: Olivier Aubert <oaubert at bat710.univ-lyon1.fr>
  *
index f5e450a15001967e76d53d086860505ef09494b9..22e3d9d4faa89eca8fb5f6d0020d204a2a76373d 100644 (file)
@@ -2,7 +2,7 @@
  * vlcglue.h: Main header for the Python binding
  *****************************************************************************
  * Copyright (C) 1998-2004 the VideoLAN team
- * $Id$
+ * $Id: vlcglue.h 16752 2006-09-20 11:10:44Z oaubert $
  *
  * Authors: Olivier Aubert <oaubert at bat710.univ-lyon1.fr>
  *          ClĂ©ment Stenac <zorglub@videolan.org>
index b288460c85ea84f06896958bfe509a6ddb484605..812f63324a2573d08ff497e86a8eb4ec3ab0b7a4 100755 (executable)
@@ -8,6 +8,8 @@ VLC component inside a pygtk application.
 VLCWidget is a simple VLC widget.
 
 DecoratedVLCWidget provides simple player controls.
+
+$Id$
 """
 
 import gtk
index 7f64a02aa2bbc16dc3ab859f55923ce87e0c19ee..1d798c2984d8309f8379394c56e78f2ece1d33de 100644 (file)
@@ -1,5 +1,7 @@
 """Wrapper around vlc module in order to ease the use of vlc.Object
 class (completion in ipython, access variable as attributes, etc).
+
+$Id$
 """
 import vlc