source: products/SimpleBlog/trunk/content/__init__.py

Last change on this file was 1, checked in by myroslav, 18 years ago

Building directory structure

  • Property svn:eol-style set to native
File size: 494 bytes
Line 
1# This statement makes Blog, BlogEntry and BlogFolder available to import via:
2#   from Products.SimpleBlog.content import Blog, BlogFolder, BlogEntry
3# Without it, you would have to use:
4#   from Products.SimpleBlog.content.Blog import Blog
5#   from Products.SimpleBlog.content.BlogFolder import BlogFolder
6#   from Products.SimpleBlog.content.BlogEntry import BlogEntry
7
8from blog import Blog
9from blogfolder import BlogFolder
10from blogentry import BlogEntry
11from trackback import TrackBack
12
Note: See TracBrowser for help on using the repository browser.