Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PEP8 #7

Closed
wants to merge 8 commits into from
Closed

PEP8 #7

wants to merge 8 commits into from

Commits on Jul 24, 2015

  1. pep8ify -wn, edited

    Tobias authored and Tobias committed Jul 24, 2015
    Configuration menu
    Copy the full SHA
    299aa2d View commit details
    Browse the repository at this point in the history
  2. Ignore editor's backup files (e.g. vim)

    tobiasherp authored and Tobias committed Jul 24, 2015
    Configuration menu
    Copy the full SHA
    6f4f157 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1204817 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2015

  1. Support returning of generated tarball

    If a section tells the transmogrifier about the created archive
    (by calling transmogrifier.add_info('export_content', name, info), e.g.
    at the end of the __iter__ method), the calling method can return this
    archive to the user for download. This way, transmogrifier turns into a
    tool which can be offered to "normal" users for flexible exports,
    without the need to edit the pipeline configuration first.
    tobiasherp committed Jul 25, 2015
    Configuration menu
    Copy the full SHA
    eb8296b View commit details
    Browse the repository at this point in the history

Commits on Aug 14, 2015

  1. Docstrings

    tobiasherp committed Aug 14, 2015
    Configuration menu
    Copy the full SHA
    e74ccb6 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2015

  1. Don't ignore src/collective

    Here is all the meat!
    tobiasherp committed Aug 26, 2015
    Configuration menu
    Copy the full SHA
    be6177c View commit details
    Browse the repository at this point in the history
  2. dump_sections function

    Produces a pretty string which represents the _all attribute of a
    Transmogrifier object.  Can return a list instead.
    
    Conflicts:
    	src/collective/transmogrifier/utils.py
    tobiasherp committed Aug 26, 2015
    Configuration menu
    Copy the full SHA
    828dd0f View commit details
    Browse the repository at this point in the history
  3. Optional verbosity for ConfigurationRegistry.clear

    When ConfigurationRegistry.clear is fired unexpectedly, this can go
    unnoticed and cause transmogrifications to fail.  Thus, this can be
    customized by setting the CLEANUP variable.
    
    To suppress the call by the zope.testing.cleanup facility entirely, this
    variable must must be changed to OFF in the module code, because this is
    done on import time.  For other uses, the variable can be set after
    importing.
    
    The present SILENT value reflects the so-far behaviour.
    
    Conflicts:
    	src/collective/transmogrifier/transmogrifier.py
    tobiasherp committed Aug 26, 2015
    Configuration menu
    Copy the full SHA
    674971a View commit details
    Browse the repository at this point in the history