SlideShare ist ein Scribd-Unternehmen logo
1 von 15
Downloaden Sie, um offline zu lesen
Geliyoo Web BrowserBuray Savas ANIL
Table of content
1. Business models
2. Function
3. Features
4. User interface
5. Privacy and security
6. Components
7. Extensibility
Geliyoo Web Browser Project Documentation
We developed custom web browser for geliyoo.com and this basic flow displays its overview.
Phases of Development:
Browser Development follows the following phases of development :
1. Component Selection: Select the components that are useful for the implementation of the
browser.
2. System Design : Design architecture of the system that will followed by development in which
way browser will work
3. Features Development: Configure the selected components as per our requirements and
development of core features of web browser.
4. Development : We will develop a web browser which will work with the help of select
component.
5. Future Development : The tasks that still needs development are mentioned here.
 Plugin development
 Extensions development
 Mobile browser development
Other Os browser development
Business Model
The ways that web browser makers fund their development costs has changed over time. The first web
browser, WorldWideWeb, was a research project. Netscape Navigator was originally sold commercially,
as was Opera; Netscape no longer exists and has been replaced with the free Firefox, while Opera is now
downloadable free of charge.
Internet Explorer, on the other hand, was from its first release always included with the Windows
operating system (and furthermore was downloadable for no extra charge), and therefore it was funded
partly by the sales of Windows to computer manufacturers and direct to users. Internet Explorer also
used to be available for the Mac. It is likely that releasing IE for the Mac was part of Microsoft's overall
strategy to fight threats to its quasi-monopoly platform dominance - threats such as web standards and
Java - by making some web developers, or at least their managers, assume that there was "no need" to
develop for anything other than Internet Explorer (an assumption that later proved to be badly
mistaken, with the rise of Firefox and Chrome). In this respect, IE may have contributed to Windows and
Microsoft applications sales in another way, through tricking organizations into inadvertent "lock-in"
into the Microsoft platform.
Safari and Mobile Safari were likewise always included with OS X and iOS respectively, so, similarly, they
were originally funded by sales of Apple computers and mobile devices, and formed part of the overall
Apple experience to customers.
Today, most commercial web browsers are paid by search engine companies to make the search engine
their default search engine (the most valuable prize) or to include them as another option. For example,
Google pays Mozilla, the maker of Firefox, to make Google Search the default search engine in Firefox.
Mozilla makes so much money from this deal that it does not need to charge users for Firefox. The
reason search engine companies are willing to pay for such deals is that such decisions drive traffic their
way, increasing ad revenue. As of 2013, Google's search ad revenue is still a very important source of
revenue. Google probably does not "pay itself" to make Google Search the default search engine in
Google Chrome, but regardless, it derives ad revenue from that choice, so that indirectly funds the
development of Google Chrome.
Function
The primary purpose of a web browser is to bring information resources to the user ("retrieval" or
"fetching"), allowing them to view the information ("display", "rendering"), and then access other
information ("navigation", "following links").
This process begins when the user inputs a Uniform Resource Locator (URL), for example
http://geliyoo.com /, into the browser. The prefix of the URL, the Uniform Resource Identifier or URI,
determines how the URL will be interpreted. The most commonly used kind of URI starts with http: and
identifies a resource to be retrieved over the Hypertext Transfer Protocol (HTTP).[10] Many browsers
also support a variety of other prefixes, such as https: for HTTPS, ftp: for the File Transfer Protocol, and
file: for local files. Prefixes that the web browser cannot directly handle are often handed off to another
application entirely. For example, mailto: URIs are usually passed to the user's default e-mail application,
and news: URIs are passed to the user's default newsgroup reader.
In the case of http, https, file, and others, once the resource has been retrieved the web browser will
display it. HTML and associated content (image files, formatting information such as CSS, etc.) is passed
to the browser's layout engine to be transformed from markup to an interactive document, a process
known as "rendering". Aside from HTML, web browsers can generally display any kind of content that
can be part of a web page. Most browsers can display images, audio, video, and XML files, and often
have plug-ins to support Flash applications and Java applets. Upon encountering a file of an unsupported
type or a file that is set up to be downloaded rather than displayed, the browser prompts the user to
save the file to disk.
Information resources may contain hyperlinks to other information resources. Each link contains the URI
of a resource to go to. When a link is clicked, the browser navigates to the resource indicated by the
link's target URI, and the process of bringing content to the user begins again.
Gecko (layout engine)
Gecko is a free and open source layout engine used in many applications developed by Mozilla
Foundation and the Mozilla Corporation (notably the Firefox web browser including its mobile version
and their e-mail client Thunderbird), as well as in many other open source software projects.
It is designed to support open Internet standards, and is used by different applications to display web
pages and, in some cases, an application's user interface itself (by rendering XUL). Gecko offers a rich
programming API that makes it suitable for a wide variety of roles in Internet-enabled applications, such
as web browsers, content presentation, and client/server.
Gecko is written in C++ and is cross-platform, and runs on various operating systems including BSDs,
Linux, OS X, Solaris, OS/2, AIX, OpenVMS, and Microsoft Windows. Its development is now overseen by
the Mozilla Foundation and is licensed under version 2 of the Mozilla Public License.
Gecko Render Engine popularity
Standards support
From the outset, Gecko was designed to support open Internet standards. Some of the standards Gecko
supports include:
CSS Level 2.1 and 3
This specification defines Cascading Style Sheets, level 2 revision 1 (CSS 2.1). CSS 2.1 is a style
sheet language that allows authors and users to attach style (e.g., fonts and spacing) to
structured documents (e.g., HTML documents and XML applications). By separating the
presentation style of documents from the content of documents, CSS 2.1 simplifies Web
authoring and site maintenance.
Selectors are patterns that match against elements in a tree, and as such form one of several
technologies that can be used to select nodes in an XML document. Selectors have been
optimized for use with HTML and XML, and are designed to be usable in performance-critical
code.
CSS (Cascading Style Sheets) is a language for describing the rendering of HTML and XML
documents on screen, on paper, in speech, etc. CSS uses Selectors for binding style properties to
elements in the document.
DOM Level 1 and 2 and 3
The Document Object Model is a platform- and language-neutral interface that will allow
programs and scripts to dynamically access and update the content, structure and style of
documents. The document can be further processed and the results of that processing can be
incorporated back into the presented page. This is an overview of DOM-related materials here
at W3C and around the web.
"Dynamic HTML" is a term used by some vendors to describe the combination of HTML, style
sheets and scripts that allows documents to be animated. The W3C has received several
submissions from members companies on the way in which the object model of HTML
documents should be exposed to scripts. These submissions do not propose any new HTML tags
or style sheet technology. The W3C DOM Activity is working hard to make sure interoperable
and scripting-language neutral solutions are agreed upon.
The root element of a Document object is that Document's first element child, if any. If it does
not have one then the Document has no root element.
The term root element, when not referring to a Document object's root element, means the
furthest ancestor element node of whatever node is being discussed, or the node itself if it has
no ancestors. When the node is a part of the document, then the node's root element is indeed
the document's root element; however, if the node is not currently part of the document tree,
the root element will be an orphaned node.
When an element's root element is the root element of a Document object, it is said to be in a
Document. An element is said to have been inserted into a document when its root element
changes and is now the document's root element. Analogously, an element is said to have been
removed from a document when its root element changes from being the document's root
element to being another element.
A node's home subtree is the subtree rooted at that node's root element. When a node is in a
Document, its home subtree is that Document's tree.
The Document of a Node (such as an element) is the Document that the Node's owner
Document IDL attribute returns. When a Node is in a Document then that Document is always
the Node's Document, and the Node's owner Document IDL attribute thus always returns that
Document.
The Document of a content attribute is the Document of the attribute's element.
The term tree order means a pre-order, depth-first traversal of DOM nodes involved (through
the parent Node/child Nodes relationship).
When it is stated that some element or attribute is ignored, or treated as some other value, or
handled as if it was something else, this refers only to the processing of the node after it is in the
DOM. A user agent must not mutate the DOM in such situations.
A content attribute is said to change value only if its new value is different than its previous
value; setting an attribute to a value it already has does not change it.
The term empty, when used of an attribute value, Text node, or string, means that the length of
the text is zero (i.e. not even containing spaces or control characters).
HTML5
This specification defines the 5th major version, first minor revision of the core language of the
World Wide Web: the Hypertext Markup Language (HTML). In this version, new features
continue to be introduced to help Web application authors, new elements continue to be
introduced based on research into prevailing authoring practices, and special attention
continues to be given to defining clear conformance criteria for user agents in an effort to
improve interoperability.
This specification is divided into the following major sections:
Non-normative materials providing a context for the HTML standard
Common infrastructure
The conformance classes, algorithms, definitions, and the common underpinnings of the rest of
the specification.
Semantics, structure, and APIs of HTML documents
Documents are built from elements. These elements form a tree using the DOM. This section
defines the features of this DOM, as well as introducing the features common to all elements,
and the concepts used in defining elements.
The elements of HTML
Each element has a predefined meaning, which is explained in this section. Rules for authors on
how to use the element, along with user agent requirements for how to handle each element,
are also given. This includes large signature features of HTML such as video playback and
subtitles, form controls and form submission, and a 2D graphics API known as the HTML canvas.
Loading Web pages
HTML documents do not exist in a vacuum — this section defines many of the features that
affect environments that deal with multiple pages, such as Web browsers and offline caching of
Web applications.
Web application APIs
This section introduces basic features for scripting of applications in HTML.
User interaction
HTML documents can provide a number of mechanisms for users to interact with and modify
content, which are described in this section, such as how focus works, and drag-and-drop.
The HTML syntax / The XHTML syntax
All of these features would be for naught if they couldn't be represented in a serialized form and
sent to other people, and so these sections define the syntaxes of HTML and XHTML, along with
rules for how to parse content using those syntaxes.
Rendering
This section defines the default rendering rules for Web browsers.
JavaScript 1.8.5 (full ECMAScript 5.1 support)
JavaScript (JS) is a dynamic computer programming language. It is most commonly used as part
of web browsers, whose implementations allow client-side scripts to interact with the user,
control the browser, communicate asynchronously, and alter the document content that is
displayed.It is also being used in server-side programming, game development and the creation
of desktop and mobile applications.
MathML
Mathematical Markup Language (MathML) is an application of XML for describing mathematical
notations and capturing both its structure and content. It aims at integrating mathematical
formulae into World Wide Web pages and other documents. It is a recommendation of the W3C
math working group and part of HTML5.
Version 3 of the MathML specification was released as a W3C Recommendation on 20 October
2010. A recommendation of A MathML for CSS Profile was later released on 7 June 2011; this is
a subset of MathML suitable for CSS formatting. Another subset, Strict Content MathML,
provides a subset of content MathML with a uniform structure and is designed to be compatible
with OpenMath. Other content elements are defined in terms of a transformation to the strict
subset. New content elements include <bind> which associates bound variables (<bvar>) to
expressions, for example a summation index. The new <share> element allows structure
sharing.
The development of MathML 3.0 went through a number of stages. In June 2006 the W3C
rechartered the MathML Working Group to produce a MathML 3 Recommendation until
February 2008 and in November 2008 extended the charter to April 2010. A sixth Working Draft
of the MathML 3 revision was published in June 2009. On 10 August 2010 version 3 graduated to
become a "Proposed Recommendation" rather than a draft.
RDF
RDF is a standard model for data interchange on the Web. RDF has features that facilitate data
merging even if the underlying schemas differ, and it specifically supports the evolution of schemas
over time without requiring all the data consumers to be changed.
RDF extends the linking structure of the Web to use URIs to name the relationship between things
as well as the two ends of the link (this is usually referred to as a “triple”). Using this simple model, it
allows structured and semi-structured data to be mixed, exposed, and shared across different
applications.
This linking structure forms a directed, labeled graph, where the edges represent the named link
between two resources, represented by the graph nodes. This graph view is the easiest possible
mental model for RDF and is often used in easy-to-understand visual explanations.
XForms (via an official extension)
XHTML 2.0
XML 2.0
XSLT and XPath, implemented in TransforMiiX
Gecko also partially supports SVG 1.1.
In order to support web pages designed for legacy versions of Netscape and Internet Explorer, Gecko
supports DOCTYPE switching. Documents with a modern DOCTYPE are rendered in standards
compliance mode, which follows the W3C standards strictly. Documents that have no DOCTYPE or an
older DOCTYPE are rendered in quirks mode, which emulates some of the non-standard oddities of
Netscape Communicator 4.x; however, some of the 4.x features (such as layers) are not supported.
Gecko also has limited support for some non-standard Internet Explorer features, such as the marquee
element and the document. all property (though pages explicitly testing for document. all will be told it
is not supported). While this increases compatibility with many documents designed only for Internet
Explorer, some purists argue that it harms the cause of standards evangelism.
Bookmark , History & Cookies storage by browser.
Bookmark
In the context of the World Wide Web, a bookmark is a Uniform Resource Identifier (URI) that is stored
for later retrieval in any of various storage formats. All modern web browsers include bookmark
features.
History
In computing, the web browsing history refers to the list of web pages a user has visited recently—and
associated data such as page title and time of visit—which is recorded by web browser software as
standard for a certain period of time. Web browser software does this in order to provide the user with
a Back button and/or a History list, to go back to pages they have visited previously, rather than relying
on the user to remember where they have been on the web.
Cookies
A cookie, also known as an HTTP cookie, web cookie, or browser cookie, is a small piece of data sent
from a website and stored in a user's web browser while the user is browsing that website. Every time
the user loads the website, the browser sends the cookie back to the server to notify the website of the
user's previous activity. Cookies were designed to be a reliable mechanism for websites to remember
state ful information (such as items in a shopping cart) or to record the user's browsing activity
(including clicking particular buttons, logging in, or recording which pages were visited by the user as far
back as months or years ago).
Download
Download is the basic functionality of web browser. User can download any file from web and in geliyoo
web browser we providing download items on default page.

