CS3051: Digital Content Management

Size: px
Start display at page:

Download "CS3051: Digital Content Management"

Transcription

1 CS3051: Digital Content Management Lecturer: Adrian O Riordan Office: Room G.71 WGB a.oriordan@cs.ucc.ie Course Webpage: Lectures 1 & 2: Course Overview and Introduction to CMSes 1

2 CS3051 Overview 5 Credit course on Content Management and Content Management Systems Pre-requisite: CS2051 Introduction to Digital Media or equivalent Lectures: 2 lectures in Period 1 Tuesdays 11-12am and Wednesdays 3-4pm Labs: to be announced, starting in week 4? Tutorials: as required Assessment will consist of an end-of-year written examination (80%) and continuous assessment during the year (20%). You have to pass combined total. There is a re-sit in the autumn your continuous assessment mark is carried forward. 2

3 CS3051 On-line Webpage at Will contain: Course Overview: module content, etc. Notices All lectures slides (as course progresses) Reading list and Web links Assignments and Exercises 3

4 CS3051 Learning Outcomes According to Book of Modules: Understand the issues associated with managing digital content Appreciate the underlying content storage and delivery technologies Apply the skills learned to the design of multimedia websites. 4

5 Teaching Methods It is important that you attend both the lectures and labs. Labs will use the PHP programming language and a free opensource Content Management System. Assignments and exercises will be placed on the course webpage during the year. No textbook covers all the material exactly. See the list of books/websites on course Website. 5

6 Course Contents Content Management Systems Overview PHP Programming and form processing Content indexing, discovery, and search Web publishing and syndication Content storage file-based, XML, Relational DB Putting it all together 6

7 CS3051 Useful books and Websites Further reading list on course Website: (to do) And relevant Web links 7

8 CMSes A Content Management System is software or a suite of software applications and tools that enable the creation, editing, reviewing and publishing of electronic text and multimedia content. They are used in a lot of large Websites informational sites, e.g. news, and e-commerce sites (shopping), and blogging sites It is the term used to represent a broad scope of systems. In most CMSes maintenance is via a central interface, such as a Web-based GUI, enabling publishers to access the CMS online using a Web browser. 8

9 Content and publishing Content text, images, video, etc. used for electronic publication on the Web. content often has associated metadata Content is often marked up or tagged in formats such as HTML, XML Multichannel publishing means delivering a publication to your readers in many ways (channels) e.g. Web, mobile, newsletter, Web syndication (RSS) 9

10 Why can t I just use plain HTML? Doesn t scale well for large sites that can have thousands of documents with images, video, etc. Difficult to search for content or to reuse content Difficult to maintain content How do you handle multiple versions of the same object? How to you deal with different user devices, e.g. desktop and mobile? Security issues such as access control 10

11 CMSes to the rescue Avoid the need for hand coding (writing the actual HTML/XML) Allow users with little knowledge of Web programming languages or mark-up languages to create and manage Website content Support multiple content formats Support content reuse Support publishing in multiple ways 11

12 CMS layers A presentation layer displays the content to website visitors An application layer with the CMS features A data layer uses a content repository or a database to store page content, metadata, and other assets 12

13 Architecture of CMS diagram from 13

14 CMS features CMSes vary widely from simple file-based systems to complex enterprise systems Most CMSes support features such as management of text and multimedia indexing, search, and retrieval revision (version) control separation of presentation and content Web-based publishing. 14

15 Separation of presentation and content Design philosophy and a methodology applied in the context of various publishing technology Make a distinction between the actual meaning of a document, and how this meaning is presented to its readers Example: HTML (content) and CSS (presentation) Enables the deliver the same information in different media channels 15

16 Example: HTML and CSS <!DOCTYPE html> <html> <head> <style> p { } text-align: center; color: red; </style> </head> <body> Every paragraph will be affected by the style. Me too! And me! <p>every paragraph will be affected by the style.</p> <p id="para1">me too!</p> <p>and me!</p> </body> </html> 16

17 Types of Content Management Systems Web Content Management System managing and delivering content to Web sites Digital Asset Management System managing multimedia components and their corresponding metadata Document Management System managing whole documents rather than the actual content itself Enterprise Content Management System managing all aspects of content within an organization (i.e., s, business documents, and more); used throughout the enterprise. 17

18 Examples of Web CMSes Popular content management systems include Wordpress Joomla Drupal Magento TYPO3 Microsoft SharePoint Alfresco These are all free open-source software except SharePoint free because software costs 0 open source because source code is made available. Full list: 18

19 CMS Market Share data from collected using Wappalyzer, an addon for Firefox and Google Chrome browser 19

20 Drupal Drupal is a free and open-source content management system for publishing Web content Available under GNU General Public License v2 Written in PHP Runs on any platform that supports a Web server capable of running PHP such as Apache Initially released in 2001; Current version is 8 Available in 100+ languages 20

21 Drupal continued Data stored in database such as MySQL, PostgreSQL, SQLite, or Microsoft SQL Server Supports more than 32K community-provided Modules (expansions) and 2K Themes that alter and extend the core capabilities and appearance of a Drupal site. Basic Web site installation and administration of the framework require no programming skills. Used by thousand of Websites e.g. cbsnews.com, nbc.com, TheWhiteHouse, Le Figaro newspaper online, Typepad, weather.com, androidcentral.com, economist.com, hollywood reporter, utexas.edu, Columbia.edu, telecomitalia.it, royalmail.com, menshealth.com, 21

22 Example Site: The Weather Channel (weather.com) 22

