Skip to content

Commit

Permalink
Update drupal-glossary.md
Browse files Browse the repository at this point in the history
  • Loading branch information
timozura authored Sep 20, 2023
1 parent b4fd349 commit f5b1308
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ This refers to the code that CivicActions programmers have produced to meet the

## Database

An application that specializes in storing, relating and retrieving data. Code running on the web server queries the database whenever website content is read or modified. The kind of databases that Drupal uses store their data in "tables" which can be visualized as very large spreadsheets. The database has special features to make it possible to retrieve large amounts of complex data quickly and efficiently.
An application that specializes in storing, relating and retrieving data. Code running on the web server queries the database whenever website content is read or modified. The kind of databases that Drupal uses store their data in tables which can be visualized as very large spreadsheets. The database has features to make it possible to retrieve large amounts of complex data quickly and efficiently.

Check warning on line 45 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L45

Expected `1` space between sentences, not `2` space retext-sentence-spacing
Raw output
      45:74-45:76  warning  Expected `1` space between sentences, not `2`              space                    retext-sentence-spacing

Check warning on line 45 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L45

Expected `1` space between sentences, not `2` space retext-sentence-spacing
Raw output
    45:173-45:175  warning  Expected `1` space between sentences, not `2`              space                    retext-sentence-spacing

Check warning on line 45 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L45

Expected a straight quote: `"`, not `“` quote retext-quotes
Raw output
    45:234-45:235  warning  Expected a straight quote: `"`, not `“`                    quote                    retext-quotes

Check warning on line 45 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L45

Expected a straight quote: `"`, not `”` quote retext-quotes
Raw output
    45:241-45:242  warning  Expected a straight quote: `"`, not `”`                    quote                    retext-quotes

Check warning on line 45 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L45

Expected `1` space between sentences, not `2` space retext-sentence-spacing
Raw output
    45:294-45:296  warning  Expected `1` space between sentences, not `2`              space                    retext-sentence-spacing

## Deploy

Expand Down Expand Up @@ -78,15 +78,15 @@ The most common modern Version Control System.

Most of Drupal's code is organized into modules. This is what makes Drupal so extensible and customizable. Drupal core provides a handful of modules, but there are many more contrib modules maintained by the community

Each module provides a relatively narrow and discrete bit of functionality. For example, the Menu core module provides Drupal's base menu functionality. Building on that, the Menu Delete contrib module makes a small change to that functionality, making it easy for content editors to delete multiple menus at once. By mixing and matching which modules are enabled on a site, we can leverage the community's efforts to provide a lot of functionality with little (or sometimes no) custom code.
Each module provides a relatively narrow and discrete bit of functionality. For example, the Menu core module provides Drupals base menu functionality. Building on that, the Menu Delete contrib module makes a small change to that functionality, allowing content editors to delete multiple menus at once. By mixing and matching which modules are enabled on a site, we can leverage the communitys efforts to provide a lot of functionality with little (or sometimes no) custom code.

Check warning on line 81 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L81

Expected `1` space between sentences, not `2` space retext-sentence-spacing
Raw output
      81:76-81:78  warning  Expected `1` space between sentences, not `2`              space                    retext-sentence-spacing

Check warning on line 81 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L81

Expected a straight apostrophe: `'`, not `’` apostrophe retext-quotes
Raw output
    81:127-81:128  warning  Expected a straight apostrophe: `'`, not `’`               apostrophe               retext-quotes

Check warning on line 81 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L81

Expected `1` space between sentences, not `2` space retext-sentence-spacing
Raw output
    81:154-81:156  warning  Expected `1` space between sentences, not `2`              space                    retext-sentence-spacing

Check warning on line 81 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L81

Expected `1` space between sentences, not `2` space retext-sentence-spacing
Raw output
    81:307-81:309  warning  Expected `1` space between sentences, not `2`              space                    retext-sentence-spacing

Check warning on line 81 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L81

Expected a straight apostrophe: `'`, not `’` apostrophe retext-quotes
Raw output
    81:398-81:399  warning  Expected a straight apostrophe: `'`, not `’`               apostrophe               retext-quotes

## Node

A Node is an entity type that is built into Drupal. Almost all Drupal sites use the Node module. Nodes are commonly used to store user-facing website content. Common properties of all nodes include a Title, a URL path and an author. Common Node Bundles include "Basic Page" and "Blog Post".

## Paragraph

