Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugeny committed May 4, 2015
1 parent b523763 commit fd05e32
Show file tree
Hide file tree
Showing 21 changed files with 50 additions and 22 deletions.
2 changes: 1 addition & 1 deletion ajenti-core/aj/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# imported by installer, no 3rd party imports here!

__version__ = '2.0.35'
__version__ = '2.0.36'

# Global state

Expand Down
2 changes: 1 addition & 1 deletion plugins/ace/.last-upload
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1429540561.59
1429718578.62
2 changes: 1 addition & 1 deletion plugins/augeas/.last-upload
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1429540624.68
1429718641.73
2 changes: 1 addition & 1 deletion plugins/auth_users/.last-upload
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1429540344.44
1429718215.75
2 changes: 1 addition & 1 deletion plugins/core/.last-upload
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1429540614.58
1429718629.7
2 changes: 1 addition & 1 deletion plugins/dashboard/.last-upload
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1429540313.03
1429718174.14
2 changes: 1 addition & 1 deletion plugins/datetime/.last-upload
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1429540384.63
1429718253.1
2 changes: 1 addition & 1 deletion plugins/filemanager/.last-upload
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1429540380.39
1429718248.69
2 changes: 1 addition & 1 deletion plugins/filesystem/.last-upload
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1429540636.13
1429718653.22
2 changes: 1 addition & 1 deletion plugins/network/.last-upload
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1429540339.68
1429718210.53
2 changes: 1 addition & 1 deletion plugins/notepad/.last-upload
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1429540318.12
1429718187.23
2 changes: 1 addition & 1 deletion plugins/packages/.last-upload
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1429540364.95
1429718234.89
2 changes: 1 addition & 1 deletion plugins/passwd/.last-upload
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1429540323.02
1429718194.82
2 changes: 1 addition & 1 deletion plugins/plugins/.last-upload
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1429540379.01
1429718243.81
2 changes: 1 addition & 1 deletion plugins/power/.last-upload
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1429540619.04
1429718635.29
2 changes: 1 addition & 1 deletion plugins/services/.last-upload
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1429540355.65
1429718225.97
2 changes: 1 addition & 1 deletion plugins/settings/.last-upload
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1429540332.76
1429718204.11
2 changes: 1 addition & 1 deletion plugins/supervisor/.last-upload
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1429540334.5
1429718205.23
33 changes: 30 additions & 3 deletions plugins/supervisor/supervisor.aug
Original file line number Diff line number Diff line change
@@ -1,9 +1,36 @@
module Supervisor =

let comment = IniFile.comment /[#;]/ "#"
let comment =
IniFile.comment /[#;]/ "#"

let title_comment =
[ label "#titlecomment" . del /[ \t]*[#;][ \t]*/ " # " . store /[^ \t\r\n]([^\r\n]*[^ \t\r\n])?/ ]

let title_noeol (kw:regexp)
= Util.del_str "[" . key kw . Util.del_str "]" . title_comment? . Util.eol


let indented_title_noeol (kw:regexp)
= Util.indent . title_noeol kw

let entry_generic_nocomment (kw:lens) (sep:lens)
(comment_re:regexp) (comment:lens) =
let bare_re_noquot = (/[^ \t\r\n]/ - comment_re)
in let bare_re = (/[^\r\n]/ - comment_re)+
in let no_quot = /[^"\r\n]*/
in let bare = (store (bare_re_noquot . (bare_re* . bare_re_noquot)?))
in [ kw . sep . (Sep.opt_space . bare)? . (comment|Util.eol) ]

let entry_generic (kw:lens) (sep:lens) (comment_re:regexp) (comment:lens) =
entry_generic_nocomment kw sep comment_re comment | comment

let indented_entry (kw:regexp) (sep:lens) (comment:lens) =
entry_generic (Util.indent . key kw) sep IniFile.comment_re comment


let sep = IniFile.sep "=" "="
let entry = IniFile.indented_entry IniFile.entry_re sep comment
let title = IniFile.indented_title IniFile.record_re
let entry = indented_entry IniFile.entry_re sep comment
let title = indented_title_noeol IniFile.record_re
let record = IniFile.record title entry
let lns = IniFile.lns record comment
let filter = (incl "/etc/supervisor/supervisord.conf") . Util.stdexcl
Expand Down
2 changes: 1 addition & 1 deletion plugins/terminal/.last-upload
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1429540396.83
1429718263.05
1 change: 1 addition & 0 deletions requirements-rtd.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ python-exconsole>=0.1.5
requests>=0.12.0
reconfigure>=0.1.41
pyOpenSSL
psutil>=2

0 comments on commit fd05e32

Please sign in to comment.