From 799f1d56539e5a895d70eb88a86f0379f3a3ae0d Mon Sep 17 00:00:00 2001 From: Florian Merz Date: Thu, 11 Feb 2021 14:47:31 +0100 Subject: unslug hu: move --- .../javascript/guide/bevezet\303\251s/index.html" | 134 --------------------- .../web/javascript/guide/introduction/index.html | 134 +++++++++++++++++++++ 2 files changed, 134 insertions(+), 134 deletions(-) delete mode 100644 "files/hu/web/javascript/guide/bevezet\303\251s/index.html" create mode 100644 files/hu/web/javascript/guide/introduction/index.html (limited to 'files/hu/web/javascript/guide') diff --git "a/files/hu/web/javascript/guide/bevezet\303\251s/index.html" "b/files/hu/web/javascript/guide/bevezet\303\251s/index.html" deleted file mode 100644 index 3e87f3d12b..0000000000 --- "a/files/hu/web/javascript/guide/bevezet\303\251s/index.html" +++ /dev/null @@ -1,134 +0,0 @@ ---- -title: Bevezetés -slug: Web/JavaScript/Guide/Bevezetés -translation_of: Web/JavaScript/Guide/Introduction ---- -
{{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide", "Web/JavaScript/Guide/Grammar_and_types")}}
- -

Ez a fejezet bemutatja a JavaScript-et és hozzá kapcsolódó néhány alapvető fogalmat.

- -

Amire szükséged lesz a megértéshez

- -

Ez az útmutató feltételezi, hogy a következő alapvető háttérrel rendelkezel:

- - - -

További információk a JavaScript-ről

- -

A JavaScript dokumentáció a következőket tartalmazza:

- - - -

Ha kezdő JavaScript programozó vagy, akkor jó helyen jársz, a JavaScript Útmutatóban elsajátíthatod a keresett tudást. Ha már alap szinten ismered a nyelvet, egyszerűbb lehet számodra a JavaScript Referencia, ahol szakmai információkat olvashatsz.

- -

Mi az a JavaScript?

- -

A JavaScript egy platform független (cross-platform), objektum orientált script nyelv. Beépített környezetben fut (általában egy web böngésző), JavaScript képes kapcsolódni más objektum környezettel (DOM, lásd később), ezáltal tudja manipulálni azt.

- -

JavaScript tartalmaz egy szabványos objektum könyvtárat, mint például az Array, Date, és Math, és alapvető nyelvi elemeket, például az operátorokat és vezérlési szerkezeteket. JavaScript-et lehet bővíteni különböző célokra történő kiegészítéssel, annak speciális igényeivel, például:

- - - -

JavaScript and Java

- -

JavaScript and Java are similar in some ways but fundamentally different in some others. The JavaScript language resembles Java but does not have Java's static typing and strong type checking. JavaScript follows most Java expression syntax, naming conventions and basic control-flow constructs which was the reason why it was renamed from LiveScript to JavaScript.

- -

In contrast to Java's compile-time system of classes built by declarations, JavaScript supports a runtime system based on a small number of data types representing numeric, Boolean, and string values. JavaScript has a prototype-based object model instead of the more common class-based object model. The prototype-based model provides dynamic inheritance; that is, what is inherited can vary for individual objects. JavaScript also supports functions without any special declarative requirements. Functions can be properties of objects, executing as loosely typed methods.

- -

JavaScript is a very free-form language compared to Java. You do not have to declare all variables, classes, and methods. You do not have to be concerned with whether methods are public, private, or protected, and you do not have to implement interfaces. Variables, parameters, and function return types are not explicitly typed.

- -

Java is a class-based programming language designed for fast execution and type safety. Type safety means, for instance, that you can't cast a Java integer into an object reference or access private memory by corrupting Java bytecodes. Java's class-based model means that programs consist exclusively of classes and their methods. Java's class inheritance and strong typing generally require tightly coupled object hierarchies. These requirements make Java programming more complex than JavaScript programming.

- -

In contrast, JavaScript descends in spirit from a line of smaller, dynamically typed languages such as HyperTalk and dBASE. These scripting languages offer programming tools to a much wider audience because of their easier syntax, specialized built-in functionality, and minimal requirements for object creation.

- - - - - - - - - - - - - - - - - - - - - - - -
JavaScript compared to Java
JavaScriptJava
Object-oriented. No distinction between types of objects. Inheritance is through the prototype mechanism, and properties and methods can be added to any object dynamically.Class-based. Objects are divided into classes and instances with all inheritance through the class hierarchy. Classes and instances cannot have properties or methods added dynamically.
Variable data types are not declared (dynamic typing).Variable data types must be declared (static typing).
Cannot automatically write to hard disk.Can automatically write to hard disk.
- -

For more information on the differences between JavaScript and Java, see the chapter Details of the object model.

- -

JavaScript and the ECMAScript specification

- -

JavaScript is standardized at Ecma International — the European association for standardizing information and communication systems (ECMA was formerly an acronym for the European Computer Manufacturers Association) to deliver a standardized, international programming language based on JavaScript. This standardized version of JavaScript, called ECMAScript, behaves the same way in all applications that support the standard. Companies can use the open standard language to develop their implementation of JavaScript. The ECMAScript standard is documented in the ECMA-262 specification. See New in JavaScript to learn more about different versions of JavaScript and ECMAScript specification editions.

- -

The ECMA-262 standard is also approved by the ISO (International Organization for Standardization) as ISO-16262. You can also find the specification on the Ecma International website. The ECMAScript specification does not describe the Document Object Model (DOM), which is standardized by the World Wide Web Consortium (W3C) and/or WHATWG (Web Hypertext Application Technology Working Group). The DOM defines the way in which HTML document objects are exposed to your script. To get a better idea about the different technologies that are used when programming with JavaScript, consult the article JavaScript technologies overview.

- -

JavaScript documentation versus the ECMAScript specification

- -

The ECMAScript specification is a set of requirements for implementing ECMAScript; it is useful if you want to implement standards-compliant language features in your ECMAScript implementation or engine (such as SpiderMonkey in Firefox, or v8 in Chrome).

- -

The ECMAScript document is not intended to help script programmers; use the JavaScript documentation for information on writing scripts.

- -

The ECMAScript specification uses terminology and syntax that may be unfamiliar to a JavaScript programmer. Although the description of the language may differ in ECMAScript, the language itself remains the same. JavaScript supports all functionality outlined in the ECMAScript specification.

- -

The JavaScript documentation describes aspects of the language that are appropriate for a JavaScript programmer.

- -

Getting started with JavaScript

- -

Getting started with JavaScript is easy: all you need is a modern Web browser. This guide includes some JavaScript features which are only currently available in the latest versions of Firefox, so using the most recent version of Firefox is recommended.

- -

There are two tools built into Firefox that are useful for experimenting with JavaScript: the Web Console and Scratchpad.

- -

The Web Console

- -

The Web Console shows you information about the currently loaded Web page, and also includes a command line that you can use to execute JavaScript expressions in the current page.

- -

To open the Web Console (Ctrl+Shift+K), select "Web Console" from the "Developer" menu, which is under the "Tools" menu in Firefox. It appears at the bottom of the browser window. Along the bottom of the console is a command line that you can use to enter JavaScript, and the output appears in the pane above:

- -

- -

Scratchpad

- -

The Web Console is great for executing single lines of JavaScript, but although you can execute multiple lines, it's not very convenient for that, and you can't save your code samples using the Web Console. So for more complex examples Scratchpad is a better tool.

- -

To open Scratchpad (Shift+F4), select "Scratchpad" from the "Developer" menu, which is under the menu in Firefox. It opens in a separate window and is an editor that you can use to write and execute JavaScript in the browser. You can also save scripts to disk and load them from disk.

- -

- -

Hello world

- -

To get started with writing JavaScript, open the Scratchpad and write your first "Hello world" JavaScript code:

- -
function greetMe(yourName) {
-  alert("Hello " + yourName);
-}
-
-greetMe("World");
-
- -

Select the code in the pad and hit Ctrl+R to watch it unfold in your browser!

- -

In the following pages, this guide will introduce you to the JavaScript syntax and language features, so that you will be able to write more complex applications.

- -

{{PreviousNext("Web/JavaScript/Guide", "Web/JavaScript/Guide/Grammar_and_types")}}

diff --git a/files/hu/web/javascript/guide/introduction/index.html b/files/hu/web/javascript/guide/introduction/index.html new file mode 100644 index 0000000000..3e87f3d12b --- /dev/null +++ b/files/hu/web/javascript/guide/introduction/index.html @@ -0,0 +1,134 @@ +--- +title: Bevezetés +slug: Web/JavaScript/Guide/Bevezetés +translation_of: Web/JavaScript/Guide/Introduction +--- +
{{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide", "Web/JavaScript/Guide/Grammar_and_types")}}
+ +

Ez a fejezet bemutatja a JavaScript-et és hozzá kapcsolódó néhány alapvető fogalmat.

+ +

Amire szükséged lesz a megértéshez

+ +

Ez az útmutató feltételezi, hogy a következő alapvető háttérrel rendelkezel:

+ + + +

További információk a JavaScript-ről

+ +

A JavaScript dokumentáció a következőket tartalmazza:

+ + + +

Ha kezdő JavaScript programozó vagy, akkor jó helyen jársz, a JavaScript Útmutatóban elsajátíthatod a keresett tudást. Ha már alap szinten ismered a nyelvet, egyszerűbb lehet számodra a JavaScript Referencia, ahol szakmai információkat olvashatsz.

+ +

Mi az a JavaScript?

+ +

A JavaScript egy platform független (cross-platform), objektum orientált script nyelv. Beépített környezetben fut (általában egy web böngésző), JavaScript képes kapcsolódni más objektum környezettel (DOM, lásd később), ezáltal tudja manipulálni azt.

+ +

JavaScript tartalmaz egy szabványos objektum könyvtárat, mint például az Array, Date, és Math, és alapvető nyelvi elemeket, például az operátorokat és vezérlési szerkezeteket. JavaScript-et lehet bővíteni különböző célokra történő kiegészítéssel, annak speciális igényeivel, például:

+ + + +

JavaScript and Java

+ +

JavaScript and Java are similar in some ways but fundamentally different in some others. The JavaScript language resembles Java but does not have Java's static typing and strong type checking. JavaScript follows most Java expression syntax, naming conventions and basic control-flow constructs which was the reason why it was renamed from LiveScript to JavaScript.

+ +

In contrast to Java's compile-time system of classes built by declarations, JavaScript supports a runtime system based on a small number of data types representing numeric, Boolean, and string values. JavaScript has a prototype-based object model instead of the more common class-based object model. The prototype-based model provides dynamic inheritance; that is, what is inherited can vary for individual objects. JavaScript also supports functions without any special declarative requirements. Functions can be properties of objects, executing as loosely typed methods.

+ +

JavaScript is a very free-form language compared to Java. You do not have to declare all variables, classes, and methods. You do not have to be concerned with whether methods are public, private, or protected, and you do not have to implement interfaces. Variables, parameters, and function return types are not explicitly typed.

+ +

Java is a class-based programming language designed for fast execution and type safety. Type safety means, for instance, that you can't cast a Java integer into an object reference or access private memory by corrupting Java bytecodes. Java's class-based model means that programs consist exclusively of classes and their methods. Java's class inheritance and strong typing generally require tightly coupled object hierarchies. These requirements make Java programming more complex than JavaScript programming.

+ +

In contrast, JavaScript descends in spirit from a line of smaller, dynamically typed languages such as HyperTalk and dBASE. These scripting languages offer programming tools to a much wider audience because of their easier syntax, specialized built-in functionality, and minimal requirements for object creation.

+ + + + + + + + + + + + + + + + + + + + + + + +
JavaScript compared to Java
JavaScriptJava
Object-oriented. No distinction between types of objects. Inheritance is through the prototype mechanism, and properties and methods can be added to any object dynamically.Class-based. Objects are divided into classes and instances with all inheritance through the class hierarchy. Classes and instances cannot have properties or methods added dynamically.
Variable data types are not declared (dynamic typing).Variable data types must be declared (static typing).
Cannot automatically write to hard disk.Can automatically write to hard disk.
+ +

For more information on the differences between JavaScript and Java, see the chapter Details of the object model.

+ +

JavaScript and the ECMAScript specification

+ +

JavaScript is standardized at Ecma International — the European association for standardizing information and communication systems (ECMA was formerly an acronym for the European Computer Manufacturers Association) to deliver a standardized, international programming language based on JavaScript. This standardized version of JavaScript, called ECMAScript, behaves the same way in all applications that support the standard. Companies can use the open standard language to develop their implementation of JavaScript. The ECMAScript standard is documented in the ECMA-262 specification. See New in JavaScript to learn more about different versions of JavaScript and ECMAScript specification editions.

+ +

The ECMA-262 standard is also approved by the ISO (International Organization for Standardization) as ISO-16262. You can also find the specification on the Ecma International website. The ECMAScript specification does not describe the Document Object Model (DOM), which is standardized by the World Wide Web Consortium (W3C) and/or WHATWG (Web Hypertext Application Technology Working Group). The DOM defines the way in which HTML document objects are exposed to your script. To get a better idea about the different technologies that are used when programming with JavaScript, consult the article JavaScript technologies overview.

+ +

JavaScript documentation versus the ECMAScript specification

+ +

The ECMAScript specification is a set of requirements for implementing ECMAScript; it is useful if you want to implement standards-compliant language features in your ECMAScript implementation or engine (such as SpiderMonkey in Firefox, or v8 in Chrome).

+ +

The ECMAScript document is not intended to help script programmers; use the JavaScript documentation for information on writing scripts.

+ +

The ECMAScript specification uses terminology and syntax that may be unfamiliar to a JavaScript programmer. Although the description of the language may differ in ECMAScript, the language itself remains the same. JavaScript supports all functionality outlined in the ECMAScript specification.

+ +

The JavaScript documentation describes aspects of the language that are appropriate for a JavaScript programmer.

+ +

Getting started with JavaScript

+ +

Getting started with JavaScript is easy: all you need is a modern Web browser. This guide includes some JavaScript features which are only currently available in the latest versions of Firefox, so using the most recent version of Firefox is recommended.

+ +

There are two tools built into Firefox that are useful for experimenting with JavaScript: the Web Console and Scratchpad.

+ +

The Web Console

+ +

The Web Console shows you information about the currently loaded Web page, and also includes a command line that you can use to execute JavaScript expressions in the current page.

+ +

To open the Web Console (Ctrl+Shift+K), select "Web Console" from the "Developer" menu, which is under the "Tools" menu in Firefox. It appears at the bottom of the browser window. Along the bottom of the console is a command line that you can use to enter JavaScript, and the output appears in the pane above:

+ +

+ +

Scratchpad

+ +

The Web Console is great for executing single lines of JavaScript, but although you can execute multiple lines, it's not very convenient for that, and you can't save your code samples using the Web Console. So for more complex examples Scratchpad is a better tool.

+ +

To open Scratchpad (Shift+F4), select "Scratchpad" from the "Developer" menu, which is under the menu in Firefox. It opens in a separate window and is an editor that you can use to write and execute JavaScript in the browser. You can also save scripts to disk and load them from disk.

+ +

+ +

Hello world

+ +

To get started with writing JavaScript, open the Scratchpad and write your first "Hello world" JavaScript code:

+ +
function greetMe(yourName) {
+  alert("Hello " + yourName);
+}
+
+greetMe("World");
+
+ +

Select the code in the pad and hit Ctrl+R to watch it unfold in your browser!

+ +

In the following pages, this guide will introduce you to the JavaScript syntax and language features, so that you will be able to write more complex applications.

+ +

{{PreviousNext("Web/JavaScript/Guide", "Web/JavaScript/Guide/Grammar_and_types")}}

-- cgit v1.2.3-54-g00ecf From 6cfd1f09e599d9bb5da01e943981925d1873e3ce Mon Sep 17 00:00:00 2001 From: Florian Merz Date: Thu, 11 Feb 2021 14:47:32 +0100 Subject: unslug hu: modify --- files/hu/_redirects.txt | 23 ++ files/hu/_wikihistory.json | 290 ++++++++++----------- .../web/api/document_object_model/index.html | 3 +- files/hu/glossary/browser/index.html | 3 +- files/hu/glossary/first-class_function/index.html | 3 +- .../learn/getting_started_with_the_web/index.html | 3 +- .../installing_basic_software/index.html | 3 +- .../what_will_your_website_look_like/index.html | 3 +- .../hu/learn/html/introduction_to_html/index.html | 3 +- files/hu/learn/javascript/first_steps/index.html | 3 +- files/hu/web/api/document_object_model/index.html | 3 +- files/hu/web/api/htmlbrelement/index.html | 3 +- files/hu/web/api/websockets_api/index.html | 3 +- files/hu/web/api/window/stop/index.html | 3 +- .../xmlhttprequest/using_xmlhttprequest/index.html | 3 +- .../border-radius_generator/index.html | 3 +- files/hu/web/css/css_grid_layout/index.html | 3 +- files/hu/web/css/font-weight/index.html | 3 +- files/hu/web/css/index.html | 3 +- files/hu/web/css/text-decoration/index.html | 3 +- files/hu/web/guide/graphics/index.html | 3 +- .../a_re-introduction_to_javascript/index.html | 3 +- .../web/javascript/guide/introduction/index.html | 3 +- .../reference/errors/unexpected_type/index.html | 3 +- .../reference/global_objects/function/index.html | 3 +- 25 files changed, 214 insertions(+), 168 deletions(-) (limited to 'files/hu/web/javascript/guide') diff --git a/files/hu/_redirects.txt b/files/hu/_redirects.txt index c8090b178f..19124f2e34 100644 --- a/files/hu/_redirects.txt +++ b/files/hu/_redirects.txt @@ -1,10 +1,33 @@ # FROM-URL TO-URL +/hu/docs/Bevezetés_a_dokumentumobjektum-modellbe /hu/docs/Web/API/Document_Object_Model +/hu/docs/CSS /hu/docs/Web/CSS +/hu/docs/CSS/CSS_Grid_Layout /hu/docs/Web/CSS/CSS_Grid_Layout +/hu/docs/CSS/font-weight /hu/docs/Web/CSS/font-weight +/hu/docs/CSS/text-decoration /hu/docs/Web/CSS/text-decoration +/hu/docs/DOM /hu/docs/conflicting/Web/API/Document_Object_Model +/hu/docs/DOM/HTMLBRElement /hu/docs/Web/API/HTMLBRElement +/hu/docs/Glossary/Elso_osztalyu_funkciok /hu/docs/Glossary/First-class_Function +/hu/docs/Glossary/bongeszo /hu/docs/Glossary/Browser /hu/docs/HTML /hu/docs/Web/HTML /hu/docs/HTML/Element /hu/docs/Web/HTML/Element /hu/docs/HTML/Element/br /hu/docs/Web/HTML/Element/br /hu/docs/JavaScript /hu/docs/Web/JavaScript /hu/docs/JavaScript_1.5_kézikönyv /hu/docs/Web/JavaScript/Guide /hu/docs/Kezdőlap /hu/docs/Web +/hu/docs/Learn/HTML/Bevezetes_a_HTML-be /hu/docs/Learn/HTML/Introduction_to_HTML +/hu/docs/Learn/Ismerkedés_a_Világhálóval /hu/docs/Learn/Getting_started_with_the_web +/hu/docs/Learn/Ismerkedés_a_Világhálóval/Alapvető_programok_telepítése /hu/docs/Learn/Getting_started_with_the_web/Installing_basic_software +/hu/docs/Learn/Ismerkedés_a_Világhálóval/Hogy_fog_kinézni_a_weboldalunk /hu/docs/Learn/Getting_started_with_the_web/What_will_your_website_look_like +/hu/docs/Learn/JavaScript/Első_lépések /hu/docs/Learn/JavaScript/First_steps /hu/docs/MDN/Getting_started /hu/docs/MDN/Contribute/Getting_started +/hu/docs/Web/API/Window.stop /hu/docs/Web/API/Window/stop +/hu/docs/Web/API/XMLHttpRequest/XMLHttpRequest_hasznalata /hu/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest +/hu/docs/Web/CSS/Tools/Border-radius_bemutato /hu/docs/Web/CSS/CSS_Background_and_Borders/Border-radius_generator +/hu/docs/Web/Guide/Grafika /hu/docs/Web/Guide/Graphics +/hu/docs/Web/JavaScript/Guide/Bevezetés /hu/docs/Web/JavaScript/Guide/Introduction /hu/docs/Web/JavaScript/JavaScript_1.5_kézikönyv /hu/docs/Web/JavaScript/Guide +/hu/docs/Web/JavaScript/Reference/Errors/Érvénytelen_típus /hu/docs/Web/JavaScript/Reference/Errors/Unexpected_type +/hu/docs/Web/JavaScript/Reference/Global_Objects/Függvény /hu/docs/Web/JavaScript/Reference/Global_Objects/Function +/hu/docs/Web/JavaScript/a_javascript_ujboli_bemutatasa /hu/docs/Web/JavaScript/A_re-introduction_to_JavaScript +/hu/docs/WebSockets /hu/docs/Web/API/WebSockets_API /hu/docs/en /en-US/ diff --git a/files/hu/_wikihistory.json b/files/hu/_wikihistory.json index 41a5ac386f..fca16d10ed 100644 --- a/files/hu/_wikihistory.json +++ b/files/hu/_wikihistory.json @@ -1,53 +1,4 @@ { - "Bevezetés_a_dokumentumobjektum-modellbe": { - "modified": "2019-03-23T23:46:33.058Z", - "contributors": [ - "teoli", - "Csörföly D" - ] - }, - "CSS": { - "modified": "2019-09-11T03:36:12.939Z", - "contributors": [ - "SphinxKnight", - "tetkosimi", - "teoli", - "CsörfölyD" - ] - }, - "CSS/CSS_Grid_Layout": { - "modified": "2019-03-18T21:34:45.745Z", - "contributors": [ - "kecskeskrisztian" - ] - }, - "CSS/font-weight": { - "modified": "2020-11-12T12:54:39.738Z", - "contributors": [ - "evasimonyi" - ] - }, - "CSS/text-decoration": { - "modified": "2020-11-12T10:40:09.368Z", - "contributors": [ - "evasimonyi" - ] - }, - "DOM": { - "modified": "2019-03-24T00:03:55.193Z", - "contributors": [ - "ethertank", - "fscholz", - "Csörföly D" - ] - }, - "DOM/HTMLBRElement": { - "modified": "2019-03-23T23:31:58.209Z", - "contributors": [ - "khalid32", - "urbalazs" - ] - }, "Glossary": { "modified": "2020-10-07T11:10:36.306Z", "contributors": [ @@ -88,12 +39,6 @@ "evasimonyi" ] }, - "Glossary/Elso_osztalyu_funkciok": { - "modified": "2019-03-18T20:56:29.186Z", - "contributors": [ - "Szelmat" - ] - }, "Glossary/JavaScript": { "modified": "2020-11-16T15:08:28.654Z", "contributors": [ @@ -107,12 +52,6 @@ "Szelmat" ] }, - "Glossary/bongeszo": { - "modified": "2020-07-28T08:32:30.144Z", - "contributors": [ - "mmarci72" - ] - }, "Learn": { "modified": "2020-11-16T14:42:59.018Z", "contributors": [ @@ -130,42 +69,12 @@ "chrisdavidmills" ] }, - "Learn/HTML/Bevezetes_a_HTML-be": { - "modified": "2020-07-16T22:22:48.153Z", - "contributors": [ - "tetkosimi" - ] - }, - "Learn/Ismerkedés_a_Világhálóval": { - "modified": "2020-07-29T16:23:02.755Z", - "contributors": [ - "szcsl" - ] - }, - "Learn/Ismerkedés_a_Világhálóval/Alapvető_programok_telepítése": { - "modified": "2020-07-31T12:06:30.955Z", - "contributors": [ - "szcsl" - ] - }, - "Learn/Ismerkedés_a_Világhálóval/Hogy_fog_kinézni_a_weboldalunk": { - "modified": "2020-08-02T13:33:58.088Z", - "contributors": [ - "szcsl" - ] - }, "Learn/JavaScript": { "modified": "2020-07-16T22:29:39.465Z", "contributors": [ "entriek" ] }, - "Learn/JavaScript/Első_lépések": { - "modified": "2020-07-16T22:29:51.271Z", - "contributors": [ - "Aioiui" - ] - }, "Learn/Server-side": { "modified": "2020-07-16T22:35:58.128Z", "contributors": [ @@ -276,13 +185,6 @@ "chrisdavidmills" ] }, - "Web/API/Window.stop": { - "modified": "2019-03-23T23:25:32.999Z", - "contributors": [ - "jsx", - "mark_b" - ] - }, "Web/API/Window/alert": { "modified": "2020-10-15T22:20:45.271Z", "contributors": [ @@ -302,24 +204,12 @@ "fscholz" ] }, - "Web/API/XMLHttpRequest/XMLHttpRequest_hasznalata": { - "modified": "2020-10-15T22:19:50.902Z", - "contributors": [ - "dominicus-75" - ] - }, "Web/CSS/Tools": { "modified": "2019-03-23T22:57:26.063Z", "contributors": [ "velvel53" ] }, - "Web/CSS/Tools/Border-radius_bemutato": { - "modified": "2019-03-23T22:57:32.009Z", - "contributors": [ - "nemesreviz" - ] - }, "Web/Guide": { "modified": "2019-03-23T23:16:53.049Z", "contributors": [ @@ -333,12 +223,6 @@ "Sheppy" ] }, - "Web/Guide/Grafika": { - "modified": "2019-05-08T07:13:14.821Z", - "contributors": [ - "tetkosimi" - ] - }, "Web/HTML": { "modified": "2019-05-09T07:19:07.882Z", "contributors": [ @@ -397,12 +281,6 @@ "CsörfölyD" ] }, - "Web/JavaScript/Guide/Bevezetés": { - "modified": "2020-03-12T19:43:36.391Z", - "contributors": [ - "RMarcell" - ] - }, "Web/JavaScript/Reference": { "modified": "2020-11-19T10:10:24.248Z", "contributors": [ @@ -438,13 +316,6 @@ "dorionka" ] }, - "Web/JavaScript/Reference/Errors/Érvénytelen_típus": { - "modified": "2020-04-19T20:35:18.887Z", - "contributors": [ - "tacsipacsi", - "sanyoca" - ] - }, "Web/JavaScript/Reference/Global_Objects": { "modified": "2020-03-12T19:45:17.938Z", "contributors": [ @@ -487,15 +358,6 @@ "Sealdolphin" ] }, - "Web/JavaScript/Reference/Global_Objects/Függvény": { - "modified": "2020-11-16T15:30:24.183Z", - "contributors": [ - "meskobalazs", - "iamdue", - "copas2", - "dorionka" - ] - }, "Web/JavaScript/Reference/Global_Objects/NaN": { "modified": "2020-11-19T09:58:46.355Z", "contributors": [ @@ -524,12 +386,6 @@ "suckee86" ] }, - "Web/JavaScript/a_javascript_ujboli_bemutatasa": { - "modified": "2020-03-12T19:48:54.218Z", - "contributors": [ - "kisjoke91" - ] - }, "Web/Reference": { "modified": "2019-03-23T22:43:43.697Z", "contributors": [ @@ -542,10 +398,154 @@ "barcai" ] }, - "WebSockets": { + "Web/CSS/CSS_Grid_Layout": { + "modified": "2019-03-18T21:34:45.745Z", + "contributors": [ + "kecskeskrisztian" + ] + }, + "Web/CSS/font-weight": { + "modified": "2020-11-12T12:54:39.738Z", + "contributors": [ + "evasimonyi" + ] + }, + "Web/CSS": { + "modified": "2019-09-11T03:36:12.939Z", + "contributors": [ + "SphinxKnight", + "tetkosimi", + "teoli", + "CsörfölyD" + ] + }, + "Web/CSS/text-decoration": { + "modified": "2020-11-12T10:40:09.368Z", + "contributors": [ + "evasimonyi" + ] + }, + "Web/API/HTMLBRElement": { + "modified": "2019-03-23T23:31:58.209Z", + "contributors": [ + "khalid32", + "urbalazs" + ] + }, + "Glossary/Browser": { + "modified": "2020-07-28T08:32:30.144Z", + "contributors": [ + "mmarci72" + ] + }, + "Glossary/First-class_Function": { + "modified": "2019-03-18T20:56:29.186Z", + "contributors": [ + "Szelmat" + ] + }, + "Learn/HTML/Introduction_to_HTML": { + "modified": "2020-07-16T22:22:48.153Z", + "contributors": [ + "tetkosimi" + ] + }, + "Learn/Getting_started_with_the_web/Installing_basic_software": { + "modified": "2020-07-31T12:06:30.955Z", + "contributors": [ + "szcsl" + ] + }, + "Learn/Getting_started_with_the_web/What_will_your_website_look_like": { + "modified": "2020-08-02T13:33:58.088Z", + "contributors": [ + "szcsl" + ] + }, + "Learn/Getting_started_with_the_web": { + "modified": "2020-07-29T16:23:02.755Z", + "contributors": [ + "szcsl" + ] + }, + "Learn/JavaScript/First_steps": { + "modified": "2020-07-16T22:29:51.271Z", + "contributors": [ + "Aioiui" + ] + }, + "Web/API/Window/stop": { + "modified": "2019-03-23T23:25:32.999Z", + "contributors": [ + "jsx", + "mark_b" + ] + }, + "Web/API/XMLHttpRequest/Using_XMLHttpRequest": { + "modified": "2020-10-15T22:19:50.902Z", + "contributors": [ + "dominicus-75" + ] + }, + "Web/CSS/CSS_Background_and_Borders/Border-radius_generator": { + "modified": "2019-03-23T22:57:32.009Z", + "contributors": [ + "nemesreviz" + ] + }, + "Web/Guide/Graphics": { + "modified": "2019-05-08T07:13:14.821Z", + "contributors": [ + "tetkosimi" + ] + }, + "Web/JavaScript/A_re-introduction_to_JavaScript": { + "modified": "2020-03-12T19:48:54.218Z", + "contributors": [ + "kisjoke91" + ] + }, + "Web/JavaScript/Guide/Introduction": { + "modified": "2020-03-12T19:43:36.391Z", + "contributors": [ + "RMarcell" + ] + }, + "Web/JavaScript/Reference/Errors/Unexpected_type": { + "modified": "2020-04-19T20:35:18.887Z", + "contributors": [ + "tacsipacsi", + "sanyoca" + ] + }, + "Web/JavaScript/Reference/Global_Objects/Function": { + "modified": "2020-11-16T15:30:24.183Z", + "contributors": [ + "meskobalazs", + "iamdue", + "copas2", + "dorionka" + ] + }, + "Web/API/WebSockets_API": { "modified": "2019-03-23T22:56:13.956Z", "contributors": [ "EvanDotPro" ] + }, + "Web/API/Document_Object_Model": { + "modified": "2019-03-23T23:46:33.058Z", + "contributors": [ + "teoli", + "Csörföly D" + ] + }, + "conflicting/Web/API/Document_Object_Model": { + "modified": "2019-03-24T00:03:55.193Z", + "contributors": [ + "ethertank", + "fscholz", + "Csörföly D" + ] } } \ No newline at end of file diff --git a/files/hu/conflicting/web/api/document_object_model/index.html b/files/hu/conflicting/web/api/document_object_model/index.html index e6f46bdce1..c27d27a0e3 100644 --- a/files/hu/conflicting/web/api/document_object_model/index.html +++ b/files/hu/conflicting/web/api/document_object_model/index.html @@ -1,11 +1,12 @@ --- title: DOM -slug: DOM +slug: conflicting/Web/API/Document_Object_Model tags: - DOM - minden_kategória translation_of: Web/API/Document_Object_Model translation_of_original: DOM +original_slug: DOM ---

A dokumentumobjektum-modell (DOM) egy API a HTML és az XML documentumokhoz.The Document Object Model (DOM) is an API for HTML and XML documents. A dokumentum szerkezetét modellezi és lehetővé teszi annak tartalmi és vizulális változtatását.It provides a structural representation of the document, enabling you to modify its content and visual presentation. Lényegében összeköttetést képez a weblapok és a script- vagy programozási nyelvek között. Essentially, it connects web pages to scripts or programming languages.

diff --git a/files/hu/glossary/browser/index.html b/files/hu/glossary/browser/index.html index 36a13cf1ce..e54875121c 100644 --- a/files/hu/glossary/browser/index.html +++ b/files/hu/glossary/browser/index.html @@ -1,10 +1,11 @@ --- title: Böngésző -slug: Glossary/bongeszo +slug: Glossary/Browser tags: - Nacigáció - Szójegyzék translation_of: Glossary/Browser +original_slug: Glossary/bongeszo ---

A Webböngésző vagy böngésző egy program, ami a {{Glossary("World Wide Web","webből")}} kinyeri és megjeleníti az oldalakat és lehetővé teszi a felhasználó számára a további oldalakhoz való hozzáférést {{Glossary("hyperlink","hivatkozásokon")}} keresztül. A böngésző a legismertebb {{Glossary("user agent", "hálózati kliens")}}.

diff --git a/files/hu/glossary/first-class_function/index.html b/files/hu/glossary/first-class_function/index.html index 5a36982129..e20a6bb16d 100644 --- a/files/hu/glossary/first-class_function/index.html +++ b/files/hu/glossary/first-class_function/index.html @@ -1,11 +1,12 @@ --- title: Elsőrendű függvények -slug: Glossary/Elso_osztalyu_funkciok +slug: Glossary/First-class_Function tags: - JavaScript - Szkriptelés - Szójegyzék translation_of: Glossary/First-class_Function +original_slug: Glossary/Elso_osztalyu_funkciok ---

Egy programnyelvnek Elsőrendű függvényei vannak, ha a nyelv függvényeit úgy kezeljük mint a többi változót. Egy ilyen nyelveben függvényeket adhatunk meg más függvények paramátereként, függvények más függvényeket adhatnak vissza és váltózókhoz is hozzárendelhetjük őket.

diff --git a/files/hu/learn/getting_started_with_the_web/index.html b/files/hu/learn/getting_started_with_the_web/index.html index 38c28abba1..84fb075edd 100644 --- a/files/hu/learn/getting_started_with_the_web/index.html +++ b/files/hu/learn/getting_started_with_the_web/index.html @@ -1,12 +1,13 @@ --- title: Ismerkedés a Világhálóval -slug: Learn/Ismerkedés_a_Világhálóval +slug: Learn/Getting_started_with_the_web tags: - CSS - HTML - Kezdő - útmutató translation_of: Learn/Getting_started_with_the_web +original_slug: Learn/Ismerkedés_a_Világhálóval ---
{{LearnSidebar}}
diff --git a/files/hu/learn/getting_started_with_the_web/installing_basic_software/index.html b/files/hu/learn/getting_started_with_the_web/installing_basic_software/index.html index 463216fd9f..5171df985c 100644 --- a/files/hu/learn/getting_started_with_the_web/installing_basic_software/index.html +++ b/files/hu/learn/getting_started_with_the_web/installing_basic_software/index.html @@ -1,6 +1,6 @@ --- title: Alapvető programok telepítése -slug: Learn/Ismerkedés_a_Világhálóval/Alapvető_programok_telepítése +slug: Learn/Getting_started_with_the_web/Installing_basic_software tags: - Kezdő - böngésző @@ -9,6 +9,7 @@ tags: - programok - szövegszerkesztő translation_of: Learn/Getting_started_with_the_web/Installing_basic_software +original_slug: Learn/Ismerkedés_a_Világhálóval/Alapvető_programok_telepítése ---
{{LearnSidebar}}
diff --git a/files/hu/learn/getting_started_with_the_web/what_will_your_website_look_like/index.html b/files/hu/learn/getting_started_with_the_web/what_will_your_website_look_like/index.html index 374aae6c40..c1b7aabf7c 100644 --- a/files/hu/learn/getting_started_with_the_web/what_will_your_website_look_like/index.html +++ b/files/hu/learn/getting_started_with_the_web/what_will_your_website_look_like/index.html @@ -1,7 +1,8 @@ --- title: Hogy fog kinézni a weboldalunk -slug: Learn/Ismerkedés_a_Világhálóval/Hogy_fog_kinézni_a_weboldalunk +slug: Learn/Getting_started_with_the_web/What_will_your_website_look_like translation_of: Learn/Getting_started_with_the_web/What_will_your_website_look_like +original_slug: Learn/Ismerkedés_a_Világhálóval/Hogy_fog_kinézni_a_weboldalunk ---
{{LearnSidebar}}
diff --git a/files/hu/learn/html/introduction_to_html/index.html b/files/hu/learn/html/introduction_to_html/index.html index d5f2c7239a..7d5d1d8df5 100644 --- a/files/hu/learn/html/introduction_to_html/index.html +++ b/files/hu/learn/html/introduction_to_html/index.html @@ -1,7 +1,8 @@ --- title: Bevezetés a HTML-be -slug: Learn/HTML/Bevezetes_a_HTML-be +slug: Learn/HTML/Introduction_to_HTML translation_of: Learn/HTML/Introduction_to_HTML +original_slug: Learn/HTML/Bevezetes_a_HTML-be ---
{{LearnSidebar}}
diff --git a/files/hu/learn/javascript/first_steps/index.html b/files/hu/learn/javascript/first_steps/index.html index 7276a4541c..1d581c48ad 100644 --- a/files/hu/learn/javascript/first_steps/index.html +++ b/files/hu/learn/javascript/first_steps/index.html @@ -1,6 +1,6 @@ --- title: Első lépések JavaScript-ben -slug: Learn/JavaScript/Első_lépések +slug: Learn/JavaScript/First_steps tags: - Cikk - JavaScript @@ -16,6 +16,7 @@ tags: - Értékelés - útmutató translation_of: Learn/JavaScript/First_steps +original_slug: Learn/JavaScript/Első_lépések ---
{{LearnSidebar}}
diff --git a/files/hu/web/api/document_object_model/index.html b/files/hu/web/api/document_object_model/index.html index 25ea440e9c..1ea0407201 100644 --- a/files/hu/web/api/document_object_model/index.html +++ b/files/hu/web/api/document_object_model/index.html @@ -1,11 +1,12 @@ --- title: Bevezetés a dokumentumobjektum-modellbe -slug: Bevezetés_a_dokumentumobjektum-modellbe +slug: Web/API/Document_Object_Model tags: - DOM - minden_kategória translation_of: Web/API/Document_Object_Model translation_of_original: Web/Guide/API/DOM +original_slug: Bevezetés_a_dokumentumobjektum-modellbe ---

Mi a DOM?

A Dokumentumobjektum-modell (DOM) egy API HTML és XML dokumentumokhoz. A dokumentum szerkezetét modellezi és lehetővé teszi annak tartalmi és vizulális változtatását. Lényegében összeköttetést képez a weblapok és a script- vagy programozási nyelvek között.

diff --git a/files/hu/web/api/htmlbrelement/index.html b/files/hu/web/api/htmlbrelement/index.html index 8842c0a233..5fdba0f4c1 100644 --- a/files/hu/web/api/htmlbrelement/index.html +++ b/files/hu/web/api/htmlbrelement/index.html @@ -1,7 +1,8 @@ --- title: HTMLBRElement -slug: DOM/HTMLBRElement +slug: Web/API/HTMLBRElement translation_of: Web/API/HTMLBRElement +original_slug: DOM/HTMLBRElement ---
{{ ApiRef() }}
diff --git a/files/hu/web/api/websockets_api/index.html b/files/hu/web/api/websockets_api/index.html index 815c4aebb9..d073fbb808 100644 --- a/files/hu/web/api/websockets_api/index.html +++ b/files/hu/web/api/websockets_api/index.html @@ -1,6 +1,6 @@ --- title: WebSockets -slug: WebSockets +slug: Web/API/WebSockets_API tags: - NeedsBrowserCompatibility - NeedsTranslation @@ -8,6 +8,7 @@ tags: - TopicStub - WebSockets translation_of: Web/API/WebSockets_API +original_slug: WebSockets ---

WebSockets is an advanced technology that makes it possible to open an interactive communication session between the user's browser and a server. With this API, you can send messages to a server and receive event-driven responses without having to poll the server for a reply.

diff --git a/files/hu/web/api/window/stop/index.html b/files/hu/web/api/window/stop/index.html index 142a71788d..a046730303 100644 --- a/files/hu/web/api/window/stop/index.html +++ b/files/hu/web/api/window/stop/index.html @@ -1,7 +1,8 @@ --- title: window.stop -slug: Web/API/Window.stop +slug: Web/API/Window/stop translation_of: Web/API/Window/stop +original_slug: Web/API/Window.stop ---
 {{ApiRef}}
diff --git a/files/hu/web/api/xmlhttprequest/using_xmlhttprequest/index.html b/files/hu/web/api/xmlhttprequest/using_xmlhttprequest/index.html index 14559667cc..a3bf37c370 100644 --- a/files/hu/web/api/xmlhttprequest/using_xmlhttprequest/index.html +++ b/files/hu/web/api/xmlhttprequest/using_xmlhttprequest/index.html @@ -1,11 +1,12 @@ --- title: Az XMLHttpRequest használata -slug: Web/API/XMLHttpRequest/XMLHttpRequest_hasznalata +slug: Web/API/XMLHttpRequest/Using_XMLHttpRequest tags: - AJAX - HTTP - XMLHttpRequest translation_of: Web/API/XMLHttpRequest/Using_XMLHttpRequest +original_slug: Web/API/XMLHttpRequest/XMLHttpRequest_hasznalata ---
{{APIRef("XMLHttpRequest")}}
diff --git a/files/hu/web/css/css_background_and_borders/border-radius_generator/index.html b/files/hu/web/css/css_background_and_borders/border-radius_generator/index.html index fe31d33429..77e1f42d7b 100644 --- a/files/hu/web/css/css_background_and_borders/border-radius_generator/index.html +++ b/files/hu/web/css/css_background_and_borders/border-radius_generator/index.html @@ -1,10 +1,11 @@ --- title: Border-radius bemutató -slug: Web/CSS/Tools/Border-radius_bemutato +slug: Web/CSS/CSS_Background_and_Borders/Border-radius_generator tags: - CSS - Eszközök translation_of: Web/CSS/CSS_Background_and_Borders/Border-radius_generator +original_slug: Web/CSS/Tools/Border-radius_bemutato ---

Ez az eszköz CSS3 {{cssxref("border-radius")}} beállítások megjelenítésére használható.

diff --git a/files/hu/web/css/css_grid_layout/index.html b/files/hu/web/css/css_grid_layout/index.html index 35aa2b57f7..d6ccb9f9c4 100644 --- a/files/hu/web/css/css_grid_layout/index.html +++ b/files/hu/web/css/css_grid_layout/index.html @@ -1,7 +1,8 @@ --- title: CSS Grid Layout -slug: CSS/CSS_Grid_Layout +slug: Web/CSS/CSS_Grid_Layout translation_of: Web/CSS/CSS_Grid_Layout +original_slug: CSS/CSS_Grid_Layout ---

A CSS Grid Layout kiemlekedő feladatot lát el egy adott HTML oldal fő részeinek meghatározásakor, illetve az oldalon elhelyezkező elemek méretének, pozíciójának és egymáshoz való viszonyának definiálasakor.

diff --git a/files/hu/web/css/font-weight/index.html b/files/hu/web/css/font-weight/index.html index 6e27ac6341..620772f151 100644 --- a/files/hu/web/css/font-weight/index.html +++ b/files/hu/web/css/font-weight/index.html @@ -1,7 +1,8 @@ --- title: Betű vastagság -slug: CSS/font-weight +slug: Web/CSS/font-weight translation_of: Web/CSS/font-weight +original_slug: CSS/font-weight ---
{{CSSRef}}
diff --git a/files/hu/web/css/index.html b/files/hu/web/css/index.html index 6717bc7093..93aadb80ec 100644 --- a/files/hu/web/css/index.html +++ b/files/hu/web/css/index.html @@ -1,6 +1,6 @@ --- title: CSS -slug: CSS +slug: Web/CSS tags: - CSS - Design @@ -8,6 +8,7 @@ tags: - Stíluslapok - Stílusok translation_of: Web/CSS +original_slug: CSS ---

A Cascading Style Sheets (CSS) egy stíluslap nyelv, mellyel a HTML-ben vagy XML-ben (és más XML nyelveken, mint az XHTML vagy a SVG) írt dokumentumok megjelenítését lehet leírni.

diff --git a/files/hu/web/css/text-decoration/index.html b/files/hu/web/css/text-decoration/index.html index 22de3ad153..676888fbeb 100644 --- a/files/hu/web/css/text-decoration/index.html +++ b/files/hu/web/css/text-decoration/index.html @@ -1,10 +1,11 @@ --- title: Szöveg díszítés -slug: CSS/text-decoration +slug: Web/CSS/text-decoration tags: - CSS tulajdonság - szöveg díszítés translation_of: Web/CSS/text-decoration +original_slug: CSS/text-decoration ---
{{CSSRef}}
diff --git a/files/hu/web/guide/graphics/index.html b/files/hu/web/guide/graphics/index.html index c9c2880069..475e8b1a58 100644 --- a/files/hu/web/guide/graphics/index.html +++ b/files/hu/web/guide/graphics/index.html @@ -1,6 +1,6 @@ --- title: Grafikák az interneten -slug: Web/Guide/Grafika +slug: Web/Guide/Graphics tags: - 2D - 3D @@ -11,6 +11,7 @@ tags: - WebGL - WebRTC translation_of: Web/Guide/Graphics +original_slug: Web/Guide/Grafika ---

Gyakran használunk különféle grafikákat a weboldalakon, illetve alkalmazásokban. Statikus képek megjelenítésére egyszerűen használható az {{HTMLElement("img")}} elem, vagy az adott képet beállíthatjuk egy HTML elem hátterének is a {{cssxref("background-image")}} tulajdonság segítségével. Ugyanakkor JavaScript használatával bármikor készíthető új kép, vagy manipulálható egy meglévő. Az alábbi útmutatók segítséget nyújtanak a különféle grafikák használatában.

diff --git a/files/hu/web/javascript/a_re-introduction_to_javascript/index.html b/files/hu/web/javascript/a_re-introduction_to_javascript/index.html index 89192fcbf4..511d734ced 100644 --- a/files/hu/web/javascript/a_re-introduction_to_javascript/index.html +++ b/files/hu/web/javascript/a_re-introduction_to_javascript/index.html @@ -1,7 +1,8 @@ --- title: A JavaScript újbóli bemutatása -slug: Web/JavaScript/a_javascript_ujboli_bemutatasa +slug: Web/JavaScript/A_re-introduction_to_JavaScript translation_of: Web/JavaScript/A_re-introduction_to_JavaScript +original_slug: Web/JavaScript/a_javascript_ujboli_bemutatasa ---
{{jsSidebar}}
diff --git a/files/hu/web/javascript/guide/introduction/index.html b/files/hu/web/javascript/guide/introduction/index.html index 3e87f3d12b..0a4be1d981 100644 --- a/files/hu/web/javascript/guide/introduction/index.html +++ b/files/hu/web/javascript/guide/introduction/index.html @@ -1,7 +1,8 @@ --- title: Bevezetés -slug: Web/JavaScript/Guide/Bevezetés +slug: Web/JavaScript/Guide/Introduction translation_of: Web/JavaScript/Guide/Introduction +original_slug: Web/JavaScript/Guide/Bevezetés ---
{{jsSidebar("JavaScript Guide")}} {{PreviousNext("Web/JavaScript/Guide", "Web/JavaScript/Guide/Grammar_and_types")}}
diff --git a/files/hu/web/javascript/reference/errors/unexpected_type/index.html b/files/hu/web/javascript/reference/errors/unexpected_type/index.html index 1fd4e782de..0cfccda5c1 100644 --- a/files/hu/web/javascript/reference/errors/unexpected_type/index.html +++ b/files/hu/web/javascript/reference/errors/unexpected_type/index.html @@ -1,7 +1,8 @@ --- title: 'Típushiba: "x" (nem) "y"' -slug: Web/JavaScript/Reference/Errors/Érvénytelen_típus +slug: Web/JavaScript/Reference/Errors/Unexpected_type translation_of: Web/JavaScript/Reference/Errors/Unexpected_type +original_slug: Web/JavaScript/Reference/Errors/Érvénytelen_típus ---
{{jsSidebar("Errors")}}
diff --git a/files/hu/web/javascript/reference/global_objects/function/index.html b/files/hu/web/javascript/reference/global_objects/function/index.html index 2e1f19b7c6..a65fa95eea 100644 --- a/files/hu/web/javascript/reference/global_objects/function/index.html +++ b/files/hu/web/javascript/reference/global_objects/function/index.html @@ -1,11 +1,12 @@ --- title: Függvény -slug: Web/JavaScript/Reference/Global_Objects/Függvény +slug: Web/JavaScript/Reference/Global_Objects/Function tags: - Függvény - JavaScript - Osztály translation_of: Web/JavaScript/Reference/Global_Objects/Function +original_slug: Web/JavaScript/Reference/Global_Objects/Függvény ---
{{JSRef}}
-- cgit v1.2.3-54-g00ecf