Exemplo n.º 1
0
 def setUp(self):
     self._test_file = os.path.join(
         os.path.dirname(os.path.abspath(__file__)), 'data', 'calls.xml')
     argv = "-s -f " + self._test_file
     memacs = PhonecallsMemacs(argv=argv.split())
     self.data = memacs.test_get_entries()
     self._calls = ET.parse(self._test_file)
Exemplo n.º 2
0
 def setUp(self):
     self._test_file = os.path.join(
         os.path.dirname(os.path.abspath(__file__)), 'data', 'calls.xml'
     )
     argv = "-s -f " + self._test_file
     memacs = PhonecallsMemacs(argv=argv.split())
     self.data = memacs.test_get_entries()
     self._calls = ET.parse(self._test_file)
Exemplo n.º 3
0
def main():
    global memacs
    memacs = PhonecallsMemacs(prog_version=PROG_VERSION_NUMBER,
                              prog_version_date=PROG_VERSION_DATE,
                              prog_description=PROG_DESCRIPTION,
                              prog_short_description=PROG_SHORT_DESCRIPTION,
                              prog_tag=PROG_TAG,
                              copyright_year=COPYRIGHT_YEAR,
                              copyright_authors=COPYRIGHT_AUTHORS)
    memacs.handle_main()
Exemplo n.º 4
0
sample xml file:
<?xml version='1.0' encoding='UTF-8' standalone='yes' ?>
<calls count="8">
  <call number="+43691234123" duration="59" date="1312563906092" type="1" />
  <call number="06612341234" duration="22" date="1312541215834" type="2" />
  <call number="-1" duration="382" date="1312530691081" type="1" />
  <call number="+4312341234" duration="289" date="1312482327195" type="1" />
  <call number="+4366412341234" duration="70" date="1312476334059" type="1" />
  <call number="+4366234123" duration="0" date="1312473751975" type="2" />
  <call number="+436612341234" duration="0" date="1312471300072" type="3" />
  <call number="+433123412" duration="60" date="1312468562489" type="2" />
</calls>

Then an Org-mode file is generated.
"""
COPYRIGHT_YEAR = "2011-2012"
COPYRIGHT_AUTHORS = """Karl Voit <*****@*****.**>,
Armin Wieser <*****@*****.**>"""

if __name__ == "__main__":
    memacs = PhonecallsMemacs(
        prog_version=PROG_VERSION_NUMBER,
        prog_version_date=PROG_VERSION_DATE,
        prog_description=PROG_DESCRIPTION,
        prog_short_description=PROG_SHORT_DESCRIPTION,
        prog_tag=PROG_TAG,
        copyright_year=COPYRIGHT_YEAR,
        copyright_authors=COPYRIGHT_AUTHORS
        )
    memacs.handle_main()
Exemplo n.º 5
0
 def setUp(self):
     test_file = os.path.dirname(os.path.abspath(__file__)) + \
         os.sep + "tmp" + os.sep + "calls.xml"
     argv = "-s -f " + test_file
     memacs = PhonecallsMemacs(argv=argv.split())
     self.data = memacs.test_get_entries()
Exemplo n.º 6
0
 def setUp(self):
     test_file = os.path.dirname(os.path.abspath(__file__)) + \
         os.sep + "tmp" + os.sep + "calls.xml"
     argv = "-s -f " + test_file
     memacs = PhonecallsMemacs(argv=argv.split())
     self.data = memacs.test_get_entries()