Weitere ähnliche Inhalte

Was ist angesagt?

DM110 - Week 10 - Semantic Web / Web 3.0
DM110 - Week 10 - Semantic Web / Web 3.0DM110 - Week 10 - Semantic Web / Web 3.0
DM110 - Week 10 - Semantic Web / Web 3.0John Breslin
 
An Introduction to Semantic Web Technology
An Introduction to Semantic Web TechnologyAn Introduction to Semantic Web Technology
An Introduction to Semantic Web TechnologyAnkur Biswas
 
The semantic web
The semantic web The semantic web
The semantic web ap
 
Semantic Wiki For The Enterprise
Semantic Wiki For The EnterpriseSemantic Wiki For The Enterprise
Semantic Wiki For The EnterpriseJosef Holy
 
DataPortability and Me: Introducing SIOC, FOAF and the Semantic Web
DataPortability and Me: Introducing SIOC, FOAF and the Semantic WebDataPortability and Me: Introducing SIOC, FOAF and the Semantic Web
DataPortability and Me: Introducing SIOC, FOAF and the Semantic WebJohn Breslin
 
Microformats Workshop (2009)
Microformats Workshop  (2009)Microformats Workshop  (2009)
Microformats Workshop (2009)Kelley Howell
 
Office 365 DELVE V1
Office 365 DELVE V1Office 365 DELVE V1
Office 365 DELVE V1Shahzad S
 
