summaryrefslogtreecommitdiffstats
path: root/combox
Commit message (Collapse)AuthorAgeFilesLines
* bumped to v0.2.3v0.2.3Siddharth Ravikumar2016-03-011-1/+1
|
* Copyright changed.Siddharth Ravikumar2016-03-019-9/+9
| | | | From combox contributors -> Dr. Robert C. Green II.
* bumped to v0.2.2v0.2.2Siddharth Ravikumar2016-01-111-1/+1
|
* bumped to version 0.2.1v0.2.1Siddharth Ravikumar2016-01-111-1/+1
|
* modified combox.file.rm_path function.Siddharth Ravikumar2016-01-111-0/+1
|
* combox/config.py: modified config_cb function.Siddharth Ravikumar2016-01-111-4/+9
| | | | | | The combox configuration directory creation is now done after reading all the configuration values; the function also creates the combox directory if it does not already exist.
* combox/cbox.py: configuration related update.Siddharth Ravikumar2016-01-111-1/+2
| | | | | Now, combox starts configuration when the configuration directory or the configuration file does not exist.
* combox.log: rewrote docstrings.Siddharth Ravikumar2016-01-101-3/+29
| | | | They're sphinx friendly now.
* combox.gui: rewrote docstrings.Siddharth Ravikumar2016-01-101-26/+66
| | | | They're sphinx friendly now.
* Whitespace fix in combox.config.Siddharth Ravikumar2016-01-071-0/+1
|
* Rewrote docstrings combox.config module.Siddharth Ravikumar2016-01-071-8/+50
| | | | They're sphinx friendly now.
* docstrings in combox.cbox are sphinx friendly now.Siddharth Ravikumar2016-01-051-4/+17
|
* Rewrote/Added docstrings in combox.events module.Siddharth Ravikumar2016-01-021-35/+210
| | | | They're sphinx friendly now.
* combox/silo.py: rewrote docstrings.Siddharth Ravikumar2015-12-251-43/+103
| | | | Docstrings in combox.silo module are sphinx friendly now.
* Rewrote docstrings in combox.crypto module.Siddharth Ravikumar2015-12-241-29/+100
| | | | It is sphinx friendly now.
* combox/file.py: updated docstrings.Siddharth Ravikumar2015-12-231-84/+184
|
* authors -> contributors.Siddharth Ravikumar2015-12-229-9/+9
|
* .py files coding set to utf-8.Siddharth Ravikumar2015-12-228-2/+16
|
* bumped to version 0.2.0v0.2.0Siddharth Ravikumar2015-12-221-1/+1
|
* Fixed try-catch block in combox.cbox.main.Siddharth Ravikumar2015-12-222-3/+4
|
* README.rst: fixed lint errors.Siddharth Ravikumar2015-12-221-1/+1
|
* bumped to version 0.2.0.rc1Siddharth Ravikumar2015-12-221-2/+2
|
* unicoded the version strings.Siddharth Ravikumar2015-12-211-2/+4
|
* Added combox._version module.Siddharth Ravikumar2015-12-211-0/+27
| | | | This module is the canonical place for getting version information.
* Now use `os.renames` instead `os.rename` function.Siddharth Ravikumar2015-12-212-3/+3
|
* Accounted for watchdog's weirdess.Siddharth Ravikumar2015-12-211-2/+22
| | | | This fixes two tests that were failing on OS X.
* Removed buffering in combox.file.write_file func.Siddharth Ravikumar2015-12-171-1/+1
|
* Re-did the error messages in at combox.fileSiddharth Ravikumar2015-12-171-5/+5
|
* combox defaults to using gui for config.Siddharth Ravikumar2015-12-131-1/+9
|
* `combox.gui.ComboxConfigDialog` accepts config_dirSiddharth Ravikumar2015-12-131-2/+9
|
* combox/gui.py (ComboxConfigDialog.apply)Siddharth Ravikumar2015-12-101-4/+12
| | | | | | Glued the graphical interface with the combox configuration function; now the ComboxConfigDialog.apply method writes the configuration information to the default combox configuration directory.
* combox/gui.py: fixed spacing.Siddharth Ravikumar2015-12-031-2/+1
|
* combox/gui.py: input validation kinda done + added status bar.Siddharth Ravikumar2015-12-031-3/+101
|
* gui.py: added "re-enter passphrase" field + validation for it.Siddharth Ravikumar2015-12-031-3/+21
|
* Rough non-functioning version of combox's graphical interface for ↵Siddharth Ravikumar2015-11-301-0/+283
| | | | | | | configuration done. new file: combox/gui.py modified: ChangeLog
* Now ComboxDirMonitor uses Lock. Addresses bug#11.Siddharth Ravikumar2015-11-192-47/+56
|
* Updated combox.events.ComboxDirMonitor and combox.events.NodeDirMonitor. See ↵rsiddharth2015-11-081-2/+58
| | | | | | ChangeLog. Changes related to bug#10.
* combox/file.py: modded write_file.Siddharth Ravikumar2015-11-021-1/+1
| | | | File writes are now buffered. Addresses bug#10.
* combox now uses python's logging module instead of `print` to stdout ↵Siddharth Ravikumar2015-10-174-47/+68
| | | | | | | | | | information/errors. modified: ChangeLog modified: combox/cbox.py modified: combox/events.py modified: combox/file.py modified: combox/log.py
* refactored read_file function combox.file module.Siddharth Ravikumar2015-10-161-7/+4
| | | | Thanks https://stackoverflow.com/questions/8009882/how-to-read-large-file-line-by-line-in-python
* Fxed bug #9.Siddharth Ravikumar2015-10-161-1/+5
| | | | | | | | Now the read_file and write_file functions in combox.file module close the file objects before returning. modified: TODO.org modified: combox/file.py
* combox/crypto.py: the split_and_encrypt function is timed now.Siddharth Ravikumar2015-10-151-0/+9
|
* added combox/log.py: module for combox to log stuff.Siddharth Ravikumar2015-10-151-0/+28
|
* combox/events.py: fixed tmp_file method.Siddharth Ravikumar2015-09-291-2/+2
|
* [bug fix] fix for :b#2:Siddharth Ravikumar2015-09-291-1/+26
| | | | | | | | | Now combox ignores tmp files created by editors. modified: TODO.org modified: combox/events.py modified: tests/events_test.py modified: tests/utils.py
* fix for bug #8.Siddharth Ravikumar2015-09-121-1/+3
|
* fix for bug #7.Siddharth Ravikumar2015-09-121-1/+1
|
* fix for bug #6Siddharth Ravikumar2015-09-121-2/+11
| | | | | Now, we check if the directory contains files, if it does, then we delay the deletion of the directory.
* fix for bug #5.rsiddharth2015-09-121-8/+7
|
* Introduced `node_store_moved_info' method in combox.silo.ComboxSilo class.Siddharth Ravikumar2015-09-121-1/+14
| | | | | | | | This method allows us to track old path and new path of the file which is being renamed/moved. modified: combox/silo.py modified: tests/silo_test.py