├── .gitignore ├── LICENSE.md ├── README.md ├── bin ├── denicify.pl ├── lib │ ├── NIC │ │ ├── Bridge │ │ │ ├── Context.pm │ │ │ ├── Directory.pm │ │ │ ├── File.pm │ │ │ ├── NICBase.pm │ │ │ ├── NICType.pm │ │ │ ├── Symlink.pm │ │ │ ├── Tie │ │ │ │ └── WrappedMethod.pm │ │ │ ├── _BridgedObject.pm │ │ │ └── _Undefined.pm │ │ ├── Formats │ │ │ ├── NIC1.pm │ │ │ ├── NICTar.pm │ │ │ └── NICTar │ │ │ │ ├── Directory.pm │ │ │ │ ├── File.pm │ │ │ │ ├── Symlink.pm │ │ │ │ └── _TarMixin.pm │ │ ├── NICBase.pm │ │ ├── NICBase │ │ │ ├── Directory.pm │ │ │ ├── File.pm │ │ │ └── Symlink.pm │ │ ├── NICType.pm │ │ └── Tie │ │ │ ├── Method.pm │ │ │ └── PrefixedHandleRedirect.pm │ └── parent.pm ├── nic.pl └── nicify.pl ├── package.json └── templates └── .keep /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | ._* 3 | 4 | templates/* 5 | !*/.keep 6 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/README.md -------------------------------------------------------------------------------- /bin/denicify.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/denicify.pl -------------------------------------------------------------------------------- /bin/lib/NIC/Bridge/Context.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/Bridge/Context.pm -------------------------------------------------------------------------------- /bin/lib/NIC/Bridge/Directory.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/Bridge/Directory.pm -------------------------------------------------------------------------------- /bin/lib/NIC/Bridge/File.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/Bridge/File.pm -------------------------------------------------------------------------------- /bin/lib/NIC/Bridge/NICBase.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/Bridge/NICBase.pm -------------------------------------------------------------------------------- /bin/lib/NIC/Bridge/NICType.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/Bridge/NICType.pm -------------------------------------------------------------------------------- /bin/lib/NIC/Bridge/Symlink.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/Bridge/Symlink.pm -------------------------------------------------------------------------------- /bin/lib/NIC/Bridge/Tie/WrappedMethod.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/Bridge/Tie/WrappedMethod.pm -------------------------------------------------------------------------------- /bin/lib/NIC/Bridge/_BridgedObject.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/Bridge/_BridgedObject.pm -------------------------------------------------------------------------------- /bin/lib/NIC/Bridge/_Undefined.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/Bridge/_Undefined.pm -------------------------------------------------------------------------------- /bin/lib/NIC/Formats/NIC1.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/Formats/NIC1.pm -------------------------------------------------------------------------------- /bin/lib/NIC/Formats/NICTar.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/Formats/NICTar.pm -------------------------------------------------------------------------------- /bin/lib/NIC/Formats/NICTar/Directory.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/Formats/NICTar/Directory.pm -------------------------------------------------------------------------------- /bin/lib/NIC/Formats/NICTar/File.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/Formats/NICTar/File.pm -------------------------------------------------------------------------------- /bin/lib/NIC/Formats/NICTar/Symlink.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/Formats/NICTar/Symlink.pm -------------------------------------------------------------------------------- /bin/lib/NIC/Formats/NICTar/_TarMixin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/Formats/NICTar/_TarMixin.pm -------------------------------------------------------------------------------- /bin/lib/NIC/NICBase.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/NICBase.pm -------------------------------------------------------------------------------- /bin/lib/NIC/NICBase/Directory.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/NICBase/Directory.pm -------------------------------------------------------------------------------- /bin/lib/NIC/NICBase/File.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/NICBase/File.pm -------------------------------------------------------------------------------- /bin/lib/NIC/NICBase/Symlink.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/NICBase/Symlink.pm -------------------------------------------------------------------------------- /bin/lib/NIC/NICType.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/NICType.pm -------------------------------------------------------------------------------- /bin/lib/NIC/Tie/Method.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/Tie/Method.pm -------------------------------------------------------------------------------- /bin/lib/NIC/Tie/PrefixedHandleRedirect.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/NIC/Tie/PrefixedHandleRedirect.pm -------------------------------------------------------------------------------- /bin/lib/parent.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/lib/parent.pm -------------------------------------------------------------------------------- /bin/nic.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/nic.pl -------------------------------------------------------------------------------- /bin/nicify.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/bin/nicify.pl -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theos/nic/HEAD/package.json -------------------------------------------------------------------------------- /templates/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------