Tell Me Quality Documentation
Tell Me Quality DocumentationTell Me Quality Documentation
Tell Me Quality DocumentationMarco Berlot
 
Web and DAMS - NC ECHO Dig Institute
Web and DAMS - NC ECHO Dig InstituteWeb and DAMS - NC ECHO Dig Institute
Web and DAMS - NC ECHO Dig Instituteegore
 
Domain Name and Web Portals
Domain Name and Web Portals Domain Name and Web Portals
Domain Name and Web Portals Naveen Kumar
 
A comparative study between commercial and open source discovery tools
A comparative study between commercial and open source discovery toolsA comparative study between commercial and open source discovery tools
A comparative study between commercial and open source discovery toolsSusantaSethi3
 
Inforum 2007 Into The User environment
Inforum 2007 Into The User environmentInforum 2007 Into The User environment
Inforum 2007 Into The User environmentGuus van den Brekel
 

Was ist angesagt? (19)

DM110 - Week 10 - Semantic Web / Web 3.0
DM110 - Week 10 - Semantic Web / Web 3.0DM110 - Week 10 - Semantic Web / Web 3.0
DM110 - Week 10 - Semantic Web / Web 3.0
 
An Introduction to Semantic Web Technology
An Introduction to Semantic Web TechnologyAn Introduction to Semantic Web Technology
An Introduction to Semantic Web Technology
 
