repo
string
commit
string
message
string
diff
string
tuxsoul/wiki-httpbl
655370cec13cf0df3484ce9743a127b814f62a14
* Fix bug #1: "wiki-httpbl stop others extensions using the same wgHook ...." * Change $wgHook['ParserBeforeTidy'] to $wgHook['ParserAfterTidy'] * Change version to v0.1.1
diff --git a/CHANGELOG b/CHANGELOG index 92f0257..0478535 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,15 +1,22 @@ -=============================================================================== +================================================================================ CHANGELOG -==============================...
tuxsoul/wiki-httpbl
7fbb34f82c463770fef666441c439989b21433b6
* Core version v0.1 * First version of this extension * Detect spammer's using http:bl from 'Project Honey Pot' * Can redirect spammer to one address trap * Use one word with address trap * Insert three or more address trap in the html code
diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..92f0257 --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,15 @@ +=============================================================================== +CHANGELOG +=============================================================================== + +------------------...
xeqi/blob_detector
104dd2fe70863b4f9470c5fcbe4a2856dfb12a1d
Change api and add some tests.
diff --git a/README b/README deleted file mode 100644 index 717a0af..0000000 --- a/README +++ /dev/null @@ -1,15 +0,0 @@ -# blob-detector - -FIXME: write description - -## Usage - -FIXME: write - -## Installation - -FIXME: write - -## License - -FIXME: write diff --git a/README.md b/README.md new file mode 100644 index...
wiryadi/DynamicSQL
7e2da3a9ad6a63e3d2b172394ed8d0d62095d1d3
adding files from ALT.NET lightning talk
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..12be9f6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +obj/ +bin/ +*.trx +*.suo \ No newline at end of file diff --git a/src/DynamicSQL/DynamicRow.cs b/src/DynamicSQL/DynamicRow.cs new file mode 100644 index 0000000..ea29e79 --- /dev/null +++ b/s...
colinramsay/needs-fetching
456087bd4fc2269f59590d422560f77c5fb7bcbf
passing specs
diff --git a/README b/README index e69de29..964fc92 100644 --- a/README +++ b/README @@ -0,0 +1,16 @@ +Ruby mixin for open-uri to check to see if a url needs fetching based on the last time you fetched it and the last etag you got. + +WORK IN PROGRESS! + +Usage +----- + +require 'open-uri' +result = open("http://exampl...
ralphleon/Pollinator
ea5f66d155790e1bdefb22e803cb4412137a7caa
More comments
diff --git a/admin/index.php b/admin/index.php index 6cc0d6d..a1a94ef 100644 --- a/admin/index.php +++ b/admin/index.php @@ -1,13 +1,18 @@ <? $title = "Secret Admin Section"; include("../header.php"); include("../pollinator/admin_helper.php") ?> - - <p>Respondents to the poll:</p> - <div id="tableHolder"> ...
ralphleon/Pollinator
f48f426155788e5a7628b1ad2a3fc75b9a7b2627
Added setup files
diff --git a/admin/editor.php b/admin/editor.php index 81a9fcd..25f449b 100644 --- a/admin/editor.php +++ b/admin/editor.php @@ -1,50 +1,50 @@ <? $title = "Question Editor"; include("../header.php") ?> <script type="text/javascript" src="/questionator/js/jquery.js"></script> <script type="text/javascript" src="...
ralphleon/Pollinator
c1521f931982ea729ee41bd83ee5002509108082
Added configuration file
diff --git a/pollinator/config.php b/pollinator/config.php new file mode 100644 index 0000000..1e53be0 --- /dev/null +++ b/pollinator/config.php @@ -0,0 +1,14 @@ +<? +/** Configuration file for pollinator! */ + +// Database name +define("DB_SERVER","localhost"); +define("DB", "questionator"); +define("DB_USER","root");...
ralphleon/Pollinator
5764a23f18c0fc08b37659021ba5d066e7c0822a
Finalization
diff --git a/admin/editor.php b/admin/editor.php index 272de81..81a9fcd 100644 --- a/admin/editor.php +++ b/admin/editor.php @@ -1,55 +1,50 @@ -<? include("header.php") ?> +<? $title = "Question Editor"; include("../header.php") ?> <script type="text/javascript" src="/questionator/js/jquery.js"></script> <script...
ralphleon/Pollinator
319d6c3a57d4662b205fd9ac079bb34225b02196
Major refactoring, added form validation
diff --git a/admin/editor.php b/admin/editor.php index ca4128f..272de81 100644 --- a/admin/editor.php +++ b/admin/editor.php @@ -1,54 +1,55 @@ -<? include("../header.php") ?> +<? include("header.php") ?> <script type="text/javascript" src="/questionator/js/jquery.js"></script> <script type="text/javascript" src=...
ralphleon/Pollinator
57829889c0fb44fa8180beb0d512bca17edba283
Started working on the dynamic editor
diff --git a/admin/editor.php b/admin/editor.php index b8b21c1..ca4128f 100644 --- a/admin/editor.php +++ b/admin/editor.php @@ -1,44 +1,54 @@ <? include("../header.php") ?> +<script type="text/javascript" src="/questionator/js/jquery.js"></script> +<script type="text/javascript" src="/questionator/js/editor.js">...
ralphleon/Pollinator
003e9f3511d9425754a6670e56ca8421ca93a0d9
Started working on the editor
diff --git a/admin/editor.php b/admin/editor.php new file mode 100644 index 0000000..b8b21c1 --- /dev/null +++ b/admin/editor.php @@ -0,0 +1,44 @@ +<? include("../header.php") ?> + +<div id="container"> + + <h1>Administration</h1> + + <!--<form> + <div class="question"> + <div class="main"> + <label>Questio...
ralphleon/Pollinator
fc5675a3614e9a82fd4f96ce4bacfb130434ab92
Finished insertion
diff --git a/admin/index.php b/admin/index.php new file mode 100644 index 0000000..f06d9ac --- /dev/null +++ b/admin/index.php @@ -0,0 +1,8 @@ +<? include("../header.php") ?> + +<div id="container"> + + <h1>Administration</h1> + +</div> +</html></body> \ No newline at end of file diff --git a/admin/results.php b/admi...
goodxiexin/dayday3
04bb6df64346400bbf43d70fbaed7747e7e5bfa3
game suggestion
diff --git a/app/controllers/user/friend_guesses_controller.rb b/app/controllers/user/friend_guesses_controller.rb new file mode 100644 index 0000000..eccc49a --- /dev/null +++ b/app/controllers/user/friend_guesses_controller.rb @@ -0,0 +1,48 @@ +class User::FriendGuessesController < ApplicationController + layout 'fr...
goodxiexin/dayday3
8252f869d155709d372904934c7920d8a939ea6e
event 1st round complete
diff --git a/app/controllers/event/album_controller.rb b/app/controllers/event/album_controller.rb new file mode 100644 index 0000000..ecddcc0 --- /dev/null +++ b/app/controllers/event/album_controller.rb @@ -0,0 +1,78 @@ +class Event::AlbumController < ApplicationController + + layout 'user' + + def index + end + +...
goodxiexin/dayday3
139295f6d78bb0f68f12cdab99c7566f62dbd73d
notification_added
diff --git a/TODO b/TODO index 1aa55e9..d8ca623 100755 --- a/TODO +++ b/TODO @@ -1,32 +1,7 @@ -1. think about if we really need personal controller and profile controller +1. conditional counter_cache -2. fix facebox bug DONE +2. how to calculate unread comment notification -3. fix relationship can't be invoked fro...
goodxiexin/dayday3
8177ecf51e9c16a7ff51ef89a0d1507d451d9e57
event photo added
diff --git a/app/controllers/.album_photos_controller.rb.swp b/app/controllers/.album_photos_controller.rb.swp new file mode 100644 index 0000000..05825c9 Binary files /dev/null and b/app/controllers/.album_photos_controller.rb.swp differ diff --git a/app/controllers/.events_controller.rb.swp b/app/controllers/.events_...
goodxiexin/dayday3
210a0c11b7b2a0468c06250829a24b1bc7056a4a
event creation
diff --git a/app/views/friends/._friends.html.erb.swp b/app/controllers/.events_controller.rb.swp similarity index 91% rename from app/views/friends/._friends.html.erb.swp rename to app/controllers/.events_controller.rb.swp index f26464a..dc1874c 100644 Binary files a/app/views/friends/._friends.html.erb.swp and b/app/...
goodxiexin/dayday3
4452800f7a012a66450951f240e6df0f717aef29
participation with some problems
diff --git a/app/controllers/.game_areas_controller.rb.swp b/app/controllers/.game_areas_controller.rb.swp deleted file mode 100644 index 2d3ea33..0000000 Binary files a/app/controllers/.game_areas_controller.rb.swp and /dev/null differ diff --git a/app/controllers/.user_characters_controller.rb.swp b/app/controllers/....
goodxiexin/dayday3
777b108603b3cad41cb4ba9defcb8ab5515c5816
event new created
diff --git a/app/controllers/.game_areas_controller.rb.swp b/app/controllers/.game_areas_controller.rb.swp new file mode 100644 index 0000000..2d3ea33 Binary files /dev/null and b/app/controllers/.game_areas_controller.rb.swp differ diff --git a/app/controllers/.games_controller.rb.swp b/app/controllers/.games_controll...
goodxiexin/dayday3
4dcc82368d00b155658a6bd0e6ef652a97272e7f
video uploaded and javascript fixed
diff --git a/app/controllers/blog_digs_controller.rb b/app/controllers/blog_digs_controller.rb index 9e9f5b9..5cd9fb5 100755 --- a/app/controllers/blog_digs_controller.rb +++ b/app/controllers/blog_digs_controller.rb @@ -1,18 +1,20 @@ class BlogDigsController < ApplicationController + before_filter :login_required ...
goodxiexin/dayday3
8b4e27b483db9d921aca742f20c78d1cd3a1cf18
little test
diff --git a/test1 b/test1 new file mode 100644 index 0000000..e69de29
goodxiexin/dayday3
243622b673f7768baf24cf5093668e3b94f1ee2f
photo tag completion
diff --git a/.TODO.swp b/.TODO.swp old mode 100644 new mode 100755 index 0005486..d13a1ec Binary files a/.TODO.swp and b/.TODO.swp differ diff --git a/README b/README old mode 100644 new mode 100755 diff --git a/Rakefile b/Rakefile old mode 100644 new mode 100755 diff --git a/TODO b/TODO old mode 100644 new mode 100755...
erlware/erlcron
f235f1a2b47f6c51e20aaff4e13265637c97857d
v1.2.3
diff --git a/src/erlcron.app.src b/src/erlcron.app.src index 4d73e34..77a5d22 100644 --- a/src/erlcron.app.src +++ b/src/erlcron.app.src @@ -1,9 +1,9 @@ {application,erlcron, [{description,"Scheduled execution of Erlang functions"}, - {vsn,"1.2.2"}, + {vsn,"1.2.3"}, ...
erlware/erlcron
e74f7c19aa2fa229fe201a23b8176548ce5d8e46
Add badges
diff --git a/README.md b/README.md index 7aaff58..fc249ea 100644 --- a/README.md +++ b/README.md @@ -1,208 +1,212 @@ Erlcron ======= +[![Build Status](https://github.com/erlware/erlcron/actions/workflows/ci.yml/badge.svg)](https://github.com/erlware/erlcron/actions/workflows/ci.yml) +[![Hex pm](https://img.shields....
erlware/erlcron
7e056e84c4435536e132cdb595cb1c981a718171
Modify .gitignore
diff --git a/.gitignore b/.gitignore index 02d1d7a..343cfd8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,10 @@ ebin/*.beam ebin/*.app -deps/* +deps/ +doc/ _build rebar3 TEST*.xml .deps_plt .eunit/ .rebar/
erlware/erlcron
2677fb7c495cbe91c12741352b83c19c25b09c9d
Add missing option
diff --git a/Makefile b/Makefile index d50621c..18e45d0 100644 --- a/Makefile +++ b/Makefile @@ -1,92 +1,92 @@ # Copyright Erlware, LLC. All Rights Reserved. # # This file is provided to you under the BSD License; you may not use # this file except in compliance with the License. You may obtain a # copy of the Li...
erlware/erlcron
082bb334b3097dda3938c2bd8f0685e333c8819f
Adjust log format
diff --git a/rebar.config b/rebar.config index 047d793..75c5504 100644 --- a/rebar.config +++ b/rebar.config @@ -1,23 +1,25 @@ %% -*- mode: Erlang; fill-column: 80; comment-column: 75; -*- %% Dependencies ================================================================ {deps, []}. %% Rebar Plugins ===============...
erlware/erlcron
c5ac2cea4fc8c42f5fa0455682638ca1f37e2234
Add startup logging and erlcron version
diff --git a/include/erlcron.hrl b/include/erlcron.hrl new file mode 100644 index 0000000..8fe3dba --- /dev/null +++ b/include/erlcron.hrl @@ -0,0 +1,12 @@ +%% compatibility +-ifdef(OTP_RELEASE). %% this implies 21 or higher +-define(EXCEPTION(Class, Reason, Stacktrace), Class:Reason:Stacktrace). +-define(GET_STACK(Sta...
erlware/erlcron
058e3da1e520517acc501cdd6e8998e75555161a
Add more tests
diff --git a/test/ecrn_startup_test.erl b/test/ecrn_startup_test.erl index bbc6b53..b9deb1e 100644 --- a/test/ecrn_startup_test.erl +++ b/test/ecrn_startup_test.erl @@ -1,118 +1,132 @@ %%% @copyright Erlware, LLC. All Rights Reserved. %%% vim:ts=4:ts=4:et %%% %%% This file is provided to you under the BSD License; ...
erlware/erlcron
edca1f55c259743177135a2929a125c6e1b5e162
Improve test cases and change to use rebar3
diff --git a/Makefile b/Makefile index 349d3de..d50621c 100644 --- a/Makefile +++ b/Makefile @@ -1,92 +1,92 @@ # Copyright Erlware, LLC. All Rights Reserved. # # This file is provided to you under the BSD License; you may not use # this file except in compliance with the License. You may obtain a # copy of the Li...
erlware/erlcron
dfec5607218e33e0dad3832fdca9f19ff375c00e
Fix startup issue
diff --git a/src/ecrn_cron_sup.erl b/src/ecrn_cron_sup.erl index 649193e..5dbf3a2 100644 --- a/src/ecrn_cron_sup.erl +++ b/src/ecrn_cron_sup.erl @@ -1,178 +1,180 @@ %%% @copyright Erlware, LLC. All Rights Reserved. %%% %%% This file is provided to you under the BSD License; you may not use %%% this file except in c...
erlware/erlcron
37abad5a03618e81cd0a7f1be9ff1810249f6558
Add job specification as a map
diff --git a/README.md b/README.md index ef02a8e..7aaff58 100644 --- a/README.md +++ b/README.md @@ -1,197 +1,208 @@ Erlcron ======= Erlcron provides testable cron like functionality for Erlang systems, with the ability to arbitrarily set the time and place along with fastforwarding through tests. See erlcron.er...
erlware/erlcron
f07346d8397587703c61d16b570e61af0294fc1e
Fix cronjob startup config
diff --git a/src/ecrn_app.erl b/src/ecrn_app.erl index aa12fa4..bbd7098 100644 --- a/src/ecrn_app.erl +++ b/src/ecrn_app.erl @@ -1,73 +1,73 @@ %%% @copyright Erlware, LLC. All Rights Reserved. %%% %%% This file is provided to you under the BSD License; you may not use %%% this file except in compliance with the Lic...
erlware/erlcron
1d1d7506d980dbfa63fb55174bcec091a3841bd1
Implement the ability to ignore the job based on return of on_job_start
diff --git a/README.md b/README.md index 5737ed5..ef02a8e 100644 --- a/README.md +++ b/README.md @@ -1,195 +1,197 @@ Erlcron ======= Erlcron provides testable cron like functionality for Erlang systems, with the ability to arbitrarily set the time and place along with fastforwarding through tests. See erlcron.er...
erlware/erlcron
0d2a82d92ae72d72c3a121c4144f88a197dd6efa
Add job on_job_start and on_job_end optional callbacks
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 223bb60..3f4509c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,24 +1,24 @@ name: CI on: push: pull_request: branches: [ $default-branch ] release: types: - created jobs: test: nam...
erlware/erlcron
bd72cc586d187b86b63ef8a7f9b85b52ad0cee98
Add job options and fix failing test
diff --git a/.gitignore b/.gitignore index c054362..02d1d7a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,9 @@ ebin/*.beam ebin/*.app deps/* _build rebar3 TEST*.xml +.deps_plt +.eunit/ +.rebar/ diff --git a/README.md b/README.md index 446ca9b..3f90640 100644 --- a/README.md +++ b/README.md @@ -1,169 +1,177 ...
erlware/erlcron
90385b75da41ac7d033c8d57714e3ed0b4695418
Start use git vsn
diff --git a/src/erlcron.app.src b/src/erlcron.app.src index f9fc463..54662ae 100644 --- a/src/erlcron.app.src +++ b/src/erlcron.app.src @@ -1,7 +1,7 @@ {application,erlcron, [{description,"Erlang Implementation of cron"}, - {vsn,"0.1"}, + {vsn,git}, {modules,[]}, {registered,[ecrn_agent]}, {applications,...
erlware/erlcron
3a9dddb7fe079ade5f3e39ec248c7fa75a8f057c
Add GitHub Actions
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..e6d4c17 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,25 @@ +--- +name: Bug report +about: Create a report of bug for erlcron +title: '' +labels: '' +assignees: '' +--- + +#...
erlware/erlcron
7e8e5342176f126c240c045a9fa40b531a7ad0bb
Fix typos
diff --git a/Makefile b/Makefile index a08f383..349d3de 100644 --- a/Makefile +++ b/Makefile @@ -1,92 +1,92 @@ # Copyright Erlware, LLC. All Rights Reserved. # # This file is provided to you under the BSD License; you may not use # this file except in compliance with the License. You may obtain a # copy of the Li...
erlware/erlcron
2b5ad781e7a9ffb53323ffa7340582c7a891be5c
fix datetime() false return
diff --git a/src/ecrn_control.erl b/src/ecrn_control.erl index 8191db6..5e4866e 100644 --- a/src/ecrn_control.erl +++ b/src/ecrn_control.erl @@ -1,174 +1,174 @@ %%% @copyright Erlware, LLC. All Rights Reserved. %%% %%% This file is provided to you under the BSD License; you may not use %%% this file except in compl...
erlware/erlcron
c18724f25d92ca42eb23c266f99b855a9dbc0c96
add tests for weekly jobs
diff --git a/test/ecrn_test.erl b/test/ecrn_test.erl index 5b64f63..9ef77d4 100644 --- a/test/ecrn_test.erl +++ b/test/ecrn_test.erl @@ -1,157 +1,197 @@ %%% @copyright Erlware, LLC. All Rights Reserved. %%% %%% This file is provided to you under the BSD License; you may not use %%% this file except in compliance wi...
erlware/erlcron
f447e3a023adacb78dabcb19942d2301c4d91928
fix for adjacent days in weekly pattern
diff --git a/src/ecrn_agent.erl b/src/ecrn_agent.erl index cb51c87..857c7b2 100644 --- a/src/ecrn_agent.erl +++ b/src/ecrn_agent.erl @@ -1,758 +1,758 @@ %%% @copyright Erlware, LLC. All Rights Reserved. %%% %%% This file is provided to you under the BSD License; you may not use %%% this file except in compliance wi...
erlware/erlcron
c06c4982c24a681b192061d8440ee4f347494eb6
Add support for millisecond duration/resulotion
diff --git a/src/ecrn_agent.erl b/src/ecrn_agent.erl index f0ecd89..cb51c87 100644 --- a/src/ecrn_agent.erl +++ b/src/ecrn_agent.erl @@ -82,674 +82,677 @@ get_datetime(Pid) -> get_datetime(Pid, local). -spec get_datetime(pid(), local|universal) -> calendar:datetime(). get_datetime(Pid, local) -> erlang:un...
erlware/erlcron
511e56ba629ccb5f1c10b1d746945741f171a90d
Add functions to return reference vs current date time
diff --git a/src/ecrn_agent.erl b/src/ecrn_agent.erl index 7343e1b..f0ecd89 100644 --- a/src/ecrn_agent.erl +++ b/src/ecrn_agent.erl @@ -1,728 +1,728 @@ %%% @copyright Erlware, LLC. All Rights Reserved. %%% %%% This file is provided to you under the BSD License; you may not use %%% this file except in compliance wi...
erlware/erlcron
469108cbc69146740486edc077522f0d676532e1
Fix several bugs:
diff --git a/.travis.yml b/.travis.yml index 5f9909c..3c80414 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,12 @@ sudo: false language: erlang otp_release: - - R15B03 - - R16B03-1 - - 17.5 - - 18.0 - - 18.1 - - 19.0 + - 20.0 + - 21.0 + - 22.0 before_s...
erlware/erlcron
d4448b47d531c7b917547d357dffd48008f2444f
use erl-21 new try catch syntax
diff --git a/src/ecrn_agent.erl b/src/ecrn_agent.erl index 55a14e2..dde1b76 100644 --- a/src/ecrn_agent.erl +++ b/src/ecrn_agent.erl @@ -1,401 +1,417 @@ %%% @copyright Erlware, LLC. All Rights Reserved. %%% %%% This file is provided to you under the BSD License; you may not use %%% this file except in compliance wi...
erlware/erlcron
bbdd67ba7af136fe43f667ecf1a77d1beaa10d0f
Fix specs, README
diff --git a/README.md b/README.md index 9fd17ad..1a86902 100644 --- a/README.md +++ b/README.md @@ -1,145 +1,145 @@ Erlcron ======= Erlcron provides testable cron like functionality for Erlang systems, with the ability to arbitrarily set the time and place along with fastforwarding through tests. See erlcron.er...
erlware/erlcron
194110ac6cfdc69431d1373affa7456269e4d2d0
Fix specs for OTP 19
diff --git a/.travis.yml b/.travis.yml index eff24fa..5f9909c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,15 @@ sudo: false language: erlang otp_release: - R15B03 - R16B03-1 - 17.5 - 18.0 - 18.1 + - 19.0 before_script: "make get-deps" script: "make test" ...
erlware/erlcron
8f734afefe748d2d776304cec14e8a33445d1cf4
Make travis-ci test OTP/18.1
diff --git a/.travis.yml b/.travis.yml index a3c473d..eff24fa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,14 @@ sudo: false language: erlang otp_release: - R15B03 - R16B03-1 - 17.5 - 18.0 + - 18.1 before_script: "make get-deps" script: "make test" branches: ...
erlware/erlcron
7db95992911aaa188c57284afa9ddbacb2464b1b
Stop calling erlang:now/0; use os:timestamp/0 instead
diff --git a/src/ecrn_util.erl b/src/ecrn_util.erl index 67ee86e..15b2a15 100644 --- a/src/ecrn_util.erl +++ b/src/ecrn_util.erl @@ -1,18 +1,18 @@ %%% @copyright Erlware, LLC. All Rights Reserved. %%% %%% This file is provided to you under the BSD License; you may not use %%% this file except in compliance with the...
erlware/erlcron
278d2f53b6dc1453bfeb5ed78d8e9a341a433c71
Stop using deprecated syntax for records
diff --git a/src/ecrn_agent.erl b/src/ecrn_agent.erl index 23e67d3..dd93e5b 100644 --- a/src/ecrn_agent.erl +++ b/src/ecrn_agent.erl @@ -1,401 +1,401 @@ %%% @copyright Erlware, LLC. All Rights Reserved. %%% %%% This file is provided to you under the BSD License; you may not use %%% this file except in compliance wi...
erlware/erlcron
7b33f959353c06e5105ccefcd368622a47bfec51
Support travis-ci for erlcron
diff --git a/.travis.yml b/.travis.yml index 92eb51f..a3c473d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,13 @@ +sudo: false language: erlang otp_release: - - R15B02 - - R15B01 - - R15B -script: "make rebuild" + - R15B03 + - R16B03-1 + - 17.5 + - 18.0 + +before_scr...
erlware/erlcron
355fc17a2a4ac8f2d9b6bcadbb5ce7fb5d745355
Revert "MInumum update for R18"
diff --git a/src/ecrn_agent.erl b/src/ecrn_agent.erl index dd93e5b..23e67d3 100644 --- a/src/ecrn_agent.erl +++ b/src/ecrn_agent.erl @@ -1,401 +1,401 @@ %%% @copyright Erlware, LLC. All Rights Reserved. %%% %%% This file is provided to you under the BSD License; you may not use %%% this file except in compliance wi...
erlware/erlcron
474ebd59dc834b2549ea46e176722e446bb8f7ef
MInumum update for R18
diff --git a/src/ecrn_agent.erl b/src/ecrn_agent.erl index 23e67d3..dd93e5b 100644 --- a/src/ecrn_agent.erl +++ b/src/ecrn_agent.erl @@ -1,401 +1,401 @@ %%% @copyright Erlware, LLC. All Rights Reserved. %%% %%% This file is provided to you under the BSD License; you may not use %%% this file except in compliance wi...
erlware/erlcron
5536be3813f1f7b1afc74bf24e3b5dc809c18a42
fix typespec
diff --git a/src/erlcron.erl b/src/erlcron.erl index 5df40dd..210e689 100644 --- a/src/erlcron.erl +++ b/src/erlcron.erl @@ -1,120 +1,120 @@ %%% @copyright Erlware, LLC. All Rights Reserved. %%% %%% This file is provided to you under the BSD License; you may not use %%% this file except in compliance with the Licen...
erlware/erlcron
61eb30d8e7f5f9d91f5af6d7a4ac18da64865dd4
Spec tweaks for erlcron:cancel/1
diff --git a/src/ecrn_control.erl b/src/ecrn_control.erl index 2b8ce60..a90d8a8 100644 --- a/src/ecrn_control.erl +++ b/src/ecrn_control.erl @@ -1,116 +1,116 @@ %%% @copyright Erlware, LLC. All Rights Reserved. %%% %%% This file is provided to you under the BSD License; you may not use %%% this file except in compl...
erlware/erlcron
d3735567a7e778a4216b6499693f91af4e158bd6
Internal cancel return type tweak and deletion of unused code
diff --git a/src/ecrn_app.erl b/src/ecrn_app.erl index 3d8a948..b163d6a 100644 --- a/src/ecrn_app.erl +++ b/src/ecrn_app.erl @@ -1,63 +1,61 @@ %%% @copyright Erlware, LLC. All Rights Reserved. %%% %%% This file is provided to you under the BSD License; you may not use %%% this file except in compliance with the Lic...
erlware/erlcron
ea2aa43fd1d267dc63af397ff24ed22b98da5ecd
add config file support
diff --git a/README.md b/README.md index 898b11b..9fd17ad 100644 --- a/README.md +++ b/README.md @@ -1,107 +1,145 @@ Erlcron ======= Erlcron provides testable cron like functionality for Erlang systems, with the ability to arbitrarily set the time and place along with fastforwarding through tests. See erlcron.er...
erlware/erlcron
4ee8c79816c5a5fe4def94933b10b4ac0f1bee4a
support semver versioning in erlcron
diff --git a/.gitignore b/.gitignore index 13bca88..32c7afb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ ebin/*.beam ebin/*.app -.* \ No newline at end of file +.* +deps/* \ No newline at end of file diff --git a/rebar.config b/rebar.config index 5de288a..9818237 100644 --- a/rebar.config +++ b/rebar.conf...
erlware/erlcron
aecb87330f2cc0673df28f623f97ab574111f5c5
cleanup the license text
diff --git a/src/ecrn_agent.erl b/src/ecrn_agent.erl index 1d5e551..23e67d3 100644 --- a/src/ecrn_agent.erl +++ b/src/ecrn_agent.erl @@ -1,402 +1,401 @@ %%% @copyright Erlware, LLC. All Rights Reserved. %%% %%% This file is provided to you under the BSD License; you may not use -%%% this file except in compliance wi...
erlware/erlcron
5d21270faf2ef2d8d586b1df28f0f6c32001c888
bring cron specs up to the new erlware standard
diff --git a/src/ecrn_agent.erl b/src/ecrn_agent.erl index f098d6b..1d5e551 100644 --- a/src/ecrn_agent.erl +++ b/src/ecrn_agent.erl @@ -1,403 +1,402 @@ %%% @copyright Erlware, LLC. All Rights Reserved. %%% %%% This file is provided to you under the BSD License; you may not use %%% this file except in compliance wi...
erlware/erlcron
c83f371daaa5ab1429dd11dcc2578f7391251d68
Change .app file loading to use rebar and remove SASL and eunit runtime dependency
diff --git a/ebin/erlcron.app b/ebin/erlcron.app deleted file mode 100644 index 2f154eb..0000000 --- a/ebin/erlcron.app +++ /dev/null @@ -1,8 +0,0 @@ -{application,erlcron, - [{description,"Erlang Implementation of cron"}, - {vsn,"0.2"}, - {modules,[ecrn_agent,ecrn_app,ecrn_control...
erlware/erlcron
4a886045ecbe9087f05dd0ca6d20a4dd1bad5334
remove invalid comment from app.src file
diff --git a/src/erlcron.app.src b/src/erlcron.app.src index 7ac033c..6af2965 100644 --- a/src/erlcron.app.src +++ b/src/erlcron.app.src @@ -1,14 +1,13 @@ %% -*- Erlang -*- -%% This is the application resource file (.app file) for the ecd_ops application. {application, erlcron, [{description, "Erlang Implementati...
erlware/erlcron
2bd7fd2c5aef1d51e58d1c8e353ddfb341473767
add travis-ci support to the system
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..92eb51f --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: erlang +otp_release: + - R15B02 + - R15B01 + - R15B +script: "make rebuild" +branches: + only: + - master + - next \ No ne...
erlware/erlcron
ac9c0f718e1458658745d6ecaae490fb15bbcfe5
refactorings and generalized cleanup to standardize erlcron
diff --git a/src/ecrn_agent.erl b/src/ecrn_agent.erl index 1f60475..f098d6b 100644 --- a/src/ecrn_agent.erl +++ b/src/ecrn_agent.erl @@ -1,480 +1,403 @@ +%%% @copyright Erlware, LLC. All Rights Reserved. +%%% +%%% This file is provided to you under the BSD License; you may not use +%%% this file except in compliance wi...
erlware/erlcron
4ea3bfba773a9775ea455ab2a4694c6d28ebaf64
move erlcron to an app.src instead of raw metadata
diff --git a/ebin/erlcron.app b/ebin/erlcron.app index a79c2a1..2f154eb 100644 --- a/ebin/erlcron.app +++ b/ebin/erlcron.app @@ -1,31 +1,8 @@ -%% -*- Erlang -*- -%% This is the application resource file (.app file) for the ecd_ops application. - -{application, erlcron, - [{description, - "Erlang Implementation of c...
erlware/erlcron
f8c126f6d35bb209745443ca46ee3196444a253d
rename erlcron-internal to internal.hrl
diff --git a/src/erlcron-internal.hrl b/src/erlcron-internal.hrl deleted file mode 100644 index 087d26a..0000000 --- a/src/erlcron-internal.hrl +++ /dev/null @@ -1,11 +0,0 @@ -%%%---------------------------------------------------------------- -%%% @author Eric Merritt <emerritt@ecdmarket.com> -%%% @copyright 2009 eCD ...
erlware/erlcron
8e339a33ec81cef7b83b1e94c8eeb5f127df8c4b
fix spec problems that dialyzer found
diff --git a/src/ecrn_agent.erl b/src/ecrn_agent.erl index cfde845..1f60475 100644 --- a/src/ecrn_agent.erl +++ b/src/ecrn_agent.erl @@ -1,479 +1,480 @@ %%%------------------------------------------------------------------- %%% @author Eric Merritt <emerritt@ecdmarket.com> %%% @doc %%% Agent for cronish testing %...
erlware/erlcron
e9c7bd7a1c10e1f2abc30ee5aa25ab0617e407a3
cleanup and format the rebar config
diff --git a/README.md b/README.md index 1187944..898b11b 100644 --- a/README.md +++ b/README.md @@ -1,113 +1,107 @@ -Erlcron provides testable cronish like functionality for Erlang +Erlcron +======= + +Erlcron provides testable cron like functionality for Erlang systems, with the ability to arbitrarily set the time a...
erlware/erlcron
f9d31866f703c3e999a2f308007dee1ccd23d1a1
add a complete makefile to the system to help drive rebar
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a08f383 --- /dev/null +++ b/Makefile @@ -0,0 +1,92 @@ +# Copyright Erlware, LLC. All Rights Reserved. +# +# This file is provided to you under the BSD License; you may not use +# this file except in compliance with the License. You may obtain a +# co...
erlware/erlcron
3dedec11103472711e5fdb8255944b936aacdc8d
format the rebar config and make it a bit more reader friendly
diff --git a/rebar.config b/rebar.config index f1c51f5..5de288a 100644 --- a/rebar.config +++ b/rebar.config @@ -1,3 +1,13 @@ +%%% -*- mode: erlang -*- + +%% Compiler Options ============================================================ {erl_opts, [debug_info, warnings_as_errors]}. + +%% EUnit ====================...
erlware/erlcron
9199fcd935b589c10a9b1e512d454fad140560b5
add warnings_as_errors to the rebar config
diff --git a/rebar.config b/rebar.config index 0f5d40e..f1c51f5 100644 --- a/rebar.config +++ b/rebar.config @@ -1 +1,3 @@ -{erl_opts, [debug_info]}. +{erl_opts, + [debug_info, + warnings_as_errors]}.
erlware/erlcron
94311eba72d1c40cba7fd8d5e79671dbf2ee00a1
Basic rebarization
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7d3bff3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +ebin/*.beam +ebin/*.app diff --git a/rebar b/rebar new file mode 100755 index 0000000..672a9f8 Binary files /dev/null and b/rebar differ diff --git a/rebar.config b/rebar.config new file mode...
erlware/erlcron
4c771ba32d2d01d0bbb5236521adefbfc4620033
migrate to explicit exported types
diff --git a/ebin/erlcron.app b/ebin/erlcron.app index fabd875..a79c2a1 100644 --- a/ebin/erlcron.app +++ b/ebin/erlcron.app @@ -1,31 +1,31 @@ %% -*- Erlang -*- %% This is the application resource file (.app file) for the ecd_ops application. {application, erlcron, [{description, "Erlang Implementation of ...
erlware/erlcron
b413c256eafd153d96a53ad98f5f83aa4430f081
add spec validation to the api
diff --git a/src/ecrn_agent.erl b/src/ecrn_agent.erl index 1a3cfc4..63c7646 100644 --- a/src/ecrn_agent.erl +++ b/src/ecrn_agent.erl @@ -1,475 +1,480 @@ %%%------------------------------------------------------------------- %%% @author Eric Merritt <emerritt@ecdmarket.com> %%% @doc %%% Agent for cronish testing %...
erlware/erlcron
e9fdd31e693b2a0deeefff6cf36c83ec1730579a
add validation for spec to ecrn_agent
diff --git a/src/ecrn_agent.erl b/src/ecrn_agent.erl index be9a4b5..1a3cfc4 100644 --- a/src/ecrn_agent.erl +++ b/src/ecrn_agent.erl @@ -1,453 +1,475 @@ %%%------------------------------------------------------------------- %%% @author Eric Merritt <emerritt@ecdmarket.com> %%% @doc %%% Agent for cronish testing %...
erlware/erlcron
68cebfc196283bcccd30fdcba20f38f487e9fa7d
Add more documentation, fix specs in erlcron
diff --git a/src/erlcron.erl b/src/erlcron.erl index d94fbd9..e319315 100644 --- a/src/erlcron.erl +++ b/src/erlcron.erl @@ -1,57 +1,105 @@ %%%---------------------------------------------------------------- %%% @author Eric Newhuis <enewhuis@ecdmarket.com> %%% @copyright 2009-2010 eCD Market %%%-------------------...
erlware/erlcron
1ccc1f7b4ebf606ba6f70a0488037cde0869619b
Remove invalide functions, uneccesary documentation
diff --git a/src/erlcron.erl b/src/erlcron.erl index 3f8f190..d94fbd9 100644 --- a/src/erlcron.erl +++ b/src/erlcron.erl @@ -1,135 +1,57 @@ %%%---------------------------------------------------------------- %%% @author Eric Newhuis <enewhuis@ecdmarket.com> %%% @copyright 2009-2010 eCD Market %%%-------------------...
erlware/erlcron
993944e3ade60b33368f6dca9e2feaec4b1383b4
Enhance project README
diff --git a/README b/README index b67959a..1187944 100644 --- a/README +++ b/README @@ -1,3 +1,113 @@ -This provides testable cronish like functionality for Erlang systems, -with the ability to arbitrarily set the time and place along with -fastforwarding through tests. See erlcron.erl for more documentation. \ No new...
erlware/erlcron
8e6a359f6d0befae5263f663460d9728ed879990
migrate to explicit exported types
diff --git a/ebin/erlcron.app b/ebin/erlcron.app index fabd875..a79c2a1 100644 --- a/ebin/erlcron.app +++ b/ebin/erlcron.app @@ -1,31 +1,31 @@ %% -*- Erlang -*- %% This is the application resource file (.app file) for the ecd_ops application. {application, erlcron, [{description, "Erlang Implementation of ...
erlware/erlcron
7b66bbf98fc6120c1ed6f6fe54269b94b0bdf47f
add spec validation to the api
diff --git a/src/ecrn_agent.erl b/src/ecrn_agent.erl index 1a3cfc4..63c7646 100644 --- a/src/ecrn_agent.erl +++ b/src/ecrn_agent.erl @@ -1,475 +1,480 @@ %%%------------------------------------------------------------------- %%% @author Eric Merritt <emerritt@ecdmarket.com> %%% @doc %%% Agent for cronish testing %...
erlware/erlcron
2e01e46af8001bcc5c4546ea8bd1e632abd662bc
add validation for spec to ecrn_agent
diff --git a/src/ecrn_agent.erl b/src/ecrn_agent.erl index be9a4b5..1a3cfc4 100644 --- a/src/ecrn_agent.erl +++ b/src/ecrn_agent.erl @@ -1,453 +1,475 @@ %%%------------------------------------------------------------------- %%% @author Eric Merritt <emerritt@ecdmarket.com> %%% @doc %%% Agent for cronish testing %...
erlware/erlcron
aa1c5e937b7853caf49eb28ed07a60dd78122d4d
Add more documentation, fix specs in erlcron
diff --git a/src/erlcron.erl b/src/erlcron.erl index d94fbd9..e319315 100644 --- a/src/erlcron.erl +++ b/src/erlcron.erl @@ -1,57 +1,105 @@ %%%---------------------------------------------------------------- %%% @author Eric Newhuis <enewhuis@ecdmarket.com> %%% @copyright 2009-2010 eCD Market %%%-------------------...
erlware/erlcron
b82042ef62d4f2eb959a1d72453156f55f539f6d
Remove invalide functions, uneccesary documentation
diff --git a/src/erlcron.erl b/src/erlcron.erl index 3f8f190..d94fbd9 100644 --- a/src/erlcron.erl +++ b/src/erlcron.erl @@ -1,135 +1,57 @@ %%%---------------------------------------------------------------- %%% @author Eric Newhuis <enewhuis@ecdmarket.com> %%% @copyright 2009-2010 eCD Market %%%-------------------...
erlware/erlcron
0b9441a4d44713b7ffdfec44adfb98339c7c5440
Enhance project README
diff --git a/README b/README index b67959a..1187944 100644 --- a/README +++ b/README @@ -1,3 +1,113 @@ -This provides testable cronish like functionality for Erlang systems, -with the ability to arbitrarily set the time and place along with -fastforwarding through tests. See erlcron.erl for more documentation. \ No new...
erlware/erlcron
6e1e8ea4c5db863b6215e3212a3c791278c8a61a
Added erlcron sources
diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..901a704 --- /dev/null +++ b/LICENSE @@ -0,0 +1,67 @@ +Copyright (c)2010 eCD Market + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions +are met: + + Redistributions o...
erlware/erlcron
8e012494ea223322e7f4345e14c7e775ca4504dd
Initial setup commit
diff --git a/README b/README new file mode 100644 index 0000000..e69de29
tladesignz/my-jQuery-plugins
65c326974ea6d6e69429419c5c36b2b2b850d211
Added new plugin jQuery.backgroundSize.
diff --git a/jquery.backgroundsize.js b/jquery.backgroundsize.js new file mode 100644 index 0000000..4d2961d --- /dev/null +++ b/jquery.backgroundsize.js @@ -0,0 +1,47 @@ +/*globals jQuery */ +/** + * This plugin determines the browser capabilities + * regarding CSS3 background-size support. + * + * It adds a property ...
tladesignz/my-jQuery-plugins
6ca5bf9603ab3b62c2505a7732d8d1e9b19aea37
Doesn't submit <button> and <input type="button|reset|image"> values any more, since a browser wouldn't do so on a normal form submit, as long as this button isn't used for the submit. Added fifth parameter 'target'. This can be used to regain the behaviour of submitting the buttons value used in submitting the form. ...
diff --git a/jquery.postForm.js b/jquery.postForm.js index 1196e05..c4faa5c 100644 --- a/jquery.postForm.js +++ b/jquery.postForm.js @@ -1,120 +1,165 @@ +/*jslint white: false, plusplus: false, immed: false */ /** * Construct a jQuery.postForm() function. * @class jQuery.postForm() uses jQuery.post() to post all e...
fellix/collect4j
eb80c2d7cd453179594e8217d4b94f74e198f07f
Added more site configuration
diff --git a/src/site/apt/contribute.apt b/src/site/apt/contribute.apt new file mode 100644 index 0000000..08b1d18 --- /dev/null +++ b/src/site/apt/contribute.apt @@ -0,0 +1,4 @@ +Help Us + + To help with the Collect4j view the mainlists, and get the source code on github (You need git (git-core) to get the source code...
fellix/collect4j
835439e69e775f5e8214863c98286ca2c7d8df24
Added Site Descriptor
diff --git a/.project b/.project index d1f11e8..4eb4366 100644 --- a/.project +++ b/.project @@ -1,23 +1,29 @@ <?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>Collect</name> <comment></comment> <projects> </projects> <buildSpec> + <buildCommand> + <name>org.eclipse.wst.common.project.fa...
fellix/collect4j
a52294f2b2aa7ab79d2c59cc1fda88b336b38362
Create the Only comparator
diff --git a/pom.xml b/pom.xml index b6bb0dc..e78cece 100644 --- a/pom.xml +++ b/pom.xml @@ -1,88 +1,88 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <model...
fellix/collect4j
2088bbece46104fa4ea5952587feee15bde1db53
POM updated
diff --git a/pom.xml b/pom.xml index ae80ff5..b6bb0dc 100644 --- a/pom.xml +++ b/pom.xml @@ -1,45 +1,88 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <model...
fellix/collect4j
d8674030020dc13399ae619312a609727502afd7
Added JUnit tests
diff --git a/src/test/java/com/rollingwithcode/collect/CollectTest.java b/src/test/java/com/rollingwithcode/collect/CollectTest.java new file mode 100644 index 0000000..c537a31 --- /dev/null +++ b/src/test/java/com/rollingwithcode/collect/CollectTest.java @@ -0,0 +1,141 @@ +/** + * + */ +package com.rollingwithcode.co...
fellix/collect4j
2728eab88800438471dc5841fefe2c3252d7f7f1
Import adjusts
diff --git a/src/main/java/com/rollingwithcode/collect/Collect.java b/src/main/java/com/rollingwithcode/collect/Collect.java index 3b60240..6cb3815 100644 --- a/src/main/java/com/rollingwithcode/collect/Collect.java +++ b/src/main/java/com/rollingwithcode/collect/Collect.java @@ -1,28 +1,29 @@ /** * */ package c...
fellix/collect4j
6eb723a2fedc5b3ad49af43e9c6660e609c32e55
Adjust some API details
diff --git a/.classpath b/.classpath index 96489ff..c611757 100644 --- a/.classpath +++ b/.classpath @@ -1,10 +1,10 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" output="target/classes" path="src/main/java"/> <classpathentry excluding="**" kind="src" output="target/classes" path...
fellix/collect4j
4ef93c4e0e16bd9f76a5c3930c12c38ef7fc4b40
Added some API Implementation for User customizations
diff --git a/src/main/java/com/rollingwithcode/collect/Collect.java b/src/main/java/com/rollingwithcode/collect/Collect.java index b426034..3b60240 100644 --- a/src/main/java/com/rollingwithcode/collect/Collect.java +++ b/src/main/java/com/rollingwithcode/collect/Collect.java @@ -1,28 +1,28 @@ /** * */ package c...
fellix/collect4j
077e51ccb16fb8f33408ce84ebaa73dece76c566
Added README and Project License
diff --git a/CONTRIBUTORS b/CONTRIBUTORS new file mode 100644 index 0000000..a0139de --- /dev/null +++ b/CONTRIBUTORS @@ -0,0 +1,10 @@ +== Founder + +Rafael Felix da Silva created this project on 04/07/2009 + +== Contributors + +The following people have submitted changes which have been applied to the library: + +* Ra...
bratta/mongodb-mac-startup
ac256faedffac3abea53a92d699cf30d6709a519
allow log file configuration and change the stop command
diff --git a/MongoDB/MongoDB b/MongoDB/MongoDB index fb77da6..ac3b7e3 100755 --- a/MongoDB/MongoDB +++ b/MongoDB/MongoDB @@ -1,45 +1,46 @@ #!/bin/bash if [ -z $1 ] ; then echo "Usage: $0 [start|stop|restart] " exit 1 fi # Source the common setup functions for startup scripts test -r /etc/rc.common || exi...