repo string | commit string | message string | diff string |
|---|---|---|---|
bohde/seinfeld | 6f4cd50918a14d0095c29a4400951795269fdcbd | Nicer cakefile to build everything. | diff --git a/Cakefile b/Cakefile
index 933605b..f731cd9 100644
--- a/Cakefile
+++ b/Cakefile
@@ -1,22 +1,30 @@
fs = require 'fs'
sys = require 'sys'
dir = "build"
task 'build:html', 'compile the jade template files to html', () ->
jade = require 'jade'
jade.renderFile 'jade/index.jade', (err, html) ->
... |
bohde/seinfeld | 86d042a56b66a1d9131e6d037fec9b4ac4561d07 | Added build for coffeescript. | diff --git a/Cakefile b/Cakefile
index 7de52c6..933605b 100644
--- a/Cakefile
+++ b/Cakefile
@@ -1,13 +1,22 @@
fs = require 'fs'
+sys = require 'sys'
dir = "build"
task 'build:html', 'compile the jade template files to html', () ->
jade = require 'jade'
jade.renderFile 'jade/index.jade', (err, html) ->
... |
bohde/seinfeld | 4ec7f7a95e6542ead21c1905501b795b1db9a88b | Added some basic code. | diff --git a/coffee/seinfeld.coffee b/coffee/seinfeld.coffee
new file mode 100644
index 0000000..b2cecaa
--- /dev/null
+++ b/coffee/seinfeld.coffee
@@ -0,0 +1,5 @@
+# What month is it?
+
+month: () ->
+ Date.today().getMonth()
+
diff --git a/jade/index.jade b/jade/index.jade
index 26bca68..9fea33d 100644
--- a/jade/in... |
bohde/seinfeld | 3a5fc4dd75fc0ca55aecc27842beb785bd878557 | Added some libraries. | diff --git a/jade/index.jade b/jade/index.jade
index a406b60..26bca68 100644
--- a/jade/index.jade
+++ b/jade/index.jade
@@ -1,19 +1,21 @@
!!! 5
- var days = ["Sun", "Mon", "Tues", "Wed", "Thurs", "Fri", "Sat"]
- var rows = [1,2,3,4,5]
html(lang="en")
head
title Seinfeld Calendar
+ script(src: "http://aj... |
bohde/seinfeld | 61f36dfdb841b71dace15201a222f885f6355b49 | Added rough index page. | diff --git a/Cakefile b/Cakefile
new file mode 100644
index 0000000..7de52c6
--- /dev/null
+++ b/Cakefile
@@ -0,0 +1,13 @@
+fs = require 'fs'
+
+dir = "build"
+
+task 'build:html', 'compile the jade template files to html', () ->
+ jade = require 'jade'
+ jade.renderFile 'jade/index.jade', (err, html) ->
+ if err
... |
bohde/seinfeld | 105c8355a61c0454071750eed0cca2171ea59456 | Added gitignore. | diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..041000e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+build
+*.js
\ No newline at end of file
|
igaiga/oauth_rails_sample | 68039fdc07f5b7f6e62e4f927afe42caaa7bae2b | OAuthãµã³ãã«å®è£
ä¸(access token åå¾ã¾ã§) | diff --git a/for_rails3/oauth-plugin b/for_rails3/oauth-plugin
new file mode 160000
index 0000000..92183e2
--- /dev/null
+++ b/for_rails3/oauth-plugin
@@ -0,0 +1 @@
+Subproject commit 92183e2f4b961b737d43596d000555207781cc79
diff --git a/iga_oauth_provider/service_provider/iga_sample_at_access.rb b/iga_oauth_provider/s... |
grumdrig/woses | c63650d3c823422d710fe43ebc82030f9dbe4a90 | Fix rot, make js RPC async | diff --git a/woses.js b/woses.js
index 7a02a69..7000827 100644
--- a/woses.js
+++ b/woses.js
@@ -1,234 +1,239 @@
/*
Copyright (c) 2009, Eric Fredricksen <e@fredricksen.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the abo... |
grumdrig/woses | af4ada1cb61cfa51216ed0152994c5f105a36227 | Separate test folder; put documention in root. Also fix index for folders. | diff --git a/doc/index.html b/index.html
similarity index 83%
rename from doc/index.html
rename to index.html
index 4c3b30c..edd4e52 100644
--- a/doc/index.html
+++ b/index.html
@@ -1,125 +1,161 @@
<head>
<title>Woses Webserver</title>
- <link rel="stylesheet" href="style.css"/>
<link rel="icon" href="wose.png"... |
grumdrig/woses | 7e5288b18b86a75910799251b588a396adaca508 | Chance default port to 8053, which doesn't conflict with node_inspector and kinda spells WOSE | diff --git a/doc/.woses-conf.js b/doc/.woses-conf.js
index 4a4bf02..78b3765 100644
--- a/doc/.woses-conf.js
+++ b/doc/.woses-conf.js
@@ -1,24 +1,24 @@
exports.mimetypes = {
'.gif': "image/gif"
}
-exports.port = 8080;
+exports.port = 8053;
//exports.logRequestHeaders = true;
function respondWithMarkdown(r... |
grumdrig/woses | d5513ed5d95ab373b0414ed2ec201bfa411c9b2f | Put Markdown in repo so the test of it will work | diff --git a/doc/Markdown.pl b/doc/Markdown.pl
new file mode 100755
index 0000000..e4c8469
--- /dev/null
+++ b/doc/Markdown.pl
@@ -0,0 +1,1450 @@
+#!/usr/bin/perl
+
+#
+# Markdown -- A text-to-HTML conversion tool for web writers
+#
+# Copyright (c) 2004 John Gruber
+# <http://daringfireball.net/projects/markdown/>
+#
... |
grumdrig/woses | 8157b708b9905f84af442c4cf38b40959ca3b47e | Improve mixin(), albeit in ways that don't really matter. | diff --git a/woses.js b/woses.js
index b2c3f7a..4418529 100644
--- a/woses.js
+++ b/woses.js
@@ -1,234 +1,235 @@
/*
Copyright (c) 2009, Eric Fredricksen <e@fredricksen.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the abo... |
grumdrig/woses | 99663c38d25234f439f4dfe3b57fea010efa0d1b | Fix bug when no handlers in config | diff --git a/woses.js b/woses.js
index f76363e..b2c3f7a 100644
--- a/woses.js
+++ b/woses.js
@@ -1,232 +1,234 @@
/*
Copyright (c) 2009, Eric Fredricksen <e@fredricksen.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the abo... |
grumdrig/woses | f5d3ff08981f978c5be516206f43ccc9a12c1dbe | Minor doc edits | diff --git a/README.md b/README.md
index 282790e..1b531bd 100644
--- a/README.md
+++ b/README.md
@@ -1,17 +1,21 @@
Woses
=====
-HTTP server for static and PHP files via [Node](http://nodejs.org/)
+HTTP server for static, PHP and JS server files via [Node](http://nodejs.org/)
Project home is at [http://grumdrig.c... |
grumdrig/woses | d3e0eb260d87541dec4737e7b57f66a527c1d687 | Coffeescript version of woses. Watch out - compiling it wipes out woses.js | diff --git a/woses.coffee b/woses.coffee
new file mode 100644
index 0000000..b13770a
--- /dev/null
+++ b/woses.coffee
@@ -0,0 +1,185 @@
+#
+# HTTP server for static and PHP files via Node.js (nodejs.org)
+# See http://bitbucket.org/grumdrig/woses/wiki/Home
+#
+# Usage: node woses.js DOCUMENT_ROOT
+#
+# By Eric Fredrick... |
grumdrig/woses | a58397f94752da2944cb0e75fddc08f8398085cc | Various minor edits, e.g. stray semicolons | diff --git a/woses.js b/woses.js
index 976a633..19788a8 100644
--- a/woses.js
+++ b/woses.js
@@ -1,225 +1,227 @@
/*
Copyright (c) 2009, Eric Fredricksen <e@fredricksen.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the abo... |
grumdrig/woses | 5381b79d80da69d9fd9a44ebc67420b54f3479b0 | Dont make handlers call response.respond | diff --git a/doc/index.html b/doc/index.html
index 56a2262..aba2cb5 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -1,126 +1,125 @@
<head>
<title>Woses Webserver</title>
<link rel="stylesheet" href="style.css"/>
<link rel="icon" href="wose.png"/>
</head>
<body>
<h1>
<!--☶ ☁ ⎈... |
grumdrig/woses | 4c2f2385c93f237036fd9385f399f9da1521da0c | Use path module rather than my regexp and fix config.index past root / URI | diff --git a/doc/.woses-conf.js b/doc/.woses-conf.js
index 543e721..f2d8135 100644
--- a/doc/.woses-conf.js
+++ b/doc/.woses-conf.js
@@ -1,23 +1,23 @@
var sys = require("sys");
exports.mimetypes = {
- gif: "image/gif"
+ '.gif': "image/gif"
}
exports.port = 8080;
//exports.logRequestHeaders = true;
funct... |
grumdrig/woses | d79650d2f6f6497b6238c13a2115217afe5a0dcd | Lose redundant req.params and use querystring module. | diff --git a/doc/index.html b/doc/index.html
index 14dae87..f1849b3 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -1,125 +1,126 @@
<head>
<title>Woses Webserver</title>
<link rel="stylesheet" href="style.css"/>
+ <link rel="icon" href="wose.png"/>
</head>
<body>
<h1>
<!--☶ ☁ ⎈... |
grumdrig/woses | aac5c3b63e4e0f18b41f0c41cb62313229929a59 | Node version v0.1.25-15-g4e16e38 | diff --git a/README.md b/README.md
index fe15da3..282790e 100644
--- a/README.md
+++ b/README.md
@@ -1,17 +1,17 @@
Woses
=====
HTTP server for static and PHP files via [Node](http://nodejs.org/)
Project home is at [http://grumdrig.com/woses/].
Source code lives at [http://github.com/grumdrig/woses].
Usa... |
grumdrig/woses | adc956801269f798096f29744824fd314c0916b7 | Bookkeeping | diff --git a/README.md b/README.md
index 412757d..fe15da3 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,17 @@
-woses
+Woses
=====
HTTP server for static and PHP files via [Node](http://nodejs.org/)
+Project home is at [http://grumdrig.com/woses/].
+
+Source code lives at [http://github.com/grumdrig/woses].
+... |
grumdrig/woses | 2e43c42406b2280de075570529864c67d5a64241 | Make uri match available to handler | diff --git a/woses.js b/woses.js
index 3a67a42..fea5b72 100644
--- a/woses.js
+++ b/woses.js
@@ -1,238 +1,240 @@
/*
Copyright (c) 2009, Eric Fredricksen <e@fredricksen.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the abo... |
grumdrig/woses | 79f399976b469123aa88b6e4cee122a4bbd4fbe3 | Use configurable handler mechanism in test | diff --git a/doc/.woses-conf.js b/doc/.woses-conf.js
index dec54ec..d99e0f6 100644
--- a/doc/.woses-conf.js
+++ b/doc/.woses-conf.js
@@ -1,7 +1,23 @@
+var sys = require("sys");
+
exports.mimetypes = {
gif: "image/gif"
}
exports.port = 8080;
//exports.logRequestHeaders = true;
+
+function respondWithMarkdown(... |
grumdrig/woses | 42566241285f3e69a4b683579f65c2cc837bfeea | Added a mechanism for configurable handlers | diff --git a/woses.js b/woses.js
index 0dfc2f9..69f105f 100644
--- a/woses.js
+++ b/woses.js
@@ -1,252 +1,250 @@
/*
Copyright (c) 2009, Eric Fredricksen <e@fredricksen.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the abo... |
grumdrig/woses | faf7a933adb2fb80de10e75cbb90b3cca51a2f4b | Use matching to determine handler | diff --git a/doc/README.md b/doc/README.md
new file mode 100644
index 0000000..412757d
--- /dev/null
+++ b/doc/README.md
@@ -0,0 +1,10 @@
+woses
+=====
+
+HTTP server for static and PHP files via [Node](http://nodejs.org/)
+
+Usage
+-----
+
+`$ node woses.js`
+
diff --git a/doc/index.html b/doc/index.html
index b266cf... |
grumdrig/woses | 5e51d263f153d6903dad93c361af72bdbf222e48 | Cleanup and documentation. | diff --git a/template.js b/template.js
index 83cd15f..952ad18 100644
--- a/template.js
+++ b/template.js
@@ -1,98 +1,99 @@
-/*
-This is resig's templating function, here for reference:
-
+// Templates with embedded JavaScript
+//
+// Some credit is due to John Resig:
// http://ejohn.org/blog/javascript-micro-templati... |
grumdrig/woses | fa4bacb6f7327b1ae96c7abfac27207d788148bb | Templating function beginnings. A bit rough still. | diff --git a/template.js b/template.js
new file mode 100644
index 0000000..83cd15f
--- /dev/null
+++ b/template.js
@@ -0,0 +1,98 @@
+/*
+This is resig's templating function, here for reference:
+
+// http://ejohn.org/blog/javascript-micro-templating/
+
+(function(){
+ var cache = {};
+
+ this.tmpl = function tmpl(... |
grumdrig/woses | 4bf7747e30e3b5ccb942d18cad2d945c8496cd18 | Documentation improvements | diff --git a/doc/index.html b/doc/index.html
index 63da3c9..b266cfe 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -1,92 +1,124 @@
<head>
<title>Woses Documentation/Test</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<h1>
<!--☶ ☁ ⎈ 𐂷 ☃-->
Woses ... |
grumdrig/woses | dd514dfe1db3002f329fbca9575c98f31b29c8b1 | Separate tests from documentation | diff --git a/doc/index.html b/doc/index.html
index 2c44d51..63da3c9 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -1,137 +1,92 @@
<head>
<title>Woses Documentation/Test</title>
<link rel="stylesheet" href="style.css"/>
- <script src="script.js"></script>
</head>
-<body onLoad="unittest()">
+<body>
<... |
grumdrig/woses | 3e0eeff70826509779aa504b3c88ef0f8a863972 | Use simpler, good enough, form arg parsing | diff --git a/woses.js b/woses.js
index cdaad52..2c3ac79 100644
--- a/woses.js
+++ b/woses.js
@@ -1,232 +1,241 @@
/*
Copyright (c) 2009, Eric Fredricksen <e@fredricksen.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the abo... |
grumdrig/woses | 00a0610930db0f9d0a8f97b06001d87502dfcf56 | No swedes required | diff --git a/parp.php b/parp.php
index d83028a..e17ee62 100644
--- a/parp.php
+++ b/parp.php
@@ -1,67 +1,65 @@
<?
/*
Copyright (c) 2009, Eric Fredricksen <e@fredricksen.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the a... |
grumdrig/woses | 17d9f25b5a4d9d577bbe07b01cdd9ecffce4468b | doc improvements | diff --git a/doc/.woses-conf.js b/doc/.woses-conf.js
index be7a94c..dec54ec 100644
--- a/doc/.woses-conf.js
+++ b/doc/.woses-conf.js
@@ -1,7 +1,7 @@
exports.mimetypes = {
gif: "image/gif"
}
-//exports.port = 8111;
+exports.port = 8080;
//exports.logRequestHeaders = true;
diff --git a/doc/index.html b/doc/inde... |
grumdrig/woses | c0451c4593d4ef4a23b67dfd1c8993e96b372df6 | A little more succinct in www-forms | diff --git a/www-forms.js b/www-forms.js
index 022a5be..f0b4a08 100644
--- a/www-forms.js
+++ b/www-forms.js
@@ -1,61 +1,56 @@
/*
Copyright (c) 2009 Hagen Overdick
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to ... |
grumdrig/woses | c1a859e436a97d6cca992237286c3c62aad45adf | Use chdir for documentRoot and more tests | diff --git a/doc/index.html b/doc/index.html
index 1d515bd..f965ad6 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -1,58 +1,58 @@
<head>
<title>Woses Documentation/Test</title>
<link rel="stylesheet" href="style.css"/>
<script src="script.js"></script>
</head>
<body onLoad="unittest()">
<h1> &... |
grumdrig/woses | 458d68cf9545681d813fc506e5bcc6617cd97594 | Huppable serverloop, set content-length correctly | diff --git a/serverloop.py b/serverloop.py
index 5d92581..ba2928a 100755
--- a/serverloop.py
+++ b/serverloop.py
@@ -1,44 +1,63 @@
#!/usr/bin/python
# Copyright (c) 2009, Eric Fredricksen <e@fredricksen.net>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fe... |
grumdrig/woses | cbeb635673620c173cb5ea4ded299cfefdc0ec62 | some sort of primitive start to unittesting | diff --git a/doc/index.html b/doc/index.html
index 618c495..1d515bd 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -1,54 +1,58 @@
<head>
<title>Woses Documentation/Test</title>
<link rel="stylesheet" href="style.css"/>
<script src="script.js"></script>
</head>
-<body onLoad="doSomething()">
+<body onL... |
grumdrig/woses | 45311c817ed785f3d08dc4b1c866777b8ab9d1db | Rename a couple files | diff --git a/doc/index.html b/doc/index.html
index a4f4ce3..618c495 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -1,54 +1,54 @@
<head>
<title>Woses Documentation/Test</title>
- <link rel="stylesheet" href="main.css"/>
- <script src="main.js"></script>
+ <link rel="stylesheet" href="style.css"/>
+ <script... |
grumdrig/woses | 080ad89fdb483c5a962014226e22ecf64487c25a | Added JSON RPC | diff --git a/doc/.woses-conf.js b/doc/.woses-conf.js
index 76f903e..be7a94c 100644
--- a/doc/.woses-conf.js
+++ b/doc/.woses-conf.js
@@ -1,7 +1,7 @@
exports.mimetypes = {
gif: "image/gif"
}
//exports.port = 8111;
-exports.logRequestHeaders = true;
\ No newline at end of file
+//exports.logRequestHeaders = tru... |
grumdrig/woses | 67a02e9135d736b93e52b2d22908557c3027b392 | Use POST params in js rpc. Test forms. | diff --git a/doc/.woses-conf.js b/doc/.woses-conf.js
index bb988e6..76f903e 100644
--- a/doc/.woses-conf.js
+++ b/doc/.woses-conf.js
@@ -1,7 +1,7 @@
exports.mimetypes = {
gif: "image/gif"
}
//exports.port = 8111;
-//exports.logRequestHeaders = true;
\ No newline at end of file
+exports.logRequestHeaders = tru... |
grumdrig/woses | 5f53a8783199beab2a534672edc5085311115973 | Always recv req body | diff --git a/doc/.woses-conf.js b/doc/.woses-conf.js
index 76f903e..bb988e6 100644
--- a/doc/.woses-conf.js
+++ b/doc/.woses-conf.js
@@ -1,7 +1,7 @@
exports.mimetypes = {
gif: "image/gif"
}
//exports.port = 8111;
-exports.logRequestHeaders = true;
\ No newline at end of file
+//exports.logRequestHeaders = tru... |
grumdrig/woses | 6b10aa8508acf50b2a83ec31fe6431177ed0471d | Refactor responding a little. Add doc/test dir. | diff --git a/doc/.woses-conf.js b/doc/.woses-conf.js
new file mode 100644
index 0000000..76f903e
--- /dev/null
+++ b/doc/.woses-conf.js
@@ -0,0 +1,7 @@
+exports.mimetypes = {
+ gif: "image/gif"
+}
+
+//exports.port = 8111;
+
+exports.logRequestHeaders = true;
\ No newline at end of file
diff --git a/README.md b/doc/RE... |
grumdrig/woses | 7de0c0733ff5e584bcda46b25780ce9a216e0869 | Configuration through a conf file .woses-conf.js | diff --git a/serverloop.py b/serverloop.py
index 8884e07..6323ed8 100755
--- a/serverloop.py
+++ b/serverloop.py
@@ -1,42 +1,43 @@
#!/usr/bin/python
# Copyright (c) 2009, Eric Fredricksen <e@fredricksen.net>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fe... |
grumdrig/woses | 5418124f2bfb979b10e69044211f19c8387e6337 | Process Markdown files | diff --git a/README.md b/README.md
index b2de01c..412757d 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,10 @@
woses
=====
-HTTP server for static and PHP files via Node.js (See nodejs.org)
+HTTP server for static and PHP files via [Node](http://nodejs.org/)
Usage
-----
`$ node woses.js`
diff --git a/... |
grumdrig/woses | 0ab9f8c9f0f816fd557ed236474cb4bc5cf41d4c | RPC mechanism for js | diff --git a/serverloop.py b/serverloop.py
index 2e8aff5..8884e07 100755
--- a/serverloop.py
+++ b/serverloop.py
@@ -1,42 +1,42 @@
#!/usr/bin/python
# Copyright (c) 2009, Eric Fredricksen <e@fredricksen.net>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fe... |
grumdrig/woses | 5be1043f2fd10a2bf761212ee76ccbe6524b0d5d | Command-line flag to specify a directory index | diff --git a/woses.js b/woses.js
index bca21c3..81e8f48 100644
--- a/woses.js
+++ b/woses.js
@@ -1,179 +1,182 @@
/*
Copyright (c) 2009, Eric Fredricksen <e@fredricksen.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the abo... |
grumdrig/woses | 3363458bfd0bf1f2d54d399f9ad793b653b0a3f3 | Better handling of error conditions, command line args | diff --git a/parp.php b/parp.php
index 646b669..9e213a4 100644
--- a/parp.php
+++ b/parp.php
@@ -1,63 +1,67 @@
<?
/*
Copyright (c) 2009, Eric Fredricksen <e@fredricksen.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the a... |
grumdrig/woses | 4a72f3079e487667ebac5eabd615d284a6f41684 | Fix race condition. Point to www-forms. | diff --git a/woses.js b/woses.js
index 16daea5..c7a654a 100644
--- a/woses.js
+++ b/woses.js
@@ -1,145 +1,146 @@
/*
Copyright (c) 2009, Eric Fredricksen <e@fredricksen.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the abo... |
grumdrig/woses | f3d859cd0ea79876a7eac737201bb4252167bfab | Adding required www-forms file | diff --git a/www-forms.js b/www-forms.js
new file mode 100644
index 0000000..022a5be
--- /dev/null
+++ b/www-forms.js
@@ -0,0 +1,61 @@
+/*
+Copyright (c) 2009 Hagen Overdick
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Softwar... |
grumdrig/woses | 73b7ceb5fafe65ec2a50c190a2096294ad4582f5 | Added README | diff --git a/README.md b/README.md
new file mode 100644
index 0000000..b2de01c
--- /dev/null
+++ b/README.md
@@ -0,0 +1,10 @@
+woses
+=====
+
+HTTP server for static and PHP files via Node.js (See nodejs.org)
+
+Usage
+-----
+
+`$ node woses.js`
+
|
grumdrig/woses | 1397ee2199efc4cc83463569eac03d56da056b99 | Inital commit of woses: node-based static and PHP webserver | diff --git a/parp.php b/parp.php
new file mode 100644
index 0000000..646b669
--- /dev/null
+++ b/parp.php
@@ -0,0 +1,63 @@
+<?
+/*
+Copyright (c) 2009, Eric Fredricksen <e@fredricksen.net>
+
+Permission to use, copy, modify, and/or distribute this software for any
+purpose with or without fee is hereby granted, provide... |
markpasc/mt-plugin-action-streams | b267a2fdb91912c795bf38239ed32886478f03b1 | Fix the Delicious profile; Bumped to version 2.2.1. | diff --git a/plugins/ActionStreams/config.yaml b/plugins/ActionStreams/config.yaml
index b73551f..fc42b70 100644
--- a/plugins/ActionStreams/config.yaml
+++ b/plugins/ActionStreams/config.yaml
@@ -1,198 +1,198 @@
name: Action Streams
id: ActionStreams
key: ActionStreams
author_link: http://www.sixapart.com/
author... |
markpasc/mt-plugin-action-streams | 9f73868423239bb0c672d6236452387d3cdfa3a3 | ActionStreams::Event::build_results did not check to make sure that the identifier was less than or equal to 200 characters in length. I added two minor fixes to address that. | diff --git a/plugins/ActionStreams/lib/ActionStreams/Event.pm b/plugins/ActionStreams/lib/ActionStreams/Event.pm
index b2ce484..163491d 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Event.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Event.pm
@@ -1,850 +1,850 @@
package ActionStreams::Event;
use strict;... |
markpasc/mt-plugin-action-streams | 037b016a46cb47a10ee20eb07e0b42cb997d76f3 | Avoid doing a deprecated scalar split (thanks, Brendan) | diff --git a/plugins/ActionStreams/lib/ActionStreams/Event/Steam.pm b/plugins/ActionStreams/lib/ActionStreams/Event/Steam.pm
index d37883f..3b5759d 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Event/Steam.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Event/Steam.pm
@@ -1,116 +1,117 @@
package ActionStream... |
markpasc/mt-plugin-action-streams | 722c9677fcb72eda794d4c499a17c8701f183a87 | Fix Steam achievement stream for new HTML (thanks, Brendan O'Connor for the patch!) | diff --git a/plugins/ActionStreams/lib/ActionStreams/Event/Steam.pm b/plugins/ActionStreams/lib/ActionStreams/Event/Steam.pm
index 986f5b6..d37883f 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Event/Steam.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Event/Steam.pm
@@ -1,100 +1,116 @@
package ActionStream... |
markpasc/mt-plugin-action-streams | 563c2ab485b73fbabf00f39544d7481153481f76 | Don't change the google reader items' identifiers after we check them for uniqueness | diff --git a/plugins/ActionStreams/lib/ActionStreams/Fix.pm b/plugins/ActionStreams/lib/ActionStreams/Fix.pm
index a8c1ade..b40f3a5 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Fix.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Fix.pm
@@ -1,164 +1,163 @@
package ActionStreams::Fix;
use strict;
use warn... |
markpasc/mt-plugin-action-streams | be30bb2162889e1aa0c47ab4ae6dc7bd67e1a827 | Switch the Google Reader stream to a yaml recipe instead of a class based definition | diff --git a/plugins/ActionStreams/config.yaml b/plugins/ActionStreams/config.yaml
index eed97e1..b73551f 100644
--- a/plugins/ActionStreams/config.yaml
+++ b/plugins/ActionStreams/config.yaml
@@ -1,197 +1,198 @@
name: Action Streams
id: ActionStreams
key: ActionStreams
author_link: http://www.sixapart.com/
author... |
markpasc/mt-plugin-action-streams | 5919284afcb0a00f732cd4229ee9daabfa32ace1 | Only look at personalized pages for Steam achievements (to avoid UUVs) | diff --git a/plugins/ActionStreams/lib/ActionStreams/Event/Steam.pm b/plugins/ActionStreams/lib/ActionStreams/Event/Steam.pm
index 5e5c486..986f5b6 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Event/Steam.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Event/Steam.pm
@@ -1,97 +1,100 @@
package ActionStreams... |
markpasc/mt-plugin-action-streams | 7efee61b1afcd9ea2ed6b6812e1bd9e59a65aa93 | Don't look for a thumbnail URL where there isn't one (prevents UUV in Kongregate achievements stream) | diff --git a/plugins/ActionStreams/lib/ActionStreams/Fix.pm b/plugins/ActionStreams/lib/ActionStreams/Fix.pm
index ba4905c..1d24ba6 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Fix.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Fix.pm
@@ -1,157 +1,157 @@
package ActionStreams::Fix;
use strict;
use warn... |
markpasc/mt-plugin-action-streams | 937661b96da36cf289670d8a7110f1dbd9bab207 | I guess the grep block is explicitly required | diff --git a/plugins/ActionStreams/lib/ActionStreams/Event.pm b/plugins/ActionStreams/lib/ActionStreams/Event.pm
index 7db3326..b2ce484 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Event.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Event.pm
@@ -1,850 +1,850 @@
package ActionStreams::Event;
use strict;... |
markpasc/mt-plugin-action-streams | 278df4223eeb4b4af488a3b2aca753d4df52dc35 | Protect against some more cron-time warnings | diff --git a/plugins/ActionStreams/lib/ActionStreams/Event.pm b/plugins/ActionStreams/lib/ActionStreams/Event.pm
index 44aabec..7db3326 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Event.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Event.pm
@@ -1,839 +1,850 @@
package ActionStreams::Event;
use strict;... |
markpasc/mt-plugin-action-streams | e0208adaf76a10d47911258702020d598dc7adc1 | Provide updated favicons for p0p.com and Upcoming | diff --git a/mt-static/plugins/ActionStreams/images/services/p0pulist.png b/mt-static/plugins/ActionStreams/images/services/p0pulist.png
index d2f49cf..5f1f428 100644
Binary files a/mt-static/plugins/ActionStreams/images/services/p0pulist.png and b/mt-static/plugins/ActionStreams/images/services/p0pulist.png differ
dif... |
markpasc/mt-plugin-action-streams | 130513f26ca53a7498e48dbb4305461f0b07a217 | Add new service icons to CSS declarations too | diff --git a/mt-static/plugins/ActionStreams/css/action-streams.css b/mt-static/plugins/ActionStreams/css/action-streams.css
index 9e1e4e5..abb5ef2 100644
--- a/mt-static/plugins/ActionStreams/css/action-streams.css
+++ b/mt-static/plugins/ActionStreams/css/action-streams.css
@@ -1,113 +1,117 @@
#header,
#content,
... |
markpasc/mt-plugin-action-streams | cf4384a4deb7cc65490b8a1b92fb8235f7b9a918 | Add Blurst achievements stream | diff --git a/mt-static/plugins/ActionStreams/images/services/blurst.png b/mt-static/plugins/ActionStreams/images/services/blurst.png
new file mode 100644
index 0000000..047191d
Binary files /dev/null and b/mt-static/plugins/ActionStreams/images/services/blurst.png differ
diff --git a/plugins/ActionStreams/lib/ActionStr... |
markpasc/mt-plugin-action-streams | 0f33644085b58807ce8f473442899904fd0f5a3f | Add Instructables favorites stream | diff --git a/mt-static/plugins/ActionStreams/images/services/instructables.png b/mt-static/plugins/ActionStreams/images/services/instructables.png
new file mode 100644
index 0000000..2e409f9
Binary files /dev/null and b/mt-static/plugins/ActionStreams/images/services/instructables.png differ
diff --git a/plugins/Action... |
markpasc/mt-plugin-action-streams | 9f7de5af002e823c790fc8dc82e52282af83f55a | Add MetaFilter favorites stream | diff --git a/mt-static/plugins/ActionStreams/images/services/metafilter.png b/mt-static/plugins/ActionStreams/images/services/metafilter.png
new file mode 100644
index 0000000..616acbc
Binary files /dev/null and b/mt-static/plugins/ActionStreams/images/services/metafilter.png differ
diff --git a/plugins/ActionStreams/c... |
markpasc/mt-plugin-action-streams | 9ad9bb780320c4275068dd7fdf18f185b26c9e9f | Add icon for NYT service | diff --git a/mt-static/plugins/ActionStreams/images/services/nytimes.png b/mt-static/plugins/ActionStreams/images/services/nytimes.png
new file mode 100644
index 0000000..672607b
Binary files /dev/null and b/mt-static/plugins/ActionStreams/images/services/nytimes.png differ
|
markpasc/mt-plugin-action-streams | 009234965d75e26193f503aaa85b8efcc5d9114b | Add New York Times TimesPeople recommendations stream Add filter_action_streams_event callback (like pre_build_action_streams_event but able to prevent creation of the event) | diff --git a/plugins/ActionStreams/config.yaml b/plugins/ActionStreams/config.yaml
index c67b3e2..5202d01 100644
--- a/plugins/ActionStreams/config.yaml
+++ b/plugins/ActionStreams/config.yaml
@@ -1,194 +1,195 @@
name: Action Streams
id: ActionStreams
key: ActionStreams
author_link: http://www.sixapart.com/
author... |
markpasc/mt-plugin-action-streams | aff501705b0998dbb2ea19857b1f1fb74fbb3b1d | Deprecate Dodgeball and Magnolia services Clean up the Motion ident_hints Fix capitalization of "iStockphoto" Update service and stream for p0p.com nee p0pulist Update service and stream for Uncrate | diff --git a/plugins/ActionStreams/services.yaml b/plugins/ActionStreams/services.yaml
index 55395f0..da5eb8a 100644
--- a/plugins/ActionStreams/services.yaml
+++ b/plugins/ActionStreams/services.yaml
@@ -1,331 +1,335 @@
oneup:
name: 1up.com
url: http://{{ident}}.1up.com/
fortythreethings:
name: 43Thin... |
markpasc/mt-plugin-action-streams | 360eab61ddc2a77a45d0ef4fff1415c50f3340ad | Renumerate for next version | diff --git a/Makefile.PL b/Makefile.PL
index a83b792..893d5a8 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -1,7 +1,7 @@
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'ActionStreams',
- VERSION => '2.0',
+ VERSION => '2.2',
DISTNAME => 'ActionStreams',
);
diff --... |
markpasc/mt-plugin-action-streams | 1deb6700b11105a6c5e77e84aa04160039c929c7 | Add localizations from Motion AS (compare revision 1536) | diff --git a/plugins/ActionStreams/lib/ActionStreams/L10N.pm b/plugins/ActionStreams/lib/ActionStreams/L10N.pm
new file mode 100644
index 0000000..4b3da22
--- /dev/null
+++ b/plugins/ActionStreams/lib/ActionStreams/L10N.pm
@@ -0,0 +1,12 @@
+# Movable Type (r) (C) 2001-2008 Six Apart, Ltd. All Rights Reserved.
+# This c... |
markpasc/mt-plugin-action-streams | 9ff7cfa4df5f76de23a23d11b22af14cd861c0f5 | Oops, add back complicated but better code for now (misread the merge) | diff --git a/plugins/ActionStreams/lib/ActionStreams/Plugin.pm b/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
index c5d0a94..cfd3976 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
@@ -1,793 +1,792 @@
package ActionStreams::Plugin;
use stri... |
markpasc/mt-plugin-action-streams | 389d38ae34112c8b8a9254dfa831dfead98fe52b | Apply simplified author permission checking from Motion AS (compare revision 1536) | diff --git a/plugins/ActionStreams/lib/ActionStreams/Plugin.pm b/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
index cfd3976..c5d0a94 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
@@ -1,792 +1,793 @@
package ActionStreams::Plugin;
use stri... |
markpasc/mt-plugin-action-streams | 49230c0c213096eb61bbad6f0fd42d63367cffbe | Finish merging template set from Motion version of AS (seems to have been partially merged; compare revision 1536) | diff --git a/plugins/ActionStreams/blog_tmpl/banner_footer.mtml b/plugins/ActionStreams/blog_tmpl/banner_footer.mtml
new file mode 100644
index 0000000..1b98c6b
--- /dev/null
+++ b/plugins/ActionStreams/blog_tmpl/banner_footer.mtml
@@ -0,0 +1,18 @@
+<div id="footer">
+ <div id="footer-inner">
+ <div id="foote... |
markpasc/mt-plugin-action-streams | 889e753a92e83a9294b0d86725dea30108bbfe2a | Don't try to double-shift self off the parameters | diff --git a/plugins/ActionStreams/lib/ActionStreams/UserAgent/Adapter.pm b/plugins/ActionStreams/lib/ActionStreams/UserAgent/Adapter.pm
index 66876b0..73fd1c4 100644
--- a/plugins/ActionStreams/lib/ActionStreams/UserAgent/Adapter.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/UserAgent/Adapter.pm
@@ -1,116 +1,116 @@... |
markpasc/mt-plugin-action-streams | 91dbd9815349d483bc626ec317daa8c1fe7af557 | Don't queue a publish job if the finfo's template doesn't have an output file BugzID: 99181 | diff --git a/plugins/ActionStreams/lib/ActionStreams/Plugin.pm b/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
index 0fe637e..cfd3976 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
@@ -189,599 +189,604 @@ sub list_profileevent {
push @... |
markpasc/mt-plugin-action-streams | 191d58025cdd092497d94d436a0db93bf380fda8 | Use new Delicious feed (and logo) Collect tags for Delicious links too BugzID: 100568 | diff --git a/mt-static/plugins/ActionStreams/images/services/delicious.png b/mt-static/plugins/ActionStreams/images/services/delicious.png
index 80af1ac..a1efb93 100755
Binary files a/mt-static/plugins/ActionStreams/images/services/delicious.png and b/mt-static/plugins/ActionStreams/images/services/delicious.png differ... |
markpasc/mt-plugin-action-streams | edaba2f769df1ff8397d0eb10111026c8f5e8f5f | Ignore DIE handlers for these checks, since they intentionally fail a lot (thanks, Jay!) BugzID: 95748 | diff --git a/plugins/ActionStreams/lib/ActionStreams/Event.pm b/plugins/ActionStreams/lib/ActionStreams/Event.pm
index 46b430c..93a5abf 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Event.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Event.pm
@@ -1,794 +1,801 @@
package ActionStreams::Event;
use strict;... |
markpasc/mt-plugin-action-streams | d192690348ad0c22e0e2d74806a9d4fb72edff7c | Use 'not like' operator if service or stream attributes are specified individually with leading 'not' | diff --git a/plugins/ActionStreams/lib/ActionStreams/Tags.pm b/plugins/ActionStreams/lib/ActionStreams/Tags.pm
index 743a42d..da58eca 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Tags.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Tags.pm
@@ -1,548 +1,552 @@
package ActionStreams::Tags;
use strict;
use... |
markpasc/mt-plugin-action-streams | 1fdb44b999baecc41029461cd019a9d977a5bcb0 | Fixed bugzid:100284. * Stoped to remove html tags when get value from field. | diff --git a/plugins/ActionStreams/lib/ActionStreams/Event.pm b/plugins/ActionStreams/lib/ActionStreams/Event.pm
index 0f27e09..46b430c 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Event.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Event.pm
@@ -1,582 +1,582 @@
package ActionStreams::Event;
use strict;... |
markpasc/mt-plugin-action-streams | 6bc747e9a91eaeee7ac25bf2e8e9c0a1841548a0 | removed search services merged from motion. bugzid:100283. | diff --git a/mt-static/plugins/ActionStreams/css/action-streams.css b/mt-static/plugins/ActionStreams/css/action-streams.css
index 116081b..9e1e4e5 100644
--- a/mt-static/plugins/ActionStreams/css/action-streams.css
+++ b/mt-static/plugins/ActionStreams/css/action-streams.css
@@ -1,118 +1,113 @@
#header,
#content,
... |
markpasc/mt-plugin-action-streams | cc8e91a1c8b87e1eebd9021891f9f2d65f2d236d | Don't next out of a function, and let there be no associated profile (thanks, Jay) BugzID: 91839 | diff --git a/plugins/ActionStreams/lib/ActionStreams/Tags.pm b/plugins/ActionStreams/lib/ActionStreams/Tags.pm
index 9737d9f..7dba44c 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Tags.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Tags.pm
@@ -1,533 +1,532 @@
package ActionStreams::Tags;
use strict;
use... |
markpasc/mt-plugin-action-streams | 60fe1d91cefa17cee5dbee0760788afdb5092c4e | fixed typo. | diff --git a/plugins/ActionStreams/lib/ActionStreams/Tags.pm b/plugins/ActionStreams/lib/ActionStreams/Tags.pm
index 8e48589..9737d9f 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Tags.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Tags.pm
@@ -1,533 +1,533 @@
package ActionStreams::Tags;
use strict;
use... |
markpasc/mt-plugin-action-streams | c506cfe4b7b62a02a1821f807ec482fcb437307c | Removed "no_deplecated" option from _build_service_data because it's backward logical. bugzid:100250. * not show deplecated services if no option. * to show deplecated services, use "include_deplecated" option. | diff --git a/plugins/ActionStreams/lib/ActionStreams/Plugin.pm b/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
index 57df8e1..d3c396d 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
@@ -1,775 +1,774 @@
package ActionStreams::Plugin;
use stri... |
markpasc/mt-plugin-action-streams | 776f74a3769d35a28c2f26ede36b7c9d05bc6b3f | Removed today_date hack from archive template. additionaly fixed typo in index. bugzid:100249. | diff --git a/plugins/ActionStreams/blog_tmpl/archive.mtml b/plugins/ActionStreams/blog_tmpl/archive.mtml
index 5a03d5a..8cba1b7 100644
--- a/plugins/ActionStreams/blog_tmpl/archive.mtml
+++ b/plugins/ActionStreams/blog_tmpl/archive.mtml
@@ -1,67 +1,62 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
... |
markpasc/mt-plugin-action-streams | 19288a908ac42dd8ab7de663d7fd586934480074 | Added "for USERNAME" to page_title for list_profileevents and other_profiles modes to provide better context and consistency with the permissions and followers/following screens of the Community app. bugzid:92089 | diff --git a/plugins/ActionStreams/lib/ActionStreams/Plugin.pm b/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
index 313fa57..8e00998 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
@@ -1,706 +1,710 @@
package ActionStreams::Plugin;
use stri... |
markpasc/mt-plugin-action-streams | 016353090288e4bff0660cc9b72f7718aed0e055 | Refactored author loading code in preparation for fixing bugzid:92089. Now all methods in ActionStreams::Plugin use the method _edit_author() to load the author and check permissions. Upon failure, it returns standard, already-localized MT error messages. (This is a rework of the same commit contained in r1432 and rev... | diff --git a/plugins/ActionStreams/lib/ActionStreams/Plugin.pm b/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
index e0d1c92..313fa57 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
@@ -1,711 +1,706 @@
package ActionStreams::Plugin;
use stri... |
markpasc/mt-plugin-action-streams | 63d7a6a73f945772365fd5a56342a98f25d4b068 | Fixing error thrown when selecting show/hide all from the action stream events dropdown menu: 'Can't locate object method "is_superuser" via package "MT::App::CMS"' bugzid:91768 | diff --git a/plugins/ActionStreams/lib/ActionStreams/Plugin.pm b/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
index 86412c2..e0d1c92 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Plugin.pm
@@ -1,711 +1,711 @@
package ActionStreams::Plugin;
use stri... |
markpasc/mt-plugin-action-streams | 0184370555195aa296b76686e41c58a15a162c4c | Fixed typos in POD bugzid:92087 | diff --git a/plugins/ActionStreams/lib/ActionStreams/Event.pm b/plugins/ActionStreams/lib/ActionStreams/Event.pm
index 91cb31a..fb839d6 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Event.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Event.pm
@@ -34,765 +34,765 @@ __PACKAGE__->install_properties({
dataso... |
markpasc/mt-plugin-action-streams | 79e5b2c8fa3fb562ab13317a3f6f493de74861bf | Undoing my checkin in r1432 and breaking it up into individual commits per markpasc's request | diff --git a/plugins/ActionStreams/lib/ActionStreams/Event.pm b/plugins/ActionStreams/lib/ActionStreams/Event.pm
index fb839d6..91cb31a 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Event.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Event.pm
@@ -34,765 +34,765 @@ __PACKAGE__->install_properties({
dataso... |
markpasc/mt-plugin-action-streams | 4cb12789ce9670404cd822f1f153f07de577a766 | Let OtherProfileVar work in the ActionStreams tag, even if it is occasionally wrong BugzID: 91839 | diff --git a/plugins/ActionStreams/lib/ActionStreams/Tags.pm b/plugins/ActionStreams/lib/ActionStreams/Tags.pm
index 88c0ace..15b5aba 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Tags.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Tags.pm
@@ -1,467 +1,469 @@
package ActionStreams::Tags;
use strict;
use... |
markpasc/mt-plugin-action-streams | dea6c8aafd54a24311d00dee360d64e84587948a | Document new Event::ua() params BugzID: 91767 | diff --git a/plugins/ActionStreams/lib/ActionStreams/Event.pm b/plugins/ActionStreams/lib/ActionStreams/Event.pm
index 0a565ce..fb839d6 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Event.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Event.pm
@@ -192,578 +192,607 @@ sub update_events {
foreach =>... |
markpasc/mt-plugin-action-streams | 99358d5bba5bcb5449e606899a52e76a4bb7b5b4 | Always fetch the HTML page for a Website profile anyway (we still need those URLs to check the feeds, even if the HTML page was Not Modified) BugzID: 91767 | diff --git a/plugins/ActionStreams/lib/ActionStreams/Event.pm b/plugins/ActionStreams/lib/ActionStreams/Event.pm
index d63a174..0a565ce 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Event.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Event.pm
@@ -1,768 +1,769 @@
package ActionStreams::Event;
use strict;... |
markpasc/mt-plugin-action-streams | 02687f6bd360ae1a60cc4ce66d417fd995b01bd9 | Return control to Event::fetch_scraper() if we tried to use Web::Scraper on a resource that was Not Modified since we last got it BugzID: 91767 | diff --git a/plugins/ActionStreams/lib/ActionStreams/Event.pm b/plugins/ActionStreams/lib/ActionStreams/Event.pm
index 9094697..d63a174 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Event.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Event.pm
@@ -1,760 +1,768 @@
package ActionStreams::Event;
use strict;... |
markpasc/mt-plugin-action-streams | 934cae55dd81b44ed7f5696ad8d95959902e2bb2 | Stop throwing out caching headers just because they worked BugzID: 91767 | diff --git a/plugins/ActionStreams/lib/ActionStreams/UserAgent/Adapter.pm b/plugins/ActionStreams/lib/ActionStreams/UserAgent/Adapter.pm
index ef603aa..008a022 100644
--- a/plugins/ActionStreams/lib/ActionStreams/UserAgent/Adapter.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/UserAgent/Adapter.pm
@@ -1,93 +1,96 @@
... |
markpasc/mt-plugin-action-streams | 5d40db1023c5ea00772d39d59f5820fd3766d109 | this spacing too | diff --git a/plugins/ActionStreams/lib/ActionStreams/Scraper.pm b/plugins/ActionStreams/lib/ActionStreams/Scraper.pm
index 44e642c..56e4a73 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Scraper.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Scraper.pm
@@ -1,37 +1,37 @@
package ActionStreams::Scraper;
my ... |
markpasc/mt-plugin-action-streams | ab7cdabd286fa4b70e47834b77c31262f3c090df | spacing | diff --git a/plugins/ActionStreams/lib/ActionStreams/Scraper.pm b/plugins/ActionStreams/lib/ActionStreams/Scraper.pm
index b14fbca..44e642c 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Scraper.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Scraper.pm
@@ -1,37 +1,37 @@
package ActionStreams::Scraper;
my ... |
markpasc/mt-plugin-action-streams | 18e6fdcace79b06ce36a982652d7044228d215d4 | This update_events_safely method isn't actually particularly safe BugzID: 91767 | diff --git a/plugins/ActionStreams/lib/ActionStreams/Event.pm b/plugins/ActionStreams/lib/ActionStreams/Event.pm
index 9bae2b3..9094697 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Event.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Event.pm
@@ -1,610 +1,610 @@
package ActionStreams::Event;
use strict;... |
markpasc/mt-plugin-action-streams | 43d47717f0f608f0599df87e67037b9f9d45b538 | Fixed a number of bugs in ActionStreams plugin: * ActionStreams::Plugin - Added username to page title for list_profileevent other_profiles modes to provide proper context (e.g. "Other profiles for USERNAME" instead of just "Other profiles") to admins who might be looking at or editing multiple * Created ActionStream... | diff --git a/plugins/ActionStreams/lib/ActionStreams/Event.pm b/plugins/ActionStreams/lib/ActionStreams/Event.pm
index b1de43b..9bae2b3 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Event.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Event.pm
@@ -25,736 +25,736 @@ __PACKAGE__->install_properties({
indexe... |
markpasc/mt-plugin-action-streams | 3940619b74ffd362a1847f0041513ca3898818b9 | Include user's other profiles in ASTest output BugzID: 86958 | diff --git a/plugins/ASTest/astest.pl b/plugins/ASTest/astest.pl
index 1c3d8ad..1e5ce3a 100644
--- a/plugins/ASTest/astest.pl
+++ b/plugins/ASTest/astest.pl
@@ -1,77 +1,81 @@
package ASTest::Plugin;
use strict;
use warnings;
use base qw( MT::Plugin );
my $plugin = __PACKAGE__->new({
name => 'ASTest',
... |
markpasc/mt-plugin-action-streams | 21577a6aa3b5a62b4cd8825ce82b254541d71866 | Sort items of OtherProfiles tag by service name, not service id BugzID: 86958 | diff --git a/plugins/ActionStreams/lib/ActionStreams/Tags.pm b/plugins/ActionStreams/lib/ActionStreams/Tags.pm
index 418dace..88c0ace 100644
--- a/plugins/ActionStreams/lib/ActionStreams/Tags.pm
+++ b/plugins/ActionStreams/lib/ActionStreams/Tags.pm
@@ -1,464 +1,467 @@
package ActionStreams::Tags;
use strict;
use... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.