23 Drupal Backend 23

24 Joomla! Joomla! is another free and open-source content management system for publishing Web content Free open-source software available under GNU General Public License It is also written in PHP Initial release in 2005; current stable release in

25 Joomla! continued Backend storage in MySQL, MS SQL Server, or PostgreSQL Extensions available from Joomla! Extension Directory (more that 7.5K) five types of extensions: components, modules, plugins, templates, and languages Used by thousand of Websites e.g. Harvard University (educational), Citibank (financial institution intranet), The Guggenheim Museum (museum), Everything Peru (tourism), Peugeot.com (car manufacturer) 25

26 Joomla! interface 26

27 Wordpress Wordpress is a blogging tool and a CMS (wordpress.org) Wordpress started live as a blogging tool but was expanded to a full CMS Wordpress is the most popular CMS but not as powerful as Joomla or Drupal It s free open-source software available under GNU GPL v2 Uses PHP programming language and MySQL database system Wordpress can be extended using plugins 27

28 Wordpress Dashboard 28

29 Benefits of CMS for an Organization Centralized and shared content content is not scattered throughout the organization, which would result in erroneous content, duplication and content in many different formats Secure content privileges are assigned, so only authorized people can access content Quick creation of new publications content can be organized, searched, retrieved, and reused Timely delivery of publications single-source content can be updated once and send to multiple media channels 29

30 Choosing a CMS I Cost many are free although extensions may not Features certain features may be required, e.g. Collaboration allowing content to be retrieved and worked on by one or many authorized users others desirable but not essential Performance response time Scalability support for large volume and high numbers of users 30

31 Choosing a CMS II Extensibility and Integration CMS of your choice should easily integrate with other technology and platforms often CMSes can be extended with plugins/modules Works reliably bug rate and update schedule Ease of Use A CMS should be usable by non-technical people Customizable different layouts 31

32 Choosing a CMS III Security features such as Access control Multisite support Mobile support Android, iphone Training/Support Cost of maintenance maintaining CMSs may require license updates, upgrades, and hardware maintenance. 32

33 Drupal or Joomla or Wordpress? Wordpress in simpler and often used for small sites Joomla has been favoured by medium business market largely due to the ease in theming (source: CMSwire) Drupal has some (out-of-the-box) features and functionality that makes it a more natural choice in the enterprise, Dries Buytaert, founder of Drupal see e.g. for a comparison 33

34 Digital asset management (DAM) Management of annotation, cataloguing, storage, retrieval and distribution of digital assets, multimedia content Can include other features such as managing workflow, policy tracking, backing up, rating, grouping, and archiving Assets can include text documents, images, video, audio files, animations Asset have associated metadata metadata can describe means of encoding/decoding (e.g. MPEG 4), ownership; rights of access, and many other features 34

35 DAM continued Assets can be stored in the file system, or in a database Workflow Automation streamline content creation and asset handling Specialized software for DAM includes WebDAM (Shutterstock) Cumulus (Canto) 35

36 WebDAM 36

Developing a Website. Chito N. Angeles Web Technologies: Training for Development and Teaching Resources

Developing a Website. Chito N. Angeles Web Technologies: Training for Development and Teaching Resources Developing a Website Chito N. Angeles Web Technologies: Training for Development and Teaching Resources Static vs. Dynamic Website Static Website Traditional Website Contains a fixed amount of pages and

More information

Open Source Content Management System for content development: a comparative study

Open Source Content Management System for content development: a comparative study Open Source Content Management System for content development: a comparative study D. P. Tripathi Assistant Librarian Biju Patnaik Central Library NIT Rourkela dptnitrkl@gmail.com Designing dynamic and

More information

Web Development News, Tips and Tutorials

Web Development News, Tips and Tutorials Web Development News, Tips and Tutorials In this section I will try to explain what we could and how we maybe helpful for your company and online business. The purpose of this site is to show what we had

More information

Workshop on Using Open Source Content Management System Drupal to build Library Websites Hasina Afroz Auninda Rumy Saleque

Workshop on Using Open Source Content Management System Drupal to build Library Websites Hasina Afroz Auninda Rumy Saleque Workshop on Using Open Source Content Management System Drupal to build Library Websites Hasina Afroz Auninda Rumy Saleque Funded by: INASP, UK October 7, 2012 Ayesha Abed Library http://library.bracu.ac.bd

More information

Mindshare Studios Introductory Guide to Content Management Systems

Mindshare Studios Introductory Guide to Content Management Systems Mindshare Studios Introductory Guide to Content Management Systems A quick introduction to web-based content management. What is a CMS? A content management system (CMS) is a web application for creating

More information

Web Design Technology

Web Design Technology Web Design Technology Terms Found in web design front end Found in web development back end Browsers Uses HTTP to communicate with Web Server Browser requests a html document Web Server sends a html document

More information

Content Management Systems: Drupal Vs Jahia

Content Management Systems: Drupal Vs Jahia Content Management Systems: Drupal Vs Jahia Mrudula Talloju Department of Computing and Information Sciences Kansas State University Manhattan, KS 66502. mrudula@ksu.edu Abstract Content Management Systems

More information

DEVELOPING AN OPEN SOURCE CONTENT MANAGEMENT STRATEGY FOR E-GOVERNMENT

DEVELOPING AN OPEN SOURCE CONTENT MANAGEMENT STRATEGY FOR E-GOVERNMENT Abhijeet Chavan Editor, Planetizen; Chief Technology Officer, Urban Insight Los Angeles, CA 90036 Phone: 323-966-4540; Fax: 323-966-4544; Email: chavan@planetizen.com DEVELOPING AN OPEN SOURCE CONTENT

