メインリポジトリ
Rev. | Zeit | Autor | Nachricht |
---|---|---|---|
694475b | 2011-05-31 11:59:36 | keisuke fukawa | dev update version 0.7.1 |
d2c42e4 | 2011-05-31 11:56:03 | keisuke fukawa | update version 0.7.1 |
87bfa1b | 2011-05-30 15:24:33 | keisuke fukawa | Delete SQLAlchemy version check. |
028696d | 2011-05-30 14:35:39 | keisuke fukawa | Support to SQLAlchemy 0.6.x |
7c92279 | 2010-12-07 14:25:09 | keisuke fukawa | bug fix in sqlalchemy version 0.6 |
c89a331 | 2010-12-07 11:57:42 | keisuke fukawa | bug fix for logger |
9017925 | 2010-09-21 10:40:33 | keisuke fukawa | typo for spec file |
dfea001 | 2010-08-26 14:50:31 | keisuke fukawa | Add sqlalchemy version checker |
63103ea | 2010-07-16 19:34:06 | ![]() |
master v0.7.0 Merge branch 'dev' Conflicts: doc/redhat.spec |
58fc35a | 2010-07-09 20:41:15 | ![]() |
0.7.0-1 release. |
Name | Rev. | Zeit | Autor |
---|---|---|---|
v0.7.0 | 63103ea | 2010-07-16 19:34:06 | ![]() |
v0.7.0beta2 | cc69459 | 2010-04-09 16:39:57 | ![]() |
v0.7.0beta1 | ffa1d14 | 2010-04-09 11:18:24 | ![]() |
v0.6.3 | 1ef396b | 2009-08-04 19:38:35 | Kei Funagayama |
v0.6.2 | b8336d2 | 2009-06-16 18:09:47 | Kei Funagayama |
v0.6.1 | 90ec9f0 | 2009-05-22 20:59:54 | rgoura |
Name | Rev. | Zeit | Autor | Nachricht |
---|---|---|---|---|
dev | 694475b | 2011-05-31 11:59:36 | keisuke fukawa | update version 0.7.1 |
master | 63103ea | 2010-07-16 19:34:06 | ![]() |
Merge branch 'dev' Conflic... |
0.6-stable | b8336d2 | 2009-06-16 18:09:47 | Kei Funagayama | update 0.6.2 |
(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.