• R/O
  • HTTP
  • SSH
  • HTTPS

pysilhouette.git: Source Tree

メインリポジトリ


Name Size Rev. Time Author Log Message
debian
doc
example
pysilhouette
tool
.gitignore 76 625cec8 2010-02-03 20:22:59 Kei Funagayama add .gitignore`
AUTHORS 275 e272703 2010-01-06 03:13:10 Kei Funagayama test commit
ChangeLog 601 94c598a 2010-07-09 20:39:27 Kei Funagayama 0.7.0 release.
INSTALL 2.97 k 86c57c5 2010-02-08 16:56:52 Kei Funagayama typo
INSTALL.ja 3.69 k 86c57c5 2010-02-08 16:56:52 Kei Funagayama typo
LICENSE 1.03 k 2fe3e65 2010-02-03 12:01:47 Kei Funagayama 0.7.0 alpha 1 release
MANIFEST.in 277 31f4b9f 2009-07-24 14:01:42 rpmbuild Add documentation
README 4.36 k d476b48 2010-02-03 15:38:04 Kei Funagayama document edit.
README.ja 6.6 k d476b48 2010-02-03 15:38:04 Kei Funagayama document edit.
setup.cfg 91 b41993d 2009-05-01 07:54:15 Kei Funagayama first commit(1)
setup.py 3.02 k 2fe3e65 2010-02-03 12:01:47 Kei Funagayama 0.7.0 alpha 1 release

README

(based on commit 66cdb51b1318c4390ccebac5d83791d7cf315f3e)
Abstract/Features
================================================================================
Pysilhouette is a 100% pure Python daemon which executes background job commands
queued in database. Comes with an easy web-based administration interface.

Install
================================================================================
See 'INSTALL'.


License/Copying
================================================================================

Copyright (c) 2009-2010 HDE, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.


Packages Pysilhouette depends on
================================================================================

Python
SQLAlchemy
webpy


Directory Structure
================================================================================
.
|-- AUTHORS
|-- ChangeLog
|-- INSTALL
|-- INSTALL.ja
|-- LICENSE
|-- MANIFEST.in # for distutils packaging
|-- README
|-- README.ja # Japanese version of this file.
|-- debian
|   |-- README.Debian
|   |-- changelog
|   |-- compat
|   |-- control
|   |-- copyright
|   |-- dirs
|   |-- docs
|   |-- performerd.init
|   |-- postinst
|   |-- postrm
|   |-- preinst
|   |-- prerm
|   |-- pycompat
|   |-- rules
|   |-- schedulerd.init
|   |-- silhouetted.default
|   `-- silhouetted.init
|-- doc
|   |-- epydoc.cfg # Configuration file for epydoc
|   |-- log.conf.example # Example config file for logging function.
|   |-- rc.d
|   |   `-- init.d
|   |       |-- asynperformerd # init script for the asynperformer daemon
|   |       |-- asynschedulerd # init script for the asynschedulerd daemon
|   |       |-- performerd # init script for the performer daemon
|   |       |-- schedulerd # init script for the scheduler daemon
|   |       `-- silhouetted # init script for the watch daemon
|   |-- redhat.spec # Spec file for RPM building.
|   |-- silhouette.conf.example # Example config file for Pysilhouette
|   |-- sysconfig
|   |   `-- silhouetted
|   `-- whitelist.conf.example # Example config file for whitelist function
|-- example # Sample programs using pysilhouette.
|   |-- dummy.py
|   |-- insert_dummy.py
|   |-- sendmail.py
|   |-- test_failure.py
|   `-- test_success.py
|-- pysilhouette
|   |-- __init__.py
|   |-- asynperformer.py
|   |-- asynscheduler.py
|   |-- command.py
|   |-- daemon.py # Daemonizing function.
|   |-- db # Database related files.
|   |   |-- __init__.py
|   |   |-- access.py # Database operation.
|   |   |-- model.py # Database table model.
|   |-- er.py
|   |-- log.py
|   |-- performer.py # Performer daemon (executes job commands)
|   |-- prep.py # Initialize functions.
|   |-- scheduler.py # Scheduler daemon (schedules job command executions)
|   |-- silhouette.py # Watch daemon (watched performer/scheduler daemons)
|   |-- tests # Testing related files.
|   |   |-- __init__.py
|   |   |-- suite.py
|   |   |-- testprep.py
|   |   |-- testutil.py
|   |   `-- testworker.py
|   |-- uniqkey.py # Unique key for the instance.
|   |-- util.py
|   `-- worker.py
|-- setup.cfg # Configuration for distutils packaging.
|-- setup.py # Main command for distutils packaging.
`-- tool # Tools for development/operation.
    |-- epydoc.sh
    |-- psil-cleandb
    |-- psil-set
    `-- sqlite2other.py

Acknowledgment
================================================================================
SQLAlchemy and webpy people.
HDE, Inc. and other related members.
All people in Python community.
Show on old repository browser