├── LICENSE ├── README.md ├── app ├── pkggen │ ├── entry.tcl │ └── pkggen.tcl ├── teapot │ ├── entry.tcl │ ├── lib │ │ └── app-teapot │ │ │ ├── capp.tcl │ │ │ ├── client.tcl │ │ │ ├── help_archive.txt │ │ │ ├── help_cache.txt │ │ │ ├── help_cmds-by-group.txt │ │ │ ├── help_commands.txt │ │ │ ├── help_create.txt │ │ │ ├── help_default.txt │ │ │ ├── help_delete.txt │ │ │ ├── help_describe.txt │ │ │ ├── help_get.txt │ │ │ ├── help_help.txt │ │ │ ├── help_install.txt │ │ │ ├── help_keys.txt │ │ │ ├── help_link.txt │ │ │ ├── help_list.txt │ │ │ ├── help_log.txt │ │ │ ├── help_options.txt │ │ │ ├── help_profiles.txt │ │ │ ├── help_proxy.txt │ │ │ ├── help_queries.txt │ │ │ ├── help_regenerate.txt │ │ │ ├── help_remove.txt │ │ │ ├── help_search.txt │ │ │ ├── help_setup.txt │ │ │ ├── help_timeout.txt │ │ │ ├── help_update-self.txt │ │ │ ├── help_update.txt │ │ │ ├── help_verify.txt │ │ │ ├── help_version.txt │ │ │ ├── help_who.txt │ │ │ ├── pkgIndex.tcl │ │ │ ├── topic_cmds-by-group.txt │ │ │ ├── topic_commands.txt │ │ │ ├── topic_help.txt │ │ │ ├── topic_options.txt │ │ │ └── topic_queries.txt │ ├── main.tcl │ └── teapot.tcl ├── teapotd │ ├── entry.tcl │ └── teapotd.tcl └── tpadmin │ ├── entry.tcl │ └── tpadmin.tcl ├── data └── teapotd │ ├── footer.html │ └── header.html ├── docs ├── external │ └── zip-appnote.txt ├── manpages │ ├── CTP_activetcl.doctools │ ├── CTP_faq.doctools │ ├── CTP_glossary.doctools │ ├── CTP_introduction.doctools │ ├── CTP_metadata.doctools │ ├── CTP_teacup.doctools │ ├── CTP_teapot.doctools │ ├── CTP_teastir.doctools │ ├── CTP_teazip.doctools │ └── CTP_trepo.doctools └── notes │ ├── CTP_ASK.txt │ ├── CTP_Packages.txt │ ├── CTP_Setup.txt │ ├── ClassesAndApps.txt │ ├── Security.txt │ ├── applications.txt │ └── package-references.txt └── lib ├── afs ├── afs-sig.tm ├── afs.tm └── pkgIndex.tcl ├── cmatch ├── cmatch.tm └── pkgIndex.tcl ├── metadata ├── metadata.tm ├── pkgIndex.tcl ├── teapot-metadata-container.tm ├── teapot-metadata-edit.tm ├── teapot-metadata-index-journal.tm ├── teapot-metadata-index-sqlite.tm ├── teapot-metadata-read.tm ├── teapot-metadata-scan.tm └── teapot-metadata-write.tm ├── misc ├── event-merger.tm ├── iter.tm ├── jobs.tm ├── pkg-mem.tm └── pkgIndex.tcl ├── pkggen ├── pkgIndex.tcl ├── teapot-package-gen-auto.tm ├── teapot-package-gen-pkgIndex.tm ├── teapot-package-gen-tm.tm ├── teapot-package-gen-zip.tm └── teapot-package-gen.tm ├── prefdk ├── pkgIndex.tcl └── pref-devkit.tm ├── preferences ├── pkgIndex.tcl ├── pref-stdsr-oo.tm ├── pref-stdsr.tm └── pref.tm ├── preftp ├── pkgIndex.tcl └── pref-teapot.tm ├── repository ├── pkgIndex.tcl ├── repository-api.tm ├── repository-cache.tm ├── repository-local.tm ├── repository-localma.tm ├── repository-mem.tm ├── repository-pool.tm ├── repository-prefix.tm ├── repository-provided.tm ├── repository-proxy.tm ├── repository-resolve.tm ├── repository-shell.tm ├── repository-sqlitedir.tm ├── repository-sys.tm ├── repository-tap.tm ├── repository-tiedir.tm ├── repository-union.tm ├── teapot-repository-pkgIndex.tm └── teapot-wserver.tm ├── tap ├── pkgIndex.tcl ├── tap-cache.tm ├── tap-db-files.tm ├── tap-db-loader.tm ├── tap-db-paths.tm └── tap-db.tm ├── tbcload ├── ChangeLog ├── DEPENDENCIES ├── Makefile.in ├── aclocal.m4 ├── cmpInt.h ├── cmpProcBody.c ├── cmpRPkg.c ├── cmpRead.c ├── config │ ├── ChangeLog │ ├── config.guess │ ├── config.sub │ ├── install-sh │ ├── installFile.tcl │ ├── mkinstalldirs │ └── tcl.m4 ├── configure ├── configure.in ├── license.terms ├── proTbcLoad.h ├── tclconfig │ ├── README.txt │ ├── install-sh │ └── tcl.m4 ├── tests │ ├── all.tcl │ ├── cmpRead.test │ ├── tbc10 │ │ ├── aux1.tbc │ │ ├── break.tbc │ │ ├── break1.tbc │ │ ├── break2.tbc │ │ ├── catch.tbc │ │ ├── catch1.tbc │ │ ├── cont.tbc │ │ ├── cont1.tbc │ │ ├── cont2.tbc │ │ ├── expr.tbc │ │ ├── expr1.tbc │ │ ├── expr2.tbc │ │ ├── for.tbc │ │ ├── foreach.tbc │ │ ├── interp.tbc │ │ ├── override.tbc │ │ ├── proc.tbc │ │ ├── procbod1.tbc │ │ ├── procbod2.tbc │ │ ├── procbod3.tbc │ │ ├── procbreak1.tbc │ │ ├── proccatch1.tbc │ │ ├── proccatch2.tbc │ │ ├── proccontinue1.tbc │ │ ├── procepc1.tbc │ │ ├── procepc2.tbc │ │ ├── procshd1.tbc │ │ ├── procshd2.tbc │ │ ├── procshd3.tbc │ │ ├── procshd4.tbc │ │ ├── procshd5.tbc │ │ ├── procshd6.tbc │ │ ├── procshd7.tbc │ │ ├── procshd8.tbc │ │ ├── procvar1.tbc │ │ ├── procvar2.tbc │ │ └── while.tbc │ └── tcl │ │ ├── aux1.tcl │ │ ├── break.tcl │ │ ├── break1.tcl │ │ ├── break2.tcl │ │ ├── catch.tcl │ │ ├── catch1.tcl │ │ ├── cont.tcl │ │ ├── cont1.tcl │ │ ├── cont2.tcl │ │ ├── expr.tcl │ │ ├── expr1.tcl │ │ ├── expr2.tcl │ │ ├── fail.tcl │ │ ├── for.tcl │ │ ├── foreach.tcl │ │ ├── hello.tcl │ │ ├── interp.tcl │ │ ├── override.tcl │ │ ├── proc.tcl │ │ ├── procRedef.tcl │ │ ├── procRedefNub.tcl │ │ ├── procarg1.tcl │ │ ├── procarg2.tcl │ │ ├── procarg3.tcl │ │ ├── procbod1.tcl │ │ ├── procbod2.tcl │ │ ├── procbod3.tcl │ │ ├── procbreak1.tcl │ │ ├── proccatch1.tcl │ │ ├── proccatch2.tcl │ │ ├── proccontinue1.tcl │ │ ├── procepc1.tcl │ │ ├── procepc2.tcl │ │ ├── procerr1.tcl │ │ ├── procshd1.tcl │ │ ├── procshd2.tcl │ │ ├── procshd3.tcl │ │ ├── procshd4.tcl │ │ ├── procshd5.tcl │ │ ├── procshd6.tcl │ │ ├── procshd7.tcl │ │ ├── procshd8.tcl │ │ ├── procvar1.tcl │ │ ├── procvar2.tcl │ │ └── while.tcl └── tools │ ├── check_manifest │ └── genStubs.tcl ├── tclcompiler ├── ChangeLog ├── Makefile.in ├── aclocal.m4 ├── cmpWPkg.c ├── cmpWrite.c ├── cmpWrite.h ├── cmptest.c ├── config │ ├── ChangeLog │ ├── config.guess │ ├── config.sub │ ├── install-sh │ ├── installFile.tcl │ ├── mkinstalldirs │ └── tcl.m4 ├── configure ├── configure.in ├── license.terms ├── tclconfig │ ├── README.txt │ ├── install-sh │ └── tcl.m4 └── tests │ └── test_jump_rewrite.tcl ├── tcldevkit-config ├── config.tcl ├── pkgIndex.tcl ├── tcldevkit-config.tm └── teapot.txt ├── tclparser ├── ChangeLog ├── DEPENDENCIES ├── Makefile.in ├── README ├── aclocal.m4 ├── config │ ├── ChangeLog │ ├── config.guess │ ├── config.sub │ ├── install-sh │ ├── installFile.tcl │ ├── mkinstalldirs │ └── tcl.m4 ├── configure ├── configure.in ├── doc │ ├── parse.man │ └── parse.n ├── license.terms ├── tclParser.c ├── tclconfig │ ├── README.txt │ ├── install-sh │ └── tcl.m4 ├── tests │ ├── all.tcl │ ├── parse.test │ └── parseCmd.test └── tools │ ├── check_manifest │ └── genStubs.tcl ├── teapot ├── pkgIndex.tcl └── teapot-config.tm ├── teapotbase ├── pkgIndex.tcl ├── teapot-entity.tm ├── teapot-instance.tm ├── teapot-listspec.tm ├── teapot-query.tm ├── teapot-redirect.tm ├── teapot-reference.tm └── teapot-version.tm ├── teapotlink ├── pkgIndex.tcl ├── teapot-link.tm ├── teapot-plat.tm └── teapot-tmbackport.tm └── wub84 ├── Entity.tcl ├── HttpUtils.tcl ├── Httpd.tcl ├── Listener.tcl ├── Makefile ├── NOTES.old ├── PROBLEMS.stx ├── Pool.tcl ├── TODO.stx ├── Timer.tcl ├── dictcompat.tcl ├── pkgIndex.tcl └── teapot.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/README.md -------------------------------------------------------------------------------- /app/pkggen/entry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/pkggen/entry.tcl -------------------------------------------------------------------------------- /app/pkggen/pkggen.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/pkggen/pkggen.tcl -------------------------------------------------------------------------------- /app/teapot/entry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/entry.tcl -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/capp.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/capp.tcl -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/client.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/client.tcl -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_archive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_archive.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_cache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_cache.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_cmds-by-group.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_cmds-by-group.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_commands.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_create.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_create.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_default.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_delete.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_delete.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_describe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_describe.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_get.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_get.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_help.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_install.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_keys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_keys.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_link.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_list.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_log.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_options.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_profiles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_profiles.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_proxy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_proxy.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_queries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_queries.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_regenerate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_regenerate.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_remove.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_remove.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_search.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_setup.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_timeout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_timeout.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_update-self.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_update-self.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_update.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_update.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_verify.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_verify.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_version.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/help_who.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/help_who.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/pkgIndex.tcl -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/topic_cmds-by-group.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/topic_cmds-by-group.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/topic_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/topic_commands.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/topic_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/topic_help.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/topic_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/topic_options.txt -------------------------------------------------------------------------------- /app/teapot/lib/app-teapot/topic_queries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/lib/app-teapot/topic_queries.txt -------------------------------------------------------------------------------- /app/teapot/main.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/main.tcl -------------------------------------------------------------------------------- /app/teapot/teapot.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapot/teapot.tcl -------------------------------------------------------------------------------- /app/teapotd/entry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapotd/entry.tcl -------------------------------------------------------------------------------- /app/teapotd/teapotd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/teapotd/teapotd.tcl -------------------------------------------------------------------------------- /app/tpadmin/entry.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/tpadmin/entry.tcl -------------------------------------------------------------------------------- /app/tpadmin/tpadmin.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/app/tpadmin/tpadmin.tcl -------------------------------------------------------------------------------- /data/teapotd/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/data/teapotd/footer.html -------------------------------------------------------------------------------- /data/teapotd/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/data/teapotd/header.html -------------------------------------------------------------------------------- /docs/external/zip-appnote.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/docs/external/zip-appnote.txt -------------------------------------------------------------------------------- /docs/manpages/CTP_activetcl.doctools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/docs/manpages/CTP_activetcl.doctools -------------------------------------------------------------------------------- /docs/manpages/CTP_faq.doctools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/docs/manpages/CTP_faq.doctools -------------------------------------------------------------------------------- /docs/manpages/CTP_glossary.doctools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/docs/manpages/CTP_glossary.doctools -------------------------------------------------------------------------------- /docs/manpages/CTP_introduction.doctools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/docs/manpages/CTP_introduction.doctools -------------------------------------------------------------------------------- /docs/manpages/CTP_metadata.doctools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/docs/manpages/CTP_metadata.doctools -------------------------------------------------------------------------------- /docs/manpages/CTP_teacup.doctools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/docs/manpages/CTP_teacup.doctools -------------------------------------------------------------------------------- /docs/manpages/CTP_teapot.doctools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/docs/manpages/CTP_teapot.doctools -------------------------------------------------------------------------------- /docs/manpages/CTP_teastir.doctools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/docs/manpages/CTP_teastir.doctools -------------------------------------------------------------------------------- /docs/manpages/CTP_teazip.doctools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/docs/manpages/CTP_teazip.doctools -------------------------------------------------------------------------------- /docs/manpages/CTP_trepo.doctools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/docs/manpages/CTP_trepo.doctools -------------------------------------------------------------------------------- /docs/notes/CTP_ASK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/docs/notes/CTP_ASK.txt -------------------------------------------------------------------------------- /docs/notes/CTP_Packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/docs/notes/CTP_Packages.txt -------------------------------------------------------------------------------- /docs/notes/CTP_Setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/docs/notes/CTP_Setup.txt -------------------------------------------------------------------------------- /docs/notes/ClassesAndApps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/docs/notes/ClassesAndApps.txt -------------------------------------------------------------------------------- /docs/notes/Security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/docs/notes/Security.txt -------------------------------------------------------------------------------- /docs/notes/applications.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/docs/notes/applications.txt -------------------------------------------------------------------------------- /docs/notes/package-references.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/docs/notes/package-references.txt -------------------------------------------------------------------------------- /lib/afs/afs-sig.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/afs/afs-sig.tm -------------------------------------------------------------------------------- /lib/afs/afs.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/afs/afs.tm -------------------------------------------------------------------------------- /lib/afs/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/afs/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/cmatch/cmatch.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/cmatch/cmatch.tm -------------------------------------------------------------------------------- /lib/cmatch/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/cmatch/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/metadata/metadata.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/metadata/metadata.tm -------------------------------------------------------------------------------- /lib/metadata/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/metadata/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/metadata/teapot-metadata-container.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/metadata/teapot-metadata-container.tm -------------------------------------------------------------------------------- /lib/metadata/teapot-metadata-edit.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/metadata/teapot-metadata-edit.tm -------------------------------------------------------------------------------- /lib/metadata/teapot-metadata-index-journal.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/metadata/teapot-metadata-index-journal.tm -------------------------------------------------------------------------------- /lib/metadata/teapot-metadata-index-sqlite.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/metadata/teapot-metadata-index-sqlite.tm -------------------------------------------------------------------------------- /lib/metadata/teapot-metadata-read.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/metadata/teapot-metadata-read.tm -------------------------------------------------------------------------------- /lib/metadata/teapot-metadata-scan.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/metadata/teapot-metadata-scan.tm -------------------------------------------------------------------------------- /lib/metadata/teapot-metadata-write.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/metadata/teapot-metadata-write.tm -------------------------------------------------------------------------------- /lib/misc/event-merger.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/misc/event-merger.tm -------------------------------------------------------------------------------- /lib/misc/iter.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/misc/iter.tm -------------------------------------------------------------------------------- /lib/misc/jobs.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/misc/jobs.tm -------------------------------------------------------------------------------- /lib/misc/pkg-mem.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/misc/pkg-mem.tm -------------------------------------------------------------------------------- /lib/misc/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/misc/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/pkggen/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/pkggen/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/pkggen/teapot-package-gen-auto.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/pkggen/teapot-package-gen-auto.tm -------------------------------------------------------------------------------- /lib/pkggen/teapot-package-gen-pkgIndex.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/pkggen/teapot-package-gen-pkgIndex.tm -------------------------------------------------------------------------------- /lib/pkggen/teapot-package-gen-tm.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/pkggen/teapot-package-gen-tm.tm -------------------------------------------------------------------------------- /lib/pkggen/teapot-package-gen-zip.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/pkggen/teapot-package-gen-zip.tm -------------------------------------------------------------------------------- /lib/pkggen/teapot-package-gen.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/pkggen/teapot-package-gen.tm -------------------------------------------------------------------------------- /lib/prefdk/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/prefdk/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/prefdk/pref-devkit.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/prefdk/pref-devkit.tm -------------------------------------------------------------------------------- /lib/preferences/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/preferences/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/preferences/pref-stdsr-oo.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/preferences/pref-stdsr-oo.tm -------------------------------------------------------------------------------- /lib/preferences/pref-stdsr.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/preferences/pref-stdsr.tm -------------------------------------------------------------------------------- /lib/preferences/pref.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/preferences/pref.tm -------------------------------------------------------------------------------- /lib/preftp/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/preftp/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/preftp/pref-teapot.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/preftp/pref-teapot.tm -------------------------------------------------------------------------------- /lib/repository/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/repository/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/repository/repository-api.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/repository/repository-api.tm -------------------------------------------------------------------------------- /lib/repository/repository-cache.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/repository/repository-cache.tm -------------------------------------------------------------------------------- /lib/repository/repository-local.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/repository/repository-local.tm -------------------------------------------------------------------------------- /lib/repository/repository-localma.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/repository/repository-localma.tm -------------------------------------------------------------------------------- /lib/repository/repository-mem.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/repository/repository-mem.tm -------------------------------------------------------------------------------- /lib/repository/repository-pool.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/repository/repository-pool.tm -------------------------------------------------------------------------------- /lib/repository/repository-prefix.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/repository/repository-prefix.tm -------------------------------------------------------------------------------- /lib/repository/repository-provided.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/repository/repository-provided.tm -------------------------------------------------------------------------------- /lib/repository/repository-proxy.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/repository/repository-proxy.tm -------------------------------------------------------------------------------- /lib/repository/repository-resolve.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/repository/repository-resolve.tm -------------------------------------------------------------------------------- /lib/repository/repository-shell.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/repository/repository-shell.tm -------------------------------------------------------------------------------- /lib/repository/repository-sqlitedir.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/repository/repository-sqlitedir.tm -------------------------------------------------------------------------------- /lib/repository/repository-sys.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/repository/repository-sys.tm -------------------------------------------------------------------------------- /lib/repository/repository-tap.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/repository/repository-tap.tm -------------------------------------------------------------------------------- /lib/repository/repository-tiedir.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/repository/repository-tiedir.tm -------------------------------------------------------------------------------- /lib/repository/repository-union.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/repository/repository-union.tm -------------------------------------------------------------------------------- /lib/repository/teapot-repository-pkgIndex.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/repository/teapot-repository-pkgIndex.tm -------------------------------------------------------------------------------- /lib/repository/teapot-wserver.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/repository/teapot-wserver.tm -------------------------------------------------------------------------------- /lib/tap/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tap/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/tap/tap-cache.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tap/tap-cache.tm -------------------------------------------------------------------------------- /lib/tap/tap-db-files.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tap/tap-db-files.tm -------------------------------------------------------------------------------- /lib/tap/tap-db-loader.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tap/tap-db-loader.tm -------------------------------------------------------------------------------- /lib/tap/tap-db-paths.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tap/tap-db-paths.tm -------------------------------------------------------------------------------- /lib/tap/tap-db.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tap/tap-db.tm -------------------------------------------------------------------------------- /lib/tbcload/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/ChangeLog -------------------------------------------------------------------------------- /lib/tbcload/DEPENDENCIES: -------------------------------------------------------------------------------- 1 | # List each dependent module on a line by itself 2 | tcl 3 | -------------------------------------------------------------------------------- /lib/tbcload/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/Makefile.in -------------------------------------------------------------------------------- /lib/tbcload/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/aclocal.m4 -------------------------------------------------------------------------------- /lib/tbcload/cmpInt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/cmpInt.h -------------------------------------------------------------------------------- /lib/tbcload/cmpProcBody.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/cmpProcBody.c -------------------------------------------------------------------------------- /lib/tbcload/cmpRPkg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/cmpRPkg.c -------------------------------------------------------------------------------- /lib/tbcload/cmpRead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/cmpRead.c -------------------------------------------------------------------------------- /lib/tbcload/config/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/config/ChangeLog -------------------------------------------------------------------------------- /lib/tbcload/config/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/config/config.guess -------------------------------------------------------------------------------- /lib/tbcload/config/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/config/config.sub -------------------------------------------------------------------------------- /lib/tbcload/config/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/config/install-sh -------------------------------------------------------------------------------- /lib/tbcload/config/installFile.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/config/installFile.tcl -------------------------------------------------------------------------------- /lib/tbcload/config/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/config/mkinstalldirs -------------------------------------------------------------------------------- /lib/tbcload/config/tcl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/config/tcl.m4 -------------------------------------------------------------------------------- /lib/tbcload/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/configure -------------------------------------------------------------------------------- /lib/tbcload/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/configure.in -------------------------------------------------------------------------------- /lib/tbcload/license.terms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/license.terms -------------------------------------------------------------------------------- /lib/tbcload/proTbcLoad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/proTbcLoad.h -------------------------------------------------------------------------------- /lib/tbcload/tclconfig/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tclconfig/README.txt -------------------------------------------------------------------------------- /lib/tbcload/tclconfig/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tclconfig/install-sh -------------------------------------------------------------------------------- /lib/tbcload/tclconfig/tcl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tclconfig/tcl.m4 -------------------------------------------------------------------------------- /lib/tbcload/tests/all.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/all.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/cmpRead.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/cmpRead.test -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/aux1.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/aux1.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/break.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/break.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/break1.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/break1.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/break2.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/break2.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/catch.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/catch.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/catch1.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/catch1.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/cont.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/cont.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/cont1.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/cont1.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/cont2.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/cont2.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/expr.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/expr.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/expr1.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/expr1.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/expr2.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/expr2.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/for.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/for.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/foreach.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/foreach.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/interp.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/interp.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/override.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/override.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/proc.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/proc.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/procbod1.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/procbod1.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/procbod2.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/procbod2.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/procbod3.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/procbod3.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/procbreak1.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/procbreak1.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/proccatch1.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/proccatch1.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/proccatch2.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/proccatch2.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/proccontinue1.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/proccontinue1.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/procepc1.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/procepc1.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/procepc2.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/procepc2.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/procshd1.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/procshd1.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/procshd2.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/procshd2.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/procshd3.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/procshd3.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/procshd4.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/procshd4.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/procshd5.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/procshd5.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/procshd6.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/procshd6.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/procshd7.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/procshd7.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/procshd8.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/procshd8.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/procvar1.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/procvar1.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/procvar2.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/procvar2.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tbc10/while.tbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tbc10/while.tbc -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/aux1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/aux1.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/break.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/break.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/break1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/break1.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/break2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/break2.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/catch.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/catch.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/catch1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/catch1.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/cont.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/cont.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/cont1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/cont1.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/cont2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/cont2.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/expr.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/expr.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/expr1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/expr1.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/expr2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/expr2.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/fail.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/fail.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/for.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/for.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/foreach.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/foreach.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/hello.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/hello.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/interp.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/interp.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/override.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/override.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/proc.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/proc.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procRedef.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procRedef.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procRedefNub.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procRedefNub.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procarg1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procarg1.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procarg2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procarg2.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procarg3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procarg3.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procbod1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procbod1.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procbod2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procbod2.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procbod3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procbod3.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procbreak1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procbreak1.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/proccatch1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/proccatch1.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/proccatch2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/proccatch2.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/proccontinue1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/proccontinue1.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procepc1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procepc1.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procepc2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procepc2.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procerr1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procerr1.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procshd1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procshd1.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procshd2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procshd2.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procshd3.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procshd3.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procshd4.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procshd4.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procshd5.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procshd5.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procshd6.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procshd6.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procshd7.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procshd7.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procshd8.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procshd8.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procvar1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procvar1.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/procvar2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/procvar2.tcl -------------------------------------------------------------------------------- /lib/tbcload/tests/tcl/while.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tests/tcl/while.tcl -------------------------------------------------------------------------------- /lib/tbcload/tools/check_manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tools/check_manifest -------------------------------------------------------------------------------- /lib/tbcload/tools/genStubs.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tbcload/tools/genStubs.tcl -------------------------------------------------------------------------------- /lib/tclcompiler/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/ChangeLog -------------------------------------------------------------------------------- /lib/tclcompiler/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/Makefile.in -------------------------------------------------------------------------------- /lib/tclcompiler/aclocal.m4: -------------------------------------------------------------------------------- 1 | builtin(include,tclconfig/tcl.m4) 2 | -------------------------------------------------------------------------------- /lib/tclcompiler/cmpWPkg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/cmpWPkg.c -------------------------------------------------------------------------------- /lib/tclcompiler/cmpWrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/cmpWrite.c -------------------------------------------------------------------------------- /lib/tclcompiler/cmpWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/cmpWrite.h -------------------------------------------------------------------------------- /lib/tclcompiler/cmptest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/cmptest.c -------------------------------------------------------------------------------- /lib/tclcompiler/config/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/config/ChangeLog -------------------------------------------------------------------------------- /lib/tclcompiler/config/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/config/config.guess -------------------------------------------------------------------------------- /lib/tclcompiler/config/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/config/config.sub -------------------------------------------------------------------------------- /lib/tclcompiler/config/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/config/install-sh -------------------------------------------------------------------------------- /lib/tclcompiler/config/installFile.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/config/installFile.tcl -------------------------------------------------------------------------------- /lib/tclcompiler/config/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/config/mkinstalldirs -------------------------------------------------------------------------------- /lib/tclcompiler/config/tcl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/config/tcl.m4 -------------------------------------------------------------------------------- /lib/tclcompiler/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/configure -------------------------------------------------------------------------------- /lib/tclcompiler/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/configure.in -------------------------------------------------------------------------------- /lib/tclcompiler/license.terms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/license.terms -------------------------------------------------------------------------------- /lib/tclcompiler/tclconfig/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/tclconfig/README.txt -------------------------------------------------------------------------------- /lib/tclcompiler/tclconfig/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/tclconfig/install-sh -------------------------------------------------------------------------------- /lib/tclcompiler/tclconfig/tcl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/tclconfig/tcl.m4 -------------------------------------------------------------------------------- /lib/tclcompiler/tests/test_jump_rewrite.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclcompiler/tests/test_jump_rewrite.tcl -------------------------------------------------------------------------------- /lib/tcldevkit-config/config.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tcldevkit-config/config.tcl -------------------------------------------------------------------------------- /lib/tcldevkit-config/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tcldevkit-config/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/tcldevkit-config/tcldevkit-config.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tcldevkit-config/tcldevkit-config.tm -------------------------------------------------------------------------------- /lib/tcldevkit-config/teapot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tcldevkit-config/teapot.txt -------------------------------------------------------------------------------- /lib/tclparser/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/ChangeLog -------------------------------------------------------------------------------- /lib/tclparser/DEPENDENCIES: -------------------------------------------------------------------------------- 1 | # List each dependent module on a line by itself 2 | tcl 3 | -------------------------------------------------------------------------------- /lib/tclparser/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/Makefile.in -------------------------------------------------------------------------------- /lib/tclparser/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/README -------------------------------------------------------------------------------- /lib/tclparser/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/aclocal.m4 -------------------------------------------------------------------------------- /lib/tclparser/config/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/config/ChangeLog -------------------------------------------------------------------------------- /lib/tclparser/config/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/config/config.guess -------------------------------------------------------------------------------- /lib/tclparser/config/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/config/config.sub -------------------------------------------------------------------------------- /lib/tclparser/config/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/config/install-sh -------------------------------------------------------------------------------- /lib/tclparser/config/installFile.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/config/installFile.tcl -------------------------------------------------------------------------------- /lib/tclparser/config/mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/config/mkinstalldirs -------------------------------------------------------------------------------- /lib/tclparser/config/tcl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/config/tcl.m4 -------------------------------------------------------------------------------- /lib/tclparser/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/configure -------------------------------------------------------------------------------- /lib/tclparser/configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/configure.in -------------------------------------------------------------------------------- /lib/tclparser/doc/parse.man: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/doc/parse.man -------------------------------------------------------------------------------- /lib/tclparser/doc/parse.n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/doc/parse.n -------------------------------------------------------------------------------- /lib/tclparser/license.terms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/license.terms -------------------------------------------------------------------------------- /lib/tclparser/tclParser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/tclParser.c -------------------------------------------------------------------------------- /lib/tclparser/tclconfig/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/tclconfig/README.txt -------------------------------------------------------------------------------- /lib/tclparser/tclconfig/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/tclconfig/install-sh -------------------------------------------------------------------------------- /lib/tclparser/tclconfig/tcl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/tclconfig/tcl.m4 -------------------------------------------------------------------------------- /lib/tclparser/tests/all.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/tests/all.tcl -------------------------------------------------------------------------------- /lib/tclparser/tests/parse.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/tests/parse.test -------------------------------------------------------------------------------- /lib/tclparser/tests/parseCmd.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/tests/parseCmd.test -------------------------------------------------------------------------------- /lib/tclparser/tools/check_manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/tools/check_manifest -------------------------------------------------------------------------------- /lib/tclparser/tools/genStubs.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/tclparser/tools/genStubs.tcl -------------------------------------------------------------------------------- /lib/teapot/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/teapot/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/teapot/teapot-config.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/teapot/teapot-config.tm -------------------------------------------------------------------------------- /lib/teapotbase/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/teapotbase/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/teapotbase/teapot-entity.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/teapotbase/teapot-entity.tm -------------------------------------------------------------------------------- /lib/teapotbase/teapot-instance.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/teapotbase/teapot-instance.tm -------------------------------------------------------------------------------- /lib/teapotbase/teapot-listspec.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/teapotbase/teapot-listspec.tm -------------------------------------------------------------------------------- /lib/teapotbase/teapot-query.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/teapotbase/teapot-query.tm -------------------------------------------------------------------------------- /lib/teapotbase/teapot-redirect.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/teapotbase/teapot-redirect.tm -------------------------------------------------------------------------------- /lib/teapotbase/teapot-reference.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/teapotbase/teapot-reference.tm -------------------------------------------------------------------------------- /lib/teapotbase/teapot-version.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/teapotbase/teapot-version.tm -------------------------------------------------------------------------------- /lib/teapotlink/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/teapotlink/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/teapotlink/teapot-link.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/teapotlink/teapot-link.tm -------------------------------------------------------------------------------- /lib/teapotlink/teapot-plat.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/teapotlink/teapot-plat.tm -------------------------------------------------------------------------------- /lib/teapotlink/teapot-tmbackport.tm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/teapotlink/teapot-tmbackport.tm -------------------------------------------------------------------------------- /lib/wub84/Entity.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/wub84/Entity.tcl -------------------------------------------------------------------------------- /lib/wub84/HttpUtils.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/wub84/HttpUtils.tcl -------------------------------------------------------------------------------- /lib/wub84/Httpd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/wub84/Httpd.tcl -------------------------------------------------------------------------------- /lib/wub84/Listener.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/wub84/Listener.tcl -------------------------------------------------------------------------------- /lib/wub84/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/wub84/Makefile -------------------------------------------------------------------------------- /lib/wub84/NOTES.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/wub84/NOTES.old -------------------------------------------------------------------------------- /lib/wub84/PROBLEMS.stx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/wub84/PROBLEMS.stx -------------------------------------------------------------------------------- /lib/wub84/Pool.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/wub84/Pool.tcl -------------------------------------------------------------------------------- /lib/wub84/TODO.stx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/wub84/TODO.stx -------------------------------------------------------------------------------- /lib/wub84/Timer.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/wub84/Timer.tcl -------------------------------------------------------------------------------- /lib/wub84/dictcompat.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/wub84/dictcompat.tcl -------------------------------------------------------------------------------- /lib/wub84/pkgIndex.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/wub84/pkgIndex.tcl -------------------------------------------------------------------------------- /lib/wub84/teapot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveState/teapot/HEAD/lib/wub84/teapot.txt --------------------------------------------------------------------------------