Release-3.6.X

Total Page:16

File Type:pdf, Size:1020Kb

Release-3.6.X django cms Documentation Release 3.6.1 Divio AG and contributors Nov 20, 2020 Contents 1 Overview 3 1.1 Tutorials - start here...........................................3 1.2 How-to guides..............................................3 1.3 Key topics................................................3 1.4 Reference.................................................3 2 Join us online 5 3 Why django CMS? 7 4 Software version requirements and release notes9 4.1 Django/Python compatibility table....................................9 Python Module Index 267 Index 269 i ii django cms Documentation, Release 3.6.1 Contents 1 django cms Documentation, Release 3.6.1 2 Contents CHAPTER 1 Overview django CMS is a modern web publishing platform built with Django, the web application framework “for perfectionists with deadlines”. django CMS offers out-of-the-box support for the common features you’d expect from a CMS, but can also be easily customised and extended by developers to create a site that is tailored to their precise needs. 1.1 Tutorials - start here For the new django CMS developer, from installation to creating your own addon applications. 1.2 How-to guides Practical step-by-step guides for the more experienced developer, covering several important topics. 1.3 Key topics Explanation and analysis of some key concepts in django CMS. 1.4 Reference Technical reference material, for classes, methods, APIs, commands. 3 django cms Documentation, Release 3.6.1 4 Chapter 1. Overview CHAPTER 2 Join us online django CMS is supported by a friendly and very knowledgeable community. Our IRC channel, #django-cms, is on irc.freenode.net. If you don’t have an IRC client, you can join our IRC channel using the KiwiIRC web client, which works pretty well. Our django CMS users email list is for general django CMS questions and discussion Our django CMS developers email list is for discussions about the development of django CMS 5 django cms Documentation, Release 3.6.1 6 Chapter 2. Join us online CHAPTER 3 Why django CMS? django CMS is a well-tested CMS platform that powers sites both large and small. Here are a few of the key features: • robust internationalisation (i18n) support for creating multilingual sites • front-end editing, providing rapid access to the content management interface • support for a variety of editors with advanced text editing features. • a flexible plugins system that lets developers put powerful tools at the fingertips of editors, without overwhelm- ing them with a difficult interface • . and much more There are other capable Django-based CMS platforms but here’s why you should consider django CMS: • thorough documentation • easy and comprehensive integration into existing projects - django CMS isn’t a monolithic application • a healthy, active and supportive developer community • a strong culture of good code, including an emphasis on automated testing 7 django cms Documentation, Release 3.6.1 8 Chapter 3. Why django CMS? CHAPTER 4 Software version requirements and release notes This document refers to version 3.6.1. 4.1 Django/Python compatibility table django Django Python CMS 1.4/1.5 1.6/1.7 1.8 1.9 1.10 1.11 2.0 2.1 2.6 2.7 3.3 3.4 3.5 3.6 3.0.18 X X X X X X 3.1.7 X X X X X X 3.2.0 X X X X X X 3.2.1-3.2.5 X X X X X X X X 3.3.0-3.4.1 X X X X X X 3.4.2-3.4.4 X X X X X X X 3.4.5-3.5.x X X X X X X X X X 3.6.x X X X X X X X X See the repository’s setup.py for more specific details of dependencies, or the Release notes & upgrade information for information about what is required or has changed in particular versions of the CMS. The installation how-to guide provides an overview of other packages required in a django CMS project. 4.1.1 Tutorials The pages in this section of the documentation are aimed at the newcomer to django CMS. They’re designed to help you get started quickly, and show how easy it is to work with django CMS as a developer who wants to customise it and get it working according to their own requirements. These tutorials take you step-by-step through some key aspects of this work. They’re not intended to explain the topics in depth, or provide reference material, but they will leave you with a good idea of what is possible to achieve in just a few steps, and how to go about it. 9 django cms Documentation, Release 3.6.1 Once you’re familiar with the basics presented in these tutorials, you’ll find the more in-depth coverage of the same topics in the How-to section. The tutorials follow a logical progression, starting from installation of django CMS and the creation of a brand new project, and build on each other, so it’s recommended to work through them in the order presented here. Installing django CMS We’ll get started by setting up our environment. Requirements django CMS requires Django 1.11 or newer, and Python 2.7 or 3.3 or newer. This tutorial assumes you are using Python 3. Your working environment We’re going to assume that you have a reasonably recent version of virtualenv installed and that you have some basic familiarity with it. Create and activate a virtual environment python3.6-m venv env # Python 2 usage: virtualenv env source env/bin/activate Note that if you’re using Windows, to activate the virtualenv you’ll need: env\Scripts\activate Update pip inside the virtual environment pip is the Python installer. Make sure yours is up-to-date, as earlier versions can be less reliable: pip install--upgrade pip Use the django CMS installer Note: The django CMS Installer is not yet available for django CMS 3.6 or Django 2 or later. This section will be updated or removed before the final release of django CMS 3.6. The django CMS installer is a helpful script that takes care of setting up a new project. Install it: pip install djangocms-installer 10 Chapter 4. Software version requirements and release notes django cms Documentation, Release 3.6.1 This provides you with a new command, djangocms. Create a new directory to work in, and cd into it: mkdir tutorial-project cd tutorial-project Run it to create a new Django project called mysite: djangocms-f-p. mysite This means: • run the django CMS installer • install Django Filer too (-f)- required for this tutorial • use the current directory as the parent of the new project directory (-p .) • call the new project directory mysite Note: About Django Filer Django Filer, a useful application for managing files and processing images. Although it’s not required for django CMS itself, a vast number of django CMS addons use it, and nearly all django CMS projects have it installed. If you know you won’t need it, omit the flag. See the django CMS installer documentation for more information. Warning: djangocms-installer expects directory . to be empty at this stage, and will check for this, and will warn if it’s not. You can get it to skip the check and go ahead anyway using the -s flag; note that this may overwrite existing files. Windows users may need to do a little extra to make sure Python files are associated correctly if that doesn’t work right away: assoc.py=Python.file ftype Python.File="C:\Users\Username\workspace\demo\env\Scripts\python.exe""%1"% * By default, the installer runs in Batch mode, and sets up your new project with some default values. Later, you may wish to manage some of these yourself, in which case you need to run it in Wizard mode. The default in Batch mode is to set up an English-only project, which will be sufficient for the purposes of this tutorial. You can of course simply edit the new project’s settings.py file at any time to change or add site languages or amend other settings. The installer creates an admin user for you, with username/password admin/admin. Start up the runserver python manage.py runserver Open http://localhost:8000/ in your browser, where you should be invited to login, and then create a new page. 4.1. Django/Python compatibility table 11 django cms Documentation, Release 3.6.1 Congratulations, you now have installed a fully functional CMS. If you need to log in at any time, append ?edit to the URL and hit Return. This will enable the toolbar, from where you can log in and manage your website. If you are not already familiar with django CMS, you can take a few minutes to run through the basics of the django CMS tutorial for users. Templates & Placeholders In this tutorial we’ll introduce Placeholders, and we’re also going to show how you can make your own HTML templates CMS-ready. Templates You can use HTML templates to customise the look of your website, define Placeholders to mark sections for managed content and use special tags to generate menus and more. You can define multiple templates, with different layouts or built-in components, and choose them for each page as required. A page’s template can be switched for another at any time. You’ll find the site’s templates in mysite/templates. By default, pages in your site will use the fullwidth.html template, the first one listed in the project’s settings.py CMS_TEMPLATES tuple: CMS_TEMPLATES=( ## Customize this ('fullwidth.html','Fullwidth'), ('sidebar_left.html','Sidebar Left'), ('sidebar_right.html','Sidebar Right') ) Placeholders Placeholders are an easy way to define sections in an HTML template that will be filled with content from the database when the page is rendered.
Recommended publications
  • Django Cms Documentation Release 2.4.0.Beta
    django cms Documentation Release 2.4.0.beta Patrick Lauber February 08, 2013 Contents 1 Install 3 1.1 Installation..............................................3 1.2 2.4 release notes (IN DEVELOPMENT)..............................4 1.3 2.3.4 release notes..........................................9 1.4 2.3.3 release notes.......................................... 10 1.5 2.3.2 release notes.......................................... 10 1.6 2.3 release notes........................................... 10 1.7 2.2 release notes........................................... 12 1.8 Upgrading from 2.1.x and Django 1.2.x............................... 13 2 Getting Started 17 2.1 Introductory Tutorial......................................... 17 2.2 Using South with django CMS.................................... 24 2.3 Configuration............................................. 25 2.4 Navigation.............................................. 32 2.5 Plugins reference........................................... 36 2.6 Common issues............................................ 41 3 Advanced 43 3.1 Internationalization.......................................... 43 3.2 Sitemap Guide............................................ 44 3.3 Template Tags............................................ 44 3.4 Command Line Interface....................................... 51 3.5 Permissions.............................................. 52 4 Extending the CMS 55 4.1 Extending the CMS: Examples................................... 55 4.2 Custom Plugins...........................................
    [Show full text]
  • Copyrighted Material
    Index client and server validation testing and, SYMBOLS 77–80 $(document).read(), jQuery, 143 composing messages, 170–171 handling validation of data layer repository, A 94–96 abstraction, of data layer, 93–94 InMemoryContactService and, 121–122 acceptable verbs, 38 usage tracking and, 241–242, 246, 248 [AcceptVerbs] attribute validation testing and, 80 overview of, 38 advice, AOP, 13 testing existence of Register action and AJAX correct signature, 39–40 displaying images after upload, 206 Accordion UI control, 251 message templating and, 219–220, 224 account management, high-level design POST vs. GET, 258 for, 29–30 submitting form data with, 201–204 AccountController class Alert boxes, 196 creating tests related to membership Amazon EC2 (Elastic Computer Cloud), actions, 37 260 testing user registration, 41–42 AOP (aspect-oriented programming), AccountControllerTest class, 39 12–13 action fi lters, ASP.NET MVC, 9 AppHelper class Action method creating for membership test, 46–48 image hosting, 208 testing validity for contact import, message composition, 173 155–156 message retrieval, 180–181 AppHelperTest class ActionFilterAttribute, creating action creating for membership test, 46 fi lters, 9 validating email address for registration, ActionResult, testingCOPYRIGHTED validity of, 37 MATERIAL45–47 ActiveX, 187 .ascx user controls, 132–134 Add method aspect, AOP, 13 adding messages to repository, 171 aspect-oriented programming (AOP), assigning unique ID, 97–98 12–13 447628bindex.indd7628bindex.indd 226363 88/4/09/4/09 99:34:06:34:06 AAMM
    [Show full text]
  • Vysoke´Ucˇenítechnicke´V Brneˇ
    VYSOKE´ UCˇ ENI´ TECHNICKE´ V BRNEˇ BRNO UNIVERSITY OF TECHNOLOGY FAKULTA INFORMACˇ NI´CH TECHNOLOGII´ U´ STAV POCˇ ´ITACˇ OVY´ CH SYSTE´ MU˚ FACULTY OF INFORMATION TECHNOLOGY DEPARTMENT OF COMPUTER SYSTEMS TEXTOVY´ EDITOR V PROSTRˇ EDI´ FLASH BAKALA´ Rˇ SKA´ PRA´ CE BACHELOR’S THESIS AUTOR PRA´ CE JIRˇ ´I PEJLA AUTHOR BRNO 2011 VYSOKE´ UCˇ ENI´ TECHNICKE´ V BRNEˇ BRNO UNIVERSITY OF TECHNOLOGY FAKULTA INFORMACˇ NI´CH TECHNOLOGII´ U´ STAV POCˇ ´ITACˇ OVY´ CH SYSTE´ MU˚ FACULTY OF INFORMATION TECHNOLOGY DEPARTMENT OF COMPUTER SYSTEMS TEXTOVY´ EDITOR V PROSTRˇ EDI´ FLASH FLASH-BASED TEXT EDITOR BAKALA´ Rˇ SKA´ PRA´ CE BACHELOR’S THESIS AUTOR PRA´ CE JIRˇ ´I PEJLA AUTHOR VEDOUCI´ PRA´ CE Ing. ZDENEˇ K VASˇ ´ICˇ EK SUPERVISOR BRNO 2011 Abstrakt Tato práce se zabývá rozborem textových editorù integrovaných do webového prohlížeče a tvorbou nového open-source editoru v prostředí Flash. Pro implementaci je využit mul- tiplatformní jazyk haXe a nová knihovna dostupná ve frameworku Flash od verze 10 { Flash Text Engine. Výsledkem je snadno roz¹iøitelná komponenta, která umožňuje oznaèo- vání, editaci a základní formátování textu a práci s obrázky. Editor pracuje s dokumenty ve formátu XHTML 1.0 Transitional. Abstract This bachelor's thesis deals with the implementation of a new open-source Flash-Based Text Editor. The theoretical part describes the most leading text editors integrated into the web browser. The source code of the component is written in multi-platform language haXe and the new Flash library { Flash Text Engine { is used. The result of the thesis is an easily extensible application that enables the user to select, edit and format texts and manipulate with pictures.
    [Show full text]
  • Release-3.3.X
    django cms Documentation Release 3.3.4 Patrick Lauber Apr 25, 2017 Contents 1 Overview 3 1.1 Tutorials...............................................3 1.2 How-to guides............................................3 1.3 Key topics..............................................3 1.4 Reference...............................................3 2 Join us online 5 3 Why django CMS? 7 4 Release Notes 9 5 Table of contents 11 5.1 Tutorials............................................... 11 5.2 How-to guides............................................ 29 5.3 Key topics.............................................. 92 5.4 Reference............................................... 105 5.5 Development & community..................................... 158 5.6 Release notes & upgrade information................................ 178 5.7 Using django CMS.......................................... 226 5.8 Indices and tables.......................................... 237 Python Module Index 239 i ii django cms Documentation, Release 3.3.4 Contents 1 django cms Documentation, Release 3.3.4 2 Contents CHAPTER 1 Overview django CMS is a modern web publishing platform built with Django, the web application framework “for perfec- tionists with deadlines”. django CMS offers out-of-the-box support for the common features you’d expect from a CMS, but can also be easily customised and extended by developers to create a site that is tailored to their precise needs. Tutorials For the new django CMS developer, from installation to creating your own addon applications. How-to guides Practical step-by-step guides for the more experienced developer, covering several important topics. Key topics Explanation and analysis of some key concepts in django CMS. Reference Technical reference material, for classes, methods, APIs, commands. 3 django cms Documentation, Release 3.3.4 4 Chapter 1. Overview CHAPTER 2 Join us online django CMS is supported by a friendly and very knowledgeable community.
    [Show full text]
  • Towards Left Duff S Mdbg Holt Winters Gai Incl Tax Drupal Fapi Icici
    jimportneoneo_clienterrorentitynotfoundrelatedtonoeneo_j_sdn neo_j_traversalcyperneo_jclientpy_neo_neo_jneo_jphpgraphesrelsjshelltraverserwritebatchtransactioneventhandlerbatchinsertereverymangraphenedbgraphdatabaseserviceneo_j_communityjconfigurationjserverstartnodenotintransactionexceptionrest_graphdbneographytransactionfailureexceptionrelationshipentityneo_j_ogmsdnwrappingneoserverbootstrappergraphrepositoryneo_j_graphdbnodeentityembeddedgraphdatabaseneo_jtemplate neo_j_spatialcypher_neo_jneo_j_cyphercypher_querynoe_jcypherneo_jrestclientpy_neoallshortestpathscypher_querieslinkuriousneoclipseexecutionresultbatch_importerwebadmingraphdatabasetimetreegraphawarerelatedtoviacypherqueryrecorelationshiptypespringrestgraphdatabaseflockdbneomodelneo_j_rbshortpathpersistable withindistancegraphdbneo_jneo_j_webadminmiddle_ground_betweenanormcypher materialised handaling hinted finds_nothingbulbsbulbflowrexprorexster cayleygremlintitandborient_dbaurelius tinkerpoptitan_cassandratitan_graph_dbtitan_graphorientdbtitan rexter enough_ram arangotinkerpop_gremlinpyorientlinkset arangodb_graphfoxxodocumentarangodborientjssails_orientdborientgraphexectedbaasbox spark_javarddrddsunpersist asigned aql fetchplanoriento bsonobjectpyspark_rddrddmatrixfactorizationmodelresultiterablemlibpushdownlineage transforamtionspark_rddpairrddreducebykeymappartitionstakeorderedrowmatrixpair_rddblockmanagerlinearregressionwithsgddstreamsencouter fieldtypes spark_dataframejavarddgroupbykeyorg_apache_spark_rddlabeledpointdatabricksaggregatebykeyjavasparkcontextsaveastextfilejavapairdstreamcombinebykeysparkcontext_textfilejavadstreammappartitionswithindexupdatestatebykeyreducebykeyandwindowrepartitioning
    [Show full text]
  • A2040-442 Exam Dumps with Real Exam Questions
    IBM A2040-442 Assessment- IBM Notes and Domino Fundamentals http://killexams.com/exam-detail/A2040-442 QUESTION: 185 What can an IBM Domino administrator use instead of creating multiple explicit policy documents? A. Server grouppolicies B. Dynamic group policies C. Database group policies D. Intra-domain group policies Answer: A QUESTION: 186 How can an IBM Domino administrator provide access to a help desk team to only modify Person documents in the Domino Directory? A. by giving Editor access in the ACL of the Domino Directory B. by giving Editor access in the ACL of the Domino Directory and checking the User Modifier Role C. by giving Author access in the ACL of the Domino Directory and checking the UserModifier Role D. by giving Editor access in the ACL of the Domino Directory and adding Administrator Access in security tab of the Server document Answer: C QUESTION: 187 How can Cheryl be sure that her Recent Contacts has the most up-to-date information? A. She must manually update the entry in Recent Contacts B. Recent Contacts are automatically maintained with up-to-date detail C. She must use the name in an email chat or calendar entry in order for an update to occur D. She should select to synchronize Recent Contacts with her server's directory on the replication page Answer: B 62 QUESTION: 188 When a Rich Text Core Control is rendered in a browser what technology is used? A. ckEditor B. TinyMCE C. WYMeditor D. Aloha Editor Answer: A Reference: http://www- 10.lotus.com/ldd/ddwiki.nsf/dx/CKEditor_in_XPages_in_NotesDomino_8.5.2 QUESTION: 189 What are two platforms that IBM Domino server supports? A.
    [Show full text]
  • Aportaciones a La Mejora De La Evaluación De La Accesibilidad En Entornos Web 2.0 Interactivos Administrados Mediante Sistemas De Gestión De Contenido
    Universitat de Lleida Escuela Politécnica Superior Máster en Interacción Persona-Ordenador Trabajo Final de Máster Aportaciones a la mejora de la evaluación de la accesibilidad en entornos web 2.0 interactivos administrados mediante sistemas de gestión de contenido Autora: Afra Pascual Almenara Directores: Juan Miguel López Toni Granollers Julio 2009 Trabajo Final de Máster APORTACIONES A LA MEJORA DE LA EVALUACIÓN DE LA ACCESIBILIDAD EN ENTORNOS WEB 2.0 INTERACTIVOS ADMINISTRADOS MEDIANTE SISTEMAS DE GESTIÓN DE CONTENIDO Autora: Afra Pascual Almenara Directores: Juan Miguel López y Toni Granollers Departamento de Informática e Ingeniería Industrial Lleida, 23 de julio de 2009 Índice Índice Agradecimientos ......................................................................................................................... 13 Resumen...................................................................................................................................... 15 1. Introducción ........................................................................................................................ 17 1.1. Motivación................................................................................................................. 17 1.2. Aspectos a analizar .................................................................................................... 17 1.3. Estructura del estudio................................................................................................. 18 2. La accesibilidad en entornos tecnológicos
    [Show full text]
  • Wymeditor Documentation Release 1.2.0
    WYMeditor Documentation Release 1.2.0 Jean-Francois Hovinne February 05, 2016 Contents 1 Description 3 2 Resources 5 3 Full Table of Contents 7 4 Chapters and Sections 9 4.1 About WYMeditor............................................9 4.2 Getting Started With WYMeditor.................................... 10 4.3 Using WYMeditor............................................ 15 4.4 Upgrade Guides............................................. 17 4.5 Customizing WYMeditor........................................ 20 4.6 WYMeditor Plugins........................................... 36 4.7 Writing WYMeditor Plugins....................................... 40 4.8 WYMeditor Development........................................ 57 4.9 Resources................................................. 85 i ii WYMeditor Documentation, Release 1.2.0 Welcome to WYMeditor’s documentation. Contents 1 WYMeditor Documentation, Release 1.2.0 2 Contents CHAPTER 1 Description WYMeditor is an open source web-based WYSIWYM editor with semantics and standards in mind. The “WYM” part stands for What You Mean (is what you get). This is in contrast with the more common WYSI- WYG—What You See Is What You Get. Thus WYMeditor is different from the more common editors (like TinyMCE and CKEditor). Its focus is on providing a simple experience for users as well as the separation of the content of the document from the presentation of the document. It also adheres to web standards. And its versioning adheres to Semantic Versioning 2. 3 WYMeditor Documentation, Release 1.2.0 4 Chapter 1. Description CHAPTER 2 Resources Documentation WYMeditor documentation Code WYMeditor GitHub repository repository Website WYMeditor website http://wymeditor.github.io/wymeditor Chat Gitter.im room Support WYMeditor questions in Stack Overflow Issues WYMeditor issue tracker Examples WYMeditor online examples CI testing WYMeditor Travis-CI report Bower Bower manifest Project mgmt Waffle.io board 5 WYMeditor Documentation, Release 1.2.0 6 Chapter 2.
    [Show full text]
  • Wymeditor Documentation Release 1.0.0B7
    WYMeditor Documentation Release 1.0.0b7 Jean-Francois Hovinne September 07, 2014 Contents 1 Browser Compatibility 3 2 Examples 5 3 Contents 7 3.1 Getting Started With WYMeditor....................................7 3.2 Using WYMeditor............................................ 11 3.3 Customizing WYMeditor........................................ 13 3.4 WYMeditor Plugins........................................... 31 3.5 Writing WYMeditor Plugins....................................... 35 3.6 WYMeditor Development........................................ 42 3.7 Resources................................................. 66 i ii WYMeditor Documentation, Release 1.0.0b7 WYMeditor is an open source, web-based WYSIWYM editor that allows non-technical users to create clean, semantic, standards-compliant HTML. The WYM-part stands for “What You Mean” compared to the more common “What You See Is What You Get”. Contents 1 WYMeditor Documentation, Release 1.0.0b7 2 Contents CHAPTER 1 Browser Compatibility WYMeditor is compatible with: • IE: 7, 8, 9 and 10 • Firefox: LTS and latest two major versions • Opera: Latest Version • Safari: Latest Version • Google Chrome: Latest two major versions 3 WYMeditor Documentation, Release 1.0.0b7 4 Chapter 1. Browser Compatibility CHAPTER 2 Examples WYMeditor has a lot of flexibility. Check out our Examples. 5 WYMeditor Documentation, Release 1.0.0b7 6 Chapter 2. Examples CHAPTER 3 Contents 3.1 Getting Started With WYMeditor 3.1.1 Setting up WYMeditor Quick Start Instructions Include jQuery WYMeditor requires a version of jQuery between 1.3.x and 1.9.x. First ensure that your page includes jQuery. Note: If a version of jQuery at or above 1.8.0 is used, WYMeditor also requires jQuery Migrate. Ensure that your page also includes jQuery Migrate after jQuery is included.
    [Show full text]
  • A N V E N D T in F O R M a T IK K E N
    A N V E N D T IN F O R M A T IK K e N ytt O P P T R Y K K A V S T U D E N T A R B E I D E R I I N F O R M A T I K K V E D H Ø G S K O L E N I M O L D E A V D E L I N G F O R Ø K O N O M I , I N F O R M A T I K K O G S A M F U N N S F A G JU N I 2 008 N U M M E R 8 R E D A K S JO N : JU D I T H M O L K A - D A N I E L S E N H A L V A R D A R N T Z E N I N N H O L D 1. IBE610- Bachelors Hovedprosjekt: LabEmail av Nina Moe 2. LOG205 – E-Business: Case Project SOA or SAP av Carmen Alvestad og Nils Lien 3. LOG205 – E-Business: Case Project Coding a Web Page - av Vegard Søbstad Alsli og Svein Magne Paulsen 4. IBE610 – Bachelors Hovedprojekt: SLoodle av Terje Justsen Gangstø Anmerkninger fra redaktørene: Denne utgaven av Anvendt Informatikk - eNytt inneholder fire utvalgte prosjekter ved avdeling for økonomi, informatikk og samfunnsfag i vårsemesteret 2008. Rapportene som er presentert kan være noe forkortet i forhold til originalarbeidene, men de er ellers ikke redigert eller modifisert av redaksjonen eller andre.
    [Show full text]
  • Internet-Technology-Complete-Note
    Internet Technology (CSC-402) Unit – I (Introduction) Internet: downloaded from: https://genuinenotes.com 1 Internet Technology(CSC-402) The Internet is a global system of interconnected computer networks that use the standard Internet protocol suite (often called TCP/IP, although not all applications use TCP) to serve billions of users worldwide. It is a network of networks that consists of millions of private, public, academic, business, and government networks, of local to global scope, that are linked by a broad array of electronic, wireless and optical networking technologies. The Internet carries an extensive range of information resources and services, such as the inter-linked hypertext documents of the World Wide Web (WWW) and the infrastructure to support email. Internet is a short form of the technical term internetwork, the result of interconnecting computer networks with special gateways or routers. The Internet is also often referred to as the Net. The terms Internet and World Wide Web are often used in everyday speech without much distinction. However, the Internet and the World Wide Web are not one and the same. The Internet establishes a global data communications system between computers. In contrast, the Web is one of the services communicated via the Internet. It is a collection of interconnected documents and other resources, linked by hyperlinks and URLs Intranet: An intranet is a computer network that uses Internet Protocol technology to share information, operational systems, or computing services within an organization. The term is used in contrast to internet, a network between organizations, and instead refers to a network within an organization.
    [Show full text]
  • Aplicaciones Web Ciclo Formativo Grado Aplicaciones Web Medio «La Base De Tu Futuro»
    Aplicaciones Web Ciclo Formativo Grado Aplicaciones web Medio «La base de tu futuro» Ésta es la filosofía del proyecto editorial de McGraw-Hill para Ciclos Ciclo Formativos, una etapa decisiva en la formación de profesionales. Formativo El proyecto para el módulo Aplicaciones web, incluido en el nuevo ciclo Grado formativo Técnico en Sistemas Microinformáticos y Redes, y que está estructu- Medio rado en dos niveles de uso, para el alumno y para el profesor, ha sido desarrollado según tres principios básicos: • Una metodología basada en la práctica y en la adecuación de contenidos y procedimientos a la realidad profesional. • Unos materiales desarrollados para conseguir las destrezas, Aplicaciones web habilidades y resultados de aprendizaje que necesitarás para conseguir tu título y desenvolverte en el mercado laboral. • Una presentación de los contenidos clara y atractiva, con Raül V. Lerma-Blasco variedad de recursos gráficos y multimedia que facilitarán tu José Alfredo Murcia Andrés aprendizaje. Elvira Mifsud Talón R. V. Lerma-Blasco J. A. Murcia E. Mifsud R. V. Materiales del proyecto Para el alumno Para el profesor CEO del alumno Guía didáctica en CEO del profesor www.mhe.es/cf/informatica Confiamos en que esta obra sea una herramienta útil y eficaz, y que contribuya a tu formación como profesional. Grado Medio ISBN: 978-84-481-8392-9 www.mhe.es/cf/informatica Aplicaciones web Raül V. Lerma-Blasco (coord.) José Alfredo Murcia Andrés Elvira Mifsud Talón Revisor técnico Marcos Villagordo Castejón Prólogo de Yolanda Ruiz Hervás MADRID - BARCELONA - BOGOTÁ - BUENOS AIRES - CARACAS - GUATEMALA MÉXICO - NUEVA YORK - PANAMÁ - SAN JUAN - SANTIAGO - SÃO PAULO AUCKLAND - HAMBURGO - LONDRES - MILÁN - MONTREAL - NUEVA DELHI - PARÍS SAN FRANCISCO - SIDNEY - SINGAPUR - ST.
    [Show full text]