More information

TYPO3 6.x Enterprise Web CMS

TYPO3 6.x Enterprise Web CMS An Acira Group Whitepaper April 2013 TYPO3 6.x Enterprise Web CMS A cloud ready open source web platform with enterprise systems integration Executive Summary TYPO3 separates content from design and function,

More information

Introduction to Web Content Management Systems Site Development SYLLABUS FALL 2012

Introduction to Web Content Management Systems Site Development SYLLABUS FALL 2012 Introduction to Web Content Management Systems Site Development SYLLABUS FALL 2012 CSCI E-30, (23304; 23341) Last Updated: 7/16/2012 Course Description: In a rapidly changing world, the need for online

More information

WebLink 3 rd Party Integration Guide

WebLink 3 rd Party Integration Guide 1. Introduction WebLink provides the world s leading online Chamber and Association Management Software: WebLink Connect. While WebLink does provide custom website design and hosting services, WebLink

More information

Christopher Zavatchen

Christopher Zavatchen Christopher Zavatchen chris@cnc137.com 330-558-1137 273 Bettie Lane Brunswick, Ohio 44212 Objective Seeking a career opportunity enabling me to fully utilize my web design and development skills while

More information

Choosing a Content Management System (CMS)

Choosing a Content Management System (CMS) Choosing a Content Management System (CMS) Document Version Revision History Date Document Version Description Created By: 10/Oct/2013 First draft Laraib Saad Table of Contents 1. Introduction

More information

Content Management Software Drupal : Open Source Software to create library website

Content Management Software Drupal : Open Source Software to create library website Content Management Software Drupal : Open Source Software to create library website S.Satish, Asst Library & Information Officer National Institute of Epidemiology (ICMR) R-127, Third Avenue, Tamil Nadu

More information

How To Manage Your Digital Assets On A Computer Or Tablet Device

How To Manage Your Digital Assets On A Computer Or Tablet Device In This Presentation: What are DAMS? Terms Why use DAMS? DAMS vs. CMS How do DAMS work? Key functions of DAMS DAMS and records management DAMS and DIRKS Examples of DAMS Questions Resources What are DAMS?

More information

A Short Term E-commerce Course

A Short Term E-commerce Course ADMEC TM Multimedia Institute A Short Term E-commerce Course E-commerce Standard Duration: 03 Months w [Class Room Online Training] TM An ISO 9001:2008 Institute w Drupal Magento WordPress Basics of E-commerce

More information

OPEN SOURCE CONTENT MANAGEMENT SOFTWARE, JOOMLA & DRUPAL: A COMPARATIVE STUDY. Librarian. Kendriya Vidyalaya Tinsukia. West Bengal, India

OPEN SOURCE CONTENT MANAGEMENT SOFTWARE, JOOMLA & DRUPAL: A COMPARATIVE STUDY. Librarian. Kendriya Vidyalaya Tinsukia. West Bengal, India OPEN SOURCE CONTENT MANAGEMENT SOFTWARE, JOOMLA & DRUPAL: A COMPARATIVE STUDY Deep Kr. Kirtania Library Trainee Administrative Training Institute, Kolkata, West Bengal, India Mithun Sarkar Librarian Kendriya

More information

Content Management Systems: Drupal Vs Jahia

Content Management Systems: Drupal Vs Jahia Content Management Systems: Drupal Vs Jahia Mrudula Talloju Department of Computing and Information Sciences Kansas State University Manhattan, KS 66502. mrudula@ksu.edu Abstract Content Management Systems

More information

MALAYSIAN PUBLIC SECTOR OPEN SOURCE SOFTWARE (OSS) PROGRAMME BENCHMARK/COMPARISON REPORT DOCUMENT MANAGEMENT SYSTEMS (NUXEO AND ALFRESCO)

MALAYSIAN PUBLIC SECTOR OPEN SOURCE SOFTWARE (OSS) PROGRAMME BENCHMARK/COMPARISON REPORT DOCUMENT MANAGEMENT SYSTEMS (NUXEO AND ALFRESCO) MALAYSIAN PUBLIC SECTOR OPEN SOURCE SOFTWARE (OSS) PROGRAMME BENCHMARK/COMPARISON REPORT DOCUMENT MANAGEMENT SYSTEMS (NUXEO AND ALFRESCO) DECEMBER 2009 Copyright The Government of Malaysia retains the

More information

The Study of Open Source CMSs CHETAN GOPILAL JAIN. A thesis submitted to the. Graduate School-New Brunswick

The Study of Open Source CMSs CHETAN GOPILAL JAIN. A thesis submitted to the. Graduate School-New Brunswick The Study of Open Source CMSs By CHETAN GOPILAL JAIN A thesis submitted to the Graduate School-New Brunswick Rutgers, The State University of New Jersey in partial fulfillment of the requirements for the

More information

Building Library Website using Drupal

