├── .gitignore ├── README.md ├── docs ├── index.html └── tiddlywikicore.js ├── plugins └── graph │ ├── DefaultColourMappings.multids │ ├── ViewTemplateBodyFilter │ ├── graph.tid │ └── properties.tid │ ├── edges │ ├── fields │ │ ├── list.tid │ │ └── tags.tid │ └── functions │ │ ├── links.tid │ │ └── transcludes.tid │ ├── fieldtypes │ ├── filter.js │ ├── list.js │ └── title.js │ ├── filterrunprefixes │ └── cache.js │ ├── filters │ └── gettyped.js │ ├── graphengine.js │ ├── icon.tid │ ├── images │ └── drag.tid │ ├── macros │ ├── action.addedge.tid │ ├── edges.typed.tid │ ├── graph.view.tid │ ├── node.default.tid │ ├── nodes.neighbors.tid │ ├── nodes.writable.tid │ ├── properties.persistent.tid │ ├── properties.popup.tid │ ├── properties.river.tid │ ├── properties.settings.tid │ ├── properties.stack.tid │ └── tiddlywiki.files │ ├── plugin.info │ ├── presettypes │ ├── edges │ │ ├── fields.tid │ │ └── functions.tid │ └── nodes │ │ └── stack.tid │ ├── propertytypes │ ├── actions.js │ ├── boolean.js │ ├── enum.js │ ├── image.js │ ├── number.js │ ├── string.js │ └── tiddlywiki.files │ ├── readme.tid │ ├── relink │ ├── attributes.js │ ├── attributes.multids │ ├── configprefix.js │ ├── fieldedgeprefix.js │ ├── fields.multids │ ├── graphprefix.js │ ├── operators.multids │ ├── propertyfields.js │ └── utils.js │ ├── settings.tid │ ├── startup │ └── messages.js │ ├── stylesheets │ ├── base.css.tid │ ├── fullscreen.css.tid │ ├── fullscreen │ │ ├── core.css │ │ └── core.css.meta │ └── popup.css.tid │ ├── subfilters.tid │ ├── tags │ ├── GraphToolbar.tid │ ├── SettingsTab.tid │ ├── Template.tid │ └── ViewEditTemplate.tid │ ├── templates │ ├── live-graph.tid │ └── standard-graph.tid │ ├── ui │ ├── Buttons │ │ ├── center.tid │ │ ├── export.tid │ │ ├── fullscreen.tid │ │ ├── settings.tid │ │ └── tiddlywiki.files │ ├── EditTemplate │ │ ├── Edges.tid │ │ ├── Neighbors.tid │ │ ├── Nodes.tid │ │ ├── Popups.tid │ │ ├── Properties.tid │ │ └── tiddlywiki.files │ ├── Modals │ │ ├── NewPropertySet.tid │ │ ├── NewView.tid │ │ ├── Select.tid │ │ ├── SelectField.tid │ │ ├── SelectTiddler.tid │ │ ├── Tiddler.tid │ │ └── TiddlerHeader.tid │ ├── PropertyTypes │ │ ├── boolean.tid │ │ ├── color.tid │ │ ├── enum.tid │ │ └── number.tid │ ├── Settings │ │ ├── Engine.tid │ │ ├── Graphs.tid │ │ ├── Graphs │ │ │ └── EditTemplate.tid │ │ ├── Properties.tid │ │ ├── Properties │ │ │ └── ObjectsTypeTemplate.tid │ │ └── Toolbar.tid │ ├── SideBar │ │ └── Graph.tid │ ├── Toolbars │ │ └── GraphToolbar.tid │ ├── ViewTemplate │ │ ├── graph-object.tid │ │ ├── graph.tid │ │ └── properties.tid │ ├── grouped-tabs.tid │ └── selector.tid │ ├── utils.js │ └── widgets │ ├── action-delay.js │ ├── action-modal.js │ ├── action-typed.js │ ├── action-with.js │ ├── boundingbox.js │ ├── fieldTranscriber.js │ ├── fieldtranscriber │ ├── filter.js │ ├── json.js │ └── plain.js │ ├── graphobject.js │ ├── messagerelay.js │ ├── properties.js │ ├── subclass │ ├── edge.js │ ├── graph.js │ └── node.js │ └── tiddlywiki.files ├── tiddlers ├── API │ ├── Filters.tid │ ├── Graph Objects.tid │ ├── Messages.tid │ ├── Templates.tid │ ├── Widgets.tid │ └── tiddlywiki.files ├── Chinese Public Library.tid ├── Concepts │ ├── Field_Types.tid │ ├── Frontend_and_backend.tid │ ├── GraphTiddler.tid │ ├── Graph_Properties.tid │ ├── Graph_Templates.tid │ ├── Neighbors.tid │ └── Property_Sets.tid ├── Current Tiddler.tid ├── Data │ ├── Alchemy │ │ ├── Air.tid │ │ ├── Earth.tid │ │ ├── Fire.tid │ │ └── Water.tid │ ├── Dieties │ │ ├── Aphrodite.tid │ │ ├── Ares.tid │ │ ├── Artemis.tid │ │ ├── Athena.tid │ │ ├── Balder.tid │ │ ├── Cronus.tid │ │ ├── Demeter.tid │ │ ├── Freya.tid │ │ ├── Freyr.tid │ │ ├── Frigg.tid │ │ ├── Hades.tid │ │ ├── Heimdall.tid │ │ ├── Hephaestus.tid │ │ ├── Hestia.tid │ │ ├── Njord.tid │ │ ├── Odin.tid │ │ ├── Poseidon.tid │ │ ├── Thor.tid │ │ ├── Vidar.tid │ │ └── Zeus.tid │ ├── Myth │ │ ├── Achilles.tid │ │ ├── Cadmus.tid │ │ ├── Cerberus.tid │ │ ├── Cetus.tid │ │ ├── Chimera.tid │ │ ├── Dragon.tid │ │ ├── Griffin.tid │ │ ├── Heracles.tid │ │ ├── Hero.tid │ │ ├── Hydra.tid │ │ ├── Ismenian Dragon.tid │ │ ├── Manticore.tid │ │ ├── Medusa.tid │ │ ├── Minotaur.tid │ │ ├── Multi-Headed.tid │ │ ├── Nemean Lion.tid │ │ ├── Orthos.tid │ │ ├── Pegasus.tid │ │ ├── Perseus.tid │ │ ├── Stymphalian Birds.tid │ │ └── Theseus.tid │ └── tiddlywiki.files ├── DataTiddlers.tid ├── Demo │ ├── Engine.tid │ ├── Showcase.tid │ └── Wikitext.tid ├── Documentation.tid ├── Documentation │ ├── API.tid │ ├── Concepts.tid │ ├── Engines.tid │ ├── FAQ.tid │ ├── Installation.tid │ ├── Other Plugins.tid │ ├── Tutorials.tid │ ├── Versions.tid │ └── tiddlywiki.files ├── FAQ │ ├── HowDoIMakeEveryTiddlerShowAGraphOfConnections.tid │ └── HowDoIStyleCertainKindsOfTiddlersDifferently.tid ├── Field_Types │ ├── Filter.tid │ ├── List.tid │ ├── Title.tid │ └── tiddlywiki.files ├── Filters │ ├── cache.tid │ ├── cache_Examples.tid │ ├── cache_avoid_function.tid │ ├── cache_limit_variable.tid │ ├── gettyped (Examples).tid │ └── gettyped.tid ├── Flibbles.tid ├── GUI.tid ├── Giants_Monsters_Dragons.tid ├── Graph.tid ├── Graph_Objects │ ├── Edges.tid │ ├── Edges │ │ ├── Fields.tid │ │ └── Functions.tid │ ├── Graph.tid │ ├── Nodes.tid │ ├── Nodes │ │ └── Stack.tid │ └── tiddlywiki.files ├── Images │ ├── Shih_tzu.jpg │ ├── air.svg │ ├── earth.svg │ ├── favicon.png │ ├── fire.svg │ ├── hero.svg │ ├── tiddlywiki.files │ └── water.svg ├── Install_pills.tid ├── Messages │ ├── graph-center-node.tid │ ├── graph-move-view.tid │ └── tiddlywiki.files ├── Modules │ └── graphengine.tid ├── Nothing, please.tid ├── Other_plugins_by_Flibbles.tid ├── Plugins │ ├── Focused Tiddler.tid │ ├── HotZone.tid │ ├── Mermaid.tid │ ├── Orb.tid │ ├── Relink.tid │ ├── TiddlyMap.tid │ ├── Topstoryview.tid │ ├── Uglify.tid │ └── Vis-Network.tid ├── Position.tid ├── Showcase │ ├── Drag and Drop.tid │ ├── Palette Support.tid │ ├── Responsive.tid │ └── tiddlywiki.files ├── Sidebar.tid ├── System.multids ├── System │ ├── core │ │ └── ui_TiddlerInfo_Graph.tid │ ├── edges │ │ ├── father.tid │ │ └── wrote.tid │ ├── graph │ │ ├── Alchemy.tid │ │ ├── Example.tid │ │ ├── Info View.tid │ │ ├── Introduction.tid │ │ ├── Live View.tid │ │ └── Pantheon.tid │ ├── macros │ │ ├── doc-macros.tid │ │ ├── doc.codeblock.tid │ │ ├── doc.demo.tid │ │ ├── doc.example.tid │ │ ├── doc.implementation.tid │ │ ├── doc.inhouse.tid │ │ ├── doc.show.tid │ │ └── tiddlywiki.files │ ├── nodes │ │ ├── author.tid │ │ └── ruler.tid │ ├── plugins │ │ ├── Gk0Wk_focused-tiddler.json │ │ └── felixhayashi_topstoryview.json │ ├── styles │ │ ├── doc-site.css │ │ ├── doc-styles.tid │ │ ├── dragger.tid │ │ └── tiddlywiki.files │ └── templates │ │ └── tutorial.tid ├── TableOfContents.tid ├── Templates │ ├── live-graph.tid │ ├── standard-graph.tid │ └── tiddlywiki.files ├── Tests │ ├── action-delay.js │ ├── action-modal.js │ ├── action-with.js │ ├── action.addedge.js │ ├── adapters.js │ ├── boundingbox.js │ ├── cache.js │ ├── edge.js │ ├── edges.typed.js │ ├── enum.js │ ├── events.js │ ├── fieldtranscriber.js │ ├── graph.js │ ├── graph.view.js │ ├── graphengine.js │ ├── image.js │ ├── live-graph.js │ ├── messagerelay.js │ ├── messages.js │ ├── modules │ │ ├── action-test.js │ │ ├── alsoAdapter.js │ │ ├── document.js │ │ ├── eventTarget.js │ │ ├── testAdapter.js │ │ └── window.js │ ├── node.default.js │ ├── node.js │ ├── nodes.neighbors.js │ ├── nodes.writable.js │ ├── properties.js │ ├── properties.persistent.js │ ├── properties.popup.js │ ├── properties.river.js │ ├── properties.settings.js │ ├── properties.stack.js │ ├── relink-attributes.js │ ├── relink-configprefix.js │ ├── relink-fieldedgeprefix.js │ ├── relink-graphprefix.js │ ├── relink-propertyFields.js │ ├── settings.js │ ├── sidebar.js │ ├── standard-graph.js │ ├── tiddlywiki.files │ ├── typed.js │ └── utils.js ├── TiddlyWiki.tid ├── Tutorials │ ├── Bottom-Up.tid │ ├── Bottom-Up │ │ ├── 0.Introduction.tid │ │ ├── 1.Hello World.tid │ │ ├── 2.Edges.tid │ │ ├── 3.Graph Properties.tid │ │ ├── 4.Placing Nodes.tid │ │ ├── 5.Properties En Masse.tid │ │ ├── 6.Building Bigger.tid │ │ ├── 7.Making your own tools.tid │ │ └── tiddlywiki.files │ ├── Super_Simple_Template.tid │ ├── Top-Down.tid │ └── Top-Down │ │ ├── 0.Introduction.tid │ │ ├── 1.Click on Me.tid │ │ ├── 2.Adding Nodes.tid │ │ ├── 3.Configuring Edge Types.tid │ │ ├── 4.Fiddling with your Graph.tid │ │ ├── 5.Styling your Graph.tid │ │ ├── 6.The Properties Tab.tid │ │ ├── 7.The Node Stack.tid │ │ ├── 8.Beyond the Sidebar.tid │ │ ├── 9.What's Next.tid │ │ └── tiddlywiki.files ├── Typed Tools (Examples).tid ├── Typed Tools.tid ├── Versions │ ├── 0.0.0.tid │ ├── 0.1.0.tid │ ├── 0.2.0.tid │ ├── 0.2.1.tid │ ├── 0.2.2.tid │ ├── 0.2.3.tid │ ├── 0.3.0.tid │ ├── 0.3.1.tid │ ├── 0.3.2.tid │ ├── 1.0.0.tid │ ├── 1.0.1.tid │ ├── 1.1.0.tid │ ├── 1.2.0.tid │ ├── 1.3.0.tid │ ├── 1.4.0.tid │ ├── 1.5.0.tid │ ├── 1.6.0.tid │ └── tiddlywiki.files └── Widgets │ ├── Action.AddEdgeWidget.tid │ ├── ActionAddTypedWidget.tid │ ├── ActionDelayWidget.tid │ ├── ActionModalWidget.tid │ ├── ActionRemoveTypedWidget.tid │ ├── ActionWithWidget.tid │ ├── BoundingBoxWidget.tid │ ├── EdgeWidget.tid │ ├── Edges.TypedWidget.tid │ ├── Examples │ ├── Edges.Typed.tid │ ├── Properties.Popup.tid │ ├── Properties.tid │ └── tiddlywiki.files │ ├── FieldTranscriberWidget.tid │ ├── Graph.ViewWidget.tid │ ├── GraphObjectWidget.tid │ ├── GraphWidget.tid │ ├── MessageRelayWidget.tid │ ├── Node.DefaultWidget.tid │ ├── NodeWidget.tid │ ├── Nodes.NeighborsWidget.tid │ ├── Nodes.WritableWidget.tid │ ├── Properties.PersistentWidget.tid │ ├── Properties.PopupWidget.tid │ ├── Properties.RiverWidget.tid │ ├── Properties.SettingsWidget.tid │ ├── Properties.StackWidget.tid │ └── PropertiesWidget.tid └── tiddlywiki.info /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/tiddlywikicore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/docs/tiddlywikicore.js -------------------------------------------------------------------------------- /plugins/graph/DefaultColourMappings.multids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/DefaultColourMappings.multids -------------------------------------------------------------------------------- /plugins/graph/ViewTemplateBodyFilter/graph.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ViewTemplateBodyFilter/graph.tid -------------------------------------------------------------------------------- /plugins/graph/ViewTemplateBodyFilter/properties.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ViewTemplateBodyFilter/properties.tid -------------------------------------------------------------------------------- /plugins/graph/edges/fields/list.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/edges/fields/list.tid -------------------------------------------------------------------------------- /plugins/graph/edges/fields/tags.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/edges/fields/tags.tid -------------------------------------------------------------------------------- /plugins/graph/edges/functions/links.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/edges/functions/links.tid -------------------------------------------------------------------------------- /plugins/graph/edges/functions/transcludes.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/edges/functions/transcludes.tid -------------------------------------------------------------------------------- /plugins/graph/fieldtypes/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/fieldtypes/filter.js -------------------------------------------------------------------------------- /plugins/graph/fieldtypes/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/fieldtypes/list.js -------------------------------------------------------------------------------- /plugins/graph/fieldtypes/title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/fieldtypes/title.js -------------------------------------------------------------------------------- /plugins/graph/filterrunprefixes/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/filterrunprefixes/cache.js -------------------------------------------------------------------------------- /plugins/graph/filters/gettyped.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/filters/gettyped.js -------------------------------------------------------------------------------- /plugins/graph/graphengine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/graphengine.js -------------------------------------------------------------------------------- /plugins/graph/icon.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/icon.tid -------------------------------------------------------------------------------- /plugins/graph/images/drag.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/images/drag.tid -------------------------------------------------------------------------------- /plugins/graph/macros/action.addedge.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/macros/action.addedge.tid -------------------------------------------------------------------------------- /plugins/graph/macros/edges.typed.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/macros/edges.typed.tid -------------------------------------------------------------------------------- /plugins/graph/macros/graph.view.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/macros/graph.view.tid -------------------------------------------------------------------------------- /plugins/graph/macros/node.default.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/macros/node.default.tid -------------------------------------------------------------------------------- /plugins/graph/macros/nodes.neighbors.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/macros/nodes.neighbors.tid -------------------------------------------------------------------------------- /plugins/graph/macros/nodes.writable.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/macros/nodes.writable.tid -------------------------------------------------------------------------------- /plugins/graph/macros/properties.persistent.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/macros/properties.persistent.tid -------------------------------------------------------------------------------- /plugins/graph/macros/properties.popup.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/macros/properties.popup.tid -------------------------------------------------------------------------------- /plugins/graph/macros/properties.river.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/macros/properties.river.tid -------------------------------------------------------------------------------- /plugins/graph/macros/properties.settings.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/macros/properties.settings.tid -------------------------------------------------------------------------------- /plugins/graph/macros/properties.stack.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/macros/properties.stack.tid -------------------------------------------------------------------------------- /plugins/graph/macros/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/macros/tiddlywiki.files -------------------------------------------------------------------------------- /plugins/graph/plugin.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/plugin.info -------------------------------------------------------------------------------- /plugins/graph/presettypes/edges/fields.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/presettypes/edges/fields.tid -------------------------------------------------------------------------------- /plugins/graph/presettypes/edges/functions.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/presettypes/edges/functions.tid -------------------------------------------------------------------------------- /plugins/graph/presettypes/nodes/stack.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/presettypes/nodes/stack.tid -------------------------------------------------------------------------------- /plugins/graph/propertytypes/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/propertytypes/actions.js -------------------------------------------------------------------------------- /plugins/graph/propertytypes/boolean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/propertytypes/boolean.js -------------------------------------------------------------------------------- /plugins/graph/propertytypes/enum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/propertytypes/enum.js -------------------------------------------------------------------------------- /plugins/graph/propertytypes/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/propertytypes/image.js -------------------------------------------------------------------------------- /plugins/graph/propertytypes/number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/propertytypes/number.js -------------------------------------------------------------------------------- /plugins/graph/propertytypes/string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/propertytypes/string.js -------------------------------------------------------------------------------- /plugins/graph/propertytypes/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/propertytypes/tiddlywiki.files -------------------------------------------------------------------------------- /plugins/graph/readme.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/readme.tid -------------------------------------------------------------------------------- /plugins/graph/relink/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/relink/attributes.js -------------------------------------------------------------------------------- /plugins/graph/relink/attributes.multids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/relink/attributes.multids -------------------------------------------------------------------------------- /plugins/graph/relink/configprefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/relink/configprefix.js -------------------------------------------------------------------------------- /plugins/graph/relink/fieldedgeprefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/relink/fieldedgeprefix.js -------------------------------------------------------------------------------- /plugins/graph/relink/fields.multids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/relink/fields.multids -------------------------------------------------------------------------------- /plugins/graph/relink/graphprefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/relink/graphprefix.js -------------------------------------------------------------------------------- /plugins/graph/relink/operators.multids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/relink/operators.multids -------------------------------------------------------------------------------- /plugins/graph/relink/propertyfields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/relink/propertyfields.js -------------------------------------------------------------------------------- /plugins/graph/relink/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/relink/utils.js -------------------------------------------------------------------------------- /plugins/graph/settings.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/settings.tid -------------------------------------------------------------------------------- /plugins/graph/startup/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/startup/messages.js -------------------------------------------------------------------------------- /plugins/graph/stylesheets/base.css.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/stylesheets/base.css.tid -------------------------------------------------------------------------------- /plugins/graph/stylesheets/fullscreen.css.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/stylesheets/fullscreen.css.tid -------------------------------------------------------------------------------- /plugins/graph/stylesheets/fullscreen/core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/stylesheets/fullscreen/core.css -------------------------------------------------------------------------------- /plugins/graph/stylesheets/fullscreen/core.css.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/stylesheets/fullscreen/core.css.meta -------------------------------------------------------------------------------- /plugins/graph/stylesheets/popup.css.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/stylesheets/popup.css.tid -------------------------------------------------------------------------------- /plugins/graph/subfilters.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/subfilters.tid -------------------------------------------------------------------------------- /plugins/graph/tags/GraphToolbar.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/tags/GraphToolbar.tid -------------------------------------------------------------------------------- /plugins/graph/tags/SettingsTab.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/tags/SettingsTab.tid -------------------------------------------------------------------------------- /plugins/graph/tags/Template.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/tags/Template.tid -------------------------------------------------------------------------------- /plugins/graph/tags/ViewEditTemplate.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/tags/ViewEditTemplate.tid -------------------------------------------------------------------------------- /plugins/graph/templates/live-graph.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/templates/live-graph.tid -------------------------------------------------------------------------------- /plugins/graph/templates/standard-graph.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/templates/standard-graph.tid -------------------------------------------------------------------------------- /plugins/graph/ui/Buttons/center.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/Buttons/center.tid -------------------------------------------------------------------------------- /plugins/graph/ui/Buttons/export.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/Buttons/export.tid -------------------------------------------------------------------------------- /plugins/graph/ui/Buttons/fullscreen.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/Buttons/fullscreen.tid -------------------------------------------------------------------------------- /plugins/graph/ui/Buttons/settings.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/Buttons/settings.tid -------------------------------------------------------------------------------- /plugins/graph/ui/Buttons/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/Buttons/tiddlywiki.files -------------------------------------------------------------------------------- /plugins/graph/ui/EditTemplate/Edges.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/EditTemplate/Edges.tid -------------------------------------------------------------------------------- /plugins/graph/ui/EditTemplate/Neighbors.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/EditTemplate/Neighbors.tid -------------------------------------------------------------------------------- /plugins/graph/ui/EditTemplate/Nodes.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/EditTemplate/Nodes.tid -------------------------------------------------------------------------------- /plugins/graph/ui/EditTemplate/Popups.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/EditTemplate/Popups.tid -------------------------------------------------------------------------------- /plugins/graph/ui/EditTemplate/Properties.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/EditTemplate/Properties.tid -------------------------------------------------------------------------------- /plugins/graph/ui/EditTemplate/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/EditTemplate/tiddlywiki.files -------------------------------------------------------------------------------- /plugins/graph/ui/Modals/NewPropertySet.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/Modals/NewPropertySet.tid -------------------------------------------------------------------------------- /plugins/graph/ui/Modals/NewView.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/Modals/NewView.tid -------------------------------------------------------------------------------- /plugins/graph/ui/Modals/Select.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/Modals/Select.tid -------------------------------------------------------------------------------- /plugins/graph/ui/Modals/SelectField.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/Modals/SelectField.tid -------------------------------------------------------------------------------- /plugins/graph/ui/Modals/SelectTiddler.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/Modals/SelectTiddler.tid -------------------------------------------------------------------------------- /plugins/graph/ui/Modals/Tiddler.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/Modals/Tiddler.tid -------------------------------------------------------------------------------- /plugins/graph/ui/Modals/TiddlerHeader.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/Modals/TiddlerHeader.tid -------------------------------------------------------------------------------- /plugins/graph/ui/PropertyTypes/boolean.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/PropertyTypes/boolean.tid -------------------------------------------------------------------------------- /plugins/graph/ui/PropertyTypes/color.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/PropertyTypes/color.tid -------------------------------------------------------------------------------- /plugins/graph/ui/PropertyTypes/enum.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/PropertyTypes/enum.tid -------------------------------------------------------------------------------- /plugins/graph/ui/PropertyTypes/number.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/PropertyTypes/number.tid -------------------------------------------------------------------------------- /plugins/graph/ui/Settings/Engine.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/Settings/Engine.tid -------------------------------------------------------------------------------- /plugins/graph/ui/Settings/Graphs.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/Settings/Graphs.tid -------------------------------------------------------------------------------- /plugins/graph/ui/Settings/Graphs/EditTemplate.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/Settings/Graphs/EditTemplate.tid -------------------------------------------------------------------------------- /plugins/graph/ui/Settings/Properties.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/Settings/Properties.tid -------------------------------------------------------------------------------- /plugins/graph/ui/Settings/Properties/ObjectsTypeTemplate.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/Settings/Properties/ObjectsTypeTemplate.tid -------------------------------------------------------------------------------- /plugins/graph/ui/Settings/Toolbar.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/Settings/Toolbar.tid -------------------------------------------------------------------------------- /plugins/graph/ui/SideBar/Graph.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/SideBar/Graph.tid -------------------------------------------------------------------------------- /plugins/graph/ui/Toolbars/GraphToolbar.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/Toolbars/GraphToolbar.tid -------------------------------------------------------------------------------- /plugins/graph/ui/ViewTemplate/graph-object.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/ViewTemplate/graph-object.tid -------------------------------------------------------------------------------- /plugins/graph/ui/ViewTemplate/graph.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/ViewTemplate/graph.tid -------------------------------------------------------------------------------- /plugins/graph/ui/ViewTemplate/properties.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/ViewTemplate/properties.tid -------------------------------------------------------------------------------- /plugins/graph/ui/grouped-tabs.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/grouped-tabs.tid -------------------------------------------------------------------------------- /plugins/graph/ui/selector.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/ui/selector.tid -------------------------------------------------------------------------------- /plugins/graph/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/utils.js -------------------------------------------------------------------------------- /plugins/graph/widgets/action-delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/widgets/action-delay.js -------------------------------------------------------------------------------- /plugins/graph/widgets/action-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/widgets/action-modal.js -------------------------------------------------------------------------------- /plugins/graph/widgets/action-typed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/widgets/action-typed.js -------------------------------------------------------------------------------- /plugins/graph/widgets/action-with.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/widgets/action-with.js -------------------------------------------------------------------------------- /plugins/graph/widgets/boundingbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/widgets/boundingbox.js -------------------------------------------------------------------------------- /plugins/graph/widgets/fieldTranscriber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/widgets/fieldTranscriber.js -------------------------------------------------------------------------------- /plugins/graph/widgets/fieldtranscriber/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/widgets/fieldtranscriber/filter.js -------------------------------------------------------------------------------- /plugins/graph/widgets/fieldtranscriber/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/widgets/fieldtranscriber/json.js -------------------------------------------------------------------------------- /plugins/graph/widgets/fieldtranscriber/plain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/widgets/fieldtranscriber/plain.js -------------------------------------------------------------------------------- /plugins/graph/widgets/graphobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/widgets/graphobject.js -------------------------------------------------------------------------------- /plugins/graph/widgets/messagerelay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/widgets/messagerelay.js -------------------------------------------------------------------------------- /plugins/graph/widgets/properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/widgets/properties.js -------------------------------------------------------------------------------- /plugins/graph/widgets/subclass/edge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/widgets/subclass/edge.js -------------------------------------------------------------------------------- /plugins/graph/widgets/subclass/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/widgets/subclass/graph.js -------------------------------------------------------------------------------- /plugins/graph/widgets/subclass/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/widgets/subclass/node.js -------------------------------------------------------------------------------- /plugins/graph/widgets/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/plugins/graph/widgets/tiddlywiki.files -------------------------------------------------------------------------------- /tiddlers/API/Filters.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/API/Filters.tid -------------------------------------------------------------------------------- /tiddlers/API/Graph Objects.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/API/Graph Objects.tid -------------------------------------------------------------------------------- /tiddlers/API/Messages.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/API/Messages.tid -------------------------------------------------------------------------------- /tiddlers/API/Templates.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/API/Templates.tid -------------------------------------------------------------------------------- /tiddlers/API/Widgets.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/API/Widgets.tid -------------------------------------------------------------------------------- /tiddlers/API/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/API/tiddlywiki.files -------------------------------------------------------------------------------- /tiddlers/Chinese Public Library.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Chinese Public Library.tid -------------------------------------------------------------------------------- /tiddlers/Concepts/Field_Types.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Concepts/Field_Types.tid -------------------------------------------------------------------------------- /tiddlers/Concepts/Frontend_and_backend.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Concepts/Frontend_and_backend.tid -------------------------------------------------------------------------------- /tiddlers/Concepts/GraphTiddler.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Concepts/GraphTiddler.tid -------------------------------------------------------------------------------- /tiddlers/Concepts/Graph_Properties.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Concepts/Graph_Properties.tid -------------------------------------------------------------------------------- /tiddlers/Concepts/Graph_Templates.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Concepts/Graph_Templates.tid -------------------------------------------------------------------------------- /tiddlers/Concepts/Neighbors.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Concepts/Neighbors.tid -------------------------------------------------------------------------------- /tiddlers/Concepts/Property_Sets.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Concepts/Property_Sets.tid -------------------------------------------------------------------------------- /tiddlers/Current Tiddler.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Current Tiddler.tid -------------------------------------------------------------------------------- /tiddlers/Data/Alchemy/Air.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Alchemy/Air.tid -------------------------------------------------------------------------------- /tiddlers/Data/Alchemy/Earth.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Alchemy/Earth.tid -------------------------------------------------------------------------------- /tiddlers/Data/Alchemy/Fire.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Alchemy/Fire.tid -------------------------------------------------------------------------------- /tiddlers/Data/Alchemy/Water.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Alchemy/Water.tid -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Aphrodite.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Dieties/Aphrodite.tid -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Ares.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Dieties/Ares.tid -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Artemis.tid: -------------------------------------------------------------------------------- 1 | tags: Deity Greek 2 | father: Zeus 3 | 4 | Goddess of the hunt. 5 | -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Athena.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Dieties/Athena.tid -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Balder.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Dieties/Balder.tid -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Cronus.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Dieties/Cronus.tid -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Demeter.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Dieties/Demeter.tid -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Freya.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Dieties/Freya.tid -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Freyr.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Dieties/Freyr.tid -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Frigg.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Dieties/Frigg.tid -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Hades.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Dieties/Hades.tid -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Heimdall.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Dieties/Heimdall.tid -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Hephaestus.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Dieties/Hephaestus.tid -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Hestia.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Dieties/Hestia.tid -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Njord.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Dieties/Njord.tid -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Odin.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Dieties/Odin.tid -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Poseidon.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Dieties/Poseidon.tid -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Thor.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Dieties/Thor.tid -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Vidar.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Dieties/Vidar.tid -------------------------------------------------------------------------------- /tiddlers/Data/Dieties/Zeus.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Dieties/Zeus.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Achilles.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Achilles.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Cadmus.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Cadmus.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Cerberus.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Cerberus.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Cetus.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Cetus.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Chimera.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Chimera.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Dragon.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Dragon.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Griffin.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Griffin.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Heracles.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Heracles.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Hero.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Hero.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Hydra.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Hydra.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Ismenian Dragon.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Ismenian Dragon.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Manticore.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Manticore.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Medusa.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Medusa.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Minotaur.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Minotaur.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Multi-Headed.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Multi-Headed.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Nemean Lion.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Nemean Lion.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Orthos.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Orthos.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Pegasus.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Pegasus.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Perseus.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Perseus.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Stymphalian Birds.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Stymphalian Birds.tid -------------------------------------------------------------------------------- /tiddlers/Data/Myth/Theseus.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/Myth/Theseus.tid -------------------------------------------------------------------------------- /tiddlers/Data/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Data/tiddlywiki.files -------------------------------------------------------------------------------- /tiddlers/DataTiddlers.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/DataTiddlers.tid -------------------------------------------------------------------------------- /tiddlers/Demo/Engine.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Demo/Engine.tid -------------------------------------------------------------------------------- /tiddlers/Demo/Showcase.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Demo/Showcase.tid -------------------------------------------------------------------------------- /tiddlers/Demo/Wikitext.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Demo/Wikitext.tid -------------------------------------------------------------------------------- /tiddlers/Documentation.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Documentation.tid -------------------------------------------------------------------------------- /tiddlers/Documentation/API.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Documentation/API.tid -------------------------------------------------------------------------------- /tiddlers/Documentation/Concepts.tid: -------------------------------------------------------------------------------- 1 | title: Concepts 2 | tags: Documentation 3 | -------------------------------------------------------------------------------- /tiddlers/Documentation/Engines.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Documentation/Engines.tid -------------------------------------------------------------------------------- /tiddlers/Documentation/FAQ.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Documentation/FAQ.tid -------------------------------------------------------------------------------- /tiddlers/Documentation/Installation.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Documentation/Installation.tid -------------------------------------------------------------------------------- /tiddlers/Documentation/Other Plugins.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Documentation/Other Plugins.tid -------------------------------------------------------------------------------- /tiddlers/Documentation/Tutorials.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Documentation/Tutorials.tid -------------------------------------------------------------------------------- /tiddlers/Documentation/Versions.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Documentation/Versions.tid -------------------------------------------------------------------------------- /tiddlers/Documentation/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Documentation/tiddlywiki.files -------------------------------------------------------------------------------- /tiddlers/FAQ/HowDoIMakeEveryTiddlerShowAGraphOfConnections.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/FAQ/HowDoIMakeEveryTiddlerShowAGraphOfConnections.tid -------------------------------------------------------------------------------- /tiddlers/FAQ/HowDoIStyleCertainKindsOfTiddlersDifferently.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/FAQ/HowDoIStyleCertainKindsOfTiddlersDifferently.tid -------------------------------------------------------------------------------- /tiddlers/Field_Types/Filter.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Field_Types/Filter.tid -------------------------------------------------------------------------------- /tiddlers/Field_Types/List.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Field_Types/List.tid -------------------------------------------------------------------------------- /tiddlers/Field_Types/Title.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Field_Types/Title.tid -------------------------------------------------------------------------------- /tiddlers/Field_Types/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Field_Types/tiddlywiki.files -------------------------------------------------------------------------------- /tiddlers/Filters/cache.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Filters/cache.tid -------------------------------------------------------------------------------- /tiddlers/Filters/cache_Examples.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Filters/cache_Examples.tid -------------------------------------------------------------------------------- /tiddlers/Filters/cache_avoid_function.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Filters/cache_avoid_function.tid -------------------------------------------------------------------------------- /tiddlers/Filters/cache_limit_variable.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Filters/cache_limit_variable.tid -------------------------------------------------------------------------------- /tiddlers/Filters/gettyped (Examples).tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Filters/gettyped (Examples).tid -------------------------------------------------------------------------------- /tiddlers/Filters/gettyped.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Filters/gettyped.tid -------------------------------------------------------------------------------- /tiddlers/Flibbles.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Flibbles.tid -------------------------------------------------------------------------------- /tiddlers/GUI.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/GUI.tid -------------------------------------------------------------------------------- /tiddlers/Giants_Monsters_Dragons.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Giants_Monsters_Dragons.tid -------------------------------------------------------------------------------- /tiddlers/Graph.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Graph.tid -------------------------------------------------------------------------------- /tiddlers/Graph_Objects/Edges.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Graph_Objects/Edges.tid -------------------------------------------------------------------------------- /tiddlers/Graph_Objects/Edges/Fields.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Graph_Objects/Edges/Fields.tid -------------------------------------------------------------------------------- /tiddlers/Graph_Objects/Edges/Functions.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Graph_Objects/Edges/Functions.tid -------------------------------------------------------------------------------- /tiddlers/Graph_Objects/Graph.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Graph_Objects/Graph.tid -------------------------------------------------------------------------------- /tiddlers/Graph_Objects/Nodes.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Graph_Objects/Nodes.tid -------------------------------------------------------------------------------- /tiddlers/Graph_Objects/Nodes/Stack.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Graph_Objects/Nodes/Stack.tid -------------------------------------------------------------------------------- /tiddlers/Graph_Objects/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Graph_Objects/tiddlywiki.files -------------------------------------------------------------------------------- /tiddlers/Images/Shih_tzu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Images/Shih_tzu.jpg -------------------------------------------------------------------------------- /tiddlers/Images/air.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Images/air.svg -------------------------------------------------------------------------------- /tiddlers/Images/earth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Images/earth.svg -------------------------------------------------------------------------------- /tiddlers/Images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Images/favicon.png -------------------------------------------------------------------------------- /tiddlers/Images/fire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Images/fire.svg -------------------------------------------------------------------------------- /tiddlers/Images/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Images/hero.svg -------------------------------------------------------------------------------- /tiddlers/Images/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Images/tiddlywiki.files -------------------------------------------------------------------------------- /tiddlers/Images/water.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Images/water.svg -------------------------------------------------------------------------------- /tiddlers/Install_pills.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Install_pills.tid -------------------------------------------------------------------------------- /tiddlers/Messages/graph-center-node.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Messages/graph-center-node.tid -------------------------------------------------------------------------------- /tiddlers/Messages/graph-move-view.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Messages/graph-move-view.tid -------------------------------------------------------------------------------- /tiddlers/Messages/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Messages/tiddlywiki.files -------------------------------------------------------------------------------- /tiddlers/Modules/graphengine.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Modules/graphengine.tid -------------------------------------------------------------------------------- /tiddlers/Nothing, please.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Nothing, please.tid -------------------------------------------------------------------------------- /tiddlers/Other_plugins_by_Flibbles.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Other_plugins_by_Flibbles.tid -------------------------------------------------------------------------------- /tiddlers/Plugins/Focused Tiddler.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Plugins/Focused Tiddler.tid -------------------------------------------------------------------------------- /tiddlers/Plugins/HotZone.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Plugins/HotZone.tid -------------------------------------------------------------------------------- /tiddlers/Plugins/Mermaid.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Plugins/Mermaid.tid -------------------------------------------------------------------------------- /tiddlers/Plugins/Orb.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Plugins/Orb.tid -------------------------------------------------------------------------------- /tiddlers/Plugins/Relink.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Plugins/Relink.tid -------------------------------------------------------------------------------- /tiddlers/Plugins/TiddlyMap.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Plugins/TiddlyMap.tid -------------------------------------------------------------------------------- /tiddlers/Plugins/Topstoryview.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Plugins/Topstoryview.tid -------------------------------------------------------------------------------- /tiddlers/Plugins/Uglify.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Plugins/Uglify.tid -------------------------------------------------------------------------------- /tiddlers/Plugins/Vis-Network.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Plugins/Vis-Network.tid -------------------------------------------------------------------------------- /tiddlers/Position.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Position.tid -------------------------------------------------------------------------------- /tiddlers/Showcase/Drag and Drop.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Showcase/Drag and Drop.tid -------------------------------------------------------------------------------- /tiddlers/Showcase/Palette Support.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Showcase/Palette Support.tid -------------------------------------------------------------------------------- /tiddlers/Showcase/Responsive.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Showcase/Responsive.tid -------------------------------------------------------------------------------- /tiddlers/Showcase/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Showcase/tiddlywiki.files -------------------------------------------------------------------------------- /tiddlers/Sidebar.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Sidebar.tid -------------------------------------------------------------------------------- /tiddlers/System.multids: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System.multids -------------------------------------------------------------------------------- /tiddlers/System/core/ui_TiddlerInfo_Graph.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/core/ui_TiddlerInfo_Graph.tid -------------------------------------------------------------------------------- /tiddlers/System/edges/father.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/edges/father.tid -------------------------------------------------------------------------------- /tiddlers/System/edges/wrote.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/edges/wrote.tid -------------------------------------------------------------------------------- /tiddlers/System/graph/Alchemy.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/graph/Alchemy.tid -------------------------------------------------------------------------------- /tiddlers/System/graph/Example.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/graph/Example.tid -------------------------------------------------------------------------------- /tiddlers/System/graph/Info View.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/graph/Info View.tid -------------------------------------------------------------------------------- /tiddlers/System/graph/Introduction.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/graph/Introduction.tid -------------------------------------------------------------------------------- /tiddlers/System/graph/Live View.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/graph/Live View.tid -------------------------------------------------------------------------------- /tiddlers/System/graph/Pantheon.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/graph/Pantheon.tid -------------------------------------------------------------------------------- /tiddlers/System/macros/doc-macros.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/macros/doc-macros.tid -------------------------------------------------------------------------------- /tiddlers/System/macros/doc.codeblock.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/macros/doc.codeblock.tid -------------------------------------------------------------------------------- /tiddlers/System/macros/doc.demo.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/macros/doc.demo.tid -------------------------------------------------------------------------------- /tiddlers/System/macros/doc.example.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/macros/doc.example.tid -------------------------------------------------------------------------------- /tiddlers/System/macros/doc.implementation.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/macros/doc.implementation.tid -------------------------------------------------------------------------------- /tiddlers/System/macros/doc.inhouse.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/macros/doc.inhouse.tid -------------------------------------------------------------------------------- /tiddlers/System/macros/doc.show.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/macros/doc.show.tid -------------------------------------------------------------------------------- /tiddlers/System/macros/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/macros/tiddlywiki.files -------------------------------------------------------------------------------- /tiddlers/System/nodes/author.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/nodes/author.tid -------------------------------------------------------------------------------- /tiddlers/System/nodes/ruler.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/nodes/ruler.tid -------------------------------------------------------------------------------- /tiddlers/System/plugins/Gk0Wk_focused-tiddler.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/plugins/Gk0Wk_focused-tiddler.json -------------------------------------------------------------------------------- /tiddlers/System/plugins/felixhayashi_topstoryview.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/plugins/felixhayashi_topstoryview.json -------------------------------------------------------------------------------- /tiddlers/System/styles/doc-site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/styles/doc-site.css -------------------------------------------------------------------------------- /tiddlers/System/styles/doc-styles.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/styles/doc-styles.tid -------------------------------------------------------------------------------- /tiddlers/System/styles/dragger.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/styles/dragger.tid -------------------------------------------------------------------------------- /tiddlers/System/styles/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/styles/tiddlywiki.files -------------------------------------------------------------------------------- /tiddlers/System/templates/tutorial.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/System/templates/tutorial.tid -------------------------------------------------------------------------------- /tiddlers/TableOfContents.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/TableOfContents.tid -------------------------------------------------------------------------------- /tiddlers/Templates/live-graph.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Templates/live-graph.tid -------------------------------------------------------------------------------- /tiddlers/Templates/standard-graph.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Templates/standard-graph.tid -------------------------------------------------------------------------------- /tiddlers/Templates/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Templates/tiddlywiki.files -------------------------------------------------------------------------------- /tiddlers/Tests/action-delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/action-delay.js -------------------------------------------------------------------------------- /tiddlers/Tests/action-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/action-modal.js -------------------------------------------------------------------------------- /tiddlers/Tests/action-with.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/action-with.js -------------------------------------------------------------------------------- /tiddlers/Tests/action.addedge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/action.addedge.js -------------------------------------------------------------------------------- /tiddlers/Tests/adapters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/adapters.js -------------------------------------------------------------------------------- /tiddlers/Tests/boundingbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/boundingbox.js -------------------------------------------------------------------------------- /tiddlers/Tests/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/cache.js -------------------------------------------------------------------------------- /tiddlers/Tests/edge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/edge.js -------------------------------------------------------------------------------- /tiddlers/Tests/edges.typed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/edges.typed.js -------------------------------------------------------------------------------- /tiddlers/Tests/enum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/enum.js -------------------------------------------------------------------------------- /tiddlers/Tests/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/events.js -------------------------------------------------------------------------------- /tiddlers/Tests/fieldtranscriber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/fieldtranscriber.js -------------------------------------------------------------------------------- /tiddlers/Tests/graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/graph.js -------------------------------------------------------------------------------- /tiddlers/Tests/graph.view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/graph.view.js -------------------------------------------------------------------------------- /tiddlers/Tests/graphengine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/graphengine.js -------------------------------------------------------------------------------- /tiddlers/Tests/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/image.js -------------------------------------------------------------------------------- /tiddlers/Tests/live-graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/live-graph.js -------------------------------------------------------------------------------- /tiddlers/Tests/messagerelay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/messagerelay.js -------------------------------------------------------------------------------- /tiddlers/Tests/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/messages.js -------------------------------------------------------------------------------- /tiddlers/Tests/modules/action-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/modules/action-test.js -------------------------------------------------------------------------------- /tiddlers/Tests/modules/alsoAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/modules/alsoAdapter.js -------------------------------------------------------------------------------- /tiddlers/Tests/modules/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/modules/document.js -------------------------------------------------------------------------------- /tiddlers/Tests/modules/eventTarget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/modules/eventTarget.js -------------------------------------------------------------------------------- /tiddlers/Tests/modules/testAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/modules/testAdapter.js -------------------------------------------------------------------------------- /tiddlers/Tests/modules/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/modules/window.js -------------------------------------------------------------------------------- /tiddlers/Tests/node.default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/node.default.js -------------------------------------------------------------------------------- /tiddlers/Tests/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/node.js -------------------------------------------------------------------------------- /tiddlers/Tests/nodes.neighbors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/nodes.neighbors.js -------------------------------------------------------------------------------- /tiddlers/Tests/nodes.writable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/nodes.writable.js -------------------------------------------------------------------------------- /tiddlers/Tests/properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/properties.js -------------------------------------------------------------------------------- /tiddlers/Tests/properties.persistent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/properties.persistent.js -------------------------------------------------------------------------------- /tiddlers/Tests/properties.popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/properties.popup.js -------------------------------------------------------------------------------- /tiddlers/Tests/properties.river.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/properties.river.js -------------------------------------------------------------------------------- /tiddlers/Tests/properties.settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/properties.settings.js -------------------------------------------------------------------------------- /tiddlers/Tests/properties.stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/properties.stack.js -------------------------------------------------------------------------------- /tiddlers/Tests/relink-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/relink-attributes.js -------------------------------------------------------------------------------- /tiddlers/Tests/relink-configprefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/relink-configprefix.js -------------------------------------------------------------------------------- /tiddlers/Tests/relink-fieldedgeprefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/relink-fieldedgeprefix.js -------------------------------------------------------------------------------- /tiddlers/Tests/relink-graphprefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/relink-graphprefix.js -------------------------------------------------------------------------------- /tiddlers/Tests/relink-propertyFields.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/relink-propertyFields.js -------------------------------------------------------------------------------- /tiddlers/Tests/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/settings.js -------------------------------------------------------------------------------- /tiddlers/Tests/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/sidebar.js -------------------------------------------------------------------------------- /tiddlers/Tests/standard-graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/standard-graph.js -------------------------------------------------------------------------------- /tiddlers/Tests/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/tiddlywiki.files -------------------------------------------------------------------------------- /tiddlers/Tests/typed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/typed.js -------------------------------------------------------------------------------- /tiddlers/Tests/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tests/utils.js -------------------------------------------------------------------------------- /tiddlers/TiddlyWiki.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/TiddlyWiki.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Bottom-Up.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Bottom-Up.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Bottom-Up/0.Introduction.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Bottom-Up/0.Introduction.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Bottom-Up/1.Hello World.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Bottom-Up/1.Hello World.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Bottom-Up/2.Edges.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Bottom-Up/2.Edges.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Bottom-Up/3.Graph Properties.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Bottom-Up/3.Graph Properties.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Bottom-Up/4.Placing Nodes.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Bottom-Up/4.Placing Nodes.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Bottom-Up/5.Properties En Masse.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Bottom-Up/5.Properties En Masse.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Bottom-Up/6.Building Bigger.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Bottom-Up/6.Building Bigger.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Bottom-Up/7.Making your own tools.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Bottom-Up/7.Making your own tools.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Bottom-Up/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Bottom-Up/tiddlywiki.files -------------------------------------------------------------------------------- /tiddlers/Tutorials/Super_Simple_Template.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Super_Simple_Template.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Top-Down.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Top-Down.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Top-Down/0.Introduction.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Top-Down/0.Introduction.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Top-Down/1.Click on Me.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Top-Down/1.Click on Me.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Top-Down/2.Adding Nodes.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Top-Down/2.Adding Nodes.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Top-Down/3.Configuring Edge Types.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Top-Down/3.Configuring Edge Types.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Top-Down/4.Fiddling with your Graph.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Top-Down/4.Fiddling with your Graph.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Top-Down/5.Styling your Graph.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Top-Down/5.Styling your Graph.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Top-Down/6.The Properties Tab.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Top-Down/6.The Properties Tab.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Top-Down/7.The Node Stack.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Top-Down/7.The Node Stack.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Top-Down/8.Beyond the Sidebar.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Top-Down/8.Beyond the Sidebar.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Top-Down/9.What's Next.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Top-Down/9.What's Next.tid -------------------------------------------------------------------------------- /tiddlers/Tutorials/Top-Down/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Tutorials/Top-Down/tiddlywiki.files -------------------------------------------------------------------------------- /tiddlers/Typed Tools (Examples).tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Typed Tools (Examples).tid -------------------------------------------------------------------------------- /tiddlers/Typed Tools.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Typed Tools.tid -------------------------------------------------------------------------------- /tiddlers/Versions/0.0.0.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Versions/0.0.0.tid -------------------------------------------------------------------------------- /tiddlers/Versions/0.1.0.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Versions/0.1.0.tid -------------------------------------------------------------------------------- /tiddlers/Versions/0.2.0.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Versions/0.2.0.tid -------------------------------------------------------------------------------- /tiddlers/Versions/0.2.1.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Versions/0.2.1.tid -------------------------------------------------------------------------------- /tiddlers/Versions/0.2.2.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Versions/0.2.2.tid -------------------------------------------------------------------------------- /tiddlers/Versions/0.2.3.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Versions/0.2.3.tid -------------------------------------------------------------------------------- /tiddlers/Versions/0.3.0.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Versions/0.3.0.tid -------------------------------------------------------------------------------- /tiddlers/Versions/0.3.1.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Versions/0.3.1.tid -------------------------------------------------------------------------------- /tiddlers/Versions/0.3.2.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Versions/0.3.2.tid -------------------------------------------------------------------------------- /tiddlers/Versions/1.0.0.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Versions/1.0.0.tid -------------------------------------------------------------------------------- /tiddlers/Versions/1.0.1.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Versions/1.0.1.tid -------------------------------------------------------------------------------- /tiddlers/Versions/1.1.0.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Versions/1.1.0.tid -------------------------------------------------------------------------------- /tiddlers/Versions/1.2.0.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Versions/1.2.0.tid -------------------------------------------------------------------------------- /tiddlers/Versions/1.3.0.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Versions/1.3.0.tid -------------------------------------------------------------------------------- /tiddlers/Versions/1.4.0.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Versions/1.4.0.tid -------------------------------------------------------------------------------- /tiddlers/Versions/1.5.0.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Versions/1.5.0.tid -------------------------------------------------------------------------------- /tiddlers/Versions/1.6.0.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Versions/1.6.0.tid -------------------------------------------------------------------------------- /tiddlers/Versions/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Versions/tiddlywiki.files -------------------------------------------------------------------------------- /tiddlers/Widgets/Action.AddEdgeWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/Action.AddEdgeWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/ActionAddTypedWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/ActionAddTypedWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/ActionDelayWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/ActionDelayWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/ActionModalWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/ActionModalWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/ActionRemoveTypedWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/ActionRemoveTypedWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/ActionWithWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/ActionWithWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/BoundingBoxWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/BoundingBoxWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/EdgeWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/EdgeWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/Edges.TypedWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/Edges.TypedWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/Examples/Edges.Typed.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/Examples/Edges.Typed.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/Examples/Properties.Popup.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/Examples/Properties.Popup.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/Examples/Properties.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/Examples/Properties.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/Examples/tiddlywiki.files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/Examples/tiddlywiki.files -------------------------------------------------------------------------------- /tiddlers/Widgets/FieldTranscriberWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/FieldTranscriberWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/Graph.ViewWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/Graph.ViewWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/GraphObjectWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/GraphObjectWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/GraphWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/GraphWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/MessageRelayWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/MessageRelayWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/Node.DefaultWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/Node.DefaultWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/NodeWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/NodeWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/Nodes.NeighborsWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/Nodes.NeighborsWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/Nodes.WritableWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/Nodes.WritableWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/Properties.PersistentWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/Properties.PersistentWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/Properties.PopupWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/Properties.PopupWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/Properties.RiverWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/Properties.RiverWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/Properties.SettingsWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/Properties.SettingsWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/Properties.StackWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/Properties.StackWidget.tid -------------------------------------------------------------------------------- /tiddlers/Widgets/PropertiesWidget.tid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlers/Widgets/PropertiesWidget.tid -------------------------------------------------------------------------------- /tiddlywiki.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibbles/tw5-graph/HEAD/tiddlywiki.info --------------------------------------------------------------------------------