]> gitweb.factorcode.org Git - factor.git/commitdiff
fuel,fuel.help: refactoring of lots of word names
authorBjörn Lindqvist <bjourne@gmail.com>
Sun, 8 Jan 2017 11:07:18 +0000 (12:07 +0100)
committerBjörn Lindqvist <bjourne@gmail.com>
Sun, 8 Jan 2017 12:18:17 +0000 (13:18 +0100)
Better to use unprefixed words everywhere. When they clash with words
from the help system, fully qualified names can be used.

extra/fuel/fuel.factor
extra/fuel/help/help-docs.factor
extra/fuel/help/help-tests.factor
extra/fuel/help/help.factor

index 0db17daf91e50c3fa20abb8f2c99e062d0230c55..fda00c15f8c79f8c591a6927277895d038cbf56b 100644 (file)
@@ -111,24 +111,24 @@ PRIVATE>
 : fuel-get-article-title ( name -- )
     articles get at [ article-title ] [ f ] if* fuel-eval-set-result ;
 
-: fuel-word-help ( name -- ) (fuel-word-help) fuel-eval-set-result ;
+: fuel-word-help ( name -- ) word-help fuel-eval-set-result ;
 
-: fuel-word-def ( name -- ) (fuel-word-def) fuel-eval-set-result ;
+: fuel-word-def ( name -- ) word-def fuel-eval-set-result ;
 
-: fuel-vocab-help ( name -- ) (fuel-vocab-help) fuel-eval-set-result ;
+: fuel-vocab-help ( name -- ) fuel.help:vocab-help fuel-eval-set-result ;
 
-: fuel-word-synopsis ( word -- ) (fuel-word-synopsis) fuel-eval-set-result ;
+: fuel-word-synopsis ( word -- ) word-synopsis fuel-eval-set-result ;
 
 : fuel-vocab-summary ( name -- )
-    (fuel-vocab-summary) fuel-eval-set-result ;
+    fuel.help:vocab-summary fuel-eval-set-result ;
 
 : fuel-index ( quot -- ) call( -- seq ) format-index fuel-eval-set-result ;
 
 : fuel-get-vocabs/tag ( tag -- )
-    (fuel-get-vocabs/tag) fuel-eval-set-result ;
+    get-vocabs/tag fuel-eval-set-result ;
 
 : fuel-get-vocabs/author ( author -- )
-    (fuel-get-vocabs/author) fuel-eval-set-result ;
+    get-vocabs/author fuel-eval-set-result ;
 
 ! Scaffold support
 
index c469eac0c0a9a2ceb8fc78753cc61400da228de8..1389c65c1f9e2f7fd8ef0821ace944f23d8156f5 100644 (file)
@@ -1,6 +1,6 @@
 USING: fuel.help.private help.markup help.syntax strings ;
 IN: fuel.help
 
-HELP: fuel-find-word
+HELP: find-word
 { $values { "name" string } { "word/f" "word or f" } }
 { $description "Prefer to use search which takes the execution context into account. If that fails, fall back on a search of all words." } ;
index 04ae7c63e2c5a5dbb23a1a886fecfdf0c282a89f..f62145ae687627804f28a3f09a61aca89e29f23a 100644 (file)
@@ -9,7 +9,7 @@ IN: fuel.help.tests
         { $next-link articles "articles" }
     }
 } [
-    \ lookup-article (fuel-word-element) third
+    \ lookup-article word-element third
     [ first { $prev-link $next-link } member? ] filter
 ] unit-test
 
index 2020763e999ca2f421a5c138cac77336848998cf..53af89bf30794fe3de451b00de51d3d9d8701d5c 100644 (file)
@@ -1,33 +1,32 @@
 ! Copyright (C) 2009 Jose Antonio Ortega Ruiz.
 ! See http://factorcode.org/license.txt for BSD license.
-USING: accessors arrays assocs combinators
-combinators.short-circuit fry help help.crossref help.markup
-help.markup.private help.topics help.vocabs io io.streams.string
-kernel listener make namespaces parser prettyprint see sequences
-summary vocabs vocabs.hierarchy vocabs.metadata vocabs.parser
-words ;
+USING: accessors arrays assocs combinators combinators.short-circuit
+fry help help.crossref help.markup help.markup.private help.topics
+help.vocabs io io.streams.string kernel make namespaces parser
+prettyprint see sequences summary vocabs vocabs.hierarchy
+vocabs.metadata vocabs.parser words ;
 IN: fuel.help
 
 <PRIVATE
 
