Email-to-Blog How It Works (part 3). This Is The «Email-to-blog» System Architecture.

Slides:



Advertisements
Similar presentations
How to Register at My. SSS. Before starting, please ensure you have following : Your SSS Number Your account MNCs SSS Number :
Advertisements

GEtServices Services Training For Suppliers Requests/Proposals.
File Server Organization and Best Practices IT Partners June, 02, 2010.
1. 2www.nacmtampa.com Home Page 3 Member Login Page.
Step - 1 Login to your account with the username and password sent to you in the membership package Ad Content Copy the Ad Content given in your Member.
People in Design Damian Gordon. People in Design Why do we care about people in design? – Because we build software systems for other people, so we have.
Cisco Confidential 1 © Cisco and/or its affiliates. All rights reserved. Last Updated: April 2014 Instructions for Navigating in the Training.
Setting up Users for the Motor Fleet Management System North Carolina Department of Administration Division of Motor Fleet Management.
Distributed Software Development
The 12 screens to follow contain a number of Tool descriptions, some instructions on their use, and in some cases a Task or two. If you dedicate one hour.
Develop a Classical Group Management Site using Drupal Commons By Muhammad Iqbal.
Membership leader training SVWF. How to add members Add children to the database /database/addhttp://
MDECA SECURITY UPDATES Update & Review for Security Changes!
GEtServices Contingent Staff Training For Suppliers.
The DSpace Course Module – Item submission workflows.
May 2, 2013 An introduction to DSpace. Module 9 – Item submission workflows By the end of this module, you will … Understand the purpose of workflows.
Copyright © 2013 Curt Hill Database Security An Overview with some SQL.
CRUD Matrix Presented by Trisha Cummings. Background to a CRUD Matrix CRUD stands for :- Create, Read, Update and Delete. A CRUD Matrix is very useful.
Control Groups Workshop State of Indiana Instructor: Gerri Williams 2/6/2013.
Global Teacher Blogs. Blogs – (Web log) a blog is a web site that is usually used as an individual journal and is publicly accessible. (
West Virginia University Slide 1 Copyright © K.Goseva 2010 CS 736 Software Performance Engineering Comments on Homework #1  Please revise the solution.
GOAL User Interactive Web Interface Update Pages by Club Officers Two Level of Authentication.
Inventory & Monitoring Program SharePoint Permissions Who has access? What can they do with the access? What is the easiest way to manage the permissions?
Table of Contents TopicSlide Administrator Login 2 Administrator Navigations 3 Managing AlternativeDr.com Blogs 4 Managing Dr. Lloyd May Blogs 5 Managing.
GEtServices Purchasing Units & Materials Training For Suppliers Request.
SANSUEB SOFTWARE PRESENTS SkyTextMsg – Online Texting for your Business.
Welcome! Are you brand new to Connect? Please find a computer towards the front of the room. Be sure to: – Sign in – Log in to the computer with your user.
-to-Blog How It Works. This Is The « -to-blog» System Architecture.
Enter the URL Enter the URL. 2. Enter the Password 1. Enter the login ID 3. Click on submit button 3. Click on submit button.
Chapter 13Introduction to Oracle9i: SQL1 Chapter 13 User Creation and Management.
Provider Modifications. Log-in to IMPACT Enter the User ID and Password then, click Login.
Ben Staden, 8OH February Delete it immediately 2. Sometimes read it 3. Ask to be removed from the list 4. Filter it out in my e- mail program 5.
PVC Enablers Admin Specifications. Byte - Edit ActorPlatform Admin, Community Admin Module NamePVC-Community Sub-Module NameCollaboration HL FunctionalityByte.
William V. Richardson Jr. and John T. Barrera Personnel Defense Property Accountability System (DPAS) Warehousing Application United States Marine Corps.
© 2003 By Default! A Free sample background from Slide 1 Week 3  Backend Construction  Create your own CRM Please Visit:
Database Security Database System Implementation CSE 507 Some slides adapted from Navathe et. Al.
Use Outlook Task API to access tasks stored on user’s mailbox. These REST API’s are  Simple to use.  Supports CRUD.  JSON structured.  OAuth 2.0.
Use Cases & User Mocks Customer Call – Users and Objects.
Database Security Advanced Database Dr. AlaaEddin Almabhouh.
Justin Scheitlin Daisey Fahringer
Remark Test Grading Cloud: A Primer
Database System Implementation CSE 507
MOBILE ACCESS & PDS CONNECTS
Website URL STEPS FOR SELF REGISTRATION
iShop Training Module Access & Security
Partner Program Platform Training Partner Self Service
Module 7: Managing Access to Objects in Organizational Units
Riding the Wave of Innovation
CMRTA Website Handbook:.
last modified 3/1/12LL->printed November 2012
1 backpage-inlandempire| back page inlandempire
Overview of managing access for a Bill to ID
Test user recipient list
User Guide Portman Livewire
How to post on Wikispaces
Troubleshooting Common Error / System Messages
So you were told to make a website
School Of Diabetes Website
Mexico 24 Hours Advance Manifest
Duly Authorized Representative
If you need to set your agency up as a new user, select Setup Agency Profile.
Training tool Admin General Settings
Copyright © 2013 – 2018 by Curt Hill
III. Responsibilities of Admin Login – Master Creation
Questions about the transition? Contact your Community Manager
Updating Databases With Open SQL
III. Responsibilities of Admin Login – Master Creation
Lion Account Universal Login 3/27/19.
Updating Databases With Open SQL
Preparing for the future …
Presentation transcript:

-to-Blog How It Works (part 3)

This Is The « -to-blog» System Architecture

3. How the Blog Admin Panel works Blog Admin Panel allows admin to manage blog list and user list and to have control over the users’ membership in blogs (grant/revoke the right to post messages to a blog). It also provides a way to view and to delete blog messages.

3. How the Blog Admin Panel works First of all admin should be able to create/update/delete blogs. BlogBean class implements all the necessary operations. Create Blog: Update Blog: Delete Blog: Create Blog: INSERT INTO blogs (id, name, ,intro) VALUES (NEXTVAL('blog_id_seq'), ?, ?, ?) Update Blog: UPDATE blogs SET name=?, =?,intro=? WHERE id=3 Delete Blog: DELETE FROM blogs WHERE id=7 SELECT * FROM blogs

3. How the Blog Admin Panel works Create User: INSERT INTO authors (id, name, ) VALUES (NEXTVAL(’author_id_seq'), ?, ?) Update User: UPDATE authors SET name=?, =? WHERE id=4 Delete User: DELETE FROM authors WHERE id=6 The second admin task is to create/update/delete users. AuthorBean class implements all the user-related operations. Please note that there is a non-deletable user - «PUBLIC». This user account should be used when admin wish to create a publicly accessible blog. I.e. anybody can post messages to such a blog. Create User: Update User: Delete User: SELECT * FROM authors

3. How the Blog Admin Panel works Make User a Blog Member: INSERT INTO groups (blog_id, author_id) VALUES (?, ?) Remove User from the Blog Member List: DELETE FROM groups WHERE blog_id=? AND author_id=? When the blogs and the users have been created, admin should assign users’ membership in blogs. BlogBean class implements the member- related operations. Each user can be a member of any number of blogs. SELECT author_id FROM groups WHERE blog_id=? AND author_id=?

3. How the Blog Admin Panel works DELETE FROM messages WHERE id=134 Sometimes admin needs to delete some messages posted to a blog (e.g. message was posted by mistake). MessageBean implements the message- related operations. Currently admin can only view and delete messages. So, the message can be modified after it has been posted. SELECT * FROM messages WHERE author_id=4 ORDER BY tstamp, blog_id