Paragraphs is a contrib module which adds a new entity type called a "paragraph." These are fieldable like other entities, but must be attached to an existing entity via a special reference field. Paragraphs are commonly used when you have a group of fields that may be repeated on an entity, but do not make any sense as data on their own. For instance, you might have a node for a resumè, with paragraphs for each line of the CV. Each paragraph entity would have its own title, description, start date and end date (fields), and the whole list of paragraphs would be attached to a field on the resumè entity like "field_job_history."
Paragraphs is a contrib module which adds a new entity type called a paragraph.These are fieldable like other entities, but must be attached to an existing entity using a reference field. Paragraphs are commonly used when you have a group of fields that may be repeated on an entity, but do not make any sense as data on their own. For instance, you might have a node for a resumè, with paragraphs for each line of the CV. Each paragraph entity would have its own title, description, start date and end date (fields), and the whole list of paragraphs would be attached to a field on the resumè entity like field_job_history.

Check warning on line 89 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L89

Expected a straight quote: `"`, not `“` quote retext-quotes
Raw output
      89:70-89:71  warning  Expected a straight quote: `"`, not `“`                    quote                    retext-quotes

Check warning on line 89 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L89

Expected a straight quote: `"`, not `”` quote retext-quotes
Raw output
      89:81-89:82  warning  Expected a straight quote: `"`, not `”`                    quote                    retext-quotes

Check warning on line 89 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L89

Expected `1` space between sentences, not `2` space retext-sentence-spacing
Raw output
      89:82-89:84  warning  Expected `1` space between sentences, not `2`              space                    retext-sentence-spacing

Check warning on line 89 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L89

Expected `1` space between sentences, not `2` space retext-sentence-spacing
Raw output
    89:192-89:194  warning  Expected `1` space between sentences, not `2`              space                    retext-sentence-spacing

Check warning on line 89 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L89

Expected `1` space between sentences, not `2` space retext-sentence-spacing
Raw output
    89:337-89:339  warning  Expected `1` space between sentences, not `2`              space                    retext-sentence-spacing

Check warning on line 89 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L89

Expected `1` space between sentences, not `2` space retext-sentence-spacing
Raw output
    89:429-89:431  warning  Expected `1` space between sentences, not `2`              space                    retext-sentence-spacing

Check warning on line 89 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L89

Expected a straight quote: `"`, not `“` quote retext-quotes
Raw output
    89:614-89:615  warning  Expected a straight quote: `"`, not `“`                    quote                    retext-quotes

Check warning on line 89 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L89

Expected a straight quote: `"`, not `”` quote retext-quotes
Raw output
    89:633-89:634  warning  Expected a straight quote: `"`, not `”`                    quote                    retext-quotes

## Paragraph Type

Expand All @@ -106,4 +106,4 @@ An application used by our programming teams. The most common of these is git. V

Views is a core module (as of Drupal 8, prior to this it was contrib) that provides powerful list-making functionality. Any list of content on your site is probably powered by a view.
Web Server
An application that specializes in serving data (generally in the form of web pages) in response to requests from a web client (such as a browser). You can think of it as just another computer that your computer is connecting to in a structured way (known as a protocol), although nowadays most servers are distributed across hardware and even multiple datacenters. In concert with the database, the web server does most of the work of delivering content to visitors.
An application that specializes in serving data (generally in the form of web pages) in response to requests from a web client (such as a browser). You can think of it as another computer that your computer is connecting to in a structured way (known as a protocol), although nowadays most servers are distributed across hardware and even multiple datacenters. In concert with the database, the web server does most of the work of delivering content to visitors.

Check warning on line 109 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L109

Use spaces instead of tabs no-tabs remark-lint
Raw output
            109:1  warning  Use spaces instead of tabs                                 no-tabs                  remark-lint

Check warning on line 109 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L109

Expected `1` space between sentences, not `2` space retext-sentence-spacing
Raw output
  109:148-109:150  warning  Expected `1` space between sentences, not `2`              space                    retext-sentence-spacing

Check warning on line 109 in practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md

View workflow job for this annotation

GitHub Actions / remark-lint-problem

[remark-lint-problem] practice-areas/engineering/drupal/onboarding-materials/drupal-glossary.md#L109

Expected `1` space between sentences, not `2` space retext-sentence-spacing
Raw output
  109:362-109:364  warning  Expected `1` space between sentences, not `2`              space                    retext-sentence-spacing

0 comments on commit f5b1308

Please sign in to comment.