-: fuel-find-word ( name -- word/f )
+: find-word ( name -- word/f )
     { [ search ] [ '[ name>> _ = ] all-words swap find nip ] } 1|| ;
 
-: fuel-value-str ( word -- str )
+: value-str ( word -- str )
     [ pprint-short ] with-string-writer ; inline
 
-: fuel-definition-str ( word -- str )
+: definition-str ( word -- str )
     [ see ] with-string-writer ; inline
 
-: fuel-methods-str ( word -- str )
+: methods-str ( word -- str )
     methods [ f ] [
         [ [ see nl ] each ] with-string-writer
     ] if-empty ; inline
 
-: fuel-related-words ( word -- seq )
+: related-words ( word -- seq )
     dup "related" word-prop remove ; inline
 
-: fuel-parent-topics ( word -- seq )
+: parent-topics ( word -- seq )
     help-path [ dup article-title swap 2array ] map ; inline
 
 SYMBOLS: $doc-path $next-link $prev-link ;
@@ -35,7 +34,7 @@ SYMBOLS: $doc-path $next-link $prev-link ;
 : next/prev-link ( link link-symbol -- 3arr )
     swap [ name>> ] [ [ link-long-text ] with-string-writer ] bi 3array ;
 
-: (fuel-word-element) ( word -- element )
+: word-element ( word -- element )
     \ article swap dup article-title swap
     [
         {
@@ -45,43 +44,43 @@ SYMBOLS: $doc-path $next-link $prev-link ;
                 [ prev-article [ \ $prev-link next/prev-link , ] when* ]
                 [ next-article [ \ $next-link next/prev-link , ] when* ] bi
             ]
-            [ fuel-parent-topics [ \ $doc-path prefix , ] unless-empty ]
-            [ word-help % ]
-            [ fuel-related-words [ \ $related swap 2array , ] unless-empty ]
-            [ get-global [ \ $value swap fuel-value-str 2array , ] when* ]
-            [ \ $definition swap fuel-definition-str 2array , ]
-            [ fuel-methods-str [ \ $methods swap 2array , ] when* ]
+            [ parent-topics [ \ $doc-path prefix , ] unless-empty ]
+            [ help:word-help % ]
+            [ related-words [ \ $related swap 2array , ] unless-empty ]
+            [ get-global [ \ $value swap value-str 2array , ] when* ]
+            [ \ $definition swap definition-str 2array , ]
+            [ methods-str [ \ $methods swap 2array , ] when* ]
         } cleave
     ] { } make 3array ;
 
-: fuel-vocab-help-row ( vocab -- element )
+: vocab-help-row ( vocab -- element )
     [ vocab-name ] [ summary ] bi 2array ;
 
-: fuel-vocab-help-root-heading ( root -- element )
+: vocab-help-root-heading ( root -- element )
     [ "Children from " prepend ] [ "Other children" ] if* \ $heading swap 2array ;
 
 SYMBOL: vocab-list
 SYMBOL: describe-words
 
-: fuel-vocab-help-table ( vocabs -- element )
-    [ fuel-vocab-help-row ] map vocab-list prefix ;
+: vocab-help-table ( vocabs -- element )
+    [ vocab-help-row ] map vocab-list prefix ;
 
-: fuel-vocab-list ( assoc -- seq )
+: do-vocab-list ( assoc -- seq )
     [
         [ drop f ] [
-            [ fuel-vocab-help-root-heading ]
-            [ fuel-vocab-help-table ] bi*
+            [ vocab-help-root-heading ]
+            [ vocab-help-table ] bi*
             [ 2array ] [ drop f ] if*
         ] if-empty
     ] { } assoc>map sift ;
 
-: fuel-vocab-children-help ( name -- element )
-    disk-vocabs-for-prefix fuel-vocab-list ; inline
+: vocab-children-help ( name -- element )
+    disk-vocabs-for-prefix do-vocab-list ; inline
 
-: fuel-vocab-describe-words ( name -- element )
+: vocab-describe-words ( name -- element )
     [ words. ] with-string-writer \ describe-words swap 2array ; inline
 
-: (fuel-vocab-element) ( name -- element )
+: vocab-element ( name -- element )
     dup require \ article swap dup >vocab-link
     [
         {
@@ -89,37 +88,37 @@ SYMBOL: describe-words
             [ vocab-tags [ \ $tags prefix , ] when* ]
             [ summary [ { $heading "Summary" } swap 2array , ] when* ]
             [ drop \ $nl , ]
-            [ vocab-help [ lookup-article content>> % ] when* ]
-            [ name>> fuel-vocab-describe-words , ]
-            [ name>> fuel-vocab-children-help % ]
+            [ vocabs:vocab-help [ lookup-article content>> % ] when* ]
+            [ name>> vocab-describe-words , ]
+            [ name>> vocab-children-help % ]
         } cleave
     ] { } make 3array ;
 
 PRIVATE>
 
-: (fuel-word-help) ( name -- elem/f )
-    fuel-find-word [
-        [ auto-use? on (fuel-word-element) ] with-scope
+: word-help ( name -- elem/f )
+    find-word [
+        [ auto-use? on word-element ] with-scope
     ] [ f ] if* ;
 
-: (fuel-word-synopsis) ( name -- str/f )
-    fuel-find-word [ synopsis ] [ f ] if* ;
+: word-synopsis ( name -- str/f )
+    find-word [ synopsis ] [ f ] if* ;
 
-: (fuel-word-def) ( name -- str )
-    fuel-find-word [ [ def>> pprint ] with-string-writer ] [ f ] if* ; inline
+: word-def ( name -- str )
+    find-word [ [ def>> pprint ] with-string-writer ] [ f ] if* ; inline
 
-: (fuel-vocab-summary) ( name -- str ) >vocab-link summary ; inline
+: vocab-summary ( name -- str ) >vocab-link summary ; inline
 
-: (fuel-vocab-help) ( name -- str )
-    dup empty? [ fuel-vocab-children-help ] [ (fuel-vocab-element) ] if ;
+: vocab-help ( name -- str )
+    dup empty? [ vocab-children-help ] [ vocab-element ] if ;
 
-: (fuel-get-vocabs/author) ( author -- element )
+: get-vocabs/author ( author -- element )
     [ "Vocabularies by " prepend \ $heading swap 2array ]
-    [ authored fuel-vocab-list ] bi 2array ;
+    [ authored do-vocab-list ] bi 2array ;
 
-: (fuel-get-vocabs/tag) ( tag -- element )
+: get-vocabs/tag ( tag -- element )
     [ "Vocabularies tagged " prepend \ $heading swap 2array ]
-    [ tagged fuel-vocab-list ] bi 2array ;
+    [ tagged do-vocab-list ] bi 2array ;
 
 : format-index ( seq -- seq )
     [ [ >link name>> ] [ article-title ] bi 2array \ $subsection prefix ] map ;