The semantic web
The semantic web The semantic web
The semantic web
 
Semantic Wiki For The Enterprise
Semantic Wiki For The EnterpriseSemantic Wiki For The Enterprise
Semantic Wiki For The Enterprise
 
LOD2: State of Play WP5 - Linked Data Visualization, Browsing and Authoring
LOD2: State of Play WP5 - Linked Data Visualization, Browsing and AuthoringLOD2: State of Play WP5 - Linked Data Visualization, Browsing and Authoring
LOD2: State of Play WP5 - Linked Data Visualization, Browsing and Authoring
 
IS341 - Week01 the world wide web architecture
IS341 - Week01  the world wide web architectureIS341 - Week01  the world wide web architecture
IS341 - Week01 the world wide web architecture
 
DataPortability and Me: Introducing SIOC, FOAF and the Semantic Web
DataPortability and Me: Introducing SIOC, FOAF and the Semantic WebDataPortability and Me: Introducing SIOC, FOAF and the Semantic Web
DataPortability and Me: Introducing SIOC, FOAF and the Semantic Web
 
Semantic wikis
Semantic wikisSemantic wikis
Semantic wikis
 
Microformats Workshop (2009)
Microformats Workshop  (2009)Microformats Workshop  (2009)
Microformats Workshop (2009)
 
Office 365 DELVE V1
Office 365 DELVE V1Office 365 DELVE V1
Office 365 DELVE V1
 
Tell Me Quality Documentation
Tell Me Quality DocumentationTell Me Quality Documentation
Tell Me Quality Documentation
 
Web and DAMS - NC ECHO Dig Institute
Web and DAMS - NC ECHO Dig InstituteWeb and DAMS - NC ECHO Dig Institute
Web and DAMS - NC ECHO Dig Institute
 
Domain Name and Web Portals
Domain Name and Web Portals Domain Name and Web Portals
Domain Name and Web Portals
 
Semantic web
Semantic webSemantic web
Semantic web
 
A comparative study between commercial and open source discovery tools
A comparative study between commercial and open source discovery toolsA comparative study between commercial and open source discovery tools
A comparative study between commercial and open source discovery tools
 
XML Bible
XML BibleXML Bible
XML Bible
 
Inforum 2007 Into The User environment
Inforum 2007 Into The User environmentInforum 2007 Into The User environment
Inforum 2007 Into The User environment
 