Building Library Website using Drupal Building Library Website using Drupal Building the Library Web Site "The Web is quickly becoming the world's fastest growing repository of data." [Tim Berners-Lee, W3C director and creator of the World

More information

RARITAN VALLEY COMMUNITY COLLEGE ACADEMIC COURSE OUTLINE. CISY 222 Content Management Systems

RARITAN VALLEY COMMUNITY COLLEGE ACADEMIC COURSE OUTLINE. CISY 222 Content Management Systems RARITAN VALLEY COMMUNITY COLLEGE ACADEMIC COURSE OUTLINE CISY 222 Content Management Systems I. Basic Course Information A. Course Number and Title: CISY 222 Content Management Systems B. New or Modified

More information

Annex E - Capability Building Policy

Annex E - Capability Building Policy Page 1 DEPARTMENT OF Version: 1.5 Effective: December 18, 2014 Annex E - Capability Building Policy This Capability Building Policy is an annex to the Government Web Hosting Service (GWHS) Memorandum Circular

More information

OPEN SOURCE CONTENT MANAGEMENT SYSTEM

OPEN SOURCE CONTENT MANAGEMENT SYSTEM OPEN SOURCE CONTENT MANAGEMENT SYSTEM AN OVERVIEW by Jinu S. Rajan Research Scholar Dept. of Library and Information Science University of Kerala CONTENT MANAGEMENT SYSTEM (CMS) Digital content is any

More information

QUESTIONS AND ANSWERS

QUESTIONS AND ANSWERS Request for Proposal Development of St. Cloud Technical & Community College Website April 2015 QUESTIONS AND ANSWERS Questions were submitted via email by vendors or asked at the Q&A on April 14. Answers

More information

Creating Library Website Using Open Source Content Management System

Creating Library Website Using Open Source Content Management System Creating Library Website Using Open Source Content Management System Vimal kumar V. 1 and Deepak Sankar 2 1 Asian School of Business Technopark Trivandrum-695 581 Vimal0212@yahoo.com 2 Deepak Shankar Malayalam

More information

TERMS OF REFERENCE. Revamping of GSS Website. GSS Information Technology Directorate Application and Database Section

TERMS OF REFERENCE. Revamping of GSS Website. GSS Information Technology Directorate Application and Database Section TERMS OF REFERENCE Revamping of GSS Website GSS Information Technology Directorate Application and Database Section Tel: Accra 0302 682656 Cables: GHANASTATS In case of reply the number and date of this

More information

How to Create a Successful Website Based With Drupal

How to Create a Successful Website Based With Drupal CALS Communications and Cyber Technologies (CCT) Service Catalog Web Hosting Static-HTML Website Hosting: free Sites developed in Dreamweaver or other HTML development software that do not require a database.

More information

A Close Look at Drupal 7

A Close Look at Drupal 7 smart. uncommon. ideas. A Close Look at Drupal 7 Is it good for your bottom line? {WEB} MEADIGITAL.COM {TWITTER} @MEADIGITAL {BLOG} MEADIGITAL.COM/CLICKOSITY {EMAIL} INFO@MEADIGITAL.COM Table of Contents

More information

SKILLS HIGHLIGHTS: W e b a n d G r a p h i c D e s i g n e r

SKILLS HIGHLIGHTS: W e b a n d G r a p h i c D e s i g n e r Henry Lee W e b a n d G r a p h i c D e s i g n e r Phone: 416-738-4911 E-mail: siulunglee@yahoo.com Portfolio URL: http://www.centralconnect.ca/henry/ SKILLS HIGHLIGHTS: Web Administration and New Media

More information

Business Portfolio. Jaipur, P. O. Box 936

Business Portfolio. Jaipur, P. O. Box 936 Business Portfolio Cogniz Software Solutions (sister concern of emath360 LLC, a North Carolina USA based Company) Malviya Nagar, Jaipur,Rajasthan, India-302017 www.cognizsoftware.com www.emath360.com D-341,

More information

Bureau for Visual Affairs. content management system. Keep your website up-to-date and relevant with ease

Bureau for Visual Affairs. content management system. Keep your website up-to-date and relevant with ease content management system Keep your website up-to-date and relevant with ease 1 Only an up-to-date and well maintained website is perceived as relevant and will generate return visits and involvement.

More information

Short notes on webpage programming languages

Short notes on webpage programming languages Short notes on webpage programming languages What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language A markup language is a set of

More information

Web Design and Development Certificate Program

Web Design and Development Certificate Program Information Technologies Programs Web Design and Development Certificate Program Accelerate Your Career extension.uci.edu/webdesign University of California, Irvine Extension's professional certificate

More information

Typo3_tridion. SDL Tridion R5 3/21/2008

Typo3_tridion. SDL Tridion R5 3/21/2008 Product Last Updated System Requirements Application Server Approximate Cost Database License Operating System Programming Language Root Access Shell Access Web Server Security Audit Trail Captcha Content

More information

A guide for Selecting Content Management System for Web Application Development

A guide for Selecting Content Management System for Web Application Development ISSN: 2321-7782 Volume 1, Issue 3, August 2013 International Journal of Advance Research in Computer Science and Management Studies Research Paper Available online at: www.ijarcsms.com A guide for Selecting

More information

WEB CONTENT MANAGEMENT SYSTEM

WEB CONTENT MANAGEMENT SYSTEM WEB CONTENT MANAGEMENT SYSTEM Manoj Kumar Srivastav 1 Asoke Nath 2 Champdani Adarsh Sharmik Vidyamandir, Department of Computer Science, 3, R. B. S. Road, Champdani, Post-Baidyabati, St. Xavier s College

More information

RFP# 027-1516. ADDENDUM No. 1 Questions and Answers

RFP# 027-1516. ADDENDUM No. 1 Questions and Answers SPECIAL ADMINISTRATIVE BOARD OF THE TRANSITIONAL SCHOOL DISTRICT OF THE CITY OF ST. LOUIS Purchasing Department 801 North 11th Street Saint Louis, Missouri 63101 RFP# 027-1516 Website and Mobile App Development

More information

Typo3_smartsite. Smartsite CMS Release 5 5/24/2006

Typo3_smartsite. Smartsite CMS Release 5 5/24/2006 Product Last Updated Release 5 5/24/2006 System Requirements Application Server Approximate Cost IIS 20K + Database License Oracle, MS SQL-Server various modules Operating System Win 2000, 2003.NET,COM,

More information

How To Manage Your Organisation With Qi

How To Manage Your Organisation With Qi Qi The Universal Content Management solution Qi is a web-based content, information and asset management solution that allows organisations of any size to manage, publish and share their content. Qi can

More information

Document Freedom Workshop 2012. DFW 2012: CMS, Moodle and Web Publishing

Document Freedom Workshop 2012. DFW 2012: CMS, Moodle and Web Publishing Document Freedom Workshop 2012 CMS, Moodle and Web Publishing Indian Statistical Institute, Kolkata www.jitrc.com (also using CMS: Drupal) Table of contents What is CMS 1 What is CMS About Drupal About

More information

Course Syllabus Web Page Design 2 IMED 2315

Course Syllabus Web Page Design 2 IMED 2315 Semester with Course Reference Number (CRN) Instructor contact information (phone number and email address) Office Location and Hours Course Location/Times Course Semester Credit Hours (SCH) (lecture,

More information

The easy way to a nice looking website design. By a total non-designer (Me!)

The easy way to a nice looking website design. By a total non-designer (Me!) The easy way to a nice looking website design By a total non-designer (Me!) Website Refresher Three types of Website 1.Hand rolled HTML. Lightweight static pages. 2.Scripted Website. (PHP, ASP.NET etc.)

More information

BUILDING WEB JOURNAL DIRECTORY AND ITS ARTICLES WITH DRUPAL

BUILDING WEB JOURNAL DIRECTORY AND ITS ARTICLES WITH DRUPAL BUILDING WEB JOURNAL DIRECTORY AND ITS ARTICLES WITH DRUPAL Suwanto Raharjo Institute Science & Technology AKPRIND, Yogyakarta, Indonesia email: wa2n@akprind.ac.id Abstract The rapid growths of web based

More information

How to choose the 'right' CMS for a website

How to choose the 'right' CMS for a website How to choose the 'right' CMS for a website Spiros Trivizas STiX - web based solutions stix.gr Internet World 2012 - April 24th This presentation will help you choose the most appropriate Web Content Management

More information

SUBJECT CODE : 4074 PERIODS/WEEK : 4 PERIODS/ SEMESTER : 72 CREDIT : 4 TIME SCHEDULE UNIT TOPIC PERIODS 1. INTERNET FUNDAMENTALS & HTML Test 1

SUBJECT CODE : 4074 PERIODS/WEEK : 4 PERIODS/ SEMESTER : 72 CREDIT : 4 TIME SCHEDULE UNIT TOPIC PERIODS 1. INTERNET FUNDAMENTALS & HTML Test 1 SUBJECT TITLE : WEB TECHNOLOGY SUBJECT CODE : 4074 PERIODS/WEEK : 4 PERIODS/ SEMESTER : 72 CREDIT : 4 TIME SCHEDULE UNIT TOPIC PERIODS 1. INTERNET FUNDAMENTALS & HTML Test 1 16 02 2. CSS & JAVASCRIPT Test

More information

Website release (including dissemination website)

Website release (including dissemination website) TyGRe High added value materials from waste tyre gasification residues FP7 Call for Proposals: FP7-ENV-2008-1 Grant Agreement No. 226549 D 0-B & D 9-A Website release (including dissemination website)

More information

FEATURES LIST. cms.moveable.com

FEATURES LIST. cms.moveable.com PAGES AND CONTENT AUTHORING Unlimited Site Pages* Spell Check* Unlimited Concurrent CMS Users* Find and Replace* Unlimited Content Items* Task Manager* Unlimited Templates* Unlimited Layouts Open-Ended

More information

Web Design Specialist

Web Design Specialist UKWDA Training: CIW Web Design Series Web Design Specialist Course Description CIW Web Design Specialist is for those who want to develop the skills to specialise in website design and builds upon existing

More information

ABTO Software PHP Web Development Overview

ABTO Software PHP Web Development Overview ABTO Software PHP Web Development Overview ABTO Software is a Custom PHP Web Development Company One of ABTO Software s specializations as a top Ukrainian outsourcing software development company is PHP

More information

DEEP DIVE COMPARATIVE ANALYSIS OF E-COMMERCE TOOLS

DEEP DIVE COMPARATIVE ANALYSIS OF E-COMMERCE TOOLS DEEP DIVE COMPARATIVE ANALYSIS OF E-COMMERCE TOOLS Kumar Mallampalli Head Emerging Solutions and IT Services Table of Contents 1 Introduction... 2 2 The Challenges... 3 3 Solutions Options... 4 3.1 Open

More information

Creating Value through Innovation MAGENTO 1.X TO MAGENTO 2.0 MIGRATION

Creating Value through Innovation MAGENTO 1.X TO MAGENTO 2.0 MIGRATION Creating Value through Innovation MAGENTO 1.X TO MAGENTO 2.0 MIGRATION AGENDA 1. Overview of Magento 2.0 2. Features and benefits of Magento 2.0 over Magento 1.x 3. Why should we upgrade to Magento 2.0

More information

Information Technology Web Solution Services

Information Technology Web Solution Services Information Technology Web Solution Services Icetech 940 West North Avenue Baltimore, Maryland 21217 Tel: 410.225.3117 Fax: 410.225.3120 www. Icetech. net Hubzone Copyright @ 2012 Icetech, Inc. All rights

More information

Standards, Tools and Web 2.0

Standards, Tools and Web 2.0 Standards, Tools and Web 2.0 Web Programming Uta Priss ZELL, Ostfalia University 2013 Web Programming Standards and Tools Slide 1/31 Outline Guidelines and Tests Logfile analysis W3C Standards Tools Web

More information

HTML5. Turn this page to see Quick Guide of CTTC

HTML5. Turn this page to see Quick Guide of CTTC Programming SharePoint 2013 Development Courses ASP.NET SQL TECHNOLGY TRAINING GUIDE Visual Studio PHP Programming Android App Programming HTML5 Jquery Your Training Partner in Cutting Edge Technologies

More information

WHITE PAPER 7 REASONS WHY CRAFTER SHOULD BE ON YOUR WEB CMS SHORTLIST

WHITE PAPER 7 REASONS WHY CRAFTER SHOULD BE ON YOUR WEB CMS SHORTLIST 7 REASONS WHY CRAFTER SHOULD BE ON YOUR WEB CMS SHORTLIST PUBLISHED SEPTEMBER 2013 The evolution of the Web over the years has deeply immersed us into a new era of engagement, and enterprises are striving

More information

Content Management System - Drupal. Vikrant Sawant (vikrant.sawant@lc.ca.gov) Legislative Data Center, California

Content Management System - Drupal. Vikrant Sawant (vikrant.sawant@lc.ca.gov) Legislative Data Center, California Content Management System - Drupal Vikrant Sawant (vikrant.sawant@lc.ca.gov) Legislative Data Center, California National Association of Legislative Information Technology Raleigh, NC October 2013 What

More information

Web Content Management System

Web Content Management System Web Content Management System We are planning to move a large web site from static HTML version to a Web content management system by a data-driver system. Content Management Systems (CMS) automate the

More information

CMSs, Open Source, Hosted & Cloud-Based Applications

CMSs, Open Source, Hosted & Cloud-Based Applications Technology Consulting in the Community Carnegie Mellon University CMSs, Open Source, Hosted & Cloud-Based Applications Content Management Systems Fast, easy, lower cost ways to create and maintain information

More information

SMARTUNIT. Digital Solutions to brand, build, and boost business

SMARTUNIT. Digital Solutions to brand, build, and boost business SMARTUNIT Digital Solutions to brand, build, and boost business About Us SMARTUNIT is an Integrated Digital Agency based in London, specialised in Digital Marketing, Advertising & IT Support. We re not

More information

website advantage of CMS systems ! Create online store using a webhost + Content Management System (CMS) ! Technical aspects of installing a

website advantage of CMS systems ! Create online store using a webhost + Content Management System (CMS) ! Technical aspects of installing a ! Create online store using a webhost + Content Management System (CMS)! Technical aspects of installing a website! Discuss web hosting options, domains, advantage of CMS systems ! A web host is a service

More information

Content Management System (CMS)

Content Management System (CMS) Content Management System (CMS) What is a CMS? What is a CMS? o A Content Management System (CMS) is software that makes it easier to create, edit and publish content on a web site. The features of a CMS

More information

Harrison Oriahi CONTENT MANAGEMENT SYSTEMS (CMS)

Harrison Oriahi CONTENT MANAGEMENT SYSTEMS (CMS) Harrison Oriahi CONTENT MANAGEMENT SYSTEMS (CMS) CONTENT MANAGEMENT SYSTEMS (CMS) Harrison Oriahi Bachelor s thesis Autumn 2014 Degree Programme in Information Technology Oulu University of Applied Sciences

More information

Adobe Flex / Zend for Content Management

Adobe Flex / Zend for Content Management Adobe Flex / Zend for Content Management Master-Project Thesis Document code : Thesis_ska310_v2.0.pdf Version : v2.0 Created by : Stefan van de Kaa Date: : June 17, 2010 Supervisor Second reader Master

More information

IGW+ Certificate. I d e a l G r o u p i n W e b. International professional web design,

IGW+ Certificate. I d e a l G r o u p i n W e b. International professional web design, IGW+ Certificate I d e a l G r o u p i n W e b International professional web design, Programming, CRM, online office automation, complete security, Secured Ecommerce and web site maintenance educational

More information

Introduction to Dreamweaver

Introduction to Dreamweaver Introduction to Dreamweaver ASSIGNMENT After reading the following introduction, read pages DW1 DW24 in your textbook Adobe Dreamweaver CS6. Be sure to read through the objectives at the beginning of Web

More information

An Advanced E-commerce Course

An Advanced E-commerce Course ADMEC TM Multimedia Institute An Advanced E-commerce Course E-commerce Master Duration: 06 Months w [Class Room Online Training] TM An ISO 9001:2008 Institute w Drupal Magento WordPress Basics of E-commerce

More information

$920+ GST Paid Annually. e-commerce Website Hosting Service HOSTING:: WHAT YOU GET WORDPRESS:: THEME + PLUG-IN UPDATES

$920+ GST Paid Annually. e-commerce Website Hosting Service HOSTING:: WHAT YOU GET WORDPRESS:: THEME + PLUG-IN UPDATES e-commerce Website Hosting Service HOSTING:: WHAT YOU GET Where you host your website is an extremely important decision to make, if you choose simply on price, you may be making a huge mistake. We encourage

More information

ACDA OF MINNESOTA, TOM HALE, WEB EDITOR STATE WEBSITE PRESENTATION, 2015 NATIONAL ACDA, SALT LAKE CITY, UTAH

ACDA OF MINNESOTA, TOM HALE, WEB EDITOR STATE WEBSITE PRESENTATION, 2015 NATIONAL ACDA, SALT LAKE CITY, UTAH ACDA OF MINNESOTA, TOM HALE, WEB EDITOR STATE WEBSITE PRESENTATION, 2015 NATIONAL ACDA, SALT LAKE CITY, UTAH Slide 1 STATE WEBSITE PRESENTATION www.acda-mn.org Tom Hale, Web Editor Award Winning Website:

More information

Eskills360 0 - Desktop Courses

Eskills360 0 - Desktop Courses Eskills360 Desktop DESKTOP COMPUTER SKILLS Adobe Adobe Flash CS5 Introduction to Adobe Flash Professional CS5 Drawing and Working with Images in Flash CS5 Using Flash CS5 Libraries, Text, and Components

More information

We empower users through nifty solutions

We empower users through nifty solutions We empower users through nifty solutions 2015 CONTENTS 01 About Us 02 What We Do 03 Technology 04 Client Projects 05 Partners 06 Events 07 The Team 3 01 ABOUT US NIFTIT is a SharePoint consulting agency

More information

Authoring Within a Content Management System. The Content Management Story

Authoring Within a Content Management System. The Content Management Story Authoring Within a Content Management System The Content Management Story Learning Goals Understand the roots of content management Define the concept of content Describe what a content management system

More information

1Lesson 1: Overview of Web Design Concepts Objectives

1Lesson 1: Overview of Web Design Concepts Objectives 1Lesson 1: Overview of Web Design Concepts Objectives By the end of this lesson, you will be able to: 1.2.1: Balance customer needs and usability with site design principles and aesthetics (includes distinguishing

More information

Evaluation of Open Source (OS) Content Management Systems (CMS): Alfresco, Drupal, and Joomla!

Evaluation of Open Source (OS) Content Management Systems (CMS): Alfresco, Drupal, and Joomla! Evaluation of Open Source (OS) Content Management Systems (CMS): Alfresco, Drupal, and Joomla! 18 September 2007 Executive Summary Businesses are using content management systems (CMS) to perform web administrative

More information

Communiqué 4. Standardized Global Content Management. Designed for World s Leading Enterprises. Industry Leading Products & Platform

Communiqué 4. Standardized Global Content Management. Designed for World s Leading Enterprises. Industry Leading Products & Platform Communiqué 4 Standardized Communiqué 4 - fully implementing the JCR (JSR 170) Content Repository Standard, managing digital business information, applications and processes through the web. Communiqué

More information

Web Foundations Series Internet Business Associate

Web Foundations Series Internet Business Associate Web Foundations Series Internet Business Associate Internet Business Associate prepares students to work effectively in today's business environment. In this course, you will learn about the tasks involved

More information

Indian Journal of Science International Weekly Journal for Science ISSN 2319 7730 EISSN 2319 7749 2015 Discovery Publication. All Rights Reserved

Indian Journal of Science International Weekly Journal for Science ISSN 2319 7730 EISSN 2319 7749 2015 Discovery Publication. All Rights Reserved Indian Journal of Science International Weekly Journal for Science ISSN 2319 7730 EISSN 2319 7749 2015 Discovery Publication. All Rights Reserved Analysis Drupal as a Content Management System in Libraries:

More information

CMS Roundtable: Which Solution is Right for You?

CMS Roundtable: Which Solution is Right for You? CMS Roundtable: Which Solution is Right for You? Introduction Michael Weiss CEO/Partner, imagistic Internet strategy, marketing, and development More than a decade of experience implementing and consulting

More information

Absolute Beginner s Guide to Drupal

Absolute Beginner s Guide to Drupal Absolute Beginner s Guide to Drupal 1. Introduction 2. Install 3. Create 4. Extend 5. Design 6. Practice The OSWay 1. Introduction 2. Install 3. Create 4. Extend 5. Design 6. Practice The OSWay Drupal

More information

Web Content Management (Web CMS) for Internal or External Sites Request for Proposal (RFP) Template

Web Content Management (Web CMS) for Internal or External Sites Request for Proposal (RFP) Template Web Content Management (Web CMS) for Internal or External Sites Request for Proposal (RFP) Template Thank you for participating in this Web Content Management platform review. This RFP presents detailed

More information

Web Development. How the Web Works 3/3/2015. Clients / Server

Web Development. How the Web Works 3/3/2015. Clients / Server Web Development WWW part of the Internet (others: Email, FTP, Telnet) Loaded to a Server Viewed in a Browser (Client) Clients / Server Client: Request & Render Content Browsers, mobile devices, screen

More information

A COMPARATIVE STUDY BASED ON OPEN SOURCE CONTENT MANAGEMENT SYSTEMS

A COMPARATIVE STUDY BASED ON OPEN SOURCE CONTENT MANAGEMENT SYSTEMS A COMPARATIVE STUDY BASED ON OPEN SOURCE CONTENT MANAGEMENT SYSTEMS Abstract : NIRAJ SINGHAL Senior Lecturer School of Computer Engineering and Information Technology Shobhit University, Meerut, India

More information

Content Management System (Comparison between Top- Three CMS Platforms)

Content Management System (Comparison between Top- Three CMS Platforms) Content Management System (Comparison between Top- Three CMS Platforms) Documented By: Salar Abbas If creating a website for your business is on the horizon, you may be wondering which content management

More information

Digital Passion HOT OR NOT WHO ARE TYPO3'S COMPETITORS? PATRICK LOBACHER +PLUSWERK AG 21.10.2015 TYPO3 CONFERENCE AMSTERDAM

Digital Passion HOT OR NOT WHO ARE TYPO3'S COMPETITORS? PATRICK LOBACHER +PLUSWERK AG 21.10.2015 TYPO3 CONFERENCE AMSTERDAM Digital Passion HOT OR NOT WHO ARE TYPO3'S COMPETITORS? PATRICK LOBACHER +PLUSWERK AG 21.10.2015 TYPO3 CONFERENCE AMSTERDAM 2 Digital Passion Patrick Lobacher Chairman +Pluswerk AG Consultant Trainer (Agile)

More information

SEMINAR. Content Management System. Presented by: Radhika Khandelwal

SEMINAR. Content Management System. Presented by: Radhika Khandelwal SEMINAR on Content Management System Presented by: Radhika Khandelwal Introduction WWW- an effective source of info., Manual method of content management are unacceptable. CMS came from concept to reality

More information

01 : Our Introduction

01 : Our Introduction 01 : Our Introduction 02 : About Us ABOUT DIGITAL REVOLUTION We transform coffee cups to your beautiful impressions on internet. As an innovative website design and development company, we can translate

More information

Wordpress vs Omeka. No Holds Barred - CMS/DCMS Knockout Round ;-)

Wordpress vs Omeka. No Holds Barred - CMS/DCMS Knockout Round ;-) Wordpress vs Omeka No Holds Barred - CMS/DCMS Knockout Round ;-) Objective To appreciate the differing ways that WordPress and Omeka can be employed in the Digital Humanities To increase and understanding

