-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
22 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,7 @@ Die öffentliche Funktion Parse_Uri mit dem Parameter uri vom Typ Text, gibt ein | |
Gib ergebnis zurück. | ||
Und überlädt den "als" Operator. | ||
|
||
Die Funktion Uri_Zu_Text mit dem Parameter uri vom Typ Uri, gibt einen Text zurück, macht: | ||
Die öffentliche Funktion Uri_Zu_Text mit dem Parameter uri vom Typ Uri, gibt einen Text zurück, macht: | ||
[ TODO: durch TextBauer ersetzen ] | ||
Der Text t ist "". | ||
|
||
|
@@ -74,13 +74,3 @@ Die Funktion Uri_Zu_Text mit dem Parameter uri vom Typ Uri, gibt einen Text zur | |
|
||
Gib t zurück. | ||
Und überlädt den "als" Operator. | ||
|
||
Schreibe ab jetzt alle Fehler. | ||
Der Text uri ist "http://bafto:[email protected]:8080/pub/ietf/uri/?a=5&b=6#Related". | ||
|
||
Die Uri u ist uri als Uri. | ||
Schreibe (u als Text) auf eine Zeile. | ||
|
||
Der Text uri2 ist "/pub/ietf/uri/?a=5&b=6#Related". | ||
Die Uri u2 ist uri2 als Uri. | ||
Schreibe (u2 als Text) auf eine Zeile. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Binde "Duden/Ausgabe" ein. | ||
Binde "Duden/Uri" ein. | ||
|
||
Die Uri u ist "https://user:[email protected]:8080/index.html?a=hi&b=bye#anchor" als Uri. | ||
|
||
Schreibe (Schema von u) auf eine Zeile. | ||
Schreibe (Nutzer von u) auf eine Zeile. | ||
Schreibe (Host von u) auf eine Zeile. | ||
Schreibe (Port von u) auf eine Zeile. | ||
Schreibe (Pfad von u) auf eine Zeile. | ||
Schreibe (Abfrage von u) auf eine Zeile. | ||
Schreibe (Fragment von u) auf eine Zeile. | ||
Schreibe (u als Text) auf eine Zeile. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
https | ||
user:password | ||
example.com | ||
8080 | ||
/index.html | ||
a=hi&b=bye | ||
anchor | ||
https://user:[email protected]:8080/index.html?a=hi&b=bye#anchor |