Web Design
Web DesignWeb Design
Web Design
 
Semantic web
Semantic webSemantic web
Semantic web
 

Ähnlich wie Geliyoo Browser Beta

How Browsers Work -By Tali Garsiel and Paul Irish
How Browsers Work -By Tali Garsiel and Paul IrishHow Browsers Work -By Tali Garsiel and Paul Irish
How Browsers Work -By Tali Garsiel and Paul IrishNagamurali Reddy
 
Introduction to web page
Introduction to web pageIntroduction to web page
Introduction to web pageMahmoud Shaqria
 
Nt1310 Final Exam Questions And Answers
Nt1310 Final Exam Questions And AnswersNt1310 Final Exam Questions And Answers
Nt1310 Final Exam Questions And AnswersLisa Williams
 
Whitepaper: Flow Document – A solution to text readers in .Net - Happiest Minds
Whitepaper: Flow Document – A solution to text readers in .Net - Happiest MindsWhitepaper: Flow Document – A solution to text readers in .Net - Happiest Minds
Whitepaper: Flow Document – A solution to text readers in .Net - Happiest MindsHappiest Minds Technologies
 
Unit 5 World_Wide_Web.pptx
Unit 5 World_Wide_Web.pptxUnit 5 World_Wide_Web.pptx
Unit 5 World_Wide_Web.pptxDhruvPatel189174
 
How browsers work landscape
How browsers work landscapeHow browsers work landscape
How browsers work landscapeanandkishore
 
fundamental of information technology (2)
fundamental of information technology  (2)fundamental of information technology  (2)
fundamental of information technology (2)Sorath Peetamber
 
MINOR PROZECT REPORT on WINDOWS SERVER
MINOR PROZECT REPORT on WINDOWS SERVERMINOR PROZECT REPORT on WINDOWS SERVER
MINOR PROZECT REPORT on WINDOWS SERVERAsish Verma
 
Internet Concepts Ch 1
Internet Concepts Ch 1Internet Concepts Ch 1
Internet Concepts Ch 1mroberts
 
Discovering Heterogeneous Resources in the Internet
Discovering Heterogeneous Resources in the InternetDiscovering Heterogeneous Resources in the Internet
Discovering Heterogeneous Resources in the InternetRazzakul Chowdhury
 
Web browser pdf
Web browser pdfWeb browser pdf
Web browser pdfRavi Kumar
 

Ähnlich wie Geliyoo Browser Beta (20)

How Browsers Work -By Tali Garsiel and Paul Irish
How Browsers Work -By Tali Garsiel and Paul IrishHow Browsers Work -By Tali Garsiel and Paul Irish
How Browsers Work -By Tali Garsiel and Paul Irish
 
Introduction to web page
Introduction to web pageIntroduction to web page
Introduction to web page
 
Nt1310 Final Exam Questions And Answers
Nt1310 Final Exam Questions And AnswersNt1310 Final Exam Questions And Answers
Nt1310 Final Exam Questions And Answers
 
Web2.0 ppt
Web2.0 pptWeb2.0 ppt
Web2.0 ppt
 
Whitepaper: Flow Document – A solution to text readers in .Net - Happiest Minds
Whitepaper: Flow Document – A solution to text readers in .Net - Happiest MindsWhitepaper: Flow Document – A solution to text readers in .Net - Happiest Minds
Whitepaper: Flow Document – A solution to text readers in .Net - Happiest Minds
 
Unit 5 World_Wide_Web.pptx
Unit 5 World_Wide_Web.pptxUnit 5 World_Wide_Web.pptx
Unit 5 World_Wide_Web.pptx
 
Web browser
Web browserWeb browser
Web browser
 
Web standards
Web standards Web standards
Web standards
 
Presentation on SEO, .htaccess, Open-source, Ontology, Semantic web, etc.
Presentation on SEO, .htaccess, Open-source, Ontology, Semantic web, etc.Presentation on SEO, .htaccess, Open-source, Ontology, Semantic web, etc.
Presentation on SEO, .htaccess, Open-source, Ontology, Semantic web, etc.
 
How browsers work landscape
How browsers work landscapeHow browsers work landscape
How browsers work landscape
 
Introduction to Html
Introduction to HtmlIntroduction to Html
Introduction to Html
 
fundamental of information technology (2)
fundamental of information technology  (2)fundamental of information technology  (2)
fundamental of information technology (2)
 
MINOR PROZECT REPORT on WINDOWS SERVER
MINOR PROZECT REPORT on WINDOWS SERVERMINOR PROZECT REPORT on WINDOWS SERVER
MINOR PROZECT REPORT on WINDOWS SERVER
 
ICT project
ICT projectICT project
ICT project
 
Internet Concepts Ch 1
Internet Concepts Ch 1Internet Concepts Ch 1
Internet Concepts Ch 1
 
