PT Blog Version 2.0 Install

From ADF Docs
Revision as of 19:58, 30 April 2010 by Gcronkright (talk | contribs) (CCAPI Configuration)
Jump to: navigation, search

Download

Download the Blog Application from the Community Site Project or from the SVN Repository.

Extract the zip files into the following directory: /ADF/apps/pt_blog/

Site Configuration

  • Make sure the ADF is setup and running on the site. If the ADF is not setup, then follow the instructions for ADF Installation.
  • Open the sites 'ADF.cfc' ( See Site Configuration (ADF.cfc) for more info) file in a text editor. Locate the Load the ADF Application into application space comment in the file. Add the following command under the comment section:
loadApp("ptBlog2");

Import Custom Elements

Create a "Blog Elements" category and import all portions of each component in the order listed.

Import Custom Element:

  1. Blog2 (Blog2-Custom-Element.zip)
  2. Posts2 (Posts2-Custom-Element.zip)
  3. Comments2 (Comments2-Custom-Element.zip)
  4. PTBlog2 Configuration (PTBlog2-Configuration-Custom-Element.zip)

Import Metadata:

  1. Blogs (Blogs-Metadata-Form.zip)

Verify Imports

The imported components' render handlers and custom field types must be verified. During the import process, the render handler and custom field types paths may have been changed to reflect the current site's path.

Review and update these paths to reference the ADF path. In most cases, this will just require to be unlocked and a change in the path from the site name to 'ADF'. Check the paths for the custom field types that were imported with the custom elements by unlocking them and fixing the explicit paths to point to "/ADF/extensions/".

If the custom elements that are imported contain custom field types that are already in the site, the naming convention for the custom field type will be unique. To resolve this, unlock the field types and elements, and reassign the element field type to the pre-existing field type.

Subsites

It is highly recommended this Blog Web Admin subsite for administrators and a Blog Lightbox subsite for the lightbox pages. This allows security to be setup for the subsite to allow only administrators access for the webadmin and the CS toolbar turned off for the lightbox pages.

Your site may already have a webadmin and/or lightbox subsite. The steps below will add a blogs subsite into the webadmin and lightbox subsites.

Web Admin

  1. Create a new subsite under the site root called webadmin.
  2. Create a new subsite under webadmin called blogs.
  3. Configure the /webadmin/blogs/ subsite Content Security to give 'No Rights' to 'Anonymous Users' and 'Authenticated Users'.
  4. Configure the /webadmin/blogs/ subsite Content Security to give permissions to the group of administrators who will manage the Blogs.

Lightbox

  1. Create a new subsite under the site root called lightbox.
  2. Create a new subsite under lightbox called blogs.

Blogs

The subsite for the blog pages must be created manually. This subsite is custom to your implementation and can be any subsite within the site. If you don't have a specific subsite then create a Blogs subsite under the site root.

Templates

Lightbox Template

The Lightbox template will be used to render pages within a lightbox. The Lightbox template may already exist on your site if you have installed another ADF application. Check your sites templates before following the steps below to create the template.

  1. Create a new page named Lightbox Template from the Blank Layout Template in the Lightbox subsite.
  2. Submit and activate the page.
  3. Save the page as a template.
  4. Submit the template for public use.

Blog Post Template

