Mercurial > piecrust2
view piecrust/publishing/rsync.py @ 627:6c205066067a
admin: Fix responsive layout.
* Use a fluid Bootstrap container to not get pops, and prevent problems with
the side navigation messing up widths.
* Fix button layout on the edit page view.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Mon, 08 Feb 2016 23:27:41 -0800 |
parents | b45fb2137a07 |
children | 6abb436fea5b |
line wrap: on
line source
from piecrust.publishing.base import ShellCommandPublisherBase class RsyncPublisher(ShellCommandPublisherBase): PUBLISHER_NAME = 'rsync' PUBLISHER_SCHEME = 'rsync' def _getCommandArgs(self, ctx): if self.has_url_config: orig = ctx.bake_out_dir dest = self.parsed_url.netloc + self.parsed_url.path else: orig = self.getConfigValue('source', ctx.bake_our_dir) dest = self.getConfigValue('destination') rsync_options = None if not self.has_url_config: rsync_options = self.getConfigValue('options') if rsync_options is None: rsync_options = ['-avc', '--delete'] args = ['rsync'] + rsync_options args += [orig, dest] return args