Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix http_server debug statement #682

Merged
merged 45 commits into from
Mar 21, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
e88748a
Upped version to 2.200
hollie Mar 2, 2013
236dd90
Update README.md
hollie Mar 13, 2013
cc7c439
Modified the contents of the VERSION file in preparation of MH depend…
hollie Mar 13, 2013
6972db2
Merge branch 'stable' before making a new branch.
hollie Jun 20, 2013
b3ba252
Upped version to 3.0
hollie Jun 20, 2013
5e6d5ae
Cbus update to support current CGate
jonwhitear Nov 24, 2013
ed6a665
Cbus update to support new and old message response formats
jonwhitear Nov 25, 2013
b61d5ab
Cbus update to add debug flag test to logging statements, i.e. reduce…
jonwhitear Nov 28, 2013
55a75ac
Updating download.pod to revision v3.0
mstovenour Dec 22, 2013
0b702dd
Merge pull request #326 from jonwhitear/cbus
hollie Mar 27, 2014
28a0a24
Merge branch master into stable
krkeegan Mar 27, 2014
24b71a5
Upped version to v3.1
krkeegan Mar 27, 2014
f737960
Merge pull request #394 from hollie/master
krkeegan Mar 28, 2014
61f1839
Fix Release Date
krkeegan Apr 1, 2014
add5318
Merge pull request #395 from krkeegan/stable_ver
krkeegan Apr 1, 2014
3b3336b
Changed link to wiki.
hollie Oct 12, 2014
fee14bb
Removed duplicated link
hollie Nov 24, 2014
1563adb
Bringing stable up to date with master before releasing v4.0
hollie Feb 17, 2016
5a8eae6
Upped version to v4.0
hollie Feb 17, 2016
9cce70f
Merge branch 'master' into stable
hollie Feb 21, 2016
218b9d6
Upped version to 4.0.1 after merging user feedback on v4.0
hollie Feb 21, 2016
9e20c5d
Upped to version 4.1 after consensus on mailing list
hollie Feb 21, 2016
b7c96fb
Allows the control of WGL rain8Net serial sprinkler control modules
Apr 21, 2016
fff2dbe
Added HTML message format to API (as per Pushover v2.3+)
madman1968 Apr 29, 2016
a5cc6d2
Added device to API call
madman1968 Apr 29, 2016
3c136aa
Merge pull request #590 from madman1968/stable
hollie May 12, 2016
d40b085
Revert "Allows the control of WGL rain8Net serial sprinkler control m…
hollie May 12, 2016
29e0fc5
Merge pull request #594 from hollie/revert-590-stable
hollie May 12, 2016
d272213
Merge pull request #599 from hplato/ia7
hplato Jul 10, 2016
9ac2270
Revert "Ia7 v1.2.301"
hollie Jul 25, 2016
6042d03
Merge pull request #607 from hollie/revert-599-ia7
hollie Jul 26, 2016
639c842
Merge pull request #10 from waynieack/AlexaBridge.pm
hplato Feb 12, 2017
dc32e5b
Merge branch 'master' of github.com:hplato/misterhouse
hplato Feb 26, 2017
2ecc058
Remove Socket/Multicast.pm for Wayne
hplato Mar 3, 2017
52c3f42
Merge branch 'master' of git://github.com/hollie/misterhouse
hplato Mar 3, 2017
be55aec
v4.2 pre-release - perltidy merge 1
hplato Mar 7, 2017
9dc53dd
Upped version to 4.2
hplato Mar 7, 2017
fb4d6ff
v4.2 - fix conflict files
hplato Mar 8, 2017
9146668
Merge branch 'master' into stable
hplato Mar 8, 2017
1141468
v4.2 - Syncronizing stable with Master
hplato Mar 9, 2017
ec97038
v4.2 - updating ia7 config files
hplato Mar 9, 2017
bcb91b4
Merge branch 'master' of git://github.com/hollie/misterhouse
hplato Mar 17, 2017
61208d5
Remove a debug statement in http_server.pl
hplato Mar 21, 2017
dd74f4b
Merge branch 'master' of https://github.com/hplato/misterhouse
hplato Mar 21, 2017
ce25504
Fix VERSION from last commit
hplato Mar 21, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
unstable
unstable
2 changes: 1 addition & 1 deletion lib/http_server.pl
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ sub http_process_request {
my ( $user, $password_crypted ) = &password_check2($password);
$Authorized = $user if $password_crypted;
$html .= &html_authorized;
$html .= "REMOVEME = get_arg = " . $get_arg . "<br>\n";
#$html .= "REMOVEME = get_arg = " . $get_arg . "<br>\n";
$html .= "<br>Refresh: <a target='_top' href='/'> Main Page</a>\n";

# $html .= &html_reload_link('/', 'Refresh Main Page');
Expand Down