diff options
author | Perberos <[email protected]> | 2011-11-09 22:53:33 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-11-09 22:53:33 -0300 |
commit | 70438138096a47b2505ac55634cd94947ce378b6 (patch) | |
tree | e45e49dda10a71616466500a4ab65d1c54b5f6c1 /HACKING | |
download | engrampa-70438138096a47b2505ac55634cd94947ce378b6.tar.bz2 engrampa-70438138096a47b2505ac55634cd94947ce378b6.tar.xz |
initial
Diffstat (limited to 'HACKING')
-rw-r--r-- | HACKING | 39 |
1 files changed, 39 insertions, 0 deletions
@@ -0,0 +1,39 @@ +*Translations + + Translations can be updated without asking, just remember to add + an entry in po/ChangeLog + +*Patches + + Send patches to the maintainer ([email protected]) and get + approval before committing. + + Patches must contain a ChangeLog entry. + + You have to follow the style of the rest of the code even if you + don't like it. The code style is K&R with 8 space tabs. + +*Roadmap + + *) src/fr-process.c : A class that lets you execute commands in + sequence. You can define a command as sticky if you want that it must + be executed even if a previous command has failed. + + *) src/fr-command.c : An abstract class used as base to define archiving + utilities interfaces. For example fr-command-tar.c implements an + interface for the tar command. FRCommands use a FRProcess object to + execute commands. + + *) src/fr-archive.c : A class that implements the archive concept. An + FRArchive object can load any archive type of which there is a + corrisponding FRCommand interface. It adds high level operations as + add_with_wildcard, add_directory, and implements options not supported + by the archiving utility. For example, you can extract files from a + tar archive without recreating the path even if the tar command does not + support this feature. If an option is supported natively the command + line option is used. + + *) src/window.c : Implements the window object. + + *) src/dlg-*.c : All files starting with dlg- implement a dialog. + |