This repository is a mirror (I push to manually) of github.com/matthiasbeyer/imag Do not use this repository for pull-requests or issue tracking. https://github.com/matthiasbeyer/imag

Matthias Beyer 0250a2c662 Add MailIter преди 8 години
.imag-documentation 3f85cf21c1 .imag-documentation: Add copyright notice to all files преди 8 години
bin e0d4744b4b bin: Add copyright notice to all files преди 8 години
doc da439e60e9 Add documentation what a valid tag is преди 8 години
imag-bookmark 006db707fa Merge pull request #789 from matthiasbeyer/warning-cleanup преди 8 години
imag-counter adf10e187a imag-counter: Add copyright notice to all files преди 8 години
imag-diary f79b8c000b imag-diary: Add copyright notice to all files преди 8 години
imag-link 0fc0471af6 imag-link: Add copyright notice to all files преди 8 години
imag-notes 73d67b1f18 imag-notes: Add copyright notice to all files преди 8 години
imag-ref 006db707fa Merge pull request #789 from matthiasbeyer/warning-cleanup преди 8 години
imag-store 598d8617a1 imag-store: Add copyright notice to all files преди 8 години
imag-tag 56e537673c imag-tag: Add copyright notice to all files преди 8 години
imag-todo ae60c92513 imag-todo: Add copyright notice to all files преди 8 години
imag-view 6808400008 imag-view: Add copyright notice to all files преди 8 години
libimagbookmark d9a0709499 libimagbookmark: Add copyright notice to all files преди 8 години
libimagcounter df2736d7d8 libimagcounter: Add copyright notice to all files преди 8 години
libimagdiary 5182d8e2ad libimagdiary: Add copyright notice to all files преди 8 години
libimagentryedit 8836c08392 libimagentryedit: Add copyright notice to all files преди 8 години
libimagentryfilter ed8e479bc6 libimagentryfilter: Add copyright notice to all files преди 8 години
libimagentrylink 2db79ada71 libimagentrylink: Add copyright notice to all files преди 8 години
libimagentrylist f47ba140e6 libimagentrylist: Add copyright notice to all files преди 8 години
libimagentrymarkdown 82e39f427a libimagentrymarkdown: Add copyright notice to all files преди 8 години
libimagentrytag 30875d153f Merge pull request #771 from matthiasbeyer/clap-validators преди 8 години
libimagentryview 6cd765f67b libimagentryview: Add copyright notice to all files преди 8 години
libimagerror 4b2514e5a0 libimagerror: Add copyright notice to all files преди 8 години
libimaginteraction 846c2d0325 Create history file if it does not exist преди 8 години
libimagmail 0250a2c662 Add MailIter преди 8 години
libimagnotes b34eb838e0 libimagnotes: Add copyright notice to all files преди 8 години
libimagref eec6ef0652 Add agnostic "RefHashingError" преди 8 години
libimagrt 921d25ac9c Add StoreUnloadHook registering in runtime преди 8 години
libimagstore 10b920a149 Merge branch 'libimagstore/store-tests' into libimagstore/store-tests-integration преди 8 години
libimagstorestdhook e92fe89270 Add more detailed errors преди 8 години
libimagtimeui 6d3eeaea8d libimagtimeui: Add copyright notice to all files преди 8 години
libimagtodo f3373cde7e libimagtodo: Add copyright notice to all files преди 8 години
libimagutil 30875d153f Merge pull request #771 from matthiasbeyer/clap-validators преди 8 години
tests 157f4e79aa test setup: Prepare store directory before starting tests преди 8 години
.editorconfig 88e7c1bd8d Add editorconfig configuration file преди 9 години
.gitignore b55789578c Ignore /out преди 8 години
.travis.yml 050aec2aa1 Merge pull request #734 from matthiasbeyer/test-via-makefile преди 8 години
CONTRIBUTING.md 15e43ee0bc Some general updates преди 8 години
LICENSE b0f0b4bcfd Add LICENSE file преди 9 години
Makefile a9deb488b3 Fix missing [[ on travis преди 8 години
README.md d88c5d9a01 Add section about how to stay uptodate преди 8 години
default.nix 08a93288d7 Add dep for pure nix build: which преди 8 години
imagrc.toml ac1af164e9 Merge pull request #775 from matthiasbeyer/libimaginteraction/readline преди 8 години

README.md

imag - imag-pim.org

imag is a commandline personal information management suite.

This application is in early development. There are some things that work, but we do not consider anything stable or usable at this moment. Feel free to play around anyways.

Build Status Issue Stats Issue Stats [license]()

What is this / Goal and Functionality

Our (long-term) goal is to

Create a fast, reliable commandline personal information management suite which covers all aspects of personal information management, consists of reusable parts and integrates well with known commandline tools.

We try to implement as many aspects of personal information management (PIM), but re-use existing commandline tools. We do this by tracking/referring to the data the tools create. A user can now link pieces of data (from different tools), tag this data and query/search this data using imag. So imag is more like a data-mining helper than an actual PIM tool, but we implement some of the PIM aspects directly in imag. Parts of PIM (we call them "modules") that are already implemented and basically working:

  • todo (via taskwarrior, we track the tasks one creates in taskwarrior)
  • diary
  • notes
  • bookmarks
  • counter (just an example, nothing that usable)

Helper modules that come with imag but are not "PIM aspects":

  • linking entries
  • viewing entries
  • tagging entries
  • creating misc entries
  • creating entries that refer to files/directories

Building/Running

Here goes how to try imag out.

imag is a suite of tools and you can build them individually. All subdirectories prefixed with "libimag" are libraries for the respective binaries. All subdirectories prefixed with "imag-" are binaries and compiling them will give you a commandline application.

Building

By now, there are several targets in the Makefile, fulfilling following roles:

  • all is the default and builds every crate in debug mode. To build a single module, call make <module>, for example make imag-store.
  • release, as the name implies, builds every module in release mode. E.G.: make imag-store-release to build "imag-store" in release mode.
  • install will install all commandline modules to the default installation root (see man cargo-install). To install a single module, run make <module>-install, E.G.: make imag-store-install
  • bin/lib are separate targets for either building all binaries or libraries.
  • lib-test runs cargo test for all libraries. For testing a single library, E.G.: make test-libimagstore.
  • clean will run cargo clean in every crate. For cleaning a single crate, use make imag-store-clean for example.
  • to build only the imag binary, use the target imag-bin (imag-bin-release for release build, imag-bin-clean for cargo cleaning).

Running

To test out a single module, simply using cargo run -- <options> in the respective directory will do the trick. But you can also make <module> and call the binary on the commandline. For using it "normally", install the binaries as described above, as well as the imag-binary:

$> make install

The installation root of the binaries may not yet be in your $PATH. To see where this installation root is check out man cargo-install. To change the $PATH in bash:

$> PATH=$PATH:~/.cargo/bin
$> imag --help

To test, simply add --help to one of the above commands:

$> imag counter --help

Staying up-to-date

Despite we have a official site for imag, I do not push updates to this site, yet. Anyways, I post a blog articles about what happened in the last two weeks every other week.

You can find them on my personal blog, tagged "imag"

I also post these blog posts on reddit and submit them to this-week-in-rust.

From time to time I publish an article about imag which does not focus on some things that are happening, but rather about something more general.

Documentation

For detailed information, please read the documentation. You can either read the Markdown files or compile it to HTML/PDF using pandoc. Developer documentation is also available online on github.io.

Please note that the documentation is work in progress as well and may be outdated.

Please contribute!

We are looking for contributors!

There is always a number of complexity/easy tagged issues available in the issue tracker you can start with and we are open to questions!

Feel free to open issues for asking questions, suggesting features or other things!

Also have a look at the CONTRIBUTING.md file!

Contact

Have a look at our website where you can find some information on how to get in touch and so on.

Feel free to join our new IRC channel at freenode: #imag or our mailinglist.

License

We chose to distribute this software under terms of GNU LGPLv2.1.

This decision was made to ensure everyone can write applications which use the imag core functionality which is distributed with the imag source distribution.