Menu

Tree [dfa2fa] master /
 History

HTTPS access


File Date Author Commit
 Build 2015-06-03 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [7a91fa] Release 5.3.16.3
 Gentoo 2014-02-18 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [47b02f] Fix bug in assigning default command
 debian 2014-10-06 edscott edscott [5c1114] remove unnecessary file from po generation
 include 2015-05-13 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [ecf723] Minor configure.ac cleanups
 m4 2017-03-24 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [6e5e2f] update test for pkgconfig target
 modules 2016-04-11 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [ce38a5] Remove another harmless compiler warning
 po 2014-10-06 edscott edscott [5c1114] remove unnecessary file from po generation
 primary 2018-07-10 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [a1a971] remove gtk3 option from configure and fix toolt...
 rodent 2016-08-01 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [ca27e7] Changes in search of DnD 3.20 bug fix
 util 2014-07-06 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [cfb94d] Change mail (again)
 AUTHORS 2013-10-13 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [075156] Make dbh records 32-64 bit compatible
 COPYING 2013-10-13 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [075156] Make dbh records 32-64 bit compatible
 ChangeLog 2014-03-08 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [f9aeeb] release 5.2.8 preparations
 INSTALL 2013-10-13 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [075156] Make dbh records 32-64 bit compatible
 Makefile.am 2014-10-02 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [c0cad2] rpmbuild fixes on OpenSUSE
 NEWS 2013-12-28 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [b25af1] Bump requirement to dbh 5.0.13
 README 2013-12-26 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [144434] Tweaks for clean Gentoo ebuild for 5.1.5.
 TODO 2014-09-17 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [f76933] Tweaks to xmltree module for rodent-xml applica...
 autogen.sh 2014-01-21 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [52d04b] Tweak autogen to run configure with options
 configure.ac 2018-07-10 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [dfa2fa] update version (nano)
 debug.h 2014-07-29 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [70deed] cleanup dbg/trace output a little
 librfm.pc.in 2014-02-11 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [a57b4a] CentOS fixes
 librfm.settings.in 2014-07-06 Dr. Edscott Wilson Garcia Dr. Edscott Wilson Garcia [bf6b1f] Put GNU defines directly into primary-environme...
 librfm5.spec.in 2014-10-03 edscott edscott [960626] fix module dir for opensuse rpmbuild

Read Me

Librfm and librodent

To regenerate the build system entirely, you should execute the ./autogen.sh
script. In order for this to work, you need have autoconf, automake, autoheader,
libtool, aclocal, intltool, gettext installed.

This library contains the basic functions for rodent file manager and other 
applications like rodent-diff. Librfm contains the primary functions
which get loaded first. Librodent consists of secondary functions which 
are loaded later on. The idea to split the library into two is to speed 
up initial load. Furthermore, actions which require user input are put into
modules so that they will get loaded on demand and only when needed (again,
there is no need to slow things down when they can be done more efficiently).

Loading the secondary library into memory can wait until after primary
library is loaded. Thus, actions which only require primary library can
 be executed before secondary library is loaded. Or something along those 
lines.

The modules, mentioned above, are a responsibility of the application, not 
the library. So you won't find them here.