From 05c72e869034a3c19fb1637c00bcf4f5c73dd504 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sat, 23 Jun 2018 11:43:00 -0700 Subject: [PATCH] factor: trim some long using lists. --- basis/furnace/chloe-tags/chloe-tags.factor | 26 +++++----------------- extra/webapps/pastebin/pastebin.factor | 25 +++++---------------- 2 files changed, 10 insertions(+), 41 deletions(-) diff --git a/basis/furnace/chloe-tags/chloe-tags.factor b/basis/furnace/chloe-tags/chloe-tags.factor index 94f507c733..ac8c4ce519 100644 --- a/basis/furnace/chloe-tags/chloe-tags.factor +++ b/basis/furnace/chloe-tags/chloe-tags.factor @@ -1,26 +1,10 @@ ! Copyright (C) 2008 Slava Pestov. ! See http://factorcode.org/license.txt for BSD license. -USING: accessors arrays kernel combinators assocs -namespaces sequences splitting words -fry urls multiline present -xml -xml.data -xml.entities -xml.writer -xml.traversal -xml.syntax -html.components -html.forms -html.templates -html.templates.chloe -html.templates.chloe.compiler -html.templates.chloe.syntax -http -http.server -http.server.redirection -http.server.responses -io.streams.string -furnace.utilities ; +USING: accessors assocs combinators fry furnace.utilities +html.components html.forms html.templates +html.templates.chloe.compiler html.templates.chloe.syntax kernel +namespaces present sequences splitting urls xml.data xml.syntax +xml.traversal xml.writer ; IN: furnace.chloe-tags ! Chloe tags diff --git a/extra/webapps/pastebin/pastebin.factor b/extra/webapps/pastebin/pastebin.factor index 81e07b44e6..2f96010520 100644 --- a/extra/webapps/pastebin/pastebin.factor +++ b/extra/webapps/pastebin/pastebin.factor @@ -1,25 +1,10 @@ ! Copyright (C) 2007, 2010 Slava Pestov ! See http://factorcode.org/license.txt for BSD license. -USING: namespaces assocs sorting sequences kernel accessors -hashtables db.types db.tuples db combinators -calendar calendar.format math.parser math.order syndication urls -xml.writer xmode.catalog validators -html.forms -html.components -html.templates.chloe -http.server -http.server.dispatchers -http.server.redirection -http.server.responses -furnace -furnace.actions -furnace.redirection -furnace.auth -furnace.auth.login -furnace.boilerplate -furnace.recaptcha -furnace.syndication -furnace.conversations ; +USING: accessors calendar db db.tuples db.types furnace.actions +furnace.auth furnace.boilerplate furnace.recaptcha +furnace.redirection furnace.syndication html.forms +http.server.dispatchers http.server.responses kernel math.parser +sequences sorting urls validators xmode.catalog ; IN: webapps.pastebin TUPLE: pastebin < dispatcher ; -- 2.34.1