SHAREPOINT (ROR)
SHAREPOINT (ROR)SHAREPOINT (ROR)
SHAREPOINT (ROR)
 
Discovering Heterogeneous Resources in the Internet
Discovering Heterogeneous Resources in the InternetDiscovering Heterogeneous Resources in the Internet
Discovering Heterogeneous Resources in the Internet
 
Resource Discovery Paper.PDF
Resource Discovery Paper.PDFResource Discovery Paper.PDF
Resource Discovery Paper.PDF
 
Web browser pdf
Web browser pdfWeb browser pdf
Web browser pdf
 
Www(alyssa) (2)
Www(alyssa) (2)Www(alyssa) (2)
Www(alyssa) (2)
 

Kürzlich hochgeladen

Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
 

Kürzlich hochgeladen (20)

Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 

Geliyoo Browser Beta

  • 2. Table of content 1. Business models 2. Function 3. Features 4. User interface 5. Privacy and security 6. Components 7. Extensibility
  • 3. Geliyoo Web Browser Project Documentation We developed custom web browser for geliyoo.com and this basic flow displays its overview. Phases of Development: Browser Development follows the following phases of development : 1. Component Selection: Select the components that are useful for the implementation of the browser. 2. System Design : Design architecture of the system that will followed by development in which way browser will work 3. Features Development: Configure the selected components as per our requirements and development of core features of web browser. 4. Development : We will develop a web browser which will work with the help of select component. 5. Future Development : The tasks that still needs development are mentioned here.  Plugin development  Extensions development  Mobile browser development Other Os browser development
  • 4. Business Model The ways that web browser makers fund their development costs has changed over time. The first web browser, WorldWideWeb, was a research project. Netscape Navigator was originally sold commercially, as was Opera; Netscape no longer exists and has been replaced with the free Firefox, while Opera is now downloadable free of charge. Internet Explorer, on the other hand, was from its first release always included with the Windows operating system (and furthermore was downloadable for no extra charge), and therefore it was funded partly by the sales of Windows to computer manufacturers and direct to users. Internet Explorer also used to be available for the Mac. It is likely that releasing IE for the Mac was part of Microsoft's overall strategy to fight threats to its quasi-monopoly platform dominance - threats such as web standards and Java - by making some web developers, or at least their managers, assume that there was "no need" to develop for anything other than Internet Explorer (an assumption that later proved to be badly mistaken, with the rise of Firefox and Chrome). In this respect, IE may have contributed to Windows and Microsoft applications sales in another way, through tricking organizations into inadvertent "lock-in" into the Microsoft platform. Safari and Mobile Safari were likewise always included with OS X and iOS respectively, so, similarly, they were originally funded by sales of Apple computers and mobile devices, and formed part of the overall Apple experience to customers. Today, most commercial web browsers are paid by search engine companies to make the search engine their default search engine (the most valuable prize) or to include them as another option. For example, Google pays Mozilla, the maker of Firefox, to make Google Search the default search engine in Firefox. Mozilla makes so much money from this deal that it does not need to charge users for Firefox. The reason search engine companies are willing to pay for such deals is that such decisions drive traffic their way, increasing ad revenue. As of 2013, Google's search ad revenue is still a very important source of revenue. Google probably does not "pay itself" to make Google Search the default search engine in Google Chrome, but regardless, it derives ad revenue from that choice, so that indirectly funds the development of Google Chrome.
  • 5. Function The primary purpose of a web browser is to bring information resources to the user ("retrieval" or "fetching"), allowing them to view the information ("display", "rendering"), and then access other information ("navigation", "following links"). This process begins when the user inputs a Uniform Resource Locator (URL), for example http://geliyoo.com /, into the browser. The prefix of the URL, the Uniform Resource Identifier or URI, determines how the URL will be interpreted. The most commonly used kind of URI starts with http: and identifies a resource to be retrieved over the Hypertext Transfer Protocol (HTTP).[10] Many browsers also support a variety of other prefixes, such as https: for HTTPS, ftp: for the File Transfer Protocol, and file: for local files. Prefixes that the web browser cannot directly handle are often handed off to another application entirely. For example, mailto: URIs are usually passed to the user's default e-mail application, and news: URIs are passed to the user's default newsgroup reader. In the case of http, https, file, and others, once the resource has been retrieved the web browser will display it. HTML and associated content (image files, formatting information such as CSS, etc.) is passed to the browser's layout engine to be transformed from markup to an interactive document, a process known as "rendering". Aside from HTML, web browsers can generally display any kind of content that can be part of a web page. Most browsers can display images, audio, video, and XML files, and often have plug-ins to support Flash applications and Java applets. Upon encountering a file of an unsupported type or a file that is set up to be downloaded rather than displayed, the browser prompts the user to save the file to disk. Information resources may contain hyperlinks to other information resources. Each link contains the URI of a resource to go to. When a link is clicked, the browser navigates to the resource indicated by the link's target URI, and the process of bringing content to the user begins again.
  • 6. Gecko (layout engine) Gecko is a free and open source layout engine used in many applications developed by Mozilla Foundation and the Mozilla Corporation (notably the Firefox web browser including its mobile version and their e-mail client Thunderbird), as well as in many other open source software projects. It is designed to support open Internet standards, and is used by different applications to display web pages and, in some cases, an application's user interface itself (by rendering XUL). Gecko offers a rich programming API that makes it suitable for a wide variety of roles in Internet-enabled applications, such as web browsers, content presentation, and client/server. Gecko is written in C++ and is cross-platform, and runs on various operating systems including BSDs, Linux, OS X, Solaris, OS/2, AIX, OpenVMS, and Microsoft Windows. Its development is now overseen by the Mozilla Foundation and is licensed under version 2 of the Mozilla Public License. Gecko Render Engine popularity
  • 7. Standards support From the outset, Gecko was designed to support open Internet standards. Some of the standards Gecko supports include: CSS Level 2.1 and 3 This specification defines Cascading Style Sheets, level 2 revision 1 (CSS 2.1). CSS 2.1 is a style sheet language that allows authors and users to attach style (e.g., fonts and spacing) to structured documents (e.g., HTML documents and XML applications). By separating the presentation style of documents from the content of documents, CSS 2.1 simplifies Web authoring and site maintenance. Selectors are patterns that match against elements in a tree, and as such form one of several technologies that can be used to select nodes in an XML document. Selectors have been optimized for use with HTML and XML, and are designed to be usable in performance-critical code. CSS (Cascading Style Sheets) is a language for describing the rendering of HTML and XML documents on screen, on paper, in speech, etc. CSS uses Selectors for binding style properties to elements in the document.
  • 8. DOM Level 1 and 2 and 3 The Document Object Model is a platform- and language-neutral interface that will allow programs and scripts to dynamically access and update the content, structure and style of documents. The document can be further processed and the results of that processing can be incorporated back into the presented page. This is an overview of DOM-related materials here at W3C and around the web. "Dynamic HTML" is a term used by some vendors to describe the combination of HTML, style sheets and scripts that allows documents to be animated. The W3C has received several submissions from members companies on the way in which the object model of HTML documents should be exposed to scripts. These submissions do not propose any new HTML tags or style sheet technology. The W3C DOM Activity is working hard to make sure interoperable and scripting-language neutral solutions are agreed upon.
  • 9. The root element of a Document object is that Document's first element child, if any. If it does not have one then the Document has no root element. The term root element, when not referring to a Document object's root element, means the furthest ancestor element node of whatever node is being discussed, or the node itself if it has no ancestors. When the node is a part of the document, then the node's root element is indeed the document's root element; however, if the node is not currently part of the document tree, the root element will be an orphaned node. When an element's root element is the root element of a Document object, it is said to be in a Document. An element is said to have been inserted into a document when its root element changes and is now the document's root element. Analogously, an element is said to have been removed from a document when its root element changes from being the document's root element to being another element. A node's home subtree is the subtree rooted at that node's root element. When a node is in a Document, its home subtree is that Document's tree. The Document of a Node (such as an element) is the Document that the Node's owner Document IDL attribute returns. When a Node is in a Document then that Document is always the Node's Document, and the Node's owner Document IDL attribute thus always returns that Document. The Document of a content attribute is the Document of the attribute's element. The term tree order means a pre-order, depth-first traversal of DOM nodes involved (through the parent Node/child Nodes relationship). When it is stated that some element or attribute is ignored, or treated as some other value, or handled as if it was something else, this refers only to the processing of the node after it is in the DOM. A user agent must not mutate the DOM in such situations. A content attribute is said to change value only if its new value is different than its previous value; setting an attribute to a value it already has does not change it. The term empty, when used of an attribute value, Text node, or string, means that the length of the text is zero (i.e. not even containing spaces or control characters).
  • 10. HTML5 This specification defines the 5th major version, first minor revision of the core language of the World Wide Web: the Hypertext Markup Language (HTML). In this version, new features continue to be introduced to help Web application authors, new elements continue to be introduced based on research into prevailing authoring practices, and special attention continues to be given to defining clear conformance criteria for user agents in an effort to improve interoperability. This specification is divided into the following major sections: Non-normative materials providing a context for the HTML standard Common infrastructure The conformance classes, algorithms, definitions, and the common underpinnings of the rest of the specification. Semantics, structure, and APIs of HTML documents Documents are built from elements. These elements form a tree using the DOM. This section defines the features of this DOM, as well as introducing the features common to all elements, and the concepts used in defining elements. The elements of HTML Each element has a predefined meaning, which is explained in this section. Rules for authors on how to use the element, along with user agent requirements for how to handle each element, are also given. This includes large signature features of HTML such as video playback and subtitles, form controls and form submission, and a 2D graphics API known as the HTML canvas. Loading Web pages HTML documents do not exist in a vacuum — this section defines many of the features that affect environments that deal with multiple pages, such as Web browsers and offline caching of Web applications. Web application APIs
  • 11. This section introduces basic features for scripting of applications in HTML. User interaction HTML documents can provide a number of mechanisms for users to interact with and modify content, which are described in this section, such as how focus works, and drag-and-drop. The HTML syntax / The XHTML syntax All of these features would be for naught if they couldn't be represented in a serialized form and sent to other people, and so these sections define the syntaxes of HTML and XHTML, along with rules for how to parse content using those syntaxes. Rendering This section defines the default rendering rules for Web browsers. JavaScript 1.8.5 (full ECMAScript 5.1 support) JavaScript (JS) is a dynamic computer programming language. It is most commonly used as part of web browsers, whose implementations allow client-side scripts to interact with the user, control the browser, communicate asynchronously, and alter the document content that is displayed.It is also being used in server-side programming, game development and the creation of desktop and mobile applications.
  • 12. MathML Mathematical Markup Language (MathML) is an application of XML for describing mathematical notations and capturing both its structure and content. It aims at integrating mathematical formulae into World Wide Web pages and other documents. It is a recommendation of the W3C math working group and part of HTML5. Version 3 of the MathML specification was released as a W3C Recommendation on 20 October 2010. A recommendation of A MathML for CSS Profile was later released on 7 June 2011; this is a subset of MathML suitable for CSS formatting. Another subset, Strict Content MathML,
  • 13. provides a subset of content MathML with a uniform structure and is designed to be compatible with OpenMath. Other content elements are defined in terms of a transformation to the strict subset. New content elements include <bind> which associates bound variables (<bvar>) to expressions, for example a summation index. The new <share> element allows structure sharing. The development of MathML 3.0 went through a number of stages. In June 2006 the W3C rechartered the MathML Working Group to produce a MathML 3 Recommendation until February 2008 and in November 2008 extended the charter to April 2010. A sixth Working Draft of the MathML 3 revision was published in June 2009. On 10 August 2010 version 3 graduated to become a "Proposed Recommendation" rather than a draft. RDF
  • 14. RDF is a standard model for data interchange on the Web. RDF has features that facilitate data merging even if the underlying schemas differ, and it specifically supports the evolution of schemas over time without requiring all the data consumers to be changed. RDF extends the linking structure of the Web to use URIs to name the relationship between things as well as the two ends of the link (this is usually referred to as a “triple”). Using this simple model, it allows structured and semi-structured data to be mixed, exposed, and shared across different applications. This linking structure forms a directed, labeled graph, where the edges represent the named link between two resources, represented by the graph nodes. This graph view is the easiest possible mental model for RDF and is often used in easy-to-understand visual explanations. XForms (via an official extension) XHTML 2.0 XML 2.0 XSLT and XPath, implemented in TransforMiiX Gecko also partially supports SVG 1.1. In order to support web pages designed for legacy versions of Netscape and Internet Explorer, Gecko supports DOCTYPE switching. Documents with a modern DOCTYPE are rendered in standards compliance mode, which follows the W3C standards strictly. Documents that have no DOCTYPE or an
  • 15. older DOCTYPE are rendered in quirks mode, which emulates some of the non-standard oddities of Netscape Communicator 4.x; however, some of the 4.x features (such as layers) are not supported. Gecko also has limited support for some non-standard Internet Explorer features, such as the marquee element and the document. all property (though pages explicitly testing for document. all will be told it is not supported). While this increases compatibility with many documents designed only for Internet Explorer, some purists argue that it harms the cause of standards evangelism. Bookmark , History & Cookies storage by browser. Bookmark In the context of the World Wide Web, a bookmark is a Uniform Resource Identifier (URI) that is stored for later retrieval in any of various storage formats. All modern web browsers include bookmark features. History In computing, the web browsing history refers to the list of web pages a user has visited recently—and associated data such as page title and time of visit—which is recorded by web browser software as standard for a certain period of time. Web browser software does this in order to provide the user with a Back button and/or a History list, to go back to pages they have visited previously, rather than relying on the user to remember where they have been on the web. Cookies A cookie, also known as an HTTP cookie, web cookie, or browser cookie, is a small piece of data sent from a website and stored in a user's web browser while the user is browsing that website. Every time the user loads the website, the browser sends the cookie back to the server to notify the website of the user's previous activity. Cookies were designed to be a reliable mechanism for websites to remember state ful information (such as items in a shopping cart) or to record the user's browsing activity (including clicking particular buttons, logging in, or recording which pages were visited by the user as far back as months or years ago). Download Download is the basic functionality of web browser. User can download any file from web and in geliyoo web browser we providing download items on default page.