More information

Design ï Development ï Digital Marketing ï Content

Design ï Development ï Digital Marketing ï Content Design ï Development ï Digital Marketing ï Content About Us We are a digital agency with a fresh and unique approach. We believe in working as strategic partners and not as vendors. We decide on the platforms

More information

Web Design Graphic Design Web Develpment

Web Design Graphic Design Web Develpment Web Design Graphic Design Web Develpment Introduction Design Consortium is a Web & Graphics Design Services company based in Rustenburg, North-West. We provide a full set of Web Design Services as well

More information

Web project proposal. European e-skills Association

Web project proposal. European e-skills Association Web project proposal European e-skills Association LUCISMEDIA WEB DESIGN PROPOSAL CONTENTS Lucismedia... 3 Building enterprise social communities... 3 project objective... 4 Project scope... 6 Interface

More information

Terms and Conditions. Web Development

Terms and Conditions. Web Development Terms and Conditions Web Development Page 1 of 8 Terms and Conditions of Web Development 1. Definitions The following Terms and Conditions document is a legal agreement between K-Designed Sarl, hereafter

More information

exobase Discovery Review Platform

exobase Discovery Review Platform exobase Discovery Review Platform EXPERIENCE Over 20 years of knowledge and experience utilizing technology to provide knowledge management solutions for legal teams and organizations. VALUE Pride is taken

