-
Notifications
You must be signed in to change notification settings - Fork 0
/
modules_x.html
96 lines (81 loc) · 4 KB
/
modules_x.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Tangler</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" type="text/css" media="screen" href="/css/all-1378579389000.css">
</head>
<body>
<div class="followbar">
<a href="http://github.com/Tangler" target="_blanc"><img src="github.png" /></a>
<a href="http://facebook.com/tangler.io" target="_blanc"><img src="facebook.png" /></a>
<a href="http://twitter.com/tangler_io" target="_blanc"><img src="twitter.png" /></a>
</div>
<header>
<h1>Tangler</h1>
<div class="tagline">The Open Source Integration Engine</div>
<div class="motto">Are you familiar with <b>IFTTT</b> or <b>Zapier</b>? Then you'll feel right at home!</div>
</header>
<ul class="navbar">
<li><a href="/">Home</a></li>
<li>::</li>
<li><a href="/modules">Modules</a></li>
<li>::</li>
<li><a href="/modules-wishlist">Wishlist</a></li>
<li>::</li>
<li><a href="/manual">Manual</a></li>
<li>::</li>
<li><a href="http://github.com/Tangler" target="_blank">GitHub</a></li>
</ul>
<div role="main">
<h1>Tangler Modules</h1>
<p>Tangler is super extendable through a simple PHP module system. </p>
<p>Each module can provide:</p>
<ul>
<li>One or more <strong>Triggers</strong> (monitors stuff for events or changes)</li>
</ul>
<p>And/or</p>
<ul>
<li>One or more <strong>Actions</strong> (does stuff)</li>
</ul>
<p>Using a tangler config file, you can glue these triggers and actions together into an unlimited set of combinations!</p>
<h2>Available modules</h2>
<ul>
<li><a href="module-file">File</a>: Allows you to work with local files and directories</li>
<li><a href="module-smtp">Smtp</a>: Allows you to send e-mail messages through SMTP servers</li>
<li><a href="module-imap">Imap</a>: Triggers when new email arrives in your IMAP account</li>
<li><a href="module-hipchat">HipChat</a>: Allows you integrate with the HipChat API</li>
</ul>
<h2>Future modules</h2>
<p>We maintain a list of modules on the <a href="/modules-wishlist">wishlist</a> page for future ideas.</p>
</div>
<footer>
<p>Tangler is developed and maintained by <a href="http://www.linkorb.com">LinkORB</a> -- We're hiring!</p>
</footer>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script>
$('pre').addClass('prettyprint');
</script>
<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-5382953-27', 'tangler.io');
ga('send', 'pageview');
</script>
<div class="followbar">
<a href="http://github.com/Tangler" target="_blanc"><img src="github.png" /></a>
<a href="http://facebook.com/tangler.io" target="_blanc"><img src="facebook.png" /></a>
<a href="http://twitter.com/tangler_io" target="_blanc"><img src="twitter.png" /></a>
</div>
</body>
</html>