Browse Source

Cleaned up placeholders

main
Lakshmi Vyasarajan 14 years ago
parent
commit
69e1033ec0
10 changed files with 10 additions and 65 deletions
  1. +1
    -16
      hyde/aggregator.py
  2. +1
    -1
      hyde/cli.py
  3. +1
    -0
      hyde/engine.py
  4. +1
    -0
      hyde/fs.py
  5. +1
    -0
      hyde/importer.py
  6. +1
    -16
      hyde/layout.py
  7. +1
    -16
      hyde/plugin.py
  8. +1
    -0
      hyde/tests/test_fs.py
  9. +1
    -16
      hyde/theme.py
  10. +1
    -0
      hyde/widget.py

+ 1
- 16
hyde/aggregator.py View File

@@ -1,16 +1 @@
{% extends "demo.django" %}

{%hyde
title:
description:
teaser:
standalone: generator.htm
%}

{% block introduction %}

{% endblock introduction %}

{% block documentation %}

{% endblock documentation %}
# -*- coding: utf-8 -*-

+ 1
- 1
hyde/cli.py View File

@@ -17,7 +17,7 @@ def main():
parser.add_argument('-s', '--sitepath', action='store', default='.', help="Location of the hyde site") parser.add_argument('-s', '--sitepath', action='store', default='.', help="Location of the hyde site")
subcommands = parser.add_subparsers(title="Hyde commands", subcommands = parser.add_subparsers(title="Hyde commands",
description="Entry points for hyde") description="Entry points for hyde")
init_command = subcommands.add_parser('init', help='Initializes a new hyde site')
init_command = subcommands.add_parser('init', help='Create a new hyde site')
init_command.set_defaults(run=init) init_command.set_defaults(run=init)
init_command.add_argument('-f', '--force', action='store_true', default=False, dest='force', init_command.add_argument('-f', '--force', action='store_true', default=False, dest='force',
help='Overwrite the current site if it exists') help='Overwrite the current site if it exists')


+ 1
- 0
hyde/engine.py View File

@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
def init(args): def init(args):
print args.sitepath print args.sitepath
print args.force print args.force


+ 1
- 0
hyde/fs.py View File

@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
""" """
Unified object oriented interface for interacting with file system objects. File system operations in Unified object oriented interface for interacting with file system objects. File system operations in
python are distributed across modules: os, os.path, fnamtch, shutil and distutils. This module attempts python are distributed across modules: os, os.path, fnamtch, shutil and distutils. This module attempts


+ 1
- 0
hyde/importer.py View File

@@ -0,0 +1 @@
# -*- coding: utf-8 -*-

+ 1
- 16
hyde/layout.py View File

@@ -1,16 +1 @@
{% extends "demo.django" %}

{%hyde
title:
description:
teaser:
standalone: layout.htm
%}

{% block introduction %}

{% endblock introduction %}

{% block documentation %}

{% endblock documentation %}
# -*- coding: utf-8 -*-

+ 1
- 16
hyde/plugin.py View File

@@ -1,16 +1 @@
{% extends "demo.django" %}

{%hyde
title:
description:
teaser:
standalone: plugin.htm
%}

{% block introduction %}

{% endblock introduction %}

{% block documentation %}

{% endblock documentation %}
# -*- coding: utf-8 -*-

+ 1
- 0
hyde/tests/test_fs.py View File

@@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
""" """
Use nose Use nose
`$ pip install nose` `$ pip install nose`


+ 1
- 16
hyde/theme.py View File

@@ -1,16 +1 @@
{% extends "demo.django" %}

{%hyde
title:
description:
teaser:
standalone: theme.htm
%}

{% block introduction %}

{% endblock introduction %}

{% block documentation %}

{% endblock documentation %}
# -*- coding: utf-8 -*-

+ 1
- 0
hyde/widget.py View File

@@ -0,0 +1 @@
# -*- coding: utf-8 -*-

Loading…
Cancel
Save