From 9b613096912119298c45c6fb2e2490ab83a06ac0 Mon Sep 17 00:00:00 2001 From: Michael Ball Date: Tue, 6 May 2014 01:43:36 -0700 Subject: use right arrow for list tools blocks; update images and symlink for compatibility --- help/list$arrowRightsentence.png | Bin 0 -> 118339 bytes help/list->sentence.png | Bin 118339 -> 27 bytes help/sentence$arrowRightlist.png | Bin 0 -> 135860 bytes help/sentence->list.png | Bin 135860 -> 27 bytes tools.xml | 2 +- 5 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 help/list$arrowRightsentence.png mode change 100644 => 120000 help/list->sentence.png create mode 100644 help/sentence$arrowRightlist.png mode change 100644 => 120000 help/sentence->list.png diff --git a/help/list$arrowRightsentence.png b/help/list$arrowRightsentence.png new file mode 100644 index 0000000..5fbf1f8 Binary files /dev/null and b/help/list$arrowRightsentence.png differ diff --git a/help/list->sentence.png b/help/list->sentence.png deleted file mode 100644 index 5fbf1f8..0000000 Binary files a/help/list->sentence.png and /dev/null differ diff --git a/help/list->sentence.png b/help/list->sentence.png new file mode 120000 index 0000000..e058736 --- /dev/null +++ b/help/list->sentence.png @@ -0,0 +1 @@ +list$arrowRightsentence.png \ No newline at end of file diff --git a/help/sentence$arrowRightlist.png b/help/sentence$arrowRightlist.png new file mode 100644 index 0000000..7a3bd5d Binary files /dev/null and b/help/sentence$arrowRightlist.png differ diff --git a/help/sentence->list.png b/help/sentence->list.png deleted file mode 100644 index 7a3bd5d..0000000 Binary files a/help/sentence->list.png and /dev/null differ diff --git a/help/sentence->list.png b/help/sentence->list.png new file mode 120000 index 0000000..dde6073 --- /dev/null +++ b/help/sentence->list.png @@ -0,0 +1 @@ +sentence$arrowRightlist.png \ No newline at end of file diff --git a/tools.xml b/tools.xml index 6942dea..4686854 100644 --- a/tools.xml +++ b/tools.xml @@ -1 +1 @@ -1datamapmany1data lists11110i1 contcatchtagcontcatchtag +
1datamapmany1data lists
1
1
110i
1
cont
catchtag
cont
catchtag
\ No newline at end of file -- cgit v1.3.1 From 1937920da72f44c53a9419870c5e4fbe8ff9c928 Mon Sep 17 00:00:00 2001 From: Michael Ball Date: Tue, 6 May 2014 02:30:16 -0700 Subject: update word->sentence block spec; replace xml file --- libraries/word-sentence.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/word-sentence.xml b/libraries/word-sentence.xml index ff2a1a7..050b417 100644 --- a/libraries/word-sentence.xml +++ b/libraries/word-sentence.xml @@ -1 +1 @@ -Takes a text string as input, and reports a new text string containing all but the first character of the input.
resulti2
Takes a text string as input, divides it into words treating one or more spaces as a word separator (only spaces count; punctuation is part of the word) and reports a text string containing all but the first word, with one space between words and no spaces at the beginning or end. (Note: consider using SENTENCE->LIST and processing the resulting list instead of doing recursion on sentences in text string form. List operations are faster.)
Takes a text string as input, and reports a new text string containing all but the last letter of the input.
resulti1
Takes a text string as input, divides it into words treating one or more spaces as a word separator (only spaces count; punctuation is part of the word) and reports a text string containing all but the last word, with one space between words and no spaces at the beginning or end. (Note: consider using SENTENCE->LIST and processing the resulting list instead of doing recursion on sentences in text string form. List operations are faster.)
1 1 11 1
Takes a text string as input, divides it into words treating one or more spaces as a word separator (only spaces count; punctuation is part of the word) and reports a text string containing only the first word, with no spaces before or after it.
Takes a text string as input, and reports the last character in the string.
Takes a text string as input, divides it into words treating one or more spaces as a word separator (only spaces count; punctuation is part of the word) and reports a text string containing only the last word of the input, with no spaces before or after it.
1 1
Takes a text string as input, and reports TRUE if the string has no characters in it of any kind, otherwise false.
Takes a text string as input, and reports TRUE if the input contains no characters other than spaces (therefore, no words when the string is considered as a sentence), otherwise FALSE.
Takes a text string as input, and reports a list in which each item is a single character from the string.
\ No newline at end of file +Takes a text string as input, and reports a new text string containing all but the first character of the input.
resulti2
Takes a text string as input, divides it into words treating one or more spaces as a word separator (only spaces count; punctuation is part of the word) and reports a text string containing all but the first word, with one space between words and no spaces at the beginning or end. (Note: consider using SENTENCE->LIST and processing the resulting list instead of doing recursion on sentences in text string form. List operations are faster.)
Takes a text string as input, and reports a new text string containing all but the last letter of the input.
resulti1
Takes a text string as input, divides it into words treating one or more spaces as a word separator (only spaces count; punctuation is part of the word) and reports a text string containing all but the last word, with one space between words and no spaces at the beginning or end. (Note: consider using SENTENCE->LIST and processing the resulting list instead of doing recursion on sentences in text string form. List operations are faster.)
1 1 11 1
Takes a text string as input, divides it into words treating one or more spaces as a word separator (only spaces count; punctuation is part of the word) and reports a text string containing only the first word, with no spaces before or after it.
Takes a text string as input, and reports the last character in the string.
Takes a text string as input, divides it into words treating one or more spaces as a word separator (only spaces count; punctuation is part of the word) and reports a text string containing only the last word of the input, with no spaces before or after it.
1 1
Takes a text string as input, and reports TRUE if the string has no characters in it of any kind, otherwise false.
Takes a text string as input, and reports TRUE if the input contains no characters other than spaces (therefore, no words when the string is considered as a sentence), otherwise FALSE.
Takes a text string as input, and reports a list in which each item is a single character from the string.
\ No newline at end of file -- cgit v1.3.1 From 7bea68e373f1ecf6ac337bae163bbb2c9df95528 Mon Sep 17 00:00:00 2001 From: Michael Ball Date: Wed, 7 May 2014 16:39:38 -0700 Subject: add symlinks for current block names --- help/list->sentence.png | Bin 27 -> 118339 bytes help/sentence->list.png | Bin 27 -> 135860 bytes 2 files changed, 0 insertions(+), 0 deletions(-) mode change 120000 => 100644 help/list->sentence.png mode change 120000 => 100644 help/sentence->list.png diff --git a/help/list->sentence.png b/help/list->sentence.png deleted file mode 120000 index e058736..0000000 --- a/help/list->sentence.png +++ /dev/null @@ -1 +0,0 @@ -list$arrowRightsentence.png \ No newline at end of file diff --git a/help/list->sentence.png b/help/list->sentence.png new file mode 100644 index 0000000..5fbf1f8 Binary files /dev/null and b/help/list->sentence.png differ diff --git a/help/sentence->list.png b/help/sentence->list.png deleted file mode 120000 index dde6073..0000000 --- a/help/sentence->list.png +++ /dev/null @@ -1 +0,0 @@ -sentence$arrowRightlist.png \ No newline at end of file diff --git a/help/sentence->list.png b/help/sentence->list.png new file mode 100644 index 0000000..7a3bd5d Binary files /dev/null and b/help/sentence->list.png differ -- cgit v1.3.1 From d1317ca82ee64963e2efc7c4d4853fda0eef3961 Mon Sep 17 00:00:00 2001 From: Michael Ball Date: Sat, 10 May 2014 20:40:32 -0700 Subject: add new help images for modified list and sentence blocks --- help/list$arrowRightsentence.png | Bin 118339 -> 157221 bytes help/sentence$arrowRightlist.png | Bin 135860 -> 176476 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/help/list$arrowRightsentence.png b/help/list$arrowRightsentence.png index 5fbf1f8..1383af6 100644 Binary files a/help/list$arrowRightsentence.png and b/help/list$arrowRightsentence.png differ diff --git a/help/sentence$arrowRightlist.png b/help/sentence$arrowRightlist.png index 7a3bd5d..731aab9 100644 Binary files a/help/sentence$arrowRightlist.png and b/help/sentence$arrowRightlist.png differ -- cgit v1.3.1 From bc8004f8cdd36453ad65c39ed0eb309080059515 Mon Sep 17 00:00:00 2001 From: Michael Ball Date: Wed, 9 Jul 2014 00:26:03 -0700 Subject: Tools.xml: Update tools with word->list block --- tools.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools.xml b/tools.xml index 4686854..0a77082 100644 --- a/tools.xml +++ b/tools.xml @@ -1 +1 @@ -
1datamapmany1data lists
1
1
110i
1
cont
catchtag
cont
catchtag
\ No newline at end of file +
1datamapmany1data lists
1
1
110i
1
cont
catchtag
cont
catchtag
\ No newline at end of file -- cgit v1.3.1