More information

Development of a Learning Content Management Systems

Development of a Learning Content Management Systems Development of a Learning Content Management Systems Lejla Abazi-Bexheti Abstract Change appears to be the only constant in the field of ICT and what was treated as advanced feature few years ago is today

More information

Web CMS An Evaluation Guide. White Paper

Web CMS An Evaluation Guide. White Paper Web CMS An Evaluation Guide White Paper Introduction Choosing a content management system (CMS) for your organization is a big decision because of the potential effects on time, money, and improvements

More information

Creating Library Website using Joomla: A Case Study on IIM Ahmedabad Library Website

Creating Library Website using Joomla: A Case Study on IIM Ahmedabad Library Website Creating Library Website using Joomla: A Case Study on IIM Ahmedabad Library Website Jignesh Amin Viral Navik Abstract Numbers of organizations, including the libraries, are turned to use Open Source CMS

More information

TEXAS STATE TECHNICAL COLLEGE Content Management System Development & Integration. Executive Summary & Cost Estimate

TEXAS STATE TECHNICAL COLLEGE Content Management System Development & Integration. Executive Summary & Cost Estimate TEXAS STATE TECHNICAL COLLEGE Content Management System Development & Integration Executive Summary & Cost Estimate CONTENT MANAGEMENT SYSTEM DEVELOPMENT & INTEGRATION TEXAS STATE TECHNICAL COLLEGE Executive

More information

How to Create a Simple Content Management Solution with Joomla! in a vcloud Environment. A VMware Cloud Evaluation Reference Document

How to Create a Simple Content Management Solution with Joomla! in a vcloud Environment. A VMware Cloud Evaluation Reference Document How to Create a Simple Content Management Solution with Joomla! in a vcloud Environment A VMware Cloud Evaluation Reference Document Contents About Cloud Computing Cloud computing is an approach to computing

More information

TIME SCHEDULE OBJECTIVES

TIME SCHEDULE OBJECTIVES COURSE TITLE : WEB DESIGN COURSE CODE : 3073 COURSE CATEGORY : B PERIODS/WEEK : 4 PERIODS/ SEMESTER : 72 CREDITS : 4 TIME SCHEDULE MODULE TOPICS PERIODS 1 Internet fundamentals 18 2 Html, css and web design

More information