The Blog Post Template is the template that all the blog post pages are created from. To construct your Blog Post Template complete the following steps.

  1. Create a CommonSpot page called 'Blog Post' from the Base Plus One template. (The subsite for this is not critical but it is a good idea to create this page in a subsite that has been created for the Blogs.
  2. Place the Posts2 Custom Element on this page.
  3. Click Render Mode in the element interface.
  4. Select Display existing element data (content reuse) on the Rendering Mode tab.
  5. Select the Filter tab.
  6. Select Filter Type to Show subset of records.
  7. Select the field drop-down as the PostID field.
  8. Select the operator as Equals.
  9. Click the '...' button to open the ColdFusion expression window.
  10. Enter the text request.page.metadata.blogs.postID as the expression and check the force cache checkbox. Click OK and then check the box to Ignore ColdFusion error, then click OK.
  11. Click OK on the render mode window.
  12. Click More in the element interface. Then the Custom Render Handlers menu option, and choose the Main Display Render Handler.
  13. Submit Page and then Save as Template.
  14. Remember to submit the template for public use.
  15. Go to the CommonSpot Site Administration and bind the Blogs metadata form to this new Blog Post Template.

CCAPI Configuration

The Blog Application uses the ADF CCAPI to populate blog post records. This needs to be configured for the site and blog app.

Follow the steps to setup the CCAPI Config file for the site if this is not done. Once this is completed, follow the steps below to setup the CCAPI config for the Blog App. Make sure to update the wsVars section with the correct URL's and username/password.

  1. Create a new page called 'ccapiBlog'. Recommend creating this page in the /webadmin/blogs/ subsite.
  2. Add the 'Posts2' element to the page.
  3. Select the 'Posts2' element indicator and go to 'more...'. Select 'Name' from the menu.
  4. In the Element Name field, enter the text 'ccapiPosts2Element'.
  5. Add the 'Comments2' element to the page.
  6. Select the 'Comments2' element indicator and go to 'more...'. Select 'Name' from the menu.
  7. In the Element Name field, enter the text 'ccapiComments2Element'.
  8. Publish this page and put in read mode.
  9. Edit the 'ccapi.xml' file for the site and add the following xml block into the <elements> section:
<BlogPost>
  <pageID>#####</pageID>
  <subsiteID>##</subsiteID>
  <elementType>custom</elementType>
  <controlName>ccapiPosts2Element</controlName>
</BlogPost>
<Comments>
  <pageID>#####</pageID>
  <subsiteID>##</subsiteID>
  <elementType>custom</elementType>
  <controlName>ccapiComments2Element</controlName>
</Comments>
  1. To populate the <pageID> and <subsiteID> tags, view the source code for the 'ccapiBlog' page that was just created.
  2. Identify the following line in the source code and enter this numeric value into the <subsiteID> tag:
var jsSubSiteID = ##;
  1. Identify the following line in the source code and enter this numeric value into the <pageID> tag:
var jsPageID = ####;

Reset the ADF for the server and site.

Create Add Blog Post Page

This page will be used to create new Blog Posts in the Blog Administrator. Each Blog will share this Add page.

  1. Create a new page from the Lightbox template called "Add Blog" in the /lightbox/blogs/ subsite.
  2. In the main content of the page, add a Custom Script element.
  3. Select the "/ADF/apps/pt_blog/customcf/handle_blog_post_create.cfm" script (Note: after page reloads a Simple Form Element will Appear)
  4. Choose "Select Form" from the Simple Form Element Interface
  5. Choose option 2 (Select Simple Form/Custom Element)
  6. Select the "Blog Posts" Custom Element
  7. For the Form Action: choose Display Textblock on Submission option and add 'Blog Post Successfully Created!' text in the RTE.
  8. Publish Page

Create Blog Dashboard Page

This page will be used to manage the blog post and comments for each blog. Each Blog will share this Dashboard Page.

  1. Create page from the Base Plus One template called "Blog Dashboard" in the /webadmin/blogs/ subsite.
  2. Place Custom Script on the page
  3. Select the "/ADF/apps/pt_blog/customcf/blog_dashboard.cfm" script (after page reloads 2 tabs and links to datasheets will appear)

Configure Posts Tab

  1. Click the "Posts" tab
  1. Define a View for the Datasheet Element in this Tab - call it "All Blog Posts"
  2. Leave the View Source as the Default: Form Result/Custom Element Sheet
  3. Select the "Posts2" Custom Element and select the following columns: PostID, PostPageID, Title, Created By, and Date Posted.
  4. On the Datasheet, click on the "Filter" and apply the following filter: Field = BlogID; Operator = "equals"; Value = "request.params.blogID" (note: use the UDE button)
  5. Edit the datasheet columns.
    1. Edit the PostID column, change the render handler to: /ADF/apps/pt_blog/datasheet-modules/lightbox_edit_delete_post.cfm
    2. Edit the PostPageID column, change the render handler to: /ADF/apps/pt_blog/datasheet-modules/post_page_url.cfm

Configure Comments Tab

  1. Click the "Comments" tab
  1. Define a View for the Datasheet Element in this Tab - call it "All Blog Comments"
  2. Leave the View Source as the Default: Form Result/Custom Element Sheet
  3. Select the "Comments2" Custom Element and select the following columns: CommentID, Name, Created By, and Date Created.
  4. On the Datasheet, click on the "Filter" and apply the following filter: Field = BlogID; Operator = "equals"; Value = "request.params.blogID" (note: use the UDE button)
  5. Edit the datasheet columns.
    1. Edit the CommentID column, change the render handler to: /ADF/apps/pt_blog/datasheet-modules/lightbox_edit_delete_comment.cfm
  1. Publish the Blog Dashboard page.

Create Blogs Management Page

This page will be used to manage the blogs for the site.

  1. Create page from the Base Plus One template called "Blogs Manager" in the /webadmin/blogs/ subsite.
  2. Place Custom Script on the page
  3. Select the "/ADF/apps/pt_blog/customcf/all_blogs_manager.cfm" script.
  4. Define a View for the Datasheet Element for this page - call it "All Blogs"
  5. Leave the View Source as the Default: Form Result/Custom Element Sheet
  6. Select the "Blog2" Custom Element and select the following columns: blogID, blogTemplate, Name, Subsite, DateCreated, and Active.
  7. Edit the datasheet columns.
    1. Edit the blogID column, change the render handler to: /ADF/apps/pt_blog/datasheet-modules/blog_dashboard_link.cfm
    2. Edit the blogTemplate column, change the render handler to: /ADF/extensions/datasheet-modules/lightbox_edit_delete.cfm
    3. Clear the header text for the 2 fields.

Create Blog Configuration Record

We are creating a single Blog Configuration element record to be used within the application.

Go to the Blogs Management Page and select the Edit App Configuration link. In the form, select the CommonSpot pages that were created in the previous steps.

Reset the ADF for the server and site.

Blog Listing Page

This page will be used to list the Blog Posts.

  1. Create a new page from the Base Plus One template with page name "index" and title "Blogs" in the /blogs/ subsite.
  2. In the main content of the page, add "Posts2" element.
  3. Select the "Home Page Display" render handler.
  4. Open the elements "Render Mode" and select "Display existing element data (content reuse)" and "Render results dynamically based on a filter, or display all records.".
  5. Select the "Show all records" option and set the sort order to "Date Posted" is "Descending".
  6. Publish Page