r86285 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r86284‎ | r86285 | r86286 >
Date:21:10, 17 April 2011
Author:rfaulk
Status:deferred
Tags:
Comment:
For future file parsing used to abstract configuration of reporting and testing.
Modified paths:
  • /trunk/fundraiser-statistics/fundraiser-scripts/classes/FileHandler.py (added) (history)

Diff [purge]

Index: trunk/fundraiser-statistics/fundraiser-scripts/classes/FileHandler.py
@@ -0,0 +1,43 @@
 2+"""
 3+
 4+ Used for interfacing into particular filetypes for the framework
 5+
 6+ particularly config files
 7+
 8+"""
 9+
 10+__author__ = "Ryan Faulkner"
 11+__revision__ = "$Rev$"
 12+__date__ = "April 16th, 2011"
 13+
 14+
 15+"""
 16+
 17+ BASE CLASS :: FileHandler
 18+
 19+ General file parsing functionality
 20+
 21+ METHODS:
 22+
 23+
 24+"""
 25+class FileHandler(object):
 26+
 27+ def __init__(self):
 28+ return
 29+
 30+
 31+"""
 32+
 33+ CLASS :: ConfigFileHandler
 34+
 35+ Parse a configuration file for reporting framework
 36+
 37+ METHODS:
 38+
 39+
 40+"""
 41+class ConfigFileHandler(object):
 42+
 43+ def __init__(self):
 44+ return
\ No newline at end of file

Status & tagging log