Skip to content

Commit

Permalink
Code review: 267850043: Clean up and improvement of Windows Registry …
Browse files Browse the repository at this point in the history
…functionality log2timeline#145
  • Loading branch information
joachimmetz committed Dec 31, 2015
1 parent bbc854c commit a8f3567
Show file tree
Hide file tree
Showing 81 changed files with 3,396 additions and 2,225 deletions.
2 changes: 1 addition & 1 deletion config/dpkg/changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ python-plaso (1.3.1-1) unstable; urgency=low

* Auto-generated

-- Log2Timeline <[email protected]> Tue, 15 Sep 2015 20:56:42 +0200
-- Log2Timeline <[email protected]> Thu, 17 Sep 2015 19:44:25 +0200
16 changes: 16 additions & 0 deletions docs/plaso.dfwinreg.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,22 @@ plaso.dfwinreg.definitions module
:undoc-members:
:show-inheritance:

plaso.dfwinreg.errors module
----------------------------

.. automodule:: plaso.dfwinreg.errors
:members:
:undoc-members:
:show-inheritance:

plaso.dfwinreg.fake module
--------------------------

.. automodule:: plaso.dfwinreg.fake
:members:
:undoc-members:
:show-inheritance:

plaso.dfwinreg.interface module
-------------------------------

Expand Down
8 changes: 8 additions & 0 deletions docs/plaso.formatters.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,14 @@ plaso.formatters.bsm module
:undoc-members:
:show-inheritance:

plaso.formatters.ccleaner module
--------------------------------

.. automodule:: plaso.formatters.ccleaner
:members:
:undoc-members:
:show-inheritance:

plaso.formatters.chrome module
------------------------------

Expand Down
2 changes: 1 addition & 1 deletion plaso/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__version__ = '1.3.1'

VERSION_DEV = True
VERSION_DATE = '20150915'
VERSION_DATE = '20150917'


def GetVersion():
Expand Down
2 changes: 2 additions & 0 deletions plaso/dfwinreg/definitions.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
REG_BINARY = 3
REG_DWORD = 4
REG_DWORD_LITTLE_ENDIAN = 4
REG_DWORD_LE = REG_DWORD_LITTLE_ENDIAN
REG_DWORD_BIG_ENDIAN = 5
REG_DWORD_BE = REG_DWORD_BIG_ENDIAN
REG_LINK = 6
REG_MULTI_SZ = 7
REG_RESOURCE_LIST = 8
Expand Down
9 changes: 9 additions & 0 deletions plaso/dfwinreg/errors.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# -*- coding: utf-8 -*-
"""This file contains the error classes."""

class Error(Exception):
"""Base error class."""


class WinRegistryValueError(Error):
"""Raised when a Windows Registry value cannot be read."""
Loading

0 comments on commit a8f3567

Please sign in to comment.