دسترسی نامحدود
برای کاربرانی که ثبت نام کرده اند
برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید
در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید
برای کاربرانی که ثبت نام کرده اند
درصورت عدم همخوانی توضیحات با کتاب
از ساعت 7 صبح تا 10 شب
ویرایش:
نویسندگان: Gange A.
سری:
ناشر: Independently Published
سال نشر: 2024
تعداد صفحات: 102
زبان: English
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود)
حجم فایل: 5 مگابایت
در صورت تبدیل فایل کتاب XML Basics. Notes and everything about XML 2024 به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.
توجه داشته باشید کتاب مبانی XML یادداشت ها و همه چیز در مورد XML 2024 نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.
What is XML? XML is a W3C Recommendation What it Is How it Started Standardizing the Web W3C Members W3C Recommendations The Main Difference Between XML and HTML XML Does not DO AnythingTove XML is Free and Extensible XML is a Complement to HTML XML in Future Web Development How can XML be Used? XML can Separate Data from HTML XML is Used to Exchange Data XML and B2B XML Can be Used to Share Data XML Can be Used to Store Data XML Can Make your Data More Useful XML Can be Used to Create New Languages If Developers Have Sense XML Syntax Rules An Example XML Document< from > Jani < /from > < heading > Reminder < /heading > Don\'t forget me this weekend! < /note > All XML Elements Must Have a Closing Tag is a paragraph This is another paragraph
This is a paragraph
This is another paragraph
XML Tags are Case Sensitive written with the same case:This is incorrect This is correct XML Elements Must be Properly Nested bold and italic < /b > < /i > and italic < /i > < /b > XML Documents Must Have a Root Element< child > < subchild > < /subchild > XML Attribute Values Must be Quoted < from > Jani < /from > < /note > With XML, White Space is Preserved With XML, CR / LF is Converted to LF There is Nothing Special About XML XML Attributes Quote Styles, \"female\" or \'female\'? < gangster name=\'George \"Shotgun\" Ziegler\'> Use of Elements vs. Attributes Anna< /firstname > < lastname > Smith < /lastname > female Anna< /firstname > < lastname > Smith < /lastname > < /person > My Favorite Way Tove An Exception to my Attribute Rule < from > To ve < /from >Re: Reminder I will not! < /note > < /messages > DTD Tutorial Introduction to DTD Internal DOCTYPE declaration <’DOCTYPE root-element [element-declarations] > < ?xml version=\" 1.0\"? > <’DOCTYPE note [ Don\'t forget me this weekend < /note > External DOCTYPE declarationWhy use a DTD? DTD - XML building blocks Elements body text in between some message in between Attributes Entities PCDATA CDATA DTD - Elements Declaring an Element <’ELEMENT element-name category> or <’ELEMENT element-name (element-content)> Empty elements EMPTY> example: <’ELEMENT br EMPTY> XML example:
#pcdata inside parentheses: <’ELEMENT element-name (#PCDATA)> example: <’ELEMENT from (#PCDATA)> ELEMENT element-name ANY > < (ELEMENT to (#PCDATA)> < (ELEMENT from (#PCDATA)> < (ELEMENT heading (#PCDATA)> < (ELEMENT body (#PCDATA)> Declaring only one occurrence of the same element example: Declaring minimum one occurrence of the same element Declaring zero or more occurrences of the same element <’ELEMENT element-name (child-name?)> example: <’ELEMENT note (message?)> Declaring either/or content example: <’ELEMENT note (to,from,header,(message|body))> Declaring mixed content example: <’ELEMENT note (#PCDATA|to|from|header|message)*> DTD - Attributes Declaring Attributes Specifying a Default attribute value Enumerated attribute values DTD - Entities SYSTEM \"http://www.w3schools.com/dtd/entities.dtd\"> <\'ENTITY copyright SYSTEM \"http://www.w3schools.com/dtd/entities.dtd\"> XML example: < author > & writ er;© right; < /author > DTD Validation Validating with the XML Parser = new ActiveXObject(\"Microsoft.XMLDOM\") A general XML Validator XML Namespaces Name Conflicts Solving Name Conflicts Using a Prefix Using Namespaces < f: width > 8 0 < /f: width > < fdength > 12 0 < /fdength > The XML Namespace (xmlns) Attribute Uniform Resource Identifier (URI) Default Namespaces < table xmlns=\"http://www.w3 .org/TR/html4/\" >Apples Namespaces in Real Use XML Data Island XML Data Embedded in HTML