├── .gitignore ├── CONTRIBUTING ├── Changes ├── README.md ├── bin └── kephra ├── dev ├── goal │ ├── bin │ │ └── kephra.pl │ ├── doc │ │ ├── Index.pod │ │ ├── LongFeatureList.txt │ │ ├── MainGoal.pod │ │ ├── OtherEditor.pod │ │ ├── Overview.pod │ │ ├── Philosophy.pod │ │ ├── UI │ │ │ ├── GCL.pod │ │ │ ├── Overview.pod │ │ │ ├── Sanddrum.pod │ │ │ └── SearchBar.pod │ │ ├── Versioning.pod │ │ ├── internal │ │ │ ├── CellularProgramming.pod │ │ │ ├── ClassStructure.pod │ │ │ ├── Git.pod │ │ │ ├── KBOS.pod │ │ │ └── StyleGuide.pod │ │ └── require.txt │ ├── lib │ │ ├── Kephra.pm │ │ └── Kephra │ │ │ ├── API.pm │ │ │ ├── App.pm │ │ │ ├── App │ │ │ ├── Bar │ │ │ │ ├── Left.pm │ │ │ │ ├── Middle.pm │ │ │ │ ├── Search.pm │ │ │ │ ├── Status.pm │ │ │ │ └── Tab.pm │ │ │ ├── Dialog.pm │ │ │ ├── Dialog │ │ │ │ ├── About.pm │ │ │ │ └── Config.pm │ │ │ ├── Draw.pm │ │ │ ├── Editor.pm │ │ │ ├── Editor │ │ │ │ ├── History.pm │ │ │ │ ├── Margin.pm │ │ │ │ └── Marker.pm │ │ │ ├── Factory.pm │ │ │ ├── Focus.pm │ │ │ ├── KeyMap.pm │ │ │ ├── Menu.pm │ │ │ ├── Panel.pm │ │ │ ├── Panel │ │ │ │ ├── Center.pm │ │ │ │ ├── Clipboard.pm │ │ │ │ ├── Doc.pm │ │ │ │ ├── FileBrowser.pm │ │ │ │ ├── IO.pm │ │ │ │ ├── Navigation.pm │ │ │ │ ├── Note.pm │ │ │ │ ├── OrgPad.pm │ │ │ │ ├── Outline.pm │ │ │ │ ├── ProjectManager.pm │ │ │ │ ├── TextFactory.pm │ │ │ │ └── TreeLib.pm │ │ │ ├── Popup.pm │ │ │ ├── Sizer.pm │ │ │ ├── Splitter.pm │ │ │ ├── Toolbar.pm │ │ │ └── Window.pm │ │ │ ├── Base.pm │ │ │ ├── Base │ │ │ ├── Class.pm │ │ │ ├── Class │ │ │ │ ├── Builder.pm │ │ │ │ ├── Builder │ │ │ │ │ ├── Accessor.pm │ │ │ │ │ ├── Attribute.pm │ │ │ │ │ ├── Constructor.pm │ │ │ │ │ ├── Method.pm │ │ │ │ │ └── Method │ │ │ │ │ │ ├── Arguments.pm │ │ │ │ │ │ └── Hook.pm │ │ │ │ ├── Definition.pm │ │ │ │ ├── Definition │ │ │ │ │ ├── Attribute.pm │ │ │ │ │ ├── Attribute │ │ │ │ │ │ ├── Data.pm │ │ │ │ │ │ ├── Delegating.pm │ │ │ │ │ │ └── Wrapping.pm │ │ │ │ │ ├── Method.pm │ │ │ │ │ ├── Method │ │ │ │ │ │ └── Signature.pm │ │ │ │ │ └── Scope.pm │ │ │ │ ├── Instance.pm │ │ │ │ ├── Instance │ │ │ │ │ ├── Argument.pm │ │ │ │ │ └── Attribute.pm │ │ │ │ ├── Interface.pm │ │ │ │ ├── Registry.pm │ │ │ │ ├── Syntax.pm │ │ │ │ ├── Syntax │ │ │ │ │ ├── Parser.pm │ │ │ │ │ └── Signature.pm │ │ │ │ └── Type.pm │ │ │ ├── Closure.pm │ │ │ ├── Command.pm │ │ │ ├── Command │ │ │ │ └── Center.pm │ │ │ ├── Data.pm │ │ │ ├── Data │ │ │ │ ├── Type.pm │ │ │ │ └── Type │ │ │ │ │ ├── Basic.pm │ │ │ │ │ ├── Checker.pm │ │ │ │ │ ├── Factory.pm │ │ │ │ │ ├── Parametric.pm │ │ │ │ │ ├── Set.pm │ │ │ │ │ └── Standard.pm │ │ │ ├── Event.pm │ │ │ ├── Event │ │ │ │ └── Table.pm │ │ │ ├── Message.pm │ │ │ ├── Message │ │ │ │ ├── Channel.pm │ │ │ │ └── Net.pm │ │ │ ├── Object.pm │ │ │ ├── Object │ │ │ │ ├── Attribute.pm │ │ │ │ ├── CodeSnippet.pm │ │ │ │ ├── Method.pm │ │ │ │ ├── Method │ │ │ │ │ └── Hook.pm │ │ │ │ ├── Queue.pm │ │ │ │ └── Store.pm │ │ │ ├── Package.pm │ │ │ ├── Plugin.pm │ │ │ ├── Plugin │ │ │ │ └── Manager.pm │ │ │ └── Worker.pm │ │ │ ├── Config │ │ │ └── Default │ │ │ │ ├── IconSet.pm │ │ │ │ ├── Localisation.pm │ │ │ │ ├── Menu.pm │ │ │ │ └── Toolbar.pm │ │ │ ├── Document.pm │ │ │ ├── Document │ │ │ ├── File.pm │ │ │ ├── Session.pm │ │ │ ├── Stash.pm │ │ │ ├── SyntaxMode.pm │ │ │ └── Text.pm │ │ │ ├── IO │ │ │ ├── Git.pm │ │ │ ├── Hg.pm │ │ │ ├── LocalFile.pm │ │ │ ├── SSH.pm │ │ │ ├── Sereal.pm │ │ │ ├── Shell.pm │ │ │ ├── YAML.pm │ │ │ └── Zip.pm │ │ │ ├── Plugin │ │ │ └── Demo.pm │ │ │ ├── Project.pm │ │ │ ├── Project │ │ │ └── Stash.pm │ │ │ └── Worker.pm │ └── t │ │ ├── 1_run.t │ │ ├── 2_consistent.t │ │ └── list_pkg_methods.pl ├── proof │ ├── gui │ │ ├── prima │ │ │ └── min.pl │ │ └── wx │ │ │ ├── XPMinline.pl │ │ │ ├── customcursor.pl │ │ │ ├── paintbar.pl │ │ │ ├── shellio.pl │ │ │ └── sidebar.pl │ ├── index.cp.txt │ ├── oo │ │ ├── Base.pm │ │ ├── Class.pm │ │ ├── Method.pm │ │ ├── Mo.pm │ │ ├── Mo.pod │ │ ├── Mo │ │ │ ├── Design.pod │ │ │ ├── Features.pod │ │ │ ├── Golf.pm │ │ │ ├── Hacking.pod │ │ │ ├── Inline.pm │ │ │ ├── Moose.pm │ │ │ ├── Moose.pod │ │ │ ├── Mouse.pm │ │ │ ├── Mouse.pod │ │ │ ├── build.pm │ │ │ ├── build.pod │ │ │ ├── builder.pm │ │ │ ├── builder.pod │ │ │ ├── chain.pm │ │ │ ├── chain.pod │ │ │ ├── coerce.pm │ │ │ ├── coerce.pod │ │ │ ├── default.pm │ │ │ ├── default.pod │ │ │ ├── exporter.pm │ │ │ ├── exports.pod │ │ │ ├── import.pm │ │ │ ├── import.pod │ │ │ ├── importer.pm │ │ │ ├── importer.pod │ │ │ ├── is.pm │ │ │ ├── is.pod │ │ │ ├── nonlazy.pm │ │ │ ├── option.pm │ │ │ ├── option.pod │ │ │ ├── required.pm │ │ │ ├── required.pod │ │ │ ├── xs.pm │ │ │ └── xs.pod │ │ ├── MoClass.pm │ │ ├── Parent.pm │ │ ├── User.pm │ │ ├── attribute.pl │ │ ├── build_method.pl │ │ ├── index.txt │ │ ├── inside_out.pl │ │ ├── mo.pl │ │ ├── new_syntax.pl │ │ ├── objrw.pl │ │ ├── packageloader.pl │ │ ├── parent.pl │ │ └── scalar_object.pl │ ├── parse │ │ ├── braces │ │ │ └── endbrace.pl │ │ └── keywords │ │ │ ├── KeyWords.pm │ │ │ └── keyword.pl │ ├── perl │ │ ├── Require.pm │ │ ├── caller.pl │ │ ├── date.pl │ │ ├── export │ │ │ ├── Export1.pm │ │ │ ├── Export2.pm │ │ │ └── export_cycle.pl │ │ ├── import │ │ │ ├── Import.pm │ │ │ └── import.pl │ │ ├── nestval.pl │ │ ├── phaser │ │ │ ├── RequirePhaserAfter.pm │ │ │ ├── RequirePhaserBefore.pm │ │ │ ├── UsePhaserAfter.pm │ │ │ ├── UsePhaserBefore.pm │ │ │ ├── UsePhaserBefore2.pm │ │ │ └── phaser.pl │ │ ├── ref │ │ │ └── ref.pl │ │ ├── require.pl │ │ ├── strict │ │ │ ├── Strict.pm │ │ │ └── use_strict.pl │ │ ├── symbol_table.pl │ │ └── undef.pl │ ├── stc │ │ ├── doubleview.pl │ │ ├── ed.pl │ │ └── uni.txt │ ├── sys │ │ ├── dir.pl │ │ ├── env.pl │ │ └── findlib.pl │ └── wx │ │ ├── XPMconverter.pl │ │ ├── keylog.pl │ │ ├── list.pl │ │ ├── min │ │ ├── minedit.pl │ │ └── t │ │ │ └── 01_compile.t │ │ ├── status.pl │ │ ├── tabbar │ │ └── auitabbar.pl │ │ ├── toolbar │ │ ├── data │ │ │ ├── application-blue.png │ │ │ ├── application-dock-090.png │ │ │ ├── application-dock-180.png │ │ │ ├── application-dock-270.png │ │ │ ├── application-dock-tab.png │ │ │ ├── application-dock.png │ │ │ ├── application-resize-full.png │ │ │ ├── colorpicker.xpm │ │ │ ├── down_bar.xpm │ │ │ ├── edit_copy.xpm │ │ │ ├── edit_find.xpm │ │ │ ├── edit_paste.xpm │ │ │ ├── empty.xpm │ │ │ ├── eraser.png │ │ │ ├── file-open.xpm │ │ │ ├── file_edit.xpm │ │ │ ├── file_save.xpm │ │ │ ├── information-frame.png │ │ │ ├── iso.txt │ │ │ ├── left_bar.xpm │ │ │ ├── note.xpm │ │ │ ├── proton.xpm │ │ │ ├── run_skript.png │ │ │ └── utf.txt │ │ └── toolbar.pl │ │ └── wxspltter.pl ├── release │ ├── ded │ │ ├── bin │ │ │ └── kephra │ │ ├── has │ │ │ ├── feature │ │ │ │ ├── filebrowser │ │ │ │ │ └── filebrowser.pl │ │ │ │ ├── img │ │ │ │ │ └── sed.png │ │ │ │ └── index.cp.txt │ │ │ └── module │ │ │ │ ├── Base-Class │ │ │ │ └── bed │ │ │ │ │ ├── index.cp.txt │ │ │ │ │ ├── lib │ │ │ │ │ └── Kephra │ │ │ │ │ │ ├── Base.pm │ │ │ │ │ │ └── Base │ │ │ │ │ │ ├── Class.pm │ │ │ │ │ │ ├── Class │ │ │ │ │ │ ├── Builder.pm │ │ │ │ │ │ ├── Builder │ │ │ │ │ │ │ ├── Accessor.pm │ │ │ │ │ │ │ ├── Attribute.pm │ │ │ │ │ │ │ ├── Constructor.pm │ │ │ │ │ │ │ ├── Method.pm │ │ │ │ │ │ │ └── Method │ │ │ │ │ │ │ │ ├── Arguments.pm │ │ │ │ │ │ │ │ └── Hook.pm │ │ │ │ │ │ ├── Definition.pm │ │ │ │ │ │ ├── Definition │ │ │ │ │ │ │ ├── Attribute.pm │ │ │ │ │ │ │ ├── Method.pm │ │ │ │ │ │ │ ├── Method │ │ │ │ │ │ │ │ └── Signature.pm │ │ │ │ │ │ │ ├── Scope.pm │ │ │ │ │ │ │ └── Store.pm │ │ │ │ │ │ ├── Instance.pm │ │ │ │ │ │ ├── Instance │ │ │ │ │ │ │ ├── Argument.pm │ │ │ │ │ │ │ └── Attribute.pm │ │ │ │ │ │ ├── Interface.pm │ │ │ │ │ │ ├── Syntax.pm │ │ │ │ │ │ ├── Syntax │ │ │ │ │ │ │ ├── Parser.pm │ │ │ │ │ │ │ └── Signature.pm │ │ │ │ │ │ └── Type.pm │ │ │ │ │ │ ├── Closure.pm │ │ │ │ │ │ ├── Data.pm │ │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── Type.pm │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ ├── Basic.pm │ │ │ │ │ │ │ ├── Parametric.pm │ │ │ │ │ │ │ ├── Standard.pm │ │ │ │ │ │ │ ├── Store.pm │ │ │ │ │ │ │ └── Util.pm │ │ │ │ │ │ └── Package.pm │ │ │ │ │ ├── status.cp.txt │ │ │ │ │ └── t │ │ │ │ │ ├── 0101_Base-Class-Definition-Scope.t │ │ │ │ │ ├── 0102_Base-Class-Definition-Attribute.t │ │ │ │ │ ├── 0103_Base-Class-Definition-Method.t │ │ │ │ │ ├── 0104_Base-Class-Definition.t │ │ │ │ │ ├── 0105_Base-Class-Definition-Store.t │ │ │ │ │ ├── 0109_Base-Class-Instance-Attribute.t │ │ │ │ │ ├── 0110_Base-Class-Instance-Arguments.t │ │ │ │ │ ├── 0111_Base-Class-Instance.t │ │ │ │ │ ├── 0112_Base-Class-Registry.t │ │ │ │ │ ├── 0113_Base-Class-Builder-Attribute.t │ │ │ │ │ ├── 0114_Base-Class-Builder-Method-Arguments.t │ │ │ │ │ ├── 0115_Base-Class-Builder-Method-Hook.t │ │ │ │ │ ├── 0116_Base-Class-Builder-Accessor.t │ │ │ │ │ ├── 0117_Base-Class-Builder-Constructor.t │ │ │ │ │ ├── 0118_Base-Class-Builder-Method.t │ │ │ │ │ ├── 0119_Base-Class-Builder.t │ │ │ │ │ ├── 0120_Base-Class-Syntax-Signature.t │ │ │ │ │ ├── 0121_Base-Class-Syntax-Parser.t │ │ │ │ │ ├── 0122_Base-Class-Syntax.t │ │ │ │ │ ├── 0123_Base-Class.t │ │ │ │ │ ├── 0131_Base-Class-Type.t │ │ │ │ │ └── TestClass.pm │ │ │ │ ├── Base │ │ │ │ └── bed │ │ │ │ │ ├── lib │ │ │ │ │ └── Kephra │ │ │ │ │ │ ├── Base.pm │ │ │ │ │ │ └── Base │ │ │ │ │ │ ├── Closure.pm │ │ │ │ │ │ ├── Data.pm │ │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── Type.pm │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ ├── Basic.pm │ │ │ │ │ │ │ ├── Checker.pm │ │ │ │ │ │ │ ├── Factory.pm │ │ │ │ │ │ │ ├── Parametric.pm │ │ │ │ │ │ │ ├── Set.pm │ │ │ │ │ │ │ └── Standard.pm │ │ │ │ │ │ └── Package.pm │ │ │ │ │ ├── status.cp.txt │ │ │ │ │ └── t │ │ │ │ │ ├── 0001_Base-Package.t │ │ │ │ │ ├── 0002_Base-Data-Type-Basic.t │ │ │ │ │ ├── 0003_Base-Data-Type-Parametric.t │ │ │ │ │ ├── 0004_Base-Data-Type-Factory.t │ │ │ │ │ ├── 0005_Base-Data-Type-Set.t │ │ │ │ │ ├── 0006_Base-Data-Type-Standard.t │ │ │ │ │ ├── 0007_Base-Data-Type-Checker.t │ │ │ │ │ ├── 0008_Base-Data-Type.t │ │ │ │ │ ├── 0009_Base-Data.t │ │ │ │ │ ├── 0010_Base-Closure.t │ │ │ │ │ └── TestClass.pm │ │ │ │ ├── index.cp.txt │ │ │ │ └── old │ │ │ │ ├── API-Call-Dynamic-Template │ │ │ │ ├── lib │ │ │ │ │ └── Kephra │ │ │ │ │ │ ├── API.pm │ │ │ │ │ │ └── API │ │ │ │ │ │ ├── Call.pm │ │ │ │ │ │ ├── Call │ │ │ │ │ │ ├── Dynamic.pm │ │ │ │ │ │ ├── Dynamic │ │ │ │ │ │ │ └── Template.pm │ │ │ │ │ │ └── Template.pm │ │ │ │ │ │ └── Object.pm │ │ │ │ └── t │ │ │ │ │ ├── 010_Call-Template_namespaces.t │ │ │ │ │ ├── 011_API-Call_usage.t │ │ │ │ │ ├── 012_API-Call-Template_usage.t │ │ │ │ │ ├── 013_API-Call-Dynamic_usage.t │ │ │ │ │ ├── 014_API-Call-Dynamic-Template_usage.t │ │ │ │ │ └── TestClass.pm │ │ │ │ ├── API-Command-Center │ │ │ │ └── lib │ │ │ │ │ └── Kephra │ │ │ │ │ ├── API.pm │ │ │ │ │ └── API │ │ │ │ │ ├── Command.pm │ │ │ │ │ └── Command │ │ │ │ │ └── Center.pm │ │ │ │ ├── API-Event-Table │ │ │ │ ├── lib │ │ │ │ │ └── Kephra │ │ │ │ │ │ ├── API.pm │ │ │ │ │ │ └── API │ │ │ │ │ │ ├── Call.pm │ │ │ │ │ │ ├── Call │ │ │ │ │ │ └── Template.pm │ │ │ │ │ │ ├── Event │ │ │ │ │ │ └── Table.pm │ │ │ │ │ │ ├── Message │ │ │ │ │ │ └── Net.pm │ │ │ │ │ │ ├── Object.pm │ │ │ │ │ │ ├── Object │ │ │ │ │ │ ├── Hook.pm │ │ │ │ │ │ ├── Queue.pm │ │ │ │ │ │ └── Store.pm │ │ │ │ │ │ └── Package.pm │ │ │ │ └── t │ │ │ │ │ ├── 040_API-Event-Table_namespaces.t │ │ │ │ │ ├── 041_API-Event_usage.t │ │ │ │ │ ├── 042_API-Event-Table_usage.t │ │ │ │ │ └── 043_API_usage.t │ │ │ │ ├── API-Message-Net │ │ │ │ ├── lib │ │ │ │ │ └── Kephra │ │ │ │ │ │ ├── API.pm │ │ │ │ │ │ └── API │ │ │ │ │ │ ├── Call.pm │ │ │ │ │ │ ├── Call │ │ │ │ │ │ ├── Dynamic.pm │ │ │ │ │ │ ├── Dynamic │ │ │ │ │ │ │ └── Template.pm │ │ │ │ │ │ └── Template.pm │ │ │ │ │ │ ├── Message.pm │ │ │ │ │ │ ├── Message │ │ │ │ │ │ ├── Channel.pm │ │ │ │ │ │ └── Net.pm │ │ │ │ │ │ ├── Object.pm │ │ │ │ │ │ ├── Object │ │ │ │ │ │ ├── Hook.pm │ │ │ │ │ │ ├── Queue.pm │ │ │ │ │ │ └── Store.pm │ │ │ │ │ │ └── Package.pm │ │ │ │ └── t │ │ │ │ │ ├── 030_API-Message-Net_namespaces.t │ │ │ │ │ ├── 031_API-Message_usage.t │ │ │ │ │ ├── 032_API-Message-Channel_usage.t │ │ │ │ │ ├── 033_API-Message-Net_usage.pl │ │ │ │ │ ├── 034_API_usage.pl │ │ │ │ │ └── 037_APIMessageNetUsage.pl │ │ │ │ ├── API-Object-Store │ │ │ │ ├── lib │ │ │ │ │ └── Kephra │ │ │ │ │ │ ├── API.pm │ │ │ │ │ │ └── API │ │ │ │ │ │ ├── Call.pm │ │ │ │ │ │ ├── Call │ │ │ │ │ │ ├── Dynamic.pm │ │ │ │ │ │ ├── Dynamic │ │ │ │ │ │ │ └── Template.pm │ │ │ │ │ │ └── Template.pm │ │ │ │ │ │ ├── Object.pm │ │ │ │ │ │ ├── Object │ │ │ │ │ │ ├── Hook.pm │ │ │ │ │ │ ├── Queue.pm │ │ │ │ │ │ └── Store.pm │ │ │ │ │ │ └── Package.pm │ │ │ │ └── t │ │ │ │ │ ├── 020_API-Object-Store_namespaces.t │ │ │ │ │ ├── 021_API-Object-Hook_usage.t │ │ │ │ │ ├── 022_API-Object-Queue_usage.t │ │ │ │ │ ├── 023_API-Object-Store_usage.t │ │ │ │ │ ├── DerivedTestClass.pm │ │ │ │ │ └── TestClass.pm │ │ │ │ ├── API-Object │ │ │ │ ├── lib │ │ │ │ │ └── Kephra │ │ │ │ │ │ ├── API.pm │ │ │ │ │ │ └── API │ │ │ │ │ │ ├── Class.pm │ │ │ │ │ │ ├── Class │ │ │ │ │ │ └── Attribute.pm │ │ │ │ │ │ ├── Data.pm │ │ │ │ │ │ ├── Data │ │ │ │ │ │ └── Type.pm │ │ │ │ │ │ ├── Object.pm │ │ │ │ │ │ └── Package.pm │ │ │ │ └── t │ │ │ │ │ ├── 000_API-Class_namespaces.t │ │ │ │ │ ├── 001_API-Data_usage.t │ │ │ │ │ ├── 002_API-Data-Type_usage.t │ │ │ │ │ ├── 003_API-Package_usage.t │ │ │ │ │ ├── 004_API-Object_usage.t │ │ │ │ │ ├── 005_API-Class_usage .t │ │ │ │ │ ├── 006_API-Class-Attribute_usage.t │ │ │ │ │ └── TestClass.pm │ │ │ │ ├── API │ │ │ │ ├── lib │ │ │ │ │ └── Kephra │ │ │ │ │ │ ├── API.pm │ │ │ │ │ │ └── API │ │ │ │ │ │ ├── Call.pm │ │ │ │ │ │ ├── Call │ │ │ │ │ │ └── Template.pm │ │ │ │ │ │ ├── Object.pm │ │ │ │ │ │ ├── Object │ │ │ │ │ │ ├── Hook.pm │ │ │ │ │ │ ├── Queue.pm │ │ │ │ │ │ └── Store.pm │ │ │ │ │ │ └── Package.pm │ │ │ │ └── t │ │ │ │ │ ├── 050_API_namespace.t │ │ │ │ │ ├── 051_API_usage.t │ │ │ │ │ └── 052_API_import.pl │ │ │ │ ├── App-Bar-Tab │ │ │ │ └── lib │ │ │ │ │ ├── Kephra │ │ │ │ │ ├── API.pm │ │ │ │ │ ├── App.pm │ │ │ │ │ └── App │ │ │ │ │ │ ├── DocBar.pm │ │ │ │ │ │ ├── Editor.pm │ │ │ │ │ │ ├── Panel.pm │ │ │ │ │ │ ├── Sizer.pm │ │ │ │ │ │ └── Window.pm │ │ │ │ │ └── kephra.pl │ │ │ │ ├── App-Editor │ │ │ │ └── lib │ │ │ │ │ ├── Kephra │ │ │ │ │ └── App │ │ │ │ │ │ └── Editor.pm │ │ │ │ │ └── kephra.pl │ │ │ │ └── App-Sizer │ │ │ │ ├── lib │ │ │ │ ├── Kephra │ │ │ │ │ ├── API.pm │ │ │ │ │ └── App │ │ │ │ │ │ └── Sizer.pm │ │ │ │ └── kephra.pl │ │ │ │ └── t │ │ │ │ └── 021_sizer.t │ │ ├── lib │ │ │ ├── Kephra.pm │ │ │ └── Kephra │ │ │ │ ├── App │ │ │ │ ├── Dialog.pm │ │ │ │ ├── Dialog │ │ │ │ │ └── About.pm │ │ │ │ ├── Editor.pm │ │ │ │ ├── Editor │ │ │ │ │ ├── Document.pm │ │ │ │ │ ├── Edit.pm │ │ │ │ │ ├── Events.pm │ │ │ │ │ ├── Goto.pm │ │ │ │ │ ├── Move.pm │ │ │ │ │ ├── Position.pm │ │ │ │ │ ├── Property.pm │ │ │ │ │ ├── Select.pm │ │ │ │ │ ├── SyntaxMode.pm │ │ │ │ │ ├── SyntaxMode │ │ │ │ │ │ ├── Bash.pm │ │ │ │ │ │ ├── CPP.pm │ │ │ │ │ │ ├── JSON.pm │ │ │ │ │ │ ├── Markodown.pm │ │ │ │ │ │ ├── No.pm │ │ │ │ │ │ ├── Perl.pm │ │ │ │ │ │ ├── Python.pm │ │ │ │ │ │ ├── Ruby.pm │ │ │ │ │ │ ├── Rust.pm │ │ │ │ │ │ └── YAML.pm │ │ │ │ │ ├── Tool.pm │ │ │ │ │ └── View.pm │ │ │ │ ├── ReplaceBar.pm │ │ │ │ ├── SearchBar.pm │ │ │ │ ├── Window.pm │ │ │ │ └── Window │ │ │ │ │ └── Menu.pm │ │ │ │ ├── Config.pm │ │ │ │ ├── Config │ │ │ │ └── Default.pm │ │ │ │ └── IO │ │ │ │ └── LocalFile.pm │ │ ├── status.cp.txt │ │ └── t │ │ │ └── 01_load.t │ ├── index.cp.txt │ ├── old │ │ ├── bed │ │ │ ├── bin │ │ │ │ └── kephra │ │ │ └── lib │ │ │ │ └── Kephra │ │ │ │ ├── API.pm │ │ │ │ ├── App.pm │ │ │ │ ├── App │ │ │ │ ├── Bar │ │ │ │ │ └── Tab.pm │ │ │ │ ├── Dialog.pm │ │ │ │ ├── Editor.pm │ │ │ │ ├── Panel.pm │ │ │ │ ├── Panel │ │ │ │ │ └── Doc.pm │ │ │ │ ├── Sizer.pm │ │ │ │ ├── Splitter.pm │ │ │ │ └── Window.pm │ │ │ │ ├── Document.pm │ │ │ │ ├── Document │ │ │ │ ├── Session.pm │ │ │ │ ├── Stash.pm │ │ │ │ └── SyntaxMode.pm │ │ │ │ └── IO │ │ │ │ └── LocalFile.pm │ │ ├── ded │ │ │ ├── bin │ │ │ │ └── kephra │ │ │ ├── lib │ │ │ │ └── Kephra │ │ │ │ │ ├── API.pm │ │ │ │ │ ├── App.pm │ │ │ │ │ ├── App │ │ │ │ │ ├── Bar │ │ │ │ │ │ ├── Search.pm │ │ │ │ │ │ └── Tab.pm │ │ │ │ │ ├── Dialog.pm │ │ │ │ │ ├── Editor.pm │ │ │ │ │ ├── Panel.pm │ │ │ │ │ ├── Panel │ │ │ │ │ │ └── Doc.pm │ │ │ │ │ ├── Sizer.pm │ │ │ │ │ ├── Splitter.pm │ │ │ │ │ └── Window.pm │ │ │ │ │ ├── Document.pm │ │ │ │ │ ├── Document │ │ │ │ │ ├── Session.pm │ │ │ │ │ ├── Stash.pm │ │ │ │ │ └── SyntaxMode.pm │ │ │ │ │ └── IO │ │ │ │ │ └── LocalFile.pm │ │ │ ├── session.yml │ │ │ └── status.cp.txt │ │ ├── has │ │ │ ├── API-Call-Dynamic-Template │ │ │ │ ├── lib │ │ │ │ │ └── Kephra │ │ │ │ │ │ ├── API.pm │ │ │ │ │ │ └── API │ │ │ │ │ │ ├── Call.pm │ │ │ │ │ │ ├── Call │ │ │ │ │ │ ├── Dynamic.pm │ │ │ │ │ │ ├── Dynamic │ │ │ │ │ │ │ └── Template.pm │ │ │ │ │ │ └── Template.pm │ │ │ │ │ │ └── Object.pm │ │ │ │ └── t │ │ │ │ │ ├── 010_Call-Template_namespaces.t │ │ │ │ │ ├── 011_API-Call_usage.t │ │ │ │ │ ├── 012_API-Call-Template_usage.t │ │ │ │ │ ├── 013_API-Call-Dynamic_usage.t │ │ │ │ │ ├── 014_API-Call-Dynamic-Template_usage.t │ │ │ │ │ └── TestClass.pm │ │ │ ├── API-Command-Center │ │ │ │ └── lib │ │ │ │ │ └── Kephra │ │ │ │ │ ├── API.pm │ │ │ │ │ └── API │ │ │ │ │ ├── Command.pm │ │ │ │ │ └── Command │ │ │ │ │ └── Center.pm │ │ │ ├── API-Event-Table │ │ │ │ ├── lib │ │ │ │ │ └── Kephra │ │ │ │ │ │ ├── API.pm │ │ │ │ │ │ └── API │ │ │ │ │ │ ├── Call.pm │ │ │ │ │ │ ├── Call │ │ │ │ │ │ └── Template.pm │ │ │ │ │ │ ├── Event │ │ │ │ │ │ └── Table.pm │ │ │ │ │ │ ├── Message │ │ │ │ │ │ └── Net.pm │ │ │ │ │ │ ├── Object.pm │ │ │ │ │ │ ├── Object │ │ │ │ │ │ ├── Hook.pm │ │ │ │ │ │ ├── Queue.pm │ │ │ │ │ │ └── Store.pm │ │ │ │ │ │ └── Package.pm │ │ │ │ └── t │ │ │ │ │ ├── 040_API-Event-Table_namespaces.t │ │ │ │ │ ├── 041_API-Event_usage.t │ │ │ │ │ ├── 042_API-Event-Table_usage.t │ │ │ │ │ └── 043_API_usage.t │ │ │ ├── API-Message-Net │ │ │ │ ├── lib │ │ │ │ │ └── Kephra │ │ │ │ │ │ ├── API.pm │ │ │ │ │ │ └── API │ │ │ │ │ │ ├── Call.pm │ │ │ │ │ │ ├── Call │ │ │ │ │ │ ├── Dynamic.pm │ │ │ │ │ │ ├── Dynamic │ │ │ │ │ │ │ └── Template.pm │ │ │ │ │ │ └── Template.pm │ │ │ │ │ │ ├── Message.pm │ │ │ │ │ │ ├── Message │ │ │ │ │ │ ├── Channel.pm │ │ │ │ │ │ └── Net.pm │ │ │ │ │ │ ├── Object.pm │ │ │ │ │ │ ├── Object │ │ │ │ │ │ ├── Hook.pm │ │ │ │ │ │ ├── Queue.pm │ │ │ │ │ │ └── Store.pm │ │ │ │ │ │ └── Package.pm │ │ │ │ └── t │ │ │ │ │ ├── 030_API-Message-Net_namespaces.t │ │ │ │ │ ├── 031_API-Message_usage.t │ │ │ │ │ ├── 032_API-Message-Channel_usage.t │ │ │ │ │ ├── 033_API-Message-Net_usage.pl │ │ │ │ │ ├── 034_API_usage.pl │ │ │ │ │ └── 037_APIMessageNetUsage.pl │ │ │ ├── API-Object-Store │ │ │ │ ├── lib │ │ │ │ │ └── Kephra │ │ │ │ │ │ ├── API.pm │ │ │ │ │ │ └── API │ │ │ │ │ │ ├── Call.pm │ │ │ │ │ │ ├── Call │ │ │ │ │ │ ├── Dynamic.pm │ │ │ │ │ │ ├── Dynamic │ │ │ │ │ │ │ └── Template.pm │ │ │ │ │ │ └── Template.pm │ │ │ │ │ │ ├── Object.pm │ │ │ │ │ │ ├── Object │ │ │ │ │ │ ├── Hook.pm │ │ │ │ │ │ ├── Queue.pm │ │ │ │ │ │ └── Store.pm │ │ │ │ │ │ └── Package.pm │ │ │ │ └── t │ │ │ │ │ ├── 020_API-Object-Store_namespaces.t │ │ │ │ │ ├── 021_API-Object-Hook_usage.t │ │ │ │ │ ├── 022_API-Object-Queue_usage.t │ │ │ │ │ ├── 023_API-Object-Store_usage.t │ │ │ │ │ ├── DerivedTestClass.pm │ │ │ │ │ └── TestClass.pm │ │ │ ├── API-Object │ │ │ │ ├── lib │ │ │ │ │ └── Kephra │ │ │ │ │ │ ├── API.pm │ │ │ │ │ │ └── API │ │ │ │ │ │ ├── Class.pm │ │ │ │ │ │ ├── Class │ │ │ │ │ │ └── Attribute.pm │ │ │ │ │ │ ├── Data.pm │ │ │ │ │ │ ├── Data │ │ │ │ │ │ └── Type.pm │ │ │ │ │ │ ├── Object.pm │ │ │ │ │ │ └── Package.pm │ │ │ │ └── t │ │ │ │ │ ├── 000_API-Class_namespaces.t │ │ │ │ │ ├── 001_API-Data_usage.t │ │ │ │ │ ├── 002_API-Data-Type_usage.t │ │ │ │ │ ├── 003_API-Package_usage.t │ │ │ │ │ ├── 004_API-Object_usage.t │ │ │ │ │ ├── 005_API-Class_usage .t │ │ │ │ │ ├── 006_API-Class-Attribute_usage.t │ │ │ │ │ └── TestClass.pm │ │ │ ├── API │ │ │ │ ├── lib │ │ │ │ │ └── Kephra │ │ │ │ │ │ ├── API.pm │ │ │ │ │ │ └── API │ │ │ │ │ │ ├── Call.pm │ │ │ │ │ │ ├── Call │ │ │ │ │ │ └── Template.pm │ │ │ │ │ │ ├── Object.pm │ │ │ │ │ │ ├── Object │ │ │ │ │ │ ├── Hook.pm │ │ │ │ │ │ ├── Queue.pm │ │ │ │ │ │ └── Store.pm │ │ │ │ │ │ └── Package.pm │ │ │ │ └── t │ │ │ │ │ ├── 050_API_namespace.t │ │ │ │ │ ├── 051_API_usage.t │ │ │ │ │ └── 052_API_import.pl │ │ │ ├── App-Bar-Tab │ │ │ │ └── lib │ │ │ │ │ ├── Kephra │ │ │ │ │ ├── API.pm │ │ │ │ │ ├── App.pm │ │ │ │ │ └── App │ │ │ │ │ │ ├── DocBar.pm │ │ │ │ │ │ ├── Editor.pm │ │ │ │ │ │ ├── Panel.pm │ │ │ │ │ │ ├── Sizer.pm │ │ │ │ │ │ └── Window.pm │ │ │ │ │ └── kephra.pl │ │ │ ├── App-Editor │ │ │ │ └── lib │ │ │ │ │ ├── Kephra │ │ │ │ │ └── App │ │ │ │ │ │ └── Editor.pm │ │ │ │ │ └── kephra.pl │ │ │ └── App-Sizer │ │ │ │ ├── lib │ │ │ │ ├── Kephra │ │ │ │ │ ├── API.pm │ │ │ │ │ └── App │ │ │ │ │ │ └── Sizer.pm │ │ │ │ └── kephra.pl │ │ │ │ └── t │ │ │ │ └── 021_sizer.t │ │ ├── index.cp.txt │ │ └── less │ │ │ ├── bin │ │ │ └── kephra │ │ │ ├── lib │ │ │ ├── Kephra.pm │ │ │ └── Kephra │ │ │ │ ├── App │ │ │ │ ├── Dialog.pm │ │ │ │ ├── Dialog │ │ │ │ │ └── About.pm │ │ │ │ ├── Editor.pm │ │ │ │ ├── Editor │ │ │ │ │ ├── Document.pm │ │ │ │ │ ├── Edit.pm │ │ │ │ │ ├── Events.pm │ │ │ │ │ ├── Goto.pm │ │ │ │ │ ├── Move.pm │ │ │ │ │ ├── Position.pm │ │ │ │ │ ├── Property.pm │ │ │ │ │ ├── Select.pm │ │ │ │ │ ├── SyntaxMode.pm │ │ │ │ │ ├── SyntaxMode │ │ │ │ │ │ ├── Bash.pm │ │ │ │ │ │ ├── CPP.pm │ │ │ │ │ │ ├── JSON.pm │ │ │ │ │ │ ├── Markodown.pm │ │ │ │ │ │ ├── No.pm │ │ │ │ │ │ ├── Perl.pm │ │ │ │ │ │ ├── Python.pm │ │ │ │ │ │ ├── Ruby.pm │ │ │ │ │ │ ├── Rust.pm │ │ │ │ │ │ └── YAML.pm │ │ │ │ │ ├── Tool.pm │ │ │ │ │ └── View.pm │ │ │ │ ├── ReplaceBar.pm │ │ │ │ ├── SearchBar.pm │ │ │ │ ├── Window.pm │ │ │ │ └── Window │ │ │ │ │ └── Menu.pm │ │ │ │ ├── Config.pm │ │ │ │ ├── Config │ │ │ │ └── Default.pm │ │ │ │ └── IO │ │ │ │ └── LocalFile.pm │ │ │ ├── status.cp.txt │ │ │ └── t │ │ │ └── 01_load.t │ └── sed │ │ ├── bin │ │ ├── kephra │ │ └── session.yml │ │ ├── lib │ │ ├── Kephra.pm │ │ └── Kephra │ │ │ ├── App │ │ │ ├── Dialog.pm │ │ │ ├── Dialog │ │ │ │ └── About.pm │ │ │ ├── Editor.pm │ │ │ ├── Editor │ │ │ │ ├── Edit.pm │ │ │ │ ├── Move.pm │ │ │ │ ├── Position.pm │ │ │ │ ├── Property.pm │ │ │ │ ├── Select.pm │ │ │ │ ├── SyntaxMode.pm │ │ │ │ ├── SyntaxMode │ │ │ │ │ ├── Bash.pm │ │ │ │ │ ├── CPP.pm │ │ │ │ │ ├── JSON.pm │ │ │ │ │ ├── Markodown.pm │ │ │ │ │ ├── No.pm │ │ │ │ │ ├── Perl.pm │ │ │ │ │ ├── Python.pm │ │ │ │ │ ├── Ruby.pm │ │ │ │ │ ├── Rust.pm │ │ │ │ │ └── YAML.pm │ │ │ │ ├── Tool.pm │ │ │ │ └── View.pm │ │ │ ├── ReplaceBar.pm │ │ │ ├── SearchBar.pm │ │ │ ├── Window.pm │ │ │ └── Window │ │ │ │ └── Menu.pm │ │ │ ├── Config.pm │ │ │ ├── Config │ │ │ └── Default.pm │ │ │ └── IO │ │ │ └── LocalFile.pm │ │ ├── status.cp.txt │ │ └── t │ │ └── 01_load.t ├── sketch │ ├── feature │ │ ├── edit.txt │ │ ├── features.txt │ │ ├── fileio.txt │ │ ├── index.txt │ │ ├── links.txt │ │ ├── modi.txt │ │ ├── undo.txt │ │ └── vcs.txt │ ├── goal │ │ ├── cp_index_syntax.txt │ │ ├── dreamlist.txt │ │ ├── gui.txt │ │ ├── roadmap.txt │ │ ├── spec.txt │ │ ├── task.txt │ │ └── todo.txt │ └── index.cp.txt └── tool │ ├── goal.pl │ ├── lib │ └── CPutils.pm │ ├── prototypes.pl │ └── t │ └── all.t ├── dist.ini ├── lib ├── Kephra.pm └── Kephra │ ├── App │ ├── Dialog.pm │ ├── Dialog │ │ └── About.pm │ ├── Editor.pm │ ├── Editor │ │ ├── Document.pm │ │ ├── Edit.pm │ │ ├── Events.pm │ │ ├── Goto.pm │ │ ├── Move.pm │ │ ├── Position.pm │ │ ├── Property.pm │ │ ├── Select.pm │ │ ├── SyntaxMode.pm │ │ ├── SyntaxMode │ │ │ ├── Bash.pm │ │ │ ├── CPP.pm │ │ │ ├── JSON.pm │ │ │ ├── Markodown.pm │ │ │ ├── No.pm │ │ │ ├── Perl.pm │ │ │ ├── Python.pm │ │ │ ├── Ruby.pm │ │ │ ├── Rust.pm │ │ │ └── YAML.pm │ │ ├── Tool.pm │ │ └── View.pm │ ├── ReplaceBar.pm │ ├── SearchBar.pm │ ├── Window.pm │ └── Window │ │ └── Menu.pm │ ├── Config.pm │ ├── Config │ └── Default.pm │ └── IO │ └── LocalFile.pm └── t └── 01_load.t /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/Changes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/README.md -------------------------------------------------------------------------------- /bin/kephra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/bin/kephra -------------------------------------------------------------------------------- /dev/goal/bin/kephra.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/bin/kephra.pl -------------------------------------------------------------------------------- /dev/goal/doc/Index.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/doc/Index.pod -------------------------------------------------------------------------------- /dev/goal/doc/LongFeatureList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/doc/LongFeatureList.txt -------------------------------------------------------------------------------- /dev/goal/doc/MainGoal.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/doc/MainGoal.pod -------------------------------------------------------------------------------- /dev/goal/doc/OtherEditor.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/doc/OtherEditor.pod -------------------------------------------------------------------------------- /dev/goal/doc/Overview.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/doc/Overview.pod -------------------------------------------------------------------------------- /dev/goal/doc/Philosophy.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/doc/Philosophy.pod -------------------------------------------------------------------------------- /dev/goal/doc/UI/GCL.pod: -------------------------------------------------------------------------------- 1 | =head1 GUI Composition Language 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /dev/goal/doc/UI/Overview.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/doc/UI/Overview.pod -------------------------------------------------------------------------------- /dev/goal/doc/UI/Sanddrum.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/doc/UI/Sanddrum.pod -------------------------------------------------------------------------------- /dev/goal/doc/UI/SearchBar.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/doc/UI/SearchBar.pod -------------------------------------------------------------------------------- /dev/goal/doc/Versioning.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/doc/Versioning.pod -------------------------------------------------------------------------------- /dev/goal/doc/internal/CellularProgramming.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/doc/internal/CellularProgramming.pod -------------------------------------------------------------------------------- /dev/goal/doc/internal/ClassStructure.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/doc/internal/ClassStructure.pod -------------------------------------------------------------------------------- /dev/goal/doc/internal/Git.pod: -------------------------------------------------------------------------------- 1 | 2 | -u -------------------------------------------------------------------------------- /dev/goal/doc/internal/KBOS.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/doc/internal/KBOS.pod -------------------------------------------------------------------------------- /dev/goal/doc/internal/StyleGuide.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/doc/internal/StyleGuide.pod -------------------------------------------------------------------------------- /dev/goal/doc/require.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/doc/require.txt -------------------------------------------------------------------------------- /dev/goal/lib/Kephra.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/App.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Bar/Left.pm: -------------------------------------------------------------------------------- 1 | package Kephra::App::Bar::Left; 2 | 3 | 4 | 5 | 1; 6 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Bar/Middle.pm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Bar/Search.pm: -------------------------------------------------------------------------------- 1 | 2 | package Kephra::App::Bar::Search; 3 | 4 | 5 | 1; 6 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Bar/Status.pm: -------------------------------------------------------------------------------- 1 | package Kephra::App::Bar::Status; 2 | 3 | 4 | 5 | 1; 6 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Bar/Tab.pm: -------------------------------------------------------------------------------- 1 | package Kephra::App::Bar::Tab; 2 | 3 | 4 | 1; 5 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Dialog.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/App/Dialog.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Dialog/About.pm: -------------------------------------------------------------------------------- 1 | 2 | package Kephra::App::Dialog::About; 3 | 4 | 5 | 1; 6 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Dialog/Config.pm: -------------------------------------------------------------------------------- 1 | 2 | package Kephra::App::Dialog::Config; 3 | 4 | 5 | 1; 6 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Draw.pm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Editor.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/App/Editor.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Editor/History.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/App/Editor/History.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Editor/Margin.pm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Editor/Marker.pm: -------------------------------------------------------------------------------- 1 | use v5.12; 2 | use warnings; 3 | package Kephra::App::Editor::Marker; 4 | 5 | 6 | 1; 7 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Factory.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/App/Factory.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Focus.pm: -------------------------------------------------------------------------------- 1 | package Kephra::App::Focus; 2 | 3 | 4 | 1; 5 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/KeyMap.pm: -------------------------------------------------------------------------------- 1 | use v5.12; 2 | use warnings; 3 | package Kephra::App::KeyMap; 4 | 5 | 6 | 1; 7 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Menu.pm: -------------------------------------------------------------------------------- 1 | use v5.12; 2 | use warnings; 3 | package Kephra::App::Menu; 4 | 5 | 6 | 1; 7 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Panel.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/App/Panel.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Panel/Center.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/App/Panel/Center.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Panel/Clipboard.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/App/Panel/Clipboard.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Panel/Doc.pm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Panel/FileBrowser.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/App/Panel/FileBrowser.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Panel/IO.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/App/Panel/IO.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Panel/Navigation.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/App/Panel/Navigation.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Panel/Note.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/App/Panel/Note.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Panel/OrgPad.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/App/Panel/OrgPad.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Panel/Outline.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/App/Panel/Outline.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Panel/ProjectManager.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/App/Panel/ProjectManager.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Panel/TextFactory.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/App/Panel/TextFactory.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Panel/TreeLib.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/App/Panel/TreeLib.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Popup.pm: -------------------------------------------------------------------------------- 1 | use v5.12; 2 | use warnings; 3 | package Kephra::App::Popup; 4 | 5 | 6 | 1; 7 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Sizer.pm: -------------------------------------------------------------------------------- 1 | use v5.12; 2 | use warnings; 3 | package Kephra::App::Sizer; 4 | 5 | 6 | 1; 7 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Splitter.pm: -------------------------------------------------------------------------------- 1 | use v5.12; 2 | use warnings; 3 | package Kephra::App::Splitter; 4 | 5 | 6 | 1; 7 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Toolbar.pm: -------------------------------------------------------------------------------- 1 | use v5.12; 2 | use warnings; 3 | package Kephra::App::Toolbar; 4 | 5 | 6 | 1; 7 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/App/Window.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/App/Window.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Builder.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Builder.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Builder/Accessor.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Builder/Accessor.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Builder/Attribute.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Builder/Attribute.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Builder/Constructor.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Builder/Constructor.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Builder/Method.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Builder/Method.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Builder/Method/Arguments.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Builder/Method/Arguments.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Builder/Method/Hook.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Builder/Method/Hook.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Definition.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Definition.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Definition/Attribute.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Definition/Attribute.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Definition/Attribute/Data.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Definition/Attribute/Data.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Definition/Attribute/Delegating.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Definition/Attribute/Delegating.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Definition/Attribute/Wrapping.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Definition/Attribute/Wrapping.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Definition/Method.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Definition/Method.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Definition/Method/Signature.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Definition/Method/Signature.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Definition/Scope.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Definition/Scope.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Instance.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Instance.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Instance/Argument.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Instance/Argument.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Instance/Attribute.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Instance/Attribute.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Interface.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Interface.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Registry.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Registry.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Syntax.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Syntax.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Syntax/Parser.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Syntax/Parser.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Syntax/Signature.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Class/Syntax/Signature.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Class/Type.pm: -------------------------------------------------------------------------------- 1 | use v5.20; 2 | use warnings; 3 | 4 | # 5 | 6 | package Kephra::Base::Class::Type; 7 | our $VERSION = 0.0; 8 | 9 | 1; 10 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Closure.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Closure.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Command.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Command.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Command/Center.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Command/Center.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Data.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Data.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Data/Type.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Data/Type.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Data/Type/Basic.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Data/Type/Basic.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Data/Type/Checker.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Data/Type/Checker.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Data/Type/Factory.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Data/Type/Factory.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Data/Type/Parametric.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Data/Type/Parametric.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Data/Type/Set.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Data/Type/Set.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Data/Type/Standard.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Data/Type/Standard.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Event.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Event.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Event/Table.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Event/Table.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Message.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Message.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Message/Channel.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Message/Channel.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Message/Net.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Message/Net.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Object.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Object.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Object/Attribute.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Object/Attribute.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Object/CodeSnippet.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Object/CodeSnippet.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Object/Method.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Object/Method.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Object/Method/Hook.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Object/Method/Hook.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Object/Queue.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Object/Queue.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Object/Store.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Object/Store.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Package.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Package.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Plugin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Plugin.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Plugin/Manager.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Plugin/Manager.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Base/Worker.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Base/Worker.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Config/Default/IconSet.pm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Config/Default/Localisation.pm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Config/Default/Menu.pm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Config/Default/Toolbar.pm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Document.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Document.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Document/File.pm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Document/Session.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Document/Session.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Document/Stash.pm: -------------------------------------------------------------------------------- 1 | use v5.12; 2 | use warnings; 3 | package Kephra::Document::Stash; 4 | 5 | 6 | 1; 7 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Document/SyntaxMode.pm: -------------------------------------------------------------------------------- 1 | use v5.12; 2 | use warnings; 3 | package Kephra::Document::SyntaxMode; 4 | 5 | 6 | 1; 7 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Document/Text.pm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/IO/Git.pm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/IO/Hg.pm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/IO/LocalFile.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/IO/LocalFile.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/IO/SSH.pm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/IO/Sereal.pm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/IO/Shell.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/IO/Shell.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/IO/YAML.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/IO/YAML.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/IO/Zip.pm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Plugin/Demo.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Plugin/Demo.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Project.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Project.pm -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Project/Stash.pm: -------------------------------------------------------------------------------- 1 | package Kephra::Project::Stash; 2 | 3 | 1; 4 | -------------------------------------------------------------------------------- /dev/goal/lib/Kephra/Worker.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/lib/Kephra/Worker.pm -------------------------------------------------------------------------------- /dev/goal/t/1_run.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/t/1_run.t -------------------------------------------------------------------------------- /dev/goal/t/2_consistent.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/t/2_consistent.t -------------------------------------------------------------------------------- /dev/goal/t/list_pkg_methods.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/goal/t/list_pkg_methods.pl -------------------------------------------------------------------------------- /dev/proof/gui/prima/min.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/gui/prima/min.pl -------------------------------------------------------------------------------- /dev/proof/gui/wx/XPMinline.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/gui/wx/XPMinline.pl -------------------------------------------------------------------------------- /dev/proof/gui/wx/customcursor.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/gui/wx/customcursor.pl -------------------------------------------------------------------------------- /dev/proof/gui/wx/paintbar.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/gui/wx/paintbar.pl -------------------------------------------------------------------------------- /dev/proof/gui/wx/shellio.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/gui/wx/shellio.pl -------------------------------------------------------------------------------- /dev/proof/gui/wx/sidebar.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/gui/wx/sidebar.pl -------------------------------------------------------------------------------- /dev/proof/index.cp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/index.cp.txt -------------------------------------------------------------------------------- /dev/proof/oo/Base.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Base.pm -------------------------------------------------------------------------------- /dev/proof/oo/Class.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Class.pm -------------------------------------------------------------------------------- /dev/proof/oo/Method.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Method.pm -------------------------------------------------------------------------------- /dev/proof/oo/Mo.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo.pm -------------------------------------------------------------------------------- /dev/proof/oo/Mo.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo.pod -------------------------------------------------------------------------------- /dev/proof/oo/Mo/Design.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/Design.pod -------------------------------------------------------------------------------- /dev/proof/oo/Mo/Features.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/Features.pod -------------------------------------------------------------------------------- /dev/proof/oo/Mo/Golf.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/Golf.pm -------------------------------------------------------------------------------- /dev/proof/oo/Mo/Hacking.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/Hacking.pod -------------------------------------------------------------------------------- /dev/proof/oo/Mo/Inline.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/Inline.pm -------------------------------------------------------------------------------- /dev/proof/oo/Mo/Moose.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/Moose.pm -------------------------------------------------------------------------------- /dev/proof/oo/Mo/Moose.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/Moose.pod -------------------------------------------------------------------------------- /dev/proof/oo/Mo/Mouse.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/Mouse.pm -------------------------------------------------------------------------------- /dev/proof/oo/Mo/Mouse.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/Mouse.pod -------------------------------------------------------------------------------- /dev/proof/oo/Mo/build.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/build.pm -------------------------------------------------------------------------------- /dev/proof/oo/Mo/build.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/build.pod -------------------------------------------------------------------------------- /dev/proof/oo/Mo/builder.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/builder.pm -------------------------------------------------------------------------------- /dev/proof/oo/Mo/builder.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/builder.pod -------------------------------------------------------------------------------- /dev/proof/oo/Mo/chain.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/chain.pm -------------------------------------------------------------------------------- /dev/proof/oo/Mo/chain.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/chain.pod -------------------------------------------------------------------------------- /dev/proof/oo/Mo/coerce.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/coerce.pm -------------------------------------------------------------------------------- /dev/proof/oo/Mo/coerce.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/coerce.pod -------------------------------------------------------------------------------- /dev/proof/oo/Mo/default.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/default.pm -------------------------------------------------------------------------------- /dev/proof/oo/Mo/default.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/default.pod -------------------------------------------------------------------------------- /dev/proof/oo/Mo/exporter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/exporter.pm -------------------------------------------------------------------------------- /dev/proof/oo/Mo/exports.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/exports.pod -------------------------------------------------------------------------------- /dev/proof/oo/Mo/import.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/import.pm -------------------------------------------------------------------------------- /dev/proof/oo/Mo/import.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/import.pod -------------------------------------------------------------------------------- /dev/proof/oo/Mo/importer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/importer.pm -------------------------------------------------------------------------------- /dev/proof/oo/Mo/importer.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/importer.pod -------------------------------------------------------------------------------- /dev/proof/oo/Mo/is.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/is.pm -------------------------------------------------------------------------------- /dev/proof/oo/Mo/is.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/is.pod -------------------------------------------------------------------------------- /dev/proof/oo/Mo/nonlazy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/nonlazy.pm -------------------------------------------------------------------------------- /dev/proof/oo/Mo/option.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/option.pm -------------------------------------------------------------------------------- /dev/proof/oo/Mo/option.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/option.pod -------------------------------------------------------------------------------- /dev/proof/oo/Mo/required.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/required.pm -------------------------------------------------------------------------------- /dev/proof/oo/Mo/required.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/required.pod -------------------------------------------------------------------------------- /dev/proof/oo/Mo/xs.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/xs.pm -------------------------------------------------------------------------------- /dev/proof/oo/Mo/xs.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Mo/xs.pod -------------------------------------------------------------------------------- /dev/proof/oo/MoClass.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/MoClass.pm -------------------------------------------------------------------------------- /dev/proof/oo/Parent.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/Parent.pm -------------------------------------------------------------------------------- /dev/proof/oo/User.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/User.pm -------------------------------------------------------------------------------- /dev/proof/oo/attribute.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/attribute.pl -------------------------------------------------------------------------------- /dev/proof/oo/build_method.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/build_method.pl -------------------------------------------------------------------------------- /dev/proof/oo/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/index.txt -------------------------------------------------------------------------------- /dev/proof/oo/inside_out.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/inside_out.pl -------------------------------------------------------------------------------- /dev/proof/oo/mo.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/mo.pl -------------------------------------------------------------------------------- /dev/proof/oo/new_syntax.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/new_syntax.pl -------------------------------------------------------------------------------- /dev/proof/oo/objrw.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/objrw.pl -------------------------------------------------------------------------------- /dev/proof/oo/packageloader.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/packageloader.pl -------------------------------------------------------------------------------- /dev/proof/oo/parent.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/parent.pl -------------------------------------------------------------------------------- /dev/proof/oo/scalar_object.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/oo/scalar_object.pl -------------------------------------------------------------------------------- /dev/proof/parse/braces/endbrace.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/parse/braces/endbrace.pl -------------------------------------------------------------------------------- /dev/proof/parse/keywords/KeyWords.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/parse/keywords/KeyWords.pm -------------------------------------------------------------------------------- /dev/proof/parse/keywords/keyword.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/parse/keywords/keyword.pl -------------------------------------------------------------------------------- /dev/proof/perl/Require.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/Require.pm -------------------------------------------------------------------------------- /dev/proof/perl/caller.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/caller.pl -------------------------------------------------------------------------------- /dev/proof/perl/date.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/date.pl -------------------------------------------------------------------------------- /dev/proof/perl/export/Export1.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/export/Export1.pm -------------------------------------------------------------------------------- /dev/proof/perl/export/Export2.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/export/Export2.pm -------------------------------------------------------------------------------- /dev/proof/perl/export/export_cycle.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/export/export_cycle.pl -------------------------------------------------------------------------------- /dev/proof/perl/import/Import.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/import/Import.pm -------------------------------------------------------------------------------- /dev/proof/perl/import/import.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/import/import.pl -------------------------------------------------------------------------------- /dev/proof/perl/nestval.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/nestval.pl -------------------------------------------------------------------------------- /dev/proof/perl/phaser/RequirePhaserAfter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/phaser/RequirePhaserAfter.pm -------------------------------------------------------------------------------- /dev/proof/perl/phaser/RequirePhaserBefore.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/phaser/RequirePhaserBefore.pm -------------------------------------------------------------------------------- /dev/proof/perl/phaser/UsePhaserAfter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/phaser/UsePhaserAfter.pm -------------------------------------------------------------------------------- /dev/proof/perl/phaser/UsePhaserBefore.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/phaser/UsePhaserBefore.pm -------------------------------------------------------------------------------- /dev/proof/perl/phaser/UsePhaserBefore2.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/phaser/UsePhaserBefore2.pm -------------------------------------------------------------------------------- /dev/proof/perl/phaser/phaser.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/phaser/phaser.pl -------------------------------------------------------------------------------- /dev/proof/perl/ref/ref.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/ref/ref.pl -------------------------------------------------------------------------------- /dev/proof/perl/require.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/require.pl -------------------------------------------------------------------------------- /dev/proof/perl/strict/Strict.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/strict/Strict.pm -------------------------------------------------------------------------------- /dev/proof/perl/strict/use_strict.pl: -------------------------------------------------------------------------------- 1 | BEGIN { unshift @INC, '.'} 2 | 3 | use Strict; 4 | 5 | exit 0; 6 | # $g = 1; 7 | -------------------------------------------------------------------------------- /dev/proof/perl/symbol_table.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/symbol_table.pl -------------------------------------------------------------------------------- /dev/proof/perl/undef.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/perl/undef.pl -------------------------------------------------------------------------------- /dev/proof/stc/doubleview.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/stc/doubleview.pl -------------------------------------------------------------------------------- /dev/proof/stc/ed.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/stc/ed.pl -------------------------------------------------------------------------------- /dev/proof/stc/uni.txt: -------------------------------------------------------------------------------- 1 | äöü 2 | -------------------------------------------------------------------------------- /dev/proof/sys/dir.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/sys/dir.pl -------------------------------------------------------------------------------- /dev/proof/sys/env.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/sys/env.pl -------------------------------------------------------------------------------- /dev/proof/sys/findlib.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/sys/findlib.pl -------------------------------------------------------------------------------- /dev/proof/wx/XPMconverter.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/XPMconverter.pl -------------------------------------------------------------------------------- /dev/proof/wx/keylog.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/keylog.pl -------------------------------------------------------------------------------- /dev/proof/wx/list.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/list.pl -------------------------------------------------------------------------------- /dev/proof/wx/min/minedit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/min/minedit.pl -------------------------------------------------------------------------------- /dev/proof/wx/min/t/01_compile.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/min/t/01_compile.t -------------------------------------------------------------------------------- /dev/proof/wx/status.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/status.pl -------------------------------------------------------------------------------- /dev/proof/wx/tabbar/auitabbar.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/tabbar/auitabbar.pl -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/application-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/application-blue.png -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/application-dock-090.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/application-dock-090.png -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/application-dock-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/application-dock-180.png -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/application-dock-270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/application-dock-270.png -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/application-dock-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/application-dock-tab.png -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/application-dock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/application-dock.png -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/application-resize-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/application-resize-full.png -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/colorpicker.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/colorpicker.xpm -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/down_bar.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/down_bar.xpm -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/edit_copy.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/edit_copy.xpm -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/edit_find.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/edit_find.xpm -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/edit_paste.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/edit_paste.xpm -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/empty.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/empty.xpm -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/eraser.png -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/file-open.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/file-open.xpm -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/file_edit.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/file_edit.xpm -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/file_save.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/file_save.xpm -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/information-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/information-frame.png -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/iso.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/iso.txt -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/left_bar.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/left_bar.xpm -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/note.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/note.xpm -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/proton.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/proton.xpm -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/run_skript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/data/run_skript.png -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/data/utf.txt: -------------------------------------------------------------------------------- 1 | öäüäöü -------------------------------------------------------------------------------- /dev/proof/wx/toolbar/toolbar.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/toolbar/toolbar.pl -------------------------------------------------------------------------------- /dev/proof/wx/wxspltter.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/proof/wx/wxspltter.pl -------------------------------------------------------------------------------- /dev/release/ded/bin/kephra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/bin/kephra -------------------------------------------------------------------------------- /dev/release/ded/has/feature/filebrowser/filebrowser.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/feature/filebrowser/filebrowser.pl -------------------------------------------------------------------------------- /dev/release/ded/has/feature/img/sed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/feature/img/sed.png -------------------------------------------------------------------------------- /dev/release/ded/has/feature/index.cp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/feature/index.cp.txt -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/index.cp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/index.cp.txt -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Builder.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Builder.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Builder/Accessor.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Builder/Accessor.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Builder/Attribute.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Builder/Attribute.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Builder/Constructor.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Builder/Constructor.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Builder/Method.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Builder/Method.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Builder/Method/Arguments.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Builder/Method/Arguments.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Builder/Method/Hook.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Builder/Method/Hook.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Definition.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Definition.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Definition/Attribute.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Definition/Attribute.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Definition/Method.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Definition/Method.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Definition/Method/Signature.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Definition/Method/Signature.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Definition/Scope.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Definition/Scope.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Definition/Store.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Definition/Store.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Instance.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Instance.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Instance/Argument.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Instance/Argument.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Instance/Attribute.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Instance/Attribute.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Interface.pm: -------------------------------------------------------------------------------- 1 | use v5.20; 2 | us warnings; 3 | 4 | package Kephra::Base::Class::Interface; 5 | our $VERSION = 0.0; 6 | 7 | 1; 8 | -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Syntax.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Syntax.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Syntax/Parser.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Syntax/Parser.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Syntax/Signature.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Syntax/Signature.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Type.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Class/Type.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Closure.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Closure.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Data.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Data.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Data/Type.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Data/Type.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Data/Type/Basic.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Data/Type/Basic.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Data/Type/Parametric.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Data/Type/Parametric.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Data/Type/Standard.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Data/Type/Standard.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Data/Type/Store.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Data/Type/Store.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Data/Type/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Data/Type/Util.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Package.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/lib/Kephra/Base/Package.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/status.cp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/status.cp.txt -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0101_Base-Class-Definition-Scope.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0101_Base-Class-Definition-Scope.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0102_Base-Class-Definition-Attribute.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0102_Base-Class-Definition-Attribute.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0103_Base-Class-Definition-Method.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0103_Base-Class-Definition-Method.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0104_Base-Class-Definition.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0104_Base-Class-Definition.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0105_Base-Class-Definition-Store.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0105_Base-Class-Definition-Store.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0109_Base-Class-Instance-Attribute.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0109_Base-Class-Instance-Attribute.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0110_Base-Class-Instance-Arguments.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0110_Base-Class-Instance-Arguments.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0111_Base-Class-Instance.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0111_Base-Class-Instance.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0112_Base-Class-Registry.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0112_Base-Class-Registry.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0113_Base-Class-Builder-Attribute.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0113_Base-Class-Builder-Attribute.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0114_Base-Class-Builder-Method-Arguments.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0114_Base-Class-Builder-Method-Arguments.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0115_Base-Class-Builder-Method-Hook.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0115_Base-Class-Builder-Method-Hook.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0116_Base-Class-Builder-Accessor.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0116_Base-Class-Builder-Accessor.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0117_Base-Class-Builder-Constructor.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0117_Base-Class-Builder-Constructor.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0118_Base-Class-Builder-Method.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0118_Base-Class-Builder-Method.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0119_Base-Class-Builder.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0119_Base-Class-Builder.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0120_Base-Class-Syntax-Signature.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0120_Base-Class-Syntax-Signature.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0121_Base-Class-Syntax-Parser.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0121_Base-Class-Syntax-Parser.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0122_Base-Class-Syntax.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0122_Base-Class-Syntax.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0123_Base-Class.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0123_Base-Class.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/0131_Base-Class-Type.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/0131_Base-Class-Type.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base-Class/bed/t/TestClass.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base-Class/bed/t/TestClass.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/lib/Kephra/Base.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/lib/Kephra/Base.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Closure.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Closure.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Data.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Data.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Data/Type.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Data/Type.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Data/Type/Basic.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Data/Type/Basic.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Data/Type/Checker.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Data/Type/Checker.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Data/Type/Factory.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Data/Type/Factory.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Data/Type/Parametric.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Data/Type/Parametric.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Data/Type/Set.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Data/Type/Set.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Data/Type/Standard.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Data/Type/Standard.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Package.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/lib/Kephra/Base/Package.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/status.cp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/status.cp.txt -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/t/0001_Base-Package.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/t/0001_Base-Package.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/t/0002_Base-Data-Type-Basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/t/0002_Base-Data-Type-Basic.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/t/0003_Base-Data-Type-Parametric.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/t/0003_Base-Data-Type-Parametric.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/t/0004_Base-Data-Type-Factory.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/t/0004_Base-Data-Type-Factory.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/t/0005_Base-Data-Type-Set.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/t/0005_Base-Data-Type-Set.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/t/0006_Base-Data-Type-Standard.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/t/0006_Base-Data-Type-Standard.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/t/0007_Base-Data-Type-Checker.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/t/0007_Base-Data-Type-Checker.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/t/0008_Base-Data-Type.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/t/0008_Base-Data-Type.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/t/0009_Base-Data.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/t/0009_Base-Data.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/t/0010_Base-Closure.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/t/0010_Base-Closure.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/Base/bed/t/TestClass.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/Base/bed/t/TestClass.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/index.cp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/index.cp.txt -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Call-Dynamic-Template/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Call-Dynamic-Template/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Call-Dynamic-Template/lib/Kephra/API/Call.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Call-Dynamic-Template/lib/Kephra/API/Call.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Call-Dynamic-Template/lib/Kephra/API/Call/Dynamic.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Call-Dynamic-Template/lib/Kephra/API/Call/Dynamic.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Call-Dynamic-Template/lib/Kephra/API/Call/Dynamic/Template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Call-Dynamic-Template/lib/Kephra/API/Call/Dynamic/Template.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Call-Dynamic-Template/lib/Kephra/API/Call/Template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Call-Dynamic-Template/lib/Kephra/API/Call/Template.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Call-Dynamic-Template/lib/Kephra/API/Object.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Call-Dynamic-Template/lib/Kephra/API/Object.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Call-Dynamic-Template/t/010_Call-Template_namespaces.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Call-Dynamic-Template/t/010_Call-Template_namespaces.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Call-Dynamic-Template/t/011_API-Call_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Call-Dynamic-Template/t/011_API-Call_usage.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Call-Dynamic-Template/t/012_API-Call-Template_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Call-Dynamic-Template/t/012_API-Call-Template_usage.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Call-Dynamic-Template/t/013_API-Call-Dynamic_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Call-Dynamic-Template/t/013_API-Call-Dynamic_usage.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Call-Dynamic-Template/t/014_API-Call-Dynamic-Template_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Call-Dynamic-Template/t/014_API-Call-Dynamic-Template_usage.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Call-Dynamic-Template/t/TestClass.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Call-Dynamic-Template/t/TestClass.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Command-Center/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Command-Center/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Command-Center/lib/Kephra/API/Command.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Command-Center/lib/Kephra/API/Command.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Command-Center/lib/Kephra/API/Command/Center.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Command-Center/lib/Kephra/API/Command/Center.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API/Call.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API/Call.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API/Call/Template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API/Call/Template.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API/Event/Table.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API/Event/Table.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API/Message/Net.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API/Message/Net.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API/Object.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API/Object.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API/Object/Hook.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API/Object/Hook.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API/Object/Queue.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API/Object/Queue.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API/Object/Store.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API/Object/Store.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API/Package.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Event-Table/lib/Kephra/API/Package.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Event-Table/t/040_API-Event-Table_namespaces.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Event-Table/t/040_API-Event-Table_namespaces.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Event-Table/t/041_API-Event_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Event-Table/t/041_API-Event_usage.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Event-Table/t/042_API-Event-Table_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Event-Table/t/042_API-Event-Table_usage.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Event-Table/t/043_API_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Event-Table/t/043_API_usage.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Call.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Call.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Call/Dynamic.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Call/Dynamic.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Call/Dynamic/Template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Call/Dynamic/Template.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Call/Template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Call/Template.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Message.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Message.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Message/Channel.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Message/Channel.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Message/Net.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Message/Net.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Object.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Object.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Object/Hook.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Object/Hook.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Object/Queue.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Object/Queue.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Object/Store.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Object/Store.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Package.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Message-Net/lib/Kephra/API/Package.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Message-Net/t/030_API-Message-Net_namespaces.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Message-Net/t/030_API-Message-Net_namespaces.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Message-Net/t/031_API-Message_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Message-Net/t/031_API-Message_usage.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Message-Net/t/032_API-Message-Channel_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Message-Net/t/032_API-Message-Channel_usage.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Message-Net/t/033_API-Message-Net_usage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Message-Net/t/033_API-Message-Net_usage.pl -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Message-Net/t/034_API_usage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Message-Net/t/034_API_usage.pl -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Message-Net/t/037_APIMessageNetUsage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Message-Net/t/037_APIMessageNetUsage.pl -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API/Call.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API/Call.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API/Call/Dynamic.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API/Call/Dynamic.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API/Call/Dynamic/Template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API/Call/Dynamic/Template.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API/Call/Template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API/Call/Template.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API/Object.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API/Object.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API/Object/Hook.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API/Object/Hook.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API/Object/Queue.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API/Object/Queue.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API/Object/Store.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API/Object/Store.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API/Package.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object-Store/lib/Kephra/API/Package.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object-Store/t/020_API-Object-Store_namespaces.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object-Store/t/020_API-Object-Store_namespaces.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object-Store/t/021_API-Object-Hook_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object-Store/t/021_API-Object-Hook_usage.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object-Store/t/022_API-Object-Queue_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object-Store/t/022_API-Object-Queue_usage.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object-Store/t/023_API-Object-Store_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object-Store/t/023_API-Object-Store_usage.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object-Store/t/DerivedTestClass.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object-Store/t/DerivedTestClass.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object-Store/t/TestClass.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object-Store/t/TestClass.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object/lib/Kephra/API/Class.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object/lib/Kephra/API/Class.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object/lib/Kephra/API/Class/Attribute.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object/lib/Kephra/API/Class/Attribute.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object/lib/Kephra/API/Data.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object/lib/Kephra/API/Data.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object/lib/Kephra/API/Data/Type.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object/lib/Kephra/API/Data/Type.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object/lib/Kephra/API/Object.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object/lib/Kephra/API/Object.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object/lib/Kephra/API/Package.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object/lib/Kephra/API/Package.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object/t/000_API-Class_namespaces.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object/t/000_API-Class_namespaces.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object/t/001_API-Data_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object/t/001_API-Data_usage.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object/t/002_API-Data-Type_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object/t/002_API-Data-Type_usage.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object/t/003_API-Package_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object/t/003_API-Package_usage.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object/t/004_API-Object_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object/t/004_API-Object_usage.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object/t/005_API-Class_usage .t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object/t/005_API-Class_usage .t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object/t/006_API-Class-Attribute_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object/t/006_API-Class-Attribute_usage.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API-Object/t/TestClass.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API-Object/t/TestClass.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API/lib/Kephra/API/Call.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API/lib/Kephra/API/Call.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API/lib/Kephra/API/Call/Template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API/lib/Kephra/API/Call/Template.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API/lib/Kephra/API/Object.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API/lib/Kephra/API/Object.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API/lib/Kephra/API/Object/Hook.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API/lib/Kephra/API/Object/Hook.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API/lib/Kephra/API/Object/Queue.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API/lib/Kephra/API/Object/Queue.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API/lib/Kephra/API/Object/Store.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API/lib/Kephra/API/Object/Store.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API/lib/Kephra/API/Package.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API/lib/Kephra/API/Package.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API/t/050_API_namespace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API/t/050_API_namespace.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API/t/051_API_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/API/t/051_API_usage.t -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/API/t/052_API_import.pl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/App-Bar-Tab/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/App-Bar-Tab/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/App-Bar-Tab/lib/Kephra/App.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/App-Bar-Tab/lib/Kephra/App.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/App-Bar-Tab/lib/Kephra/App/DocBar.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/App-Bar-Tab/lib/Kephra/App/DocBar.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/App-Bar-Tab/lib/Kephra/App/Editor.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/App-Bar-Tab/lib/Kephra/App/Editor.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/App-Bar-Tab/lib/Kephra/App/Panel.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/App-Bar-Tab/lib/Kephra/App/Panel.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/App-Bar-Tab/lib/Kephra/App/Sizer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/App-Bar-Tab/lib/Kephra/App/Sizer.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/App-Bar-Tab/lib/Kephra/App/Window.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/App-Bar-Tab/lib/Kephra/App/Window.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/App-Bar-Tab/lib/kephra.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/App-Bar-Tab/lib/kephra.pl -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/App-Editor/lib/Kephra/App/Editor.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/App-Editor/lib/Kephra/App/Editor.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/App-Editor/lib/kephra.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/App-Editor/lib/kephra.pl -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/App-Sizer/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/App-Sizer/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/App-Sizer/lib/Kephra/App/Sizer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/App-Sizer/lib/Kephra/App/Sizer.pm -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/App-Sizer/lib/kephra.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/App-Sizer/lib/kephra.pl -------------------------------------------------------------------------------- /dev/release/ded/has/module/old/App-Sizer/t/021_sizer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/has/module/old/App-Sizer/t/021_sizer.t -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Dialog.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Dialog.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Dialog/About.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Dialog/About.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/Document.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/Document.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/Edit.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/Edit.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/Events.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/Events.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/Goto.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/Goto.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/Move.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/Move.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/Position.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/Position.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/Property.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/Property.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/Select.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/Select.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/SyntaxMode.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/SyntaxMode.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/Bash.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/Bash.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/CPP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/CPP.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/JSON.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/JSON.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/Markodown.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/Markodown.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/No.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/No.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/Perl.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/Perl.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/Python.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/Python.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/Ruby.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/Ruby.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/Rust.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/Rust.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/YAML.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/SyntaxMode/YAML.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/Tool.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/Tool.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Editor/View.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Editor/View.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/ReplaceBar.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/ReplaceBar.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/SearchBar.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/SearchBar.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Window.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Window.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/App/Window/Menu.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/App/Window/Menu.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/Config.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/Config/Default.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/Config/Default.pm -------------------------------------------------------------------------------- /dev/release/ded/lib/Kephra/IO/LocalFile.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/lib/Kephra/IO/LocalFile.pm -------------------------------------------------------------------------------- /dev/release/ded/status.cp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/status.cp.txt -------------------------------------------------------------------------------- /dev/release/ded/t/01_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/ded/t/01_load.t -------------------------------------------------------------------------------- /dev/release/index.cp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/index.cp.txt -------------------------------------------------------------------------------- /dev/release/old/bed/bin/kephra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/bed/bin/kephra -------------------------------------------------------------------------------- /dev/release/old/bed/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/bed/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/old/bed/lib/Kephra/App.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/bed/lib/Kephra/App.pm -------------------------------------------------------------------------------- /dev/release/old/bed/lib/Kephra/App/Bar/Tab.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/bed/lib/Kephra/App/Bar/Tab.pm -------------------------------------------------------------------------------- /dev/release/old/bed/lib/Kephra/App/Dialog.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/bed/lib/Kephra/App/Dialog.pm -------------------------------------------------------------------------------- /dev/release/old/bed/lib/Kephra/App/Editor.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/bed/lib/Kephra/App/Editor.pm -------------------------------------------------------------------------------- /dev/release/old/bed/lib/Kephra/App/Panel.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/bed/lib/Kephra/App/Panel.pm -------------------------------------------------------------------------------- /dev/release/old/bed/lib/Kephra/App/Panel/Doc.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/bed/lib/Kephra/App/Panel/Doc.pm -------------------------------------------------------------------------------- /dev/release/old/bed/lib/Kephra/App/Sizer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/bed/lib/Kephra/App/Sizer.pm -------------------------------------------------------------------------------- /dev/release/old/bed/lib/Kephra/App/Splitter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/bed/lib/Kephra/App/Splitter.pm -------------------------------------------------------------------------------- /dev/release/old/bed/lib/Kephra/App/Window.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/bed/lib/Kephra/App/Window.pm -------------------------------------------------------------------------------- /dev/release/old/bed/lib/Kephra/Document.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/bed/lib/Kephra/Document.pm -------------------------------------------------------------------------------- /dev/release/old/bed/lib/Kephra/Document/Session.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/bed/lib/Kephra/Document/Session.pm -------------------------------------------------------------------------------- /dev/release/old/bed/lib/Kephra/Document/Stash.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/bed/lib/Kephra/Document/Stash.pm -------------------------------------------------------------------------------- /dev/release/old/bed/lib/Kephra/Document/SyntaxMode.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/bed/lib/Kephra/Document/SyntaxMode.pm -------------------------------------------------------------------------------- /dev/release/old/bed/lib/Kephra/IO/LocalFile.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/bed/lib/Kephra/IO/LocalFile.pm -------------------------------------------------------------------------------- /dev/release/old/ded/bin/kephra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/ded/bin/kephra -------------------------------------------------------------------------------- /dev/release/old/ded/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/ded/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/old/ded/lib/Kephra/App.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/ded/lib/Kephra/App.pm -------------------------------------------------------------------------------- /dev/release/old/ded/lib/Kephra/App/Bar/Search.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/ded/lib/Kephra/App/Bar/Search.pm -------------------------------------------------------------------------------- /dev/release/old/ded/lib/Kephra/App/Bar/Tab.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/ded/lib/Kephra/App/Bar/Tab.pm -------------------------------------------------------------------------------- /dev/release/old/ded/lib/Kephra/App/Dialog.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/ded/lib/Kephra/App/Dialog.pm -------------------------------------------------------------------------------- /dev/release/old/ded/lib/Kephra/App/Editor.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/ded/lib/Kephra/App/Editor.pm -------------------------------------------------------------------------------- /dev/release/old/ded/lib/Kephra/App/Panel.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/ded/lib/Kephra/App/Panel.pm -------------------------------------------------------------------------------- /dev/release/old/ded/lib/Kephra/App/Panel/Doc.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/ded/lib/Kephra/App/Panel/Doc.pm -------------------------------------------------------------------------------- /dev/release/old/ded/lib/Kephra/App/Sizer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/ded/lib/Kephra/App/Sizer.pm -------------------------------------------------------------------------------- /dev/release/old/ded/lib/Kephra/App/Splitter.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/ded/lib/Kephra/App/Splitter.pm -------------------------------------------------------------------------------- /dev/release/old/ded/lib/Kephra/App/Window.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/ded/lib/Kephra/App/Window.pm -------------------------------------------------------------------------------- /dev/release/old/ded/lib/Kephra/Document.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/ded/lib/Kephra/Document.pm -------------------------------------------------------------------------------- /dev/release/old/ded/lib/Kephra/Document/Session.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/ded/lib/Kephra/Document/Session.pm -------------------------------------------------------------------------------- /dev/release/old/ded/lib/Kephra/Document/Stash.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/ded/lib/Kephra/Document/Stash.pm -------------------------------------------------------------------------------- /dev/release/old/ded/lib/Kephra/Document/SyntaxMode.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/ded/lib/Kephra/Document/SyntaxMode.pm -------------------------------------------------------------------------------- /dev/release/old/ded/lib/Kephra/IO/LocalFile.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/ded/lib/Kephra/IO/LocalFile.pm -------------------------------------------------------------------------------- /dev/release/old/ded/session.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/ded/session.yml -------------------------------------------------------------------------------- /dev/release/old/ded/status.cp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/ded/status.cp.txt -------------------------------------------------------------------------------- /dev/release/old/has/API-Call-Dynamic-Template/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Call-Dynamic-Template/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Call-Dynamic-Template/lib/Kephra/API/Call.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Call-Dynamic-Template/lib/Kephra/API/Call.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Call-Dynamic-Template/lib/Kephra/API/Call/Dynamic.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Call-Dynamic-Template/lib/Kephra/API/Call/Dynamic.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Call-Dynamic-Template/lib/Kephra/API/Call/Dynamic/Template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Call-Dynamic-Template/lib/Kephra/API/Call/Dynamic/Template.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Call-Dynamic-Template/lib/Kephra/API/Call/Template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Call-Dynamic-Template/lib/Kephra/API/Call/Template.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Call-Dynamic-Template/lib/Kephra/API/Object.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Call-Dynamic-Template/lib/Kephra/API/Object.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Call-Dynamic-Template/t/010_Call-Template_namespaces.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Call-Dynamic-Template/t/010_Call-Template_namespaces.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Call-Dynamic-Template/t/011_API-Call_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Call-Dynamic-Template/t/011_API-Call_usage.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Call-Dynamic-Template/t/012_API-Call-Template_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Call-Dynamic-Template/t/012_API-Call-Template_usage.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Call-Dynamic-Template/t/013_API-Call-Dynamic_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Call-Dynamic-Template/t/013_API-Call-Dynamic_usage.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Call-Dynamic-Template/t/014_API-Call-Dynamic-Template_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Call-Dynamic-Template/t/014_API-Call-Dynamic-Template_usage.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Call-Dynamic-Template/t/TestClass.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Call-Dynamic-Template/t/TestClass.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Command-Center/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Command-Center/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Command-Center/lib/Kephra/API/Command.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Command-Center/lib/Kephra/API/Command.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Command-Center/lib/Kephra/API/Command/Center.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Command-Center/lib/Kephra/API/Command/Center.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Event-Table/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Event-Table/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Event-Table/lib/Kephra/API/Call.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Event-Table/lib/Kephra/API/Call.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Event-Table/lib/Kephra/API/Call/Template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Event-Table/lib/Kephra/API/Call/Template.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Event-Table/lib/Kephra/API/Event/Table.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Event-Table/lib/Kephra/API/Event/Table.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Event-Table/lib/Kephra/API/Message/Net.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Event-Table/lib/Kephra/API/Message/Net.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Event-Table/lib/Kephra/API/Object.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Event-Table/lib/Kephra/API/Object.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Event-Table/lib/Kephra/API/Object/Hook.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Event-Table/lib/Kephra/API/Object/Hook.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Event-Table/lib/Kephra/API/Object/Queue.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Event-Table/lib/Kephra/API/Object/Queue.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Event-Table/lib/Kephra/API/Object/Store.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Event-Table/lib/Kephra/API/Object/Store.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Event-Table/lib/Kephra/API/Package.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Event-Table/lib/Kephra/API/Package.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Event-Table/t/040_API-Event-Table_namespaces.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Event-Table/t/040_API-Event-Table_namespaces.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Event-Table/t/041_API-Event_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Event-Table/t/041_API-Event_usage.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Event-Table/t/042_API-Event-Table_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Event-Table/t/042_API-Event-Table_usage.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Event-Table/t/043_API_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Event-Table/t/043_API_usage.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Message-Net/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Message-Net/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Message-Net/lib/Kephra/API/Call.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Message-Net/lib/Kephra/API/Call.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Message-Net/lib/Kephra/API/Call/Dynamic.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Message-Net/lib/Kephra/API/Call/Dynamic.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Message-Net/lib/Kephra/API/Call/Dynamic/Template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Message-Net/lib/Kephra/API/Call/Dynamic/Template.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Message-Net/lib/Kephra/API/Call/Template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Message-Net/lib/Kephra/API/Call/Template.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Message-Net/lib/Kephra/API/Message.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Message-Net/lib/Kephra/API/Message.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Message-Net/lib/Kephra/API/Message/Channel.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Message-Net/lib/Kephra/API/Message/Channel.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Message-Net/lib/Kephra/API/Message/Net.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Message-Net/lib/Kephra/API/Message/Net.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Message-Net/lib/Kephra/API/Object.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Message-Net/lib/Kephra/API/Object.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Message-Net/lib/Kephra/API/Object/Hook.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Message-Net/lib/Kephra/API/Object/Hook.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Message-Net/lib/Kephra/API/Object/Queue.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Message-Net/lib/Kephra/API/Object/Queue.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Message-Net/lib/Kephra/API/Object/Store.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Message-Net/lib/Kephra/API/Object/Store.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Message-Net/lib/Kephra/API/Package.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Message-Net/lib/Kephra/API/Package.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Message-Net/t/030_API-Message-Net_namespaces.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Message-Net/t/030_API-Message-Net_namespaces.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Message-Net/t/031_API-Message_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Message-Net/t/031_API-Message_usage.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Message-Net/t/032_API-Message-Channel_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Message-Net/t/032_API-Message-Channel_usage.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Message-Net/t/033_API-Message-Net_usage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Message-Net/t/033_API-Message-Net_usage.pl -------------------------------------------------------------------------------- /dev/release/old/has/API-Message-Net/t/034_API_usage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Message-Net/t/034_API_usage.pl -------------------------------------------------------------------------------- /dev/release/old/has/API-Message-Net/t/037_APIMessageNetUsage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Message-Net/t/037_APIMessageNetUsage.pl -------------------------------------------------------------------------------- /dev/release/old/has/API-Object-Store/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object-Store/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Object-Store/lib/Kephra/API/Call.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object-Store/lib/Kephra/API/Call.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Object-Store/lib/Kephra/API/Call/Dynamic.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object-Store/lib/Kephra/API/Call/Dynamic.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Object-Store/lib/Kephra/API/Call/Dynamic/Template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object-Store/lib/Kephra/API/Call/Dynamic/Template.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Object-Store/lib/Kephra/API/Call/Template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object-Store/lib/Kephra/API/Call/Template.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Object-Store/lib/Kephra/API/Object.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object-Store/lib/Kephra/API/Object.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Object-Store/lib/Kephra/API/Object/Hook.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object-Store/lib/Kephra/API/Object/Hook.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Object-Store/lib/Kephra/API/Object/Queue.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object-Store/lib/Kephra/API/Object/Queue.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Object-Store/lib/Kephra/API/Object/Store.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object-Store/lib/Kephra/API/Object/Store.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Object-Store/lib/Kephra/API/Package.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object-Store/lib/Kephra/API/Package.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Object-Store/t/020_API-Object-Store_namespaces.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object-Store/t/020_API-Object-Store_namespaces.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Object-Store/t/021_API-Object-Hook_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object-Store/t/021_API-Object-Hook_usage.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Object-Store/t/022_API-Object-Queue_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object-Store/t/022_API-Object-Queue_usage.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Object-Store/t/023_API-Object-Store_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object-Store/t/023_API-Object-Store_usage.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Object-Store/t/DerivedTestClass.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object-Store/t/DerivedTestClass.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Object-Store/t/TestClass.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object-Store/t/TestClass.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Object/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Object/lib/Kephra/API/Class.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object/lib/Kephra/API/Class.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Object/lib/Kephra/API/Class/Attribute.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object/lib/Kephra/API/Class/Attribute.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Object/lib/Kephra/API/Data.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object/lib/Kephra/API/Data.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Object/lib/Kephra/API/Data/Type.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object/lib/Kephra/API/Data/Type.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Object/lib/Kephra/API/Object.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object/lib/Kephra/API/Object.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Object/lib/Kephra/API/Package.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object/lib/Kephra/API/Package.pm -------------------------------------------------------------------------------- /dev/release/old/has/API-Object/t/000_API-Class_namespaces.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object/t/000_API-Class_namespaces.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Object/t/001_API-Data_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object/t/001_API-Data_usage.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Object/t/002_API-Data-Type_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object/t/002_API-Data-Type_usage.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Object/t/003_API-Package_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object/t/003_API-Package_usage.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Object/t/004_API-Object_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object/t/004_API-Object_usage.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Object/t/005_API-Class_usage .t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object/t/005_API-Class_usage .t -------------------------------------------------------------------------------- /dev/release/old/has/API-Object/t/006_API-Class-Attribute_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object/t/006_API-Class-Attribute_usage.t -------------------------------------------------------------------------------- /dev/release/old/has/API-Object/t/TestClass.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API-Object/t/TestClass.pm -------------------------------------------------------------------------------- /dev/release/old/has/API/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/old/has/API/lib/Kephra/API/Call.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API/lib/Kephra/API/Call.pm -------------------------------------------------------------------------------- /dev/release/old/has/API/lib/Kephra/API/Call/Template.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API/lib/Kephra/API/Call/Template.pm -------------------------------------------------------------------------------- /dev/release/old/has/API/lib/Kephra/API/Object.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API/lib/Kephra/API/Object.pm -------------------------------------------------------------------------------- /dev/release/old/has/API/lib/Kephra/API/Object/Hook.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API/lib/Kephra/API/Object/Hook.pm -------------------------------------------------------------------------------- /dev/release/old/has/API/lib/Kephra/API/Object/Queue.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API/lib/Kephra/API/Object/Queue.pm -------------------------------------------------------------------------------- /dev/release/old/has/API/lib/Kephra/API/Object/Store.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API/lib/Kephra/API/Object/Store.pm -------------------------------------------------------------------------------- /dev/release/old/has/API/lib/Kephra/API/Package.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API/lib/Kephra/API/Package.pm -------------------------------------------------------------------------------- /dev/release/old/has/API/t/050_API_namespace.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API/t/050_API_namespace.t -------------------------------------------------------------------------------- /dev/release/old/has/API/t/051_API_usage.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/API/t/051_API_usage.t -------------------------------------------------------------------------------- /dev/release/old/has/API/t/052_API_import.pl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/release/old/has/App-Bar-Tab/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/App-Bar-Tab/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/old/has/App-Bar-Tab/lib/Kephra/App.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/App-Bar-Tab/lib/Kephra/App.pm -------------------------------------------------------------------------------- /dev/release/old/has/App-Bar-Tab/lib/Kephra/App/DocBar.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/App-Bar-Tab/lib/Kephra/App/DocBar.pm -------------------------------------------------------------------------------- /dev/release/old/has/App-Bar-Tab/lib/Kephra/App/Editor.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/App-Bar-Tab/lib/Kephra/App/Editor.pm -------------------------------------------------------------------------------- /dev/release/old/has/App-Bar-Tab/lib/Kephra/App/Panel.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/App-Bar-Tab/lib/Kephra/App/Panel.pm -------------------------------------------------------------------------------- /dev/release/old/has/App-Bar-Tab/lib/Kephra/App/Sizer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/App-Bar-Tab/lib/Kephra/App/Sizer.pm -------------------------------------------------------------------------------- /dev/release/old/has/App-Bar-Tab/lib/Kephra/App/Window.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/App-Bar-Tab/lib/Kephra/App/Window.pm -------------------------------------------------------------------------------- /dev/release/old/has/App-Bar-Tab/lib/kephra.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/App-Bar-Tab/lib/kephra.pl -------------------------------------------------------------------------------- /dev/release/old/has/App-Editor/lib/Kephra/App/Editor.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/App-Editor/lib/Kephra/App/Editor.pm -------------------------------------------------------------------------------- /dev/release/old/has/App-Editor/lib/kephra.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/App-Editor/lib/kephra.pl -------------------------------------------------------------------------------- /dev/release/old/has/App-Sizer/lib/Kephra/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/App-Sizer/lib/Kephra/API.pm -------------------------------------------------------------------------------- /dev/release/old/has/App-Sizer/lib/Kephra/App/Sizer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/App-Sizer/lib/Kephra/App/Sizer.pm -------------------------------------------------------------------------------- /dev/release/old/has/App-Sizer/lib/kephra.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/App-Sizer/lib/kephra.pl -------------------------------------------------------------------------------- /dev/release/old/has/App-Sizer/t/021_sizer.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/has/App-Sizer/t/021_sizer.t -------------------------------------------------------------------------------- /dev/release/old/index.cp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/index.cp.txt -------------------------------------------------------------------------------- /dev/release/old/less/bin/kephra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/bin/kephra -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Dialog.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Dialog.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Dialog/About.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Dialog/About.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/Document.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/Document.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/Edit.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/Edit.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/Events.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/Events.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/Goto.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/Goto.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/Move.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/Move.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/Position.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/Position.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/Property.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/Property.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/Select.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/Select.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/Bash.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/Bash.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/CPP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/CPP.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/JSON.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/JSON.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/Markodown.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/Markodown.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/No.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/No.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/Perl.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/Perl.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/Python.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/Python.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/Ruby.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/Ruby.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/Rust.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/Rust.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/YAML.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/SyntaxMode/YAML.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/Tool.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/Tool.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Editor/View.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Editor/View.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/ReplaceBar.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/ReplaceBar.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/SearchBar.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/SearchBar.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Window.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Window.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/App/Window/Menu.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/App/Window/Menu.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/Config.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/Config/Default.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/Config/Default.pm -------------------------------------------------------------------------------- /dev/release/old/less/lib/Kephra/IO/LocalFile.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/lib/Kephra/IO/LocalFile.pm -------------------------------------------------------------------------------- /dev/release/old/less/status.cp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/status.cp.txt -------------------------------------------------------------------------------- /dev/release/old/less/t/01_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/old/less/t/01_load.t -------------------------------------------------------------------------------- /dev/release/sed/bin/kephra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/bin/kephra -------------------------------------------------------------------------------- /dev/release/sed/bin/session.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/bin/session.yml -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Dialog.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Dialog.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Dialog/About.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Dialog/About.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Editor.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Editor.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Editor/Edit.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Editor/Edit.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Editor/Move.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Editor/Move.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Editor/Position.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Editor/Position.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Editor/Property.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Editor/Property.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Editor/Select.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Editor/Select.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Editor/SyntaxMode.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Editor/SyntaxMode.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/Bash.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/Bash.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/CPP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/CPP.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/JSON.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/JSON.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/Markodown.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/Markodown.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/No.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/No.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/Perl.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/Perl.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/Python.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/Python.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/Ruby.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/Ruby.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/Rust.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/Rust.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/YAML.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Editor/SyntaxMode/YAML.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Editor/Tool.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Editor/Tool.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Editor/View.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Editor/View.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/ReplaceBar.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/ReplaceBar.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/SearchBar.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/SearchBar.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Window.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Window.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/App/Window/Menu.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/App/Window/Menu.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/Config.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/Config/Default.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/Config/Default.pm -------------------------------------------------------------------------------- /dev/release/sed/lib/Kephra/IO/LocalFile.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/lib/Kephra/IO/LocalFile.pm -------------------------------------------------------------------------------- /dev/release/sed/status.cp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/status.cp.txt -------------------------------------------------------------------------------- /dev/release/sed/t/01_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/release/sed/t/01_load.t -------------------------------------------------------------------------------- /dev/sketch/feature/edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/sketch/feature/edit.txt -------------------------------------------------------------------------------- /dev/sketch/feature/features.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/sketch/feature/features.txt -------------------------------------------------------------------------------- /dev/sketch/feature/fileio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/sketch/feature/fileio.txt -------------------------------------------------------------------------------- /dev/sketch/feature/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/sketch/feature/index.txt -------------------------------------------------------------------------------- /dev/sketch/feature/links.txt: -------------------------------------------------------------------------------- 1 | project: 2 | 3 | 4 | filebrowser 5 | -------------------------------------------------------------------------------- /dev/sketch/feature/modi.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/sketch/feature/undo.txt: -------------------------------------------------------------------------------- 1 | fast (5+ steps) 2 | 3 | localized undo redo 4 | 5 | 6 | branched 7 | -------------------------------------------------------------------------------- /dev/sketch/feature/vcs.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/sketch/goal/cp_index_syntax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/sketch/goal/cp_index_syntax.txt -------------------------------------------------------------------------------- /dev/sketch/goal/dreamlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/sketch/goal/dreamlist.txt -------------------------------------------------------------------------------- /dev/sketch/goal/gui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/sketch/goal/gui.txt -------------------------------------------------------------------------------- /dev/sketch/goal/roadmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/sketch/goal/roadmap.txt -------------------------------------------------------------------------------- /dev/sketch/goal/spec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/sketch/goal/spec.txt -------------------------------------------------------------------------------- /dev/sketch/goal/task.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/sketch/goal/task.txt -------------------------------------------------------------------------------- /dev/sketch/goal/todo.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | crash bad char bug 4 | replace/insert @ -------------------------------------------------------------------------------- /dev/sketch/index.cp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/sketch/index.cp.txt -------------------------------------------------------------------------------- /dev/tool/goal.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/tool/goal.pl -------------------------------------------------------------------------------- /dev/tool/lib/CPutils.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/tool/lib/CPutils.pm -------------------------------------------------------------------------------- /dev/tool/prototypes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/tool/prototypes.pl -------------------------------------------------------------------------------- /dev/tool/t/all.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dev/tool/t/all.t -------------------------------------------------------------------------------- /dist.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/dist.ini -------------------------------------------------------------------------------- /lib/Kephra.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Dialog.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Dialog.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Dialog/About.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Dialog/About.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/Document.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/Document.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/Edit.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/Edit.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/Events.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/Events.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/Goto.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/Goto.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/Move.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/Move.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/Position.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/Position.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/Property.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/Property.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/Select.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/Select.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/SyntaxMode.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/SyntaxMode.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/SyntaxMode/Bash.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/SyntaxMode/Bash.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/SyntaxMode/CPP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/SyntaxMode/CPP.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/SyntaxMode/JSON.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/SyntaxMode/JSON.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/SyntaxMode/Markodown.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/SyntaxMode/Markodown.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/SyntaxMode/No.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/SyntaxMode/No.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/SyntaxMode/Perl.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/SyntaxMode/Perl.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/SyntaxMode/Python.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/SyntaxMode/Python.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/SyntaxMode/Ruby.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/SyntaxMode/Ruby.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/SyntaxMode/Rust.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/SyntaxMode/Rust.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/SyntaxMode/YAML.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/SyntaxMode/YAML.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/Tool.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/Tool.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Editor/View.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Editor/View.pm -------------------------------------------------------------------------------- /lib/Kephra/App/ReplaceBar.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/ReplaceBar.pm -------------------------------------------------------------------------------- /lib/Kephra/App/SearchBar.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/SearchBar.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Window.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Window.pm -------------------------------------------------------------------------------- /lib/Kephra/App/Window/Menu.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/App/Window/Menu.pm -------------------------------------------------------------------------------- /lib/Kephra/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/Config.pm -------------------------------------------------------------------------------- /lib/Kephra/Config/Default.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/Config/Default.pm -------------------------------------------------------------------------------- /lib/Kephra/IO/LocalFile.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/lib/Kephra/IO/LocalFile.pm -------------------------------------------------------------------------------- /t/01_load.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichtkind/Kephra/HEAD/t/01_load.t --------------------------------------------------------------------------------