Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Commits on Mar 10, 2011

  1. Fix writer path issue when copying regular files.

    This was found by Brandon Rhodes here
    (https://github.com/brandon-rhodes/blogofile/commit/c0341497765ceb216c4505499f40de9a8a17c0d6)
    and was applied to the plugins branch. Need to merge it to master as well.
    EnigmaCurry committed Mar 10, 2011

Commits on Mar 8, 2011

Commits on Mar 1, 2011

Commits on Feb 27, 2011

  1. Fix draft posts so once again create permapages.

    New unit test to makes sure drafts only appear on permapages.
    EnigmaCurry committed Feb 27, 2011
  2. Reverting permapage change from last commit.

    Need to discuss first.
    EnigmaCurry committed Feb 27, 2011
  3. Merge branch 'blogger'

    EnigmaCurry committed Feb 27, 2011
  4. Clean up blogger2blogofile.py a bit.

    * Make permalinks use the path only, a blogger.com permalink is
      useless because it will just be ignored with the user's new site.url
    * Clean up usage instructions (End users aren't going to care about
      the unit test.)
    * Added usage instructions to the top of the file.
    EnigmaCurry committed Feb 27, 2011
  5. Converter script to import blogger dump files. Also, avoid writing fi…

    …les in _site named .html.html
    Seth de l'Isle committed Feb 27, 2011

Commits on Feb 22, 2011

  1. Fixes blogofile serve on windows.

    Thanks to Seth de l'Isle for recognizing that we weren't actually
    needing a regex here.
    EnigmaCurry committed Feb 22, 2011

Commits on Feb 19, 2011

  1. Adds guid generation in many cases where guid would have been None an…

    …d use of that guid value when expanding :uuid in urls.
    Seth de l'Isle committed Feb 19, 2011

Commits on Feb 9, 2011

Commits on Feb 6, 2011

  1. Split up blog_features into parts:

     * blog_controller
     * blog_filters
     * blog_templates
    
    This is so we can later on instantiate the controller seperately.
    EnigmaCurry committed Feb 6, 2011
  2. Makes sure we don't catch exceptions we didn't want to catch in contr…

    …oller/filter initialization.
    EnigmaCurry committed Feb 6, 2011
  3. Moves all the blog controller settings out of the canonical _config.p…

    …y and places them in the blog controller itself.
    
    This should have been done ages ago...
    EnigmaCurry committed Feb 6, 2011
  4. Makes the blog controller templates relocatable.

    Blog templates from 'simple_blog init' are now placed in the _templates/blog directory to differentiate them from site templates. This was very confusing for new users previously. Hopefully the new structure has more logical sense to it.
    
    This redefines the parent feature of the templates, some are children of simple_blog, some are children of blog_features:
    
    Children of simple_blog (goes in _templates):
    
     * base.mako
     * site.mako
     * head.mako
     * header.mako
     * footer.mako
    
    Children of blog_features (goes in _templates/blog):
    
     * atom.mako
     * chronological.mako
     * permapage.mako
     * post_excerpt.mako
     * post.mako
     * rss.mako
    
    blog_feature templates will still work from the _templates directory if they are not found in the _templates/blog directory. This is for two reasons:
    
     1) All existing blogofile users will have these templates in the _templates dir.
     2) The _templates dir has to be on the lookup path in order for inheritance to work anyway for the base template(s).
    
    Finally, there are new blog config options:
    
    The blog template directory can be relocated anywhere in your source directory:
    
        controllers.blog.template_path = "_my_templates/my_blog_templates"
    
    The base template for the blog templates no longer has to be named site.mako:
    
        controller.blog.base_template = "some_other_base.mako"
    EnigmaCurry committed Feb 6, 2011
  5. Adds recursive site init feature loading.

    Adds the current blogofile version to the blog controller in this fashion.
    EnigmaCurry committed Feb 6, 2011
  6. Cleans up debug mode.

    If BLOGOFILE_DEBUG environment variable is "ipython" instantiate a IPython embedded shell at bf.ipshell. If BLOGOFILE_DEBUG is anything else, except 0, run the winpdb environment we had before.
    EnigmaCurry committed Feb 6, 2011
  7. Moves server import to the top.

    This also allows server module to be accesed from bf cache in all cases.
    EnigmaCurry committed Feb 6, 2011
  8. Adds the controller module to the bf cache.

    Somehow this got missed before?
    EnigmaCurry committed Feb 6, 2011
Older