- Parsing error as see in issue https://github.tools.sap/cap/issues/issues/13123
- Related to [VS Code ESLint settings options](https://github.com/microsoft/vscode-eslint/blob/main/README.md#settings-options)
- Should use `eslint.probe` instead of `eslint.validate`
eslint.probe - an array for language identifiers for which the ESLint extension should be activated and should try to validate the file. If validation fails for probed languages the extension says silent. Defaults to ["javascript", "javascriptreact", "typescript", "typescriptreact", "html", "vue", "markdown"].
eslint.validate - an array of language identifiers specifying the files for which validation is to be enforced. This is an old legacy setting and should in normal cases not be necessary anymore. Defaults to ["javascript", "javascriptreact"].
* Add labels for `rating` and `numberOfReviews`
* Add label for `currency.symbol`
* Add label for `descr`
* Add label for `image`
Co-authored-by: Christian Georgi <chgeo@users.noreply.github.com>
* fix Capire URL for Fiori
* bring Fiori notes in line with tour notes
* make sentence more readable
* be explicit about Node.js LTS
This is because earlier versions of Node.js come with earlier versions
of npm, but npm version 8 is requires for the monorepo package features
in this repo.
This also fixes validation errors from annotation LSP, which missed some
of the bookstore elements
Signed-off-by: Christian Georgi <christian.georgi@sap.com>
type:#Fixed was not rendering the value list as a drop down.
There was not UI validation for values entered.
The added annotation does both these: UI validation and renders the a drop down list.
- Run `npm rm` in correct dir
- Encode args in `npm conf rm` command for Powershell
- Don't cleanup in exit handler, this might not complete.
Instead, do it on startup.
- Different cleanup command for Windows and Linux
- Explicitly close server, instead of relying on process.exit()
- Make scope configurable
"description": "#### Configuration\n\nThe `cds` section in `package.json` is a place to configure which of the `db/sqlite` and `db/hana` folders are used for which database.\nWe use [Node.js profiles](https://cap.cloud.sap/docs/node.js/cds-env#profiles) to separate the configuration.\nIn the `development` profile, you can see that `db/sqlite` is set as the model, while the `db/hana` folder is configured in the `production` profile.",
"line": 17,
"description": "#### Configuration\n\nThe `cds.requires` section in `package.json` is a place to configure which of the `db/sqlite` and `db/hana` folders are used for which database.\n\nWe use [Node.js profiles](https://cap.cloud.sap/docs/node.js/cds-env#profiles) to separate the configuration.\nIn the `development` profile, you can see that `db/sqlite` is set as the model, while the `db/hana` folder is configured in the `production` profile. `db-ext` is a pseudo datasource, its name doesn't matter.\n\nSee [`cds.resolve`](https://cap.cloud.sap/docs/node.js/cds-compile#cds-resolve) to learn more about how models are found.",
"selection": {
"start": {
"line": 41,
"character": 1
},
"end": {
"line": 48,
"character": 1
}
},
"title": "Configuration"
},
{
"file": "fiori/package.json",
"description": "#### Run with SQLite\n\nTo run with `development` and an in-memory SQLite database, you don't need to do anything special, because it's activated by default. Just run:\n\n>> cds watch fiori\n\nThen open [http://localhost:4004/admin/Authors](http://localhost:4004/admin/Authors) to see the two new fields.\n",
"line": 28,
"line": 43,
"title": "Run with SQLite"
},
{
"file": "fiori/package.json",
"description": "#### Deploy the CDS Model to SAP HANA\n\nTo 'activate' SAP HANA through the `production` profile, you can use the global `--production` flag:\n\n>> cd fiori; cds deploy --to hana --production\n\n[Learn more about SAP HANA deployment](https://cap.cloud.sap/docs/guides/databases#get-hana)\n\n#### Run the Application\n\n>> cd fiori; cds watch --production\n\nThe service on [http://localhost:4004/admin/Authors](http://localhost:4004/admin/Authors) is the same as before, but this time the `Authors` entity is backed by a database view with an SAP HANA function.\n\n#### More\n\nIf you don't see data, you can add some in the next step.",
"line": 31,
"line": 46,
"title": "Run with SAP HANA"
},
{
"file": "fiori/test/requests.http",
"description": "### Add More Data\n\nOptionally you can add some `Authors` data by clicking on the _Send Request_ link (provided by the [REST client](https://marketplace.visualstudio.com/items?itemName=humao.rest-client) extension).",
"line": 68,
"line": 72,
"selection": {
"start": {
"line": 67,
@@ -104,6 +113,5 @@
"title": "Wrap-up",
"description": "### Summary\n\nThat's it! You have seen: \n- How to integrate database-specific functions in a CDS model.\n- How to switch between the two implementations for SQLite and SAP HANA."
"description": "### Hello World!\n\nThis is a simplistic [Hello World](https://cap.cloud.sap/docs/get-started/hello-world) service using [CDS](https://cap.cloud.sap/docs/cds/) and [cds.services](https://cap.cloud.sap/docs/node.js/api#services-api).",
"line": 2,
"selection": {
@@ -68,7 +68,7 @@
},
{
"file": "orders/db/schema.cds",
"description": "### Compositions and Serving Documents\n\nA standalone orders management service, demonstrating:\n- Using [Compositions](https://cap.cloud.sap/docs/cds/cdl#compositions) in [Domain Models](https://cap.cloud.sap/docs/guides/domain-models), along with\n- [Serving deeply nested documents](https://cap.cloud.sap/docs/guides/generic-providers#serving-structured-data)\n",
"description": "### Orders - Compositions and Serving Documents\n\nA standalone orders management service, demonstrating:\n- Using [Compositions](https://cap.cloud.sap/docs/cds/cdl#compositions) in [Domain Models](https://cap.cloud.sap/docs/guides/domain-models), along with\n- [Serving deeply nested documents](https://cap.cloud.sap/docs/guides/generic-providers#serving-structured-data)\n",
"line": 1,
"selection": {
"start": {
@@ -84,7 +84,7 @@
},
{
"file": "reviews/db/schema.cds",
"description": "### More Modularity\n\nShows how to implement a modular service to manage product reviews, including:\n- Consuming other services synchronously and asynchronously\n- Serving requests synchronously\n- Emitting events asynchronously\n- Grow as you go, with:\n- Mocking app services\n- Running service meshes\n- Late-cut Micro Services\n- As well as managed data, input validations, and authorization\n",
"description": "### Reviews - More Modularity\n\nShows how to implement a modular service to manage product reviews, including:\n- Consuming other services synchronously and asynchronously\n- Serving requests synchronously\n- Emitting events asynchronously\n- Grow as you go, with:\n- Mocking app services\n- Running service meshes\n- Late-cut Micro Services\n- As well as managed data, input validations, and authorization\n",
"line": 1,
"selection": {
"start": {
@@ -99,8 +99,12 @@
"title": "Reviews"
},
{
"file": "fiori/app/index.cds",
"description": "### Annotations for SAP Fiori Elements\n\nA [composite app, reusing and combining](https://cap.cloud.sap/docs/guides/verticalize) these packages:\n - [@capire/bookshop](bookshop)\n - [@capire/reviews](reviews)\n - [@capire/orders](orders)\n - [@capire/common](common)\n\n[Adds a SAP Fiori elements application](https://cap.cloud.sap/docs/guides/fiori/) to bookshop, thereby introducing to:\n - [OData Annotations](https://cap.cloud.sap/docs/guides/fiori#adding-odata-annotations) in `.cds` files\n - Support for [Fiori Draft](https://cap.cloud.sap/docs/guides/fiori#draft)\n - Support for [Value Helps](https://cap.cloud.sap/docs/guides/fiori#value-help)\n - Serving SAP Fiori apps locally\n\n[The Vue.js app](bookshop/app/vue) imported from bookshop is served as well.\n",
"title": "Bookstore",
"description": "### Bookstore - Reuse and UI\n\n- A [composite app, reusing and combining](https://cap.cloud.sap/docs/guides/reuse-and-compose) these packages:\n - [@capire/bookshop](bookshop)\n - [@capire/reviews](reviews)\n - [@capire/orders](orders)\n - [@capire/common](common)\n- [The Vue.js app](bookshop/app/vue) imported from bookshop is served as well\n- [The Vue.js app](reviews/app/vue) imported from reviews is served as well\n- [The Fiori app](orders/app) imported from orders is served as well\n- [OpenAPI export + Swagger UI](https://cap.cloud.sap/docs/advanced/openapi)"
},
{
"file": "fiori/app/services.cds",
"description": "### Annotations for SAP Fiori Elements\n\nAdds an SAP Fiori elements application to bookstore, thereby introducing:\n- OData Annotations in `.cds` files\n- Support for Fiori Draft\n- Support for Value Helps\n- Serving SAP Fiori apps locally\n\nSee the [Serving Fiori UIs](https://cap.cloud.sap/docs/advanced/fiori) documentation for more information.",
"line": 1,
"selection": {
"start": {
@@ -117,14 +121,13 @@
{
"file": "package.json",
"description": "### All-in-one Monorepo\n\nEach sample sub directory essentially is a standard npm package, some with standard npm dependencies to other samples. The root folder's [package.json](package.json) has local links to the sub folders, such that an `npm install` populates a local `node_modules` folder acts like a local npm registry to the individual sample packages.\n",
Find here a collection of samples for the [SAP Cloud Application Programming Model](https://cap.cloud.sap) organized in a simplistic [monorepo setup](samples.md#all-in-one-monorepo).→ See [**Overview** of contained samples](samples.md)
Find here a collection of samples for the [SAP Cloud Application Programming Model](https://cap.cloud.sap) organized in a simplistic [monorepo setup](samples.md#all-in-one-monorepo).
[See **Overview** of contained samples](samples.md):
> While mocha is a bit smaller and faster, jest runs tests in parallel and isolation, which allows to run all tests.
### Serve `npm`
We've included a simple npm registry mock, which allows you to do an `npm install @capire/<package>` locally. Use it as follows:
1. Start the @capire registry:
```sh
npm run registry
```
> While running this will have `@capire:registry=http://localhost:4444` set with npmrc.
2. Install one of the @capire packages wherever you like, for example:
```sh
npm add @capire/common @capire/bookshop
```
## Code Tours
Take one of the [guided tours](.tours) in VS Code through our CAP samples and learn which CAP features are showcased by the different parts of the repository. Just install the [CodeTour extension](https://marketplace.visualstudio.com/items?itemName=vsls-contrib.codetour) for VS Code. We'll add more code tours in the future. Stay tuned!
@@ -83,4 +72,4 @@ In case you've a question, find a bug, or otherwise need support, use our [commu
## License
Copyright (c) 2021 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, version 2.0 except as noted otherwise in the [LICENSE](LICENSE.txt) file.
Copyright (c) 2022 SAP SE or an SAP affiliate company. All rights reserved. This file is licensed under the Apache Software License, version 2.0 except as noted otherwise in the [LICENSE](LICENSE) file.
201;Wuthering Heights;"Wuthering Heights, Emily Brontë's only novel, was published in 1847 under the pseudonym ""Ellis Bell"". It was written between October 1845 and June 1846. Wuthering Heights and Anne Brontë's Agnes Grey were accepted by publisher Thomas Newby before the success of their sister Charlotte's novel Jane Eyre. After Emily's death, Charlotte edited the manuscript of Wuthering Heights and arranged for the edited version to be published as a posthumous second edition in 1850.";101;12;11.11;GBP;11
207;Jane Eyre;"Jane Eyre /ɛər/ (originally published as Jane Eyre: An Autobiography) is a novel by English writer Charlotte Brontë, published under the pen name ""Currer Bell"", on 16 October 1847, by Smith, Elder & Co. of London. The first American edition was published the following year by Harper & Brothers of New York. Primarily a bildungsroman, Jane Eyre follows the experiences of its eponymous heroine, including her growth to adulthood and her love for Mr. Rochester, the brooding master of Thornfield Hall. The novel revolutionised prose fiction in that the focus on Jane's moral and spiritual development is told through an intimate, first-person narrative, where actions and events are coloured by a psychological intensity. The book contains elements of social criticism, with a strong sense of Christian morality at its core and is considered by many to be ahead of its time because of Jane's individualistic character and how the novel approaches the topics of class, sexuality, religion and feminism.";107;11;12.34;GBP;11
251;The Raven;"""The Raven"" is a narrative poem by American writer Edgar Allan Poe. First published in January 1845, the poem is often noted for its musicality, stylized language, and supernatural atmosphere. It tells of a talking raven's mysterious visit to a distraught lover, tracing the man's slow fall into madness. The lover, often identified as being a student, is lamenting the loss of his love, Lenore. Sitting on a bust of Pallas, the raven seems to further distress the protagonist with its constant repetition of the word ""Nevermore"". The poem makes use of folk, mythological, religious, and classical references.";150;333;13.13;USD;16
252;Eleonora;"""Eleonora"" is a short story by Edgar Allan Poe, first published in 1842 in Philadelphia in the literary annual The Gift. It is often regarded as somewhat autobiographical and has a relatively ""happy"" ending.";150;555;14;USD;16
271;Catweazle;Catweazle is a British fantasy television series, starring Geoffrey Bayldon in the title role, and created by Richard Carpenter for London Weekend Television. The first series, produced and directed by Quentin Lawrence, was screened in the UK on ITV in 1970. The second series, directed by David Reid and David Lane, was shown in 1971. Each series had thirteen episodes, most but not all written by Carpenter, who also published two books based on the scripts.;170;22;15;EUR;13
201,Wuthering Heights,"Wuthering Heights, Emily Brontë's only novel, was published in 1847 under the pseudonym ""Ellis Bell"". It was written between October 1845 and June 1846. Wuthering Heights and Anne Brontë's Agnes Grey were accepted by publisher Thomas Newby before the success of their sister Charlotte's novel Jane Eyre. After Emily's death, Charlotte edited the manuscript of Wuthering Heights and arranged for the edited version to be published as a posthumous second edition in 1850.",101,12,11.11,GBP,11
207,Jane Eyre,"Jane Eyre /ɛər/ (originally published as Jane Eyre: An Autobiography) is a novel by English writer Charlotte Brontë, published under the pen name ""Currer Bell"", on 16 October 1847, by Smith, Elder & Co. of London. The first American edition was published the following year by Harper & Brothers of New York. Primarily a bildungsroman, Jane Eyre follows the experiences of its eponymous heroine, including her growth to adulthood and her love for Mr. Rochester, the brooding master of Thornfield Hall. The novel revolutionised prose fiction in that the focus on Jane's moral and spiritual development is told through an intimate, first-person narrative, where actions and events are coloured by a psychological intensity. The book contains elements of social criticism, with a strong sense of Christian morality at its core and is considered by many to be ahead of its time because of Jane's individualistic character and how the novel approaches the topics of class, sexuality, religion and feminism.",107,11,12.34,GBP,11
251,The Raven,"""The Raven"" is a narrative poem by American writer Edgar Allan Poe. First published in January 1845, the poem is often noted for its musicality, stylized language, and supernatural atmosphere. It tells of a talking raven's mysterious visit to a distraught lover, tracing the man's slow fall into madness. The lover, often identified as being a student, is lamenting the loss of his love, Lenore. Sitting on a bust of Pallas, the raven seems to further distress the protagonist with its constant repetition of the word ""Nevermore"". The poem makes use of folk, mythological, religious, and classical references.",150,333,13.13,USD,16
252,Eleonora,"""Eleonora"" is a short story by Edgar Allan Poe, first published in 1842 in Philadelphia in the literary annual The Gift. It is often regarded as somewhat autobiographical and has a relatively ""happy"" ending.",150,555,14,USD,15
271,Catweazle,"Catweazle is a British fantasy television series, starring Geoffrey Bayldon in the title role, and created by Richard Carpenter for London Weekend Television. The first series, produced and directed by Quentin Lawrence, was screened in the UK on ITV in 1970. The second series, directed by David Reid and David Lane, was shown in 1971. Each series had thirteen episodes, most but not all written by Carpenter, who also published two books based on the scripts.",170,22,150,JPY,13
1
ID
title
descr
author_ID
stock
price
currency_code
genre_ID
2
201
Wuthering Heights
Wuthering Heights, Emily Brontë's only novel, was published in 1847 under the pseudonym "Ellis Bell". It was written between October 1845 and June 1846. Wuthering Heights and Anne Brontë's Agnes Grey were accepted by publisher Thomas Newby before the success of their sister Charlotte's novel Jane Eyre. After Emily's death, Charlotte edited the manuscript of Wuthering Heights and arranged for the edited version to be published as a posthumous second edition in 1850.
101
12
11.11
GBP
11
3
207
Jane Eyre
Jane Eyre /ɛər/ (originally published as Jane Eyre: An Autobiography) is a novel by English writer Charlotte Brontë, published under the pen name "Currer Bell", on 16 October 1847, by Smith, Elder & Co. of London. The first American edition was published the following year by Harper & Brothers of New York. Primarily a bildungsroman, Jane Eyre follows the experiences of its eponymous heroine, including her growth to adulthood and her love for Mr. Rochester, the brooding master of Thornfield Hall. The novel revolutionised prose fiction in that the focus on Jane's moral and spiritual development is told through an intimate, first-person narrative, where actions and events are coloured by a psychological intensity. The book contains elements of social criticism, with a strong sense of Christian morality at its core and is considered by many to be ahead of its time because of Jane's individualistic character and how the novel approaches the topics of class, sexuality, religion and feminism.
107
11
12.34
GBP
11
4
251
The Raven
"The Raven" is a narrative poem by American writer Edgar Allan Poe. First published in January 1845, the poem is often noted for its musicality, stylized language, and supernatural atmosphere. It tells of a talking raven's mysterious visit to a distraught lover, tracing the man's slow fall into madness. The lover, often identified as being a student, is lamenting the loss of his love, Lenore. Sitting on a bust of Pallas, the raven seems to further distress the protagonist with its constant repetition of the word "Nevermore". The poem makes use of folk, mythological, religious, and classical references.
150
333
13.13
USD
16
5
252
Eleonora
"Eleonora" is a short story by Edgar Allan Poe, first published in 1842 in Philadelphia in the literary annual The Gift. It is often regarded as somewhat autobiographical and has a relatively "happy" ending.
150
555
14
USD
1615
6
271
Catweazle
Catweazle is a British fantasy television series, starring Geoffrey Bayldon in the title role, and created by Richard Carpenter for London Weekend Television. The first series, produced and directed by Quentin Lawrence, was screened in the UK on ITV in 1970. The second series, directed by David Reid and David Lane, was shown in 1971. Each series had thirteen episodes, most but not all written by Carpenter, who also published two books based on the scripts.
201,de,Sturmhöhe,"Sturmhöhe (Originaltitel: Wuthering Heights) ist der einzige Roman der englischen Schriftstellerin Emily Brontë (1818–1848). Der 1847 unter dem Pseudonym Ellis Bell veröffentlichte Roman wurde vom viktorianischen Publikum weitgehend abgelehnt, heute gilt er als ein Klassiker der britischen Romanliteratur des 19. Jahrhunderts."
201,fr,Les Hauts de Hurlevent,"Les Hauts de Hurlevent (titre original : Wuthering Heights), parfois orthographié Les Hauts de Hurle-Vent, est l'unique roman d'Emily Brontë, publié pour la première fois en 1847 sous le pseudonyme d’Ellis Bell. Loin d'être un récit moralisateur, Emily Brontë achève néanmoins le roman dans une atmosphère sereine, suggérant le triomphe de la paix et du Bien sur la vengeance et le Mal."
207,de,Jane Eyre,"Jane Eyre. Eine Autobiographie (Originaltitel: Jane Eyre. An Autobiography), erstmals erschienen im Jahr 1847 unter dem Pseudonym Currer Bell, ist der erste veröffentlichte Roman der britischen Autorin Charlotte Brontë und ein Klassiker der viktorianischen Romanliteratur des 19. Jahrhunderts. Der Roman erzählt in Form einer Ich-Erzählung die Lebensgeschichte von Jane Eyre (ausgesprochen /ˌdʒeɪn ˈɛə/), die nach einer schweren Kindheit eine Stelle als Gouvernante annimmt und sich in ihren Arbeitgeber verliebt, jedoch immer wieder um ihre Freiheit und Selbstbestimmung kämpfen muss. Als klein, dünn, blass, stets schlicht dunkel gekleidet und mit strengem Mittelscheitel beschrieben, gilt die Heldin des Romans Jane Eyre nicht zuletzt aufgrund der Kino- und Fernsehversionen der melodramatischen Romanvorlage als die bekannteste englische Gouvernante der Literaturgeschichte"
252,de,Eleonora,"“Eleonora” ist eine Erzählung von Edgar Allan Poe. Sie wurde 1841 erstveröffentlicht. In ihr geht es um das Paradox der Treue in der Treulosigkeit."
1
ID
locale
title
descr
2
201
de
Sturmhöhe
Sturmhöhe (Originaltitel: Wuthering Heights) ist der einzige Roman der englischen Schriftstellerin Emily Brontë (1818–1848). Der 1847 unter dem Pseudonym Ellis Bell veröffentlichte Roman wurde vom viktorianischen Publikum weitgehend abgelehnt, heute gilt er als ein Klassiker der britischen Romanliteratur des 19. Jahrhunderts.
3
201
fr
Les Hauts de Hurlevent
Les Hauts de Hurlevent (titre original : Wuthering Heights), parfois orthographié Les Hauts de Hurle-Vent, est l'unique roman d'Emily Brontë, publié pour la première fois en 1847 sous le pseudonyme d’Ellis Bell. Loin d'être un récit moralisateur, Emily Brontë achève néanmoins le roman dans une atmosphère sereine, suggérant le triomphe de la paix et du Bien sur la vengeance et le Mal.
4
207
de
Jane Eyre
Jane Eyre. Eine Autobiographie (Originaltitel: Jane Eyre. An Autobiography), erstmals erschienen im Jahr 1847 unter dem Pseudonym Currer Bell, ist der erste veröffentlichte Roman der britischen Autorin Charlotte Brontë und ein Klassiker der viktorianischen Romanliteratur des 19. Jahrhunderts. Der Roman erzählt in Form einer Ich-Erzählung die Lebensgeschichte von Jane Eyre (ausgesprochen /ˌdʒeɪn ˈɛə/), die nach einer schweren Kindheit eine Stelle als Gouvernante annimmt und sich in ihren Arbeitgeber verliebt, jedoch immer wieder um ihre Freiheit und Selbstbestimmung kämpfen muss. Als klein, dünn, blass, stets schlicht dunkel gekleidet und mit strengem Mittelscheitel beschrieben, gilt die Heldin des Romans Jane Eyre nicht zuletzt aufgrund der Kino- und Fernsehversionen der melodramatischen Romanvorlage als die bekannteste englische Gouvernante der Literaturgeschichte
5
252
de
Eleonora
“Eleonora” ist eine Erzählung von Edgar Allan Poe. Sie wurde 1841 erstveröffentlicht. In ihr geht es um das Paradox der Treue in der Treulosigkeit.
201;de;Sturmhöhe;Sturmhöhe (Originaltitel: Wuthering Heights) ist der einzige Roman der englischen Schriftstellerin Emily Brontë (1818–1848). Der 1847 unter dem Pseudonym Ellis Bell veröffentlichte Roman wurde vom viktorianischen Publikum weitgehend abgelehnt, heute gilt er als ein Klassiker der britischen Romanliteratur des 19. Jahrhunderts.
201;fr;Les Hauts de Hurlevent;Les Hauts de Hurlevent (titre original : Wuthering Heights), parfois orthographié Les Hauts de Hurle-Vent, est l'unique roman d'Emily Brontë, publié pour la première fois en 1847 sous le pseudonyme d’Ellis Bell. Loin d'être un récit moralisateur, Emily Brontë achève néanmoins le roman dans une atmosphère sereine, suggérant le triomphe de la paix et du Bien sur la vengeance et le Mal.
207;de;Jane Eyre;Jane Eyre. Eine Autobiographie (Originaltitel: Jane Eyre. An Autobiography), erstmals erschienen im Jahr 1847 unter dem Pseudonym Currer Bell, ist der erste veröffentlichte Roman der britischen Autorin Charlotte Brontë und ein Klassiker der viktorianischen Romanliteratur des 19. Jahrhunderts. Der Roman erzählt in Form einer Ich-Erzählung die Lebensgeschichte von Jane Eyre (ausgesprochen /ˌdʒeɪn ˈɛə/), die nach einer schweren Kindheit eine Stelle als Gouvernante annimmt und sich in ihren Arbeitgeber verliebt, jedoch immer wieder um ihre Freiheit und Selbstbestimmung kämpfen muss. Als klein, dünn, blass, stets schlicht dunkel gekleidet und mit strengem Mittelscheitel beschrieben, gilt die Heldin des Romans Jane Eyre nicht zuletzt aufgrund der Kino- und Fernsehversionen der melodramatischen Romanvorlage als die bekannteste englische Gouvernante der Literaturgeschichte
252;de;Eleonora;“Eleonora” ist eine Erzählung von Edgar Allan Poe. Sie wurde 1841 erstveröffentlicht. In ihr geht es um das Paradox der Treue in der Treulosigkeit.
1
ID
locale
title
descr
2
201
de
Sturmhöhe
Sturmhöhe (Originaltitel: Wuthering Heights) ist der einzige Roman der englischen Schriftstellerin Emily Brontë (1818–1848). Der 1847 unter dem Pseudonym Ellis Bell veröffentlichte Roman wurde vom viktorianischen Publikum weitgehend abgelehnt, heute gilt er als ein Klassiker der britischen Romanliteratur des 19. Jahrhunderts.
3
201
fr
Les Hauts de Hurlevent
Les Hauts de Hurlevent (titre original : Wuthering Heights), parfois orthographié Les Hauts de Hurle-Vent, est l'unique roman d'Emily Brontë, publié pour la première fois en 1847 sous le pseudonyme d’Ellis Bell. Loin d'être un récit moralisateur, Emily Brontë achève néanmoins le roman dans une atmosphère sereine, suggérant le triomphe de la paix et du Bien sur la vengeance et le Mal.
4
207
de
Jane Eyre
Jane Eyre. Eine Autobiographie (Originaltitel: Jane Eyre. An Autobiography), erstmals erschienen im Jahr 1847 unter dem Pseudonym Currer Bell, ist der erste veröffentlichte Roman der britischen Autorin Charlotte Brontë und ein Klassiker der viktorianischen Romanliteratur des 19. Jahrhunderts. Der Roman erzählt in Form einer Ich-Erzählung die Lebensgeschichte von Jane Eyre (ausgesprochen /ˌdʒeɪn ˈɛə/), die nach einer schweren Kindheit eine Stelle als Gouvernante annimmt und sich in ihren Arbeitgeber verliebt, jedoch immer wieder um ihre Freiheit und Selbstbestimmung kämpfen muss. Als klein, dünn, blass, stets schlicht dunkel gekleidet und mit strengem Mittelscheitel beschrieben, gilt die Heldin des Romans Jane Eyre nicht zuletzt aufgrund der Kino- und Fernsehversionen der melodramatischen Romanvorlage als die bekannteste englische Gouvernante der Literaturgeschichte
5
252
de
Eleonora
“Eleonora” ist eine Erzählung von Edgar Allan Poe. Sie wurde 1841 erstveröffentlicht. In ihr geht es um das Paradox der Treue in der Treulosigkeit.
<pathd="M 199 202 L 249 202 L 269 242 L 249 282 L 199 282 L 179 242 Z"fill="#ffe6cc"stroke="#d79b00"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 199 101 L 249 101 L 269 141 L 249 181 L 199 181 L 179 141 Z"fill="#f8cecc"stroke="#b85450"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 286 48 L 336 48 L 356 88 L 336 128 L 286 128 L 266 88 Z"fill="#d5e8d4"stroke="#82b366"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 286 153 L 336 153 L 356 193 L 336 233 L 286 233 L 266 193 Z"fill="#f5f5f5"stroke="#666666"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 111 153 L 161 153 L 181 193 L 161 233 L 111 233 L 91 193 Z"fill="#dae8fc"stroke="#6c8ebf"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 276.35 172.29 L 266.36 166.32"fill="none"stroke="#ffffff"stroke-width="2"stroke-miterlimit="10"pointer-events="stroke"/>
<pathd="M 260.57 162.86 L 270.6 163.61 L 266.36 166.32 L 265.98 171.34 Z"fill="#ffffff"stroke="#ffffff"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 170.74 172.47 L 181.53 166.1"fill="none"stroke="#ffffff"stroke-width="2"stroke-miterlimit="10"pointer-events="stroke"/>
<pathd="M 187.34 162.66 L 181.88 171.12 L 181.53 166.1 L 177.3 163.37 Z"fill="#ffffff"stroke="#ffffff"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 224 202 L 224 189.99"fill="none"stroke="#ffffff"stroke-width="2"stroke-miterlimit="10"pointer-events="stroke"/>
<pathd="M 224 183.24 L 228.5 192.24 L 224 189.99 L 219.5 192.24 Z"fill="#ffffff"stroke="#ffffff"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 276.51 109.01 L 266.17 115.31"fill="none"stroke="#ffffff"stroke-width="2"stroke-miterlimit="10"pointer-events="stroke"/>
<pathd="M 260.4 118.82 L 265.75 110.3 L 266.17 115.31 L 270.43 117.98 Z"fill="#ffffff"stroke="#ffffff"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 111 48 L 161 48 L 181 88 L 161 128 L 111 128 L 91 88 Z"fill="#dae8fc"stroke="#6c8ebf"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 21 101 L 71 101 L 91 141 L 71 181 L 21 181 L 1 141 Z"fill="#e1d5e7"stroke="#9673a6"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 80.76 120.53 L 93.49 113.03"fill="none"stroke="#ffffff"stroke-width="2"stroke-miterlimit="10"pointer-events="stroke"/>
<pathd="M 99.31 109.61 L 93.84 118.05 L 93.49 113.03 L 89.27 110.3 Z"fill="#ffffff"stroke="#ffffff"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 80.91 161.17 L 93.31 168.33"fill="none"stroke="#ffffff"stroke-width="2"stroke-miterlimit="10"pointer-events="stroke"/>
<pathd="M 99.15 171.71 L 89.11 171.1 L 93.31 168.33 L 93.61 163.31 Z"fill="#ffffff"stroke="#ffffff"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 170.59 108.83 L 181.72 115.53"fill="none"stroke="#ffffff"stroke-width="2"stroke-miterlimit="10"pointer-events="stroke"/>
<pathd="M 187.5 119.02 L 177.47 118.23 L 181.72 115.53 L 182.11 110.52 Z"fill="#ffffff"stroke="#ffffff"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 199 1 L 249 1 L 269 41 L 249 81 L 199 81 L 179 41 Z"fill="#e1d5e7"stroke="#9673a6"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 224 101 L 224 89.99"fill="none"stroke="#ffffff"stroke-width="2"stroke-miterlimit="10"pointer-events="stroke"/>
<pathd="M 224 83.24 L 228.5 92.24 L 224 89.99 L 219.5 92.24 Z"fill="#ffffff"stroke="#ffffff"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 475.5 182 L 475.5 142.97"fill="none"stroke="#6c8ebf"stroke-width="2"stroke-miterlimit="10"pointer-events="stroke"/>
<pathd="M 481.5 182 L 475.5 170 L 469.5 182"fill="none"stroke="#6c8ebf"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 475.5 124.97 L 480.79 133.97 L 475.5 142.97 L 470.21 133.97 Z"fill="#6c8ebf"stroke="#6c8ebf"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 418 98 L 394.97 98"fill="none"stroke="#6c8ebf"stroke-width="2"stroke-miterlimit="10"pointer-events="stroke"/>
<pathd="M 418 92 L 406 98 L 418 104"fill="none"stroke="#6c8ebf"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 376.97 98 L 385.97 92.71 L 394.97 98 L 385.97 103.29 Z"fill="#6c8ebf"stroke="#6c8ebf"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 207 201 L 257 201 L 277 241 L 257 281 L 207 281 L 187 241 Z"fill="#ffe6cc"stroke="#d79b00"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<textx="232"y="244"fill="rgb(0, 0, 0)"font-family="Comic Sans MS"font-size="11px"text-anchor="middle">
Bookshop...
</text>
</switch>
</g>
<pathd="M 207 102 L 257 102 L 277 142 L 257 182 L 207 182 L 187 142 Z"fill="#f8cecc"stroke="#b85450"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<textx="232"y="148"fill="rgb(0, 0, 0)"font-family="Comic Sans MS"font-size="11px"text-anchor="middle">
Bookstore...
</text>
</switch>
</g>
<pathd="M 297 53 L 347 53 L 367 93 L 347 133 L 297 133 L 277 93 Z"fill="#d5e8d4"stroke="#82b366"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<textx="322"y="96"fill="rgb(0, 0, 0)"font-family="Comic Sans MS"font-size="11px"text-anchor="middle">
Reviews...
</text>
</switch>
</g>
<pathd="M 297 150 L 347 150 L 367 190 L 347 230 L 297 230 L 277 190 Z"fill="#e1d5e7"stroke="#9673a6"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<textx="322"y="193"fill="rgb(0, 0, 0)"font-family="Comic Sans MS"font-size="11px"text-anchor="middle">
Common...
</text>
</switch>
</g>
<pathd="M 117 150 L 167 150 L 187 190 L 167 230 L 117 230 L 97 190 Z"fill="#d5e8d4"stroke="#82b366"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<textx="142"y="193"fill="rgb(0, 0, 0)"font-family="Comic Sans MS"font-size="11px"text-anchor="middle">
Orders...
</text>
</switch>
</g>
<pathd="M 286.47 171.05 L 273.81 164.3"fill="none"stroke="#5c5c5c"stroke-miterlimit="10"pointer-events="stroke"/>
<pathd="M 268.51 161.47 L 277.45 161.71 L 273.81 164.3 L 273.69 168.77 Z"fill="#5c5c5c"stroke="#5c5c5c"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 177.53 171.05 L 190.19 164.3"fill="none"stroke="#5c5c5c"stroke-miterlimit="10"pointer-events="stroke"/>
<pathd="M 195.49 161.47 L 190.31 168.77 L 190.19 164.3 L 186.55 161.71 Z"fill="#5c5c5c"stroke="#5c5c5c"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 232 201 L 232 189.12"fill="none"stroke="#5c5c5c"stroke-miterlimit="10"pointer-events="stroke"/>
<pathd="M 232 183.12 L 236 191.12 L 232 189.12 L 228 191.12 Z"fill="#5c5c5c"stroke="#5c5c5c"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 286.63 112.26 L 273.62 119.34"fill="none"stroke="#5c5c5c"stroke-miterlimit="10"pointer-events="stroke"/>
<pathd="M 268.35 122.21 L 273.47 114.87 L 273.62 119.34 L 277.29 121.9 Z"fill="#5c5c5c"stroke="#5c5c5c"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 117 53 L 167 53 L 187 93 L 167 133 L 117 133 L 97 93 Z"fill="#d5e8d4"stroke="#82b366"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<textx="142"y="96"fill="rgb(0, 0, 0)"font-family="Comic Sans MS"font-size="11px"text-anchor="middle">
Suppliers...
</text>
</switch>
</g>
<pathd="M 21 106 L 71 106 L 91 146 L 71 186 L 21 186 L 1 146 Z"fill="#dae8fc"stroke="#6c8ebf"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
<textx="46"y="149"fill="rgb(0, 0, 0)"font-family="Comic Sans MS"font-size="11px"text-anchor="middle"font-weight="bold">
S/4
</text>
</switch>
</g>
<pathd="M 81.27 126.53 L 100.5 115.91"fill="none"stroke="#5c5c5c"stroke-miterlimit="10"pointer-events="stroke"/>
<pathd="M 105.76 113.01 L 100.69 120.38 L 100.5 115.91 L 96.82 113.37 Z"fill="#5c5c5c"stroke="#5c5c5c"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 82.61 162.78 L 98.92 170.25"fill="none"stroke="#5c5c5c"stroke-miterlimit="10"pointer-events="stroke"/>
<pathd="M 104.37 172.75 L 95.43 173.06 L 98.92 170.25 L 98.77 165.79 Z"fill="#5c5c5c"stroke="#5c5c5c"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 177.37 112.26 L 190.38 119.34"fill="none"stroke="#5c5c5c"stroke-miterlimit="10"pointer-events="stroke"/>
<pathd="M 195.65 122.21 L 186.71 121.9 L 190.38 119.34 L 190.53 114.87 Z"fill="#5c5c5c"stroke="#5c5c5c"stroke-miterlimit="10"pointer-events="all"/>
<pathd="M 207 1 L 257 1 L 277 41 L 257 81 L 207 81 L 187 41 Z"fill="#fff2cc"stroke="#d6b656"stroke-width="2"stroke-miterlimit="10"pointer-events="all"/>
Either using the UI through http://localhost:4004/loggers.html, or try the requests in `test/requests.http`
Some files were not shown because too many files have changed in this diff
Show More
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.