repo
string
commit
string
message
string
diff
string
adewale/Buzz-Chat-Bot
7623741c5c1275aa767b47bdad151b959e044b19
Don't show the access token. Show the user's email address for confirmation.
diff --git a/main.py b/main.py index 18515ef..c422de6 100644 --- a/main.py +++ b/main.py @@ -1,127 +1,125 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License...
adewale/Buzz-Chat-Bot
ddbd5a5ee51b36132127220baecb7de8e9baadb5
Got rid of the callback URL in favour of a dynamic parameter that's worked out from the server's identity. OAuth dance now works on localhost.
diff --git a/main.py b/main.py index 3f805c9..18515ef 100644 --- a/main.py +++ b/main.py @@ -1,127 +1,127 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License...
adewale/Buzz-Chat-Bot
d863ea08dbec9b14d80ae64e5869c7af46c366d6
Continuing to refactor in order to backport into the client library. Added more tests. Removed app engine dependency from SimpleBuzzWrapper.
diff --git a/TODO b/TODO index 0196c46..7c4e65f 100644 --- a/TODO +++ b/TODO @@ -1,25 +1,23 @@ Buzz Chat Bot ============ Register the app so that people don't have to trust anonymous When someone adds the bot to their roster, send them a link to the app's website so that they can do the oauth dance Profile page s...
adewale/Buzz-Chat-Bot
90e7fadcb11b2de818d678ae77cf0487eefae3b9
Added ability to perform a search using the search functionality in the updated SimpleBuzzWrapper
diff --git a/README b/README index ee9bf39..cfa0639 100644 --- a/README +++ b/README @@ -1,55 +1,56 @@ This is an experimental jaiku-style chat bot for Google Buzz. If it breaks you get to keep both pieces. What does it do? ================ At the moment it lets you ask for: help Prints out this message track ...
adewale/Buzz-Chat-Bot
d1fc785360144ad5164a8417f6845e3e8fe5c4fe
Added new files from apiclient that I forgot to add last time
diff --git a/apiclient/ext/django.py b/apiclient/ext/django.py new file mode 100644 index 0000000..4217eaa --- /dev/null +++ b/apiclient/ext/django.py @@ -0,0 +1,36 @@ +from django.db import models + +class OAuthCredentialsField(models.Field): + + __metaclass__ = models.SubfieldBase + + def db_type(self): + return...
adewale/Buzz-Chat-Bot
6210667b9308dabe6224c4e92a5909df10550d68
Added more logging. Upgraded to latest version of discovery-based Python Buzz client library.
diff --git a/apiclient/contrib/buzz/future.json b/apiclient/contrib/buzz/future.json index ed6f0f9..81b61bf 100644 --- a/apiclient/contrib/buzz/future.json +++ b/apiclient/contrib/buzz/future.json @@ -1,147 +1,148 @@ { "data": { "buzz": { "v1": { "baseUrl": "https://www.googleapis.com/", ...
adewale/Buzz-Chat-Bot
dfcdff7541066d4a546eeeea9c2569aee8b74054
Added improved logging to work out why OAuth is not working for a user.
diff --git a/oauth_handlers.py b/oauth_handlers.py index 3edd3b4..2a2e075 100644 --- a/oauth_handlers.py +++ b/oauth_handlers.py @@ -1,133 +1,138 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License....
adewale/Buzz-Chat-Bot
53e11093658b686e0938f5b359df1514f071ec2b
Removed TODO since we now accept commands irrespective of their case
diff --git a/xmpp.py b/xmpp.py index f73eaf4..cdb8625 100644 --- a/xmpp.py +++ b/xmpp.py @@ -1,402 +1,401 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License...
adewale/Buzz-Chat-Bot
c4dcf1bced3ef25826de730efaf69e9f26f78aee
Made all commands case-insensitive
diff --git a/functional_tests.py b/functional_tests.py index 2f91511..f687a6a 100644 --- a/functional_tests.py +++ b/functional_tests.py @@ -1,335 +1,359 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the ...
adewale/Buzz-Chat-Bot
c360104f5c43d4168991ee8d842c16be6e32953f
Extracted out all stubs into their own module
diff --git a/BUGS b/BUGS index 071d896..919f3bd 100644 --- a/BUGS +++ b/BUGS @@ -1,3 +1 @@ According to Brian Rose: posts that contain @mentions cause an error. - - diff --git a/functional_tests.py b/functional_tests.py index 5c9084b..2f91511 100644 --- a/functional_tests.py +++ b/functional_tests.py @@ -1,353 +1,335 ...
adewale/Buzz-Chat-Bot
3e190d1bcd9ae7e70261204691f1eb39e64d7a2b
Bot now works on Empath IM client since you can use slashless commands
diff --git a/BUGS b/BUGS index e49705e..071d896 100644 --- a/BUGS +++ b/BUGS @@ -1,4 +1,3 @@ According to Brian Rose: posts that contain @mentions cause an error. -According to Robert C Sanchez the bot doesn't work with Empathy on Ubuntu. I suspect this is to do with either the formatting of the messages or the struct...
adewale/Buzz-Chat-Bot
44f09aebb08bfbaf1666f65d8d2df20d022e89a4
Made all tests reuse the same statelesss instance of XmppHandler. This simplifies the tests, speeds up the tests and should ensure that any tests that won't work offline will stick out because they won't be using the existing handler which uses stubs.
diff --git a/functional_tests.py b/functional_tests.py index 889a95c..5c9084b 100644 --- a/functional_tests.py +++ b/functional_tests.py @@ -1,375 +1,353 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the ...
adewale/Buzz-Chat-Bot
adfcb33fc6184a3b2280690d2f8c0723d08aa900
Made untrack test work offline.
diff --git a/functional_tests.py b/functional_tests.py index a284084..889a95c 100644 --- a/functional_tests.py +++ b/functional_tests.py @@ -1,374 +1,375 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the ...
adewale/Buzz-Chat-Bot
4e86170e01f82912d482f0693a34e4e147605e15
Fixed bug where /post would leave a dangling 't' because we only trimmed the first 4 characters from the message body.
diff --git a/app.yaml b/app.yaml index 522fb2a..e30bf45 100644 --- a/app.yaml +++ b/app.yaml @@ -1,15 +1,15 @@ -application: favedby +application: buzzchatbot version: 1 runtime: python api_version: 1 handlers: - url: /css static_dir: css - url: /images static_dir: images - url: /.* script: main.py ...
adewale/Buzz-Chat-Bot
4e417053a830e2db3de93c887deabe8011649986
Changed tests so that they don't directly call the appropriate command method but always go through the dispatching logic. Commands can now be prefixed with an optional /. This allows users who preferred the old syntax to keep using it without affecting people who prefer the new syntax. Added test to verify that comman...
diff --git a/app.yaml b/app.yaml index e30bf45..522fb2a 100644 --- a/app.yaml +++ b/app.yaml @@ -1,15 +1,15 @@ -application: buzzchatbot +application: favedby version: 1 runtime: python api_version: 1 handlers: - url: /css static_dir: css - url: /images static_dir: images - url: /.* script: main.py ...
adewale/Buzz-Chat-Bot
d9f9f85fea990d8d0dfdfa952c2a270b2baf148c
Added tests that check that spaces don't affect the commands. Changed regexp to ignore word boundaries. Still need to explicitly test the extraction of each command when paired with meaningful arguments
diff --git a/slashlesscommandmessage_tests.py b/slashlesscommandmessage_tests.py index 127808e..453c39e 100644 --- a/slashlesscommandmessage_tests.py +++ b/slashlesscommandmessage_tests.py @@ -1,24 +1,36 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you ma...
adewale/Buzz-Chat-Bot
de0a36f45af19b8ad955bd9a22e73e72d313e577
Added tests for SlashLessCommandMessage. Fixed user-reported bug with symbols by tweaking the regex to ignore the word boundaries. Tidied up a few places where unidiomatic comparisons to None were being made
diff --git a/app.yaml b/app.yaml index 522fb2a..e30bf45 100644 --- a/app.yaml +++ b/app.yaml @@ -1,15 +1,15 @@ -application: favedby +application: buzzchatbot version: 1 runtime: python api_version: 1 handlers: - url: /css static_dir: css - url: /images static_dir: images - url: /.* script: main.py ...
adewale/Buzz-Chat-Bot
c11ee4cfd6dab7eff15fa716a3397f23572f64df
The bot now sends the user a chat invite and a welcome message when the user completes the OAuth Dance
diff --git a/TODO b/TODO index 96891e4..d0ae15e 100644 --- a/TODO +++ b/TODO @@ -1,22 +1,15 @@ Buzz Chat Bot ============ -Add a sensible explanation of what this bot does and why anyone would want to use it: -- mention the low-latency of using chat clients, which are always on, versus the web -- mention that GChat ...
adewale/Buzz-Chat-Bot
d967b725accf78732fa2e1936e2c3c6419d21db3
Fixed a regression in some of the tests subscription.id() => subscription.id done
diff --git a/functional_tests.py b/functional_tests.py index 3a0703b..9d8ca2d 100644 --- a/functional_tests.py +++ b/functional_tests.py @@ -1,276 +1,276 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the ...
adewale/Buzz-Chat-Bot
93ab673dd21a18932d966af2fca11bdc92391a30
Broke tracking in last build -- fixed (test coverage for integration tests is quite tricky right now).
diff --git a/xmpp.py b/xmpp.py index b93d21a..3afece1 100644 --- a/xmpp.py +++ b/xmpp.py @@ -1,380 +1,391 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License...
adewale/Buzz-Chat-Bot
a432bfd3dd0a95235a9265183a4d686927e2850e
Tidied up Tracker so that it accepts a search term rather than the message body. This avoids the whole 'reparse message body again' code and means the command line now can deal more flexibly with whitespace (previously you had to have exactly one space between command and terms).
diff --git a/TODO b/TODO index 36f49cc..96891e4 100644 --- a/TODO +++ b/TODO @@ -1,21 +1,22 @@ Buzz Chat Bot ============ Add a sensible explanation of what this bot does and why anyone would want to use it: - mention the low-latency of using chat clients, which are always on, versus the web - mention that GChat ...
adewale/Buzz-Chat-Bot
3102ea3431bcd049a9950657fe672108d94822bb
First build that actually works with no slash prefix. Commands are as before but you type:
diff --git a/README b/README index 5fb7360..ee9bf39 100644 --- a/README +++ b/README @@ -1,55 +1,55 @@ This is an experimental jaiku-style chat bot for Google Buzz. If it breaks you get to keep both pieces. What does it do? ================ At the moment it lets you ask for: -/help Prints out this message -/trac...
adewale/Buzz-Chat-Bot
a2606aded8e744197e167e88d010256d9749cd88
Some attempts to add support for track_command. In meantime I'm getting internal server errors against the following code -- looks to be a transient error:
diff --git a/functional_tests.py b/functional_tests.py index faae696..2fa0a0b 100644 --- a/functional_tests.py +++ b/functional_tests.py @@ -1,261 +1,268 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the ...
adewale/Buzz-Chat-Bot
87026af39c2637de05b784bfc2db7ea46ce25673
SlashlessCommandMessageTest unit test created for new subclass of xmpp.Message.
diff --git a/functional_tests.py b/functional_tests.py index 49c120b..faae696 100644 --- a/functional_tests.py +++ b/functional_tests.py @@ -1,256 +1,261 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the ...
adewale/Buzz-Chat-Bot
ea54fd94fe8b0969c22afb2ffffe5f3dce7fba1f
Fixed broken test -- problem with my understanding of what one of the tests was testing. Still minimal coverage over handle_track.
diff --git a/functional_tests.py b/functional_tests.py index f9f84d4..49c120b 100644 --- a/functional_tests.py +++ b/functional_tests.py @@ -1,256 +1,256 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the ...
adewale/Buzz-Chat-Bot
b8d249d28525df297ed2eb7d43d43977a5379ea7
Adding test coverage for track_command and function is_blank that's subsequently used in track_command for more robust checking of blank commands.
diff --git a/functional_tests.py b/functional_tests.py index 12d504b..399db2d 100644 --- a/functional_tests.py +++ b/functional_tests.py @@ -1,223 +1,229 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the ...
adewale/Buzz-Chat-Bot
020d83e192282ac47b02fc842f402ec6ab0177e0
Added button with link to Admin's profile page
diff --git a/app.yaml b/app.yaml index 522fb2a..e30bf45 100644 --- a/app.yaml +++ b/app.yaml @@ -1,15 +1,15 @@ -application: favedby +application: buzzchatbot version: 1 runtime: python api_version: 1 handlers: - url: /css static_dir: css - url: /images static_dir: images - url: /.* script: main.py ...
adewale/Buzz-Chat-Bot
0eb0f86513ad13c0fe338ccb0f61fd29cf20fb41
Added lame CSS drop-shadow to titles
diff --git a/css/style.css b/css/style.css index 0997654..61e64a7 100755 --- a/css/style.css +++ b/css/style.css @@ -1,39 +1,42 @@ body { /*background-color: #D5F1FF;original*/ /*background-color: #0099ff;warm blue*/ /*background-color: #9966cc;rich almost velvety purple*/ /*background-color: #339999;teal*/ ...
adewale/Buzz-Chat-Bot
e37226bf00a2b7e01cda3e887f60e130052f9d1c
Tidied up CSS. Added test to verify that people can now see the front-page without needing to be logged in. Extracted out some hardcoded references to URLs so they're now in the settings module. Tidied up the profile page a little.
diff --git a/app.yaml b/app.yaml index d827c65..522fb2a 100644 --- a/app.yaml +++ b/app.yaml @@ -1,15 +1,15 @@ -application: kiwibuzzer +application: favedby version: 1 runtime: python api_version: 1 handlers: - url: /css static_dir: css - url: /images static_dir: images - url: /.* script: main.py ...
adewale/Buzz-Chat-Bot
918a800fb7d8065ae705b68f69695fde6705b997
Added test for help command
diff --git a/functional_tests.py b/functional_tests.py index 12d504b..1e0b380 100644 --- a/functional_tests.py +++ b/functional_tests.py @@ -1,223 +1,234 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the ...
adewale/Buzz-Chat-Bot
738f10ac4ea263fa46a86f3452f08f202b0c6792
First rough attempt at support for 'slashless' commands. This is suprisingly involved due to GAE xmpp_handler doing a bunch of work in a fairly well hidden place to define a 'command'.
diff --git a/tracker_tests.py b/tracker_tests.py index 2eda7cd..45e1dc5 100644 --- a/tracker_tests.py +++ b/tracker_tests.py @@ -1,146 +1,146 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # ...
adewale/Buzz-Chat-Bot
cd1ab5fcd61f1ef7166a3354750fb182afeaffaf
Added a little bit more logging on XMPP errors so we can see the message that caused the error
diff --git a/xmpp.py b/xmpp.py index 822f3a8..b1b7385 100644 --- a/xmpp.py +++ b/xmpp.py @@ -1,234 +1,240 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License...
adewale/Buzz-Chat-Bot
ac5bd24f11d0afc1fda6c604a576cdb9985491bc
Refactored commands Buzz Chat Bot supports into a list defined under XmppHandler.<COMMAND>_CMD (e.g. XmppHandler.UNTRACK_CMD). Updated functional_tests to directly refer to these constants (as it's testing that the functions work, not that the functions themselves are named in a specific way).
diff --git a/app.yaml b/app.yaml index d5d62fb..d827c65 100644 --- a/app.yaml +++ b/app.yaml @@ -1,18 +1,15 @@ -application: buzzchatbot +application: kiwibuzzer version: 1 runtime: python api_version: 1 handlers: -- url: /google53de00654ebd3aa1.html - static_files: staticverification/google53de00654ebd3aa1.html...
adewale/Buzz-Chat-Bot
495815c0feb6a0d2bbc35c1e6907fa5d1f4a0ccb
Added buzz client module
diff --git a/buzz_gae_client.py b/buzz_gae_client.py new file mode 100644 index 0000000..ffc74c3 --- /dev/null +++ b/buzz_gae_client.py @@ -0,0 +1,105 @@ +# Copyright (C) 2010 Google Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the Lic...
adewale/Buzz-Chat-Bot
aaf14088d3d83e15691ffce608b7d496cdad3aaf
Added apiclient
diff --git a/apiclient/__init__.py b/apiclient/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/apiclient/contrib/__init__.py b/apiclient/contrib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/apiclient/contrib/buzz/future.json b/apiclient/contrib/buzz/future.json new file mode...
adewale/Buzz-Chat-Bot
2f031ed2c2d3be689ac7fcbbf70e62a34bd01676
Add bugs file and buzz_gae_client
diff --git a/BUGS b/BUGS new file mode 100644 index 0000000..e49705e --- /dev/null +++ b/BUGS @@ -0,0 +1,4 @@ +According to Brian Rose: posts that contain @mentions cause an error. +According to Robert C Sanchez the bot doesn't work with Empathy on Ubuntu. I suspect this is to do with either the formatting of the messa...
adewale/Buzz-Chat-Bot
8f47ab428e87541dc3cc05e10ec3fdd61b2c75b0
Added Python API client
diff --git a/apiclient b/apiclient new file mode 120000 index 0000000..a7054c5 --- /dev/null +++ b/apiclient @@ -0,0 +1 @@ +../google-api-python-client/apiclient \ No newline at end of file
adewale/Buzz-Chat-Bot
d41547b62ecdcc2e36154d3ee4523054f7fb9802
Tweaked logging and consumer key/secret pair
diff --git a/TODO b/TODO index fb73ce4..36f49cc 100644 --- a/TODO +++ b/TODO @@ -1,18 +1,21 @@ Buzz Chat Bot ============ Add a sensible explanation of what this bot does and why anyone would want to use it: - mention the low-latency of using chat clients, which are always on, versus the web - mention that GChat ...
adewale/Buzz-Chat-Bot
642ffa5ca2c00483fa800aff9e332a71dc2d0014
Added a rationale for the bot to the README
diff --git a/README b/README index 226e3ee..5fb7360 100644 --- a/README +++ b/README @@ -1,42 +1,55 @@ This is an experimental jaiku-style chat bot for Google Buzz. If it breaks you get to keep both pieces. What does it do? ================ At the moment it lets you ask for: /help Prints out this message /trac...
adewale/Buzz-Chat-Bot
a62ba0f4bfb6ce3f6b52101c858aa884d4b182e9
Added a TODO list
diff --git a/TODO b/TODO new file mode 100644 index 0000000..7f8e22f --- /dev/null +++ b/TODO @@ -0,0 +1,14 @@ +Buzz Chat Bot +============ +Verify that phrase search works and add tests for it +/search [some search] +Register the app so that people don't have to trust anonymous +Fix the Welcome page so that people ca...
adewale/Buzz-Chat-Bot
64cca83f862e092bb5d848268c3c0fabb8163fe3
Added documentation line for /post which allows people to post messages to Buzz from the chat bot
diff --git a/xmpp.py b/xmpp.py index 6882cb8..822f3a8 100644 --- a/xmpp.py +++ b/xmpp.py @@ -1,233 +1,234 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License...
adewale/Buzz-Chat-Bot
c2b7bf904b5e21e1b70ecfef7d1c53c90e044785
Extracted out a simple buzz wrapper and added basic validation since empty title or content strings cause the Buzz servers to return a 503.
diff --git a/functional_tests.py b/functional_tests.py index 7b5a419..1696bce 100644 --- a/functional_tests.py +++ b/functional_tests.py @@ -1,207 +1,223 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the ...
adewale/Buzz-Chat-Bot
a6c2b1c283ff389984b610b2a27fac8dd4abca84
Can post from chat bot. Messages turn up as both the body and the content of the post identica-style.
diff --git a/main.py b/main.py index 181c2e0..9f73dc1 100644 --- a/main.py +++ b/main.py @@ -1,116 +1,115 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License...
adewale/Buzz-Chat-Bot
8e84be2d3dbc4d8daa112cf92566a834d4ac4181
Extracted out oauth_handlers.py. Added the start of Buzz support although I'm currently getting 503s from Buzz's back-end and the profile page is broken since the new Buzz libraries are now using the command pattern.
diff --git a/functional_tests.py b/functional_tests.py index 69d9f0e..7b5a419 100644 --- a/functional_tests.py +++ b/functional_tests.py @@ -1,161 +1,207 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the ...
adewale/Buzz-Chat-Bot
911e9dbf13fa6b9b127d9178a52937bc28573b18
Fixed spurious 'no subsciptions' line when using /list
diff --git a/functional_tests.py b/functional_tests.py index 70bfd50..69d9f0e 100644 --- a/functional_tests.py +++ b/functional_tests.py @@ -1,152 +1,161 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the ...
adewale/Buzz-Chat-Bot
373634d6baad6ef8dba4b7aba5ee17bb6688944a
Added ability to handle hub challenges for unsubscriptions
diff --git a/functional_tests.py b/functional_tests.py index 8e52358..70bfd50 100644 --- a/functional_tests.py +++ b/functional_tests.py @@ -1,143 +1,152 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the ...
adewale/Buzz-Chat-Bot
e1b1cb1c2d30942236bfdf4a42a21bd154f136aa
Added /about to help people work out which bot they're talking to
diff --git a/functional_tests.py b/functional_tests.py index 309897a..8e52358 100644 --- a/functional_tests.py +++ b/functional_tests.py @@ -1,134 +1,143 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the ...
adewale/Buzz-Chat-Bot
4e5ae095a6bbab488a78ff4c64bef96643c42e35
Fixed bug where doing /list when you have no subscriptions causes error
diff --git a/functional_tests.py b/functional_tests.py index 1161574..309897a 100644 --- a/functional_tests.py +++ b/functional_tests.py @@ -1,125 +1,134 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the ...
adewale/Buzz-Chat-Bot
1c55e9cbcbeecd4b2204c598613c9da143552ef7
Checking that app can work at other endpoints besides buzzchatbot.appspot.com
diff --git a/app.yaml b/app.yaml index e30bf45..522fb2a 100644 --- a/app.yaml +++ b/app.yaml @@ -1,15 +1,15 @@ -application: buzzchatbot +application: favedby version: 1 runtime: python api_version: 1 handlers: - url: /css static_dir: css - url: /images static_dir: images - url: /.* script: main.py ...
adewale/Buzz-Chat-Bot
5fd4a53964ab919d97770e0f7b8195085089c66c
Removed xhtml-im support since GMail doesn't support it
diff --git a/main.py b/main.py index 3b7c522..d46097f 100644 --- a/main.py +++ b/main.py @@ -1,206 +1,212 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License...
adewale/Buzz-Chat-Bot
f0870486ef3d1e8b1fd4ea9a5a417d57f0de9f10
Fixed formatting problem with generating xhtml-im lists
diff --git a/message_builder_tests.py b/message_builder_tests.py index 688e3f0..f5fa5fc 100644 --- a/message_builder_tests.py +++ b/message_builder_tests.py @@ -1,86 +1,86 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in co...
adewale/Buzz-Chat-Bot
8ae72ed9e99431484711e889f27f9bd05160c913
Fixed formatting problems with the xhtml-im messages
diff --git a/message_builder_tests.py b/message_builder_tests.py index 0820f0d..688e3f0 100644 --- a/message_builder_tests.py +++ b/message_builder_tests.py @@ -1,95 +1,86 @@ # Copyright (C) 2010 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in co...
monkeyoperator/greasemonkey-scripts
f8d320fed48324069ec2721d0d47b5386252a9f3
Minimize window before closing, non-debug version of ext-js
diff --git a/imagefap_lightroom.user.js b/imagefap_lightroom.user.js index 53f724b..7adb495 100644 --- a/imagefap_lightroom.user.js +++ b/imagefap_lightroom.user.js @@ -1,306 +1,305 @@ // ==UserScript== // @name ImageFap Lightroom // @description Show content from Imagefap.com // @include *imagefap...
monkeyoperator/greasemonkey-scripts
6461f5518892a2356aeb7dc55a2fa39231f609c3
added prev-next buttons
diff --git a/imagefap_lightroom.user.js b/imagefap_lightroom.user.js index 6c0d69b..53f724b 100644 --- a/imagefap_lightroom.user.js +++ b/imagefap_lightroom.user.js @@ -1,263 +1,306 @@ // ==UserScript== // @name ImageFap Lightroom // @description Show content from Imagefap.com // @include *imagefap...
monkeyoperator/greasemonkey-scripts
20955f7b0e744caa33c892c0a7a7a7c973f10089
reversed changes for extJs
diff --git a/imagefap_enhancer.user.js b/imagefap_enhancer.user.js index ecf32aa..cddf59e 100644 --- a/imagefap_enhancer.user.js +++ b/imagefap_enhancer.user.js @@ -1,385 +1,378 @@ // ==UserScript== // @name ImageFap enhancer // @description enlarges thumbs, alternate gallery view, enhanced 'my clubs' pag...
monkeyoperator/greasemonkey-scripts
7039aabb3d54a28a91eb5f02b63687ec6c1e5986
* added Loading indicator * Layout is preserved by Ext.state.CookieProvider
diff --git a/imagefap_lightroom.user.js b/imagefap_lightroom.user.js index 0917f11..6c0d69b 100644 --- a/imagefap_lightroom.user.js +++ b/imagefap_lightroom.user.js @@ -1,239 +1,263 @@ // ==UserScript== // @name ImageFap Lightroom // @description Show content from Imagefap.com // @include *imagefap...
monkeyoperator/greasemonkey-scripts
157f21ad3721e67dddf437ff9c4f344efe879605
Lightroom V0.1
diff --git a/imagefap_lightroom.user.js b/imagefap_lightroom.user.js index d6d5587..0917f11 100644 --- a/imagefap_lightroom.user.js +++ b/imagefap_lightroom.user.js @@ -1,98 +1,239 @@ // ==UserScript== // @name ImageFap Lightroom // @description Show content from Imagefap.com // @include *imagefap....
monkeyoperator/greasemonkey-scripts
0dad7223b7aac96175bc1154f41686848d04cda3
inital extjs version
diff --git a/imagefap_lightroom.user.js b/imagefap_lightroom.user.js new file mode 100644 index 0000000..d6d5587 --- /dev/null +++ b/imagefap_lightroom.user.js @@ -0,0 +1,98 @@ +// ==UserScript== +// @name ImageFap Lightroom +// @description Show content from Imagefap.com +// @include *imagefap.com/* +...
monkeyoperator/greasemonkey-scripts
1c37495e5d2399f20cffcdd77b5c9cc86fab47ed
Switched to EXTjs
diff --git a/imagefap_enhancer.user.js b/imagefap_enhancer.user.js index cddf59e..ecf32aa 100644 --- a/imagefap_enhancer.user.js +++ b/imagefap_enhancer.user.js @@ -1,378 +1,385 @@ // ==UserScript== // @name ImageFap enhancer // @description enlarges thumbs, alternate gallery view, enhanced 'my clubs' pag...
monkeyoperator/greasemonkey-scripts
2e3dbb6ed0e93a56d6dc4dc7e9606902704acc59
Eclipse files added to gitignore
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..541e887 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/.project +/.settings
monkeyoperator/greasemonkey-scripts
64379d1e48974a047bb44940a8bceb33a4a82d79
Timeout for picture preloading to avoid hangs
diff --git a/imagefap_enhancer.user.js b/imagefap_enhancer.user.js index 0055e6f..cddf59e 100644 --- a/imagefap_enhancer.user.js +++ b/imagefap_enhancer.user.js @@ -1,369 +1,378 @@ // ==UserScript== // @name ImageFap enhancer // @description enlarges thumbs, alternate gallery view, enhanced 'my clubs' pag...
monkeyoperator/greasemonkey-scripts
b8eb12e1a347df1756d986386f1c684ffd263511
@require für externe js-dateien removed Google-analytics
diff --git a/imagefap_enhancer.user.js b/imagefap_enhancer.user.js index 5c303f7..0055e6f 100644 --- a/imagefap_enhancer.user.js +++ b/imagefap_enhancer.user.js @@ -1,399 +1,369 @@ // ==UserScript== // @name ImageFap enhancer // @description enlarges thumbs, alternate gallery view, enhanced 'my clubs' pag...
monkeyoperator/greasemonkey-scripts
5703e701ea535788938aae36a20195f458e1448b
grafiken hinzugefügt
diff --git a/data/16-7.gif b/data/16-7.gif new file mode 100644 index 0000000..40e3890 Binary files /dev/null and b/data/16-7.gif differ diff --git a/data/4-1.gif b/data/4-1.gif new file mode 100644 index 0000000..e192ca8 Binary files /dev/null and b/data/4-1.gif differ
monkeyoperator/greasemonkey-scripts
b49c50905fa3737b5f63e21313781a96618ff0ba
relative Zeitangaben auch auf clubseiten
diff --git a/imagefap_enhancer.user.js b/imagefap_enhancer.user.js index a8b13cb..5c303f7 100644 --- a/imagefap_enhancer.user.js +++ b/imagefap_enhancer.user.js @@ -1,390 +1,399 @@ // ==UserScript== // @name ImageFap enhancer // @description enlarges thumbs, alternate gallery view, enhanced 'my clubs' pag...
monkeyoperator/greasemonkey-scripts
3026c539a40be75a5bac64a53380c75b7178464c
relative gallery-times (entweder date oder time)
diff --git a/imagefap_enhancer.user.js b/imagefap_enhancer.user.js index a5cebba..a8b13cb 100644 --- a/imagefap_enhancer.user.js +++ b/imagefap_enhancer.user.js @@ -1,345 +1,390 @@ // ==UserScript== // @name ImageFap enhancer // @description enlarges thumbs, alternate gallery view, enhanced 'my clubs' pag...
monkeyoperator/greasemonkey-scripts
141093f9acb25cae5e307a620f9d5739d5ae924c
Styling enhancements
diff --git a/imagefap_enhancer.user.js b/imagefap_enhancer.user.js index 0725e8a..a5cebba 100644 --- a/imagefap_enhancer.user.js +++ b/imagefap_enhancer.user.js @@ -1,320 +1,345 @@ // ==UserScript== // @name ImageFap enhancer // @description enlarges thumbs, alternate gallery view, enhanced 'my clubs' pag...
monkeyoperator/greasemonkey-scripts
c86d540ba589815cc117563ffd1bc305fda00438
infodiv und paging type in south pane verlegt
diff --git a/imagefap_enhancer.user.js b/imagefap_enhancer.user.js index 8f6ab92..0725e8a 100644 --- a/imagefap_enhancer.user.js +++ b/imagefap_enhancer.user.js @@ -1,319 +1,320 @@ // ==UserScript== // @name ImageFap enhancer // @description enlarges thumbs, alternate gallery view, enhanced 'my clubs' pag...
monkeyoperator/greasemonkey-scripts
e2edd937a1595a0ea2adc35d4afbe545d174b4c1
Layout is now saved
diff --git a/imagefap_enhancer.user.js b/imagefap_enhancer.user.js index c279d79..8f6ab92 100644 --- a/imagefap_enhancer.user.js +++ b/imagefap_enhancer.user.js @@ -1,304 +1,319 @@ // ==UserScript== // @name ImageFap enhancer // @description enlarges thumbs, alternate gallery view, enhanced 'my clubs' pag...
monkeyoperator/greasemonkey-scripts
1d23f28461bbc0e98c67277f17451b4d62d229dd
auf jQuery.layout wird nun korrekt gewartet
diff --git a/imagefap_enhancer.user.js b/imagefap_enhancer.user.js index 0917085..c279d79 100644 --- a/imagefap_enhancer.user.js +++ b/imagefap_enhancer.user.js @@ -1,303 +1,304 @@ // ==UserScript== // @name ImageFap enhancer // @description enlarges thumbs, alternate gallery view, enhanced 'my clubs' pag...
monkeyoperator/greasemonkey-scripts
1b34d07ab7a4f97b6fee0d72032de85c0b09b5d1
using jQuery-Layout plugin now
diff --git a/imagefap_enhancer.user.js b/imagefap_enhancer.user.js index 2538efd..0917085 100644 --- a/imagefap_enhancer.user.js +++ b/imagefap_enhancer.user.js @@ -1,285 +1,303 @@ // ==UserScript== // @name ImageFap enhancer // @description enlarges thumbs, alternate gallery view, enhanced 'my clubs' pag...
monkeyoperator/greasemonkey-scripts
4ff022b6874dc5c884788c2481d051f10aad1ad3
Styled the pager display
diff --git a/imagefap_enhancer.user.js b/imagefap_enhancer.user.js index 6f4d211..2538efd 100644 --- a/imagefap_enhancer.user.js +++ b/imagefap_enhancer.user.js @@ -1,267 +1,285 @@ // ==UserScript== // @name ImageFap enhancer // @description enlarges thumbs, alternate gallery view, enhanced 'my clubs' pag...
monkeyoperator/greasemonkey-scripts
9451807025175a20af8b16b1232e6c01729db746
Added jQuery-UI only Progressbar is used for now.
diff --git a/imagefap_enhancer.user.js b/imagefap_enhancer.user.js index d4d6e42..6f4d211 100644 --- a/imagefap_enhancer.user.js +++ b/imagefap_enhancer.user.js @@ -1,256 +1,267 @@ // ==UserScript== // @name ImageFap enhancer // @description enlarges thumbs, alternate gallery view, enhanced 'my clubs' pag...
monkeyoperator/greasemonkey-scripts
edb2bc6b60df509749a74a538c91fc173ccbed8a
Implemented evil User-tracking using Google Analytics
diff --git a/imagefap_enhancer.user.js b/imagefap_enhancer.user.js index 38e420b..d4d6e42 100644 --- a/imagefap_enhancer.user.js +++ b/imagefap_enhancer.user.js @@ -1,243 +1,256 @@ // ==UserScript== // @name ImageFap enhancer // @description enlarges thumbs, alternate gallery view, enhanced 'my clubs' pag...
monkeyoperator/greasemonkey-scripts
7c5ba89390d4a7348993c89cd4b54cae51b6f841
did some documentation
diff --git a/imagefap_enhancer.js b/imagefap_enhancer.js index c206508..38e420b 100644 --- a/imagefap_enhancer.js +++ b/imagefap_enhancer.js @@ -1,242 +1,243 @@ // ==UserScript== // @name ImageFap enhancer // @description enlarges thumbs, alternate gallery view, enhanced 'my clubs' page on ImageFap // @i...
monkeyoperator/greasemonkey-scripts
f81c582b7740222b9a05854db1bd2d05baddd6f8
geladene Bilder werden referenziert gehalten, umschaltbare Paging-funktion: Server: HTML der Imagefap-Blätterfunktion wird eingeblendet Client: Loading stops after chunksize pics
diff --git a/imagefap_enhancer.user.js b/imagefap_enhancer.user.js deleted file mode 100644 index c206508..0000000 --- a/imagefap_enhancer.user.js +++ /dev/null @@ -1,242 +0,0 @@ -// ==UserScript== -// @name ImageFap enhancer -// @description enlarges thumbs, alternate gallery view, enhanced 'my clubs' page ...
monkeyoperator/greasemonkey-scripts
5c59f1d629f25b0dfeffaf16438402db9387f08a
neuer name, neuer content
diff --git a/imagefap_enhancer.user.js b/imagefap_enhancer.user.js new file mode 100644 index 0000000..c206508 --- /dev/null +++ b/imagefap_enhancer.user.js @@ -0,0 +1,242 @@ +// ==UserScript== +// @name ImageFap enhancer +// @description enlarges thumbs, alternate gallery view, enhanced 'my clubs' page on I...
monkeyoperator/greasemonkey-scripts
81b52fbe01391a172fd4c9ec4790738172c7bdaf
Signed-off-by: makro <makro@mbox.(none)>
diff --git a/imagefapthumbresizer.user.js b/imagefapthumbresizer.user.js index 84266da..1213aab 100644 --- a/imagefapthumbresizer.user.js +++ b/imagefapthumbresizer.user.js @@ -1,176 +1,176 @@ // ==UserScript== // @name ImageFap enhancer // @description enlarges thumbs, alternate gallery view, enhanced 'm...
monkeyoperator/greasemonkey-scripts
59f90e8e09cbecaf6de6dc0efe1ff80c3567b2da
initial check-in
diff --git a/betterdir.user.js b/betterdir.user.js new file mode 100644 index 0000000..84b48ce --- /dev/null +++ b/betterdir.user.js @@ -0,0 +1,245 @@ + +// BetterDir +// version 1.0 BETA! +// 2005-05-02 +// Copyright (c) 2005, Mark Pilgrim +// Released under the GPL license +// http://www.gnu.org/copyleft/gpl.html +//...
codyps/wdfs
37a7df5e1b4da2ec5115db42a00ac19c565712f5
travis ci
diff --git a/.travis.yml b/.travis.yml index d4cb4a8..2e290bd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,9 @@ before_script: - sudo apt-get install libfuse-dev -y - - sudo apt-get install libneon-dev -y + - sudo apt-get install libneon27-dev -y script: ./configure && make language: c compiler: -...
codyps/wdfs
5603483db2b0e6895c1a27f1f08f2369acd49131
travis ci
diff --git a/.travis.yml b/.travis.yml index 9d2998d..d4cb4a8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,9 @@ +before_script: + - sudo apt-get install libfuse-dev -y + - sudo apt-get install libneon-dev -y script: ./configure && make language: c compiler: - clang - gcc
codyps/wdfs
5e7e337916b284f8c30dfb128d0299f44085bf13
travis ci
diff --git a/README b/README index 1e07677..cf621bb 100644 --- a/README +++ b/README @@ -1,129 +1,130 @@ abstract: wdfs is a webdav filesystem with special features for accessing subversion repositories. it is based on fuse v2.5+ and neon v0.24.7+. author of wdfs: (c) 2005 - 2007 jens m. noedler, noedl...
codyps/wdfs
c37cdf0e31e8f3dedd0e4897feda0e6c5602e722
travis ci
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..9d2998d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,6 @@ +script: ./configure && make +language: c +compiler: + - clang + - gcc +
codyps/wdfs
0b7c720c515f0945a0efc210471b4e6fd06aade3
comments
diff --git a/src/wdfs-main.c b/src/wdfs-main.c index 98917b3..a1520df 100644 --- a/src/wdfs-main.c +++ b/src/wdfs-main.c @@ -1,571 +1,573 @@ /* * this file is part of wdfs --> http://noedler.de/projekte/wdfs/ * * wdfs is a webdav filesystem with special features for accessing subversion * repositories. it i...
codyps/wdfs
1801ab8c4679e88d1fb1760a404bd256bfcc6a97
gitignore
diff --git a/.gitignore b/.gitignore index efd0e29..2e57bce 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,8 @@ *.log .deps src/.deps/ Makefile +src/Makefile *.status src/config.h src/stamp-h1 diff --git a/src/Makefile b/src/Makefile deleted file mode 100644 index d59bdd0..0000000 --- a/src/Makefile +++ /de...
codyps/wdfs
960a7a1a5a8e8603e5227384c3260d645fad85b0
gitignore
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..efd0e29 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +*.log +.deps +src/.deps/ +Makefile +*.status +src/config.h +src/stamp-h1 diff --git a/Makefile b/Makefile deleted file mode 100644 index 7992ffd..0000000 --- a/Makefile +++ /dev/null @@ -1,56...
codyps/wdfs
21fbb1d5b559fccfdcb6933a40783e33c1a1cffe
implement fuse.create()
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7992ffd --- /dev/null +++ b/Makefile @@ -0,0 +1,562 @@ +# Makefile.in generated by automake 1.9.6 from Makefile.am. +# Makefile. Generated from Makefile.in by configure. + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003...
codyps/wdfs
3a6a8137be2fcc61e06c17cb6a6fdc1cf21829e7
fix a remote '500' error due to the lack of a useragent
diff --git a/src/webdav.c b/src/webdav.c index ce4bd35..e54b828 100644 --- a/src/webdav.c +++ b/src/webdav.c @@ -1,428 +1,432 @@ /* * this file is part of wdfs --> http://noedler.de/projekte/wdfs/ * * wdfs is a webdav filesystem with special features for accessing subversion * repositories. it is based on ...
Spacerat/BlitzIRC
59142f15f828cdc235d9827aeaee0f164277aa2e
Indicate if build is threaded. Send input in threaded mode.
diff --git a/SpaceBot/spacebot.bmx b/SpaceBot/spacebot.bmx index dc72bd4..865546a 100644 --- a/SpaceBot/spacebot.bmx +++ b/SpaceBot/spacebot.bmx @@ -1,32 +1,36 @@ SuperStrict Framework brl.blitz Import "irc.bmx" Import "Modules/debug.bmx" Import "Modules/ping.bmx" Global SBConfig:IRCClientConfig = New I...
Spacerat/BlitzIRC
7d0c63702b8659f1c32dadf517c74ea428d6157d
Ping actually works now.
diff --git a/SpaceBot/Modules/ping.bmx b/SpaceBot/Modules/ping.bmx index 7c6ff73..ddfe1ee 100644 --- a/SpaceBot/Modules/ping.bmx +++ b/SpaceBot/Modules/ping.bmx @@ -1,15 +1,16 @@ SuperStrict Import "../irc.bmx" AddHook(IRCClient.INHOOK, IRCPingPong, Null) Function IRCPingPong:Object(id:Int, data:Object, conte...
Spacerat/BlitzIRC
bee822a9e41b3cc6cc1f42d0c5e81d38e7cdc792
Client remembers its nick and config object.
diff --git a/SpaceBot/irc.bmx b/SpaceBot/irc.bmx index 77bb32f..3feb504 100644 --- a/SpaceBot/irc.bmx +++ b/SpaceBot/irc.bmx @@ -1,291 +1,310 @@ SuperStrict Import brl.threads Import brl.socketstream Import brl.textstream Import brl.hook Import brl.linkedlist Rem bbdoc: IRC Event object about: This objec...
Spacerat/BlitzIRC
58558cda0ebb80718550359d961e8b1ad6e777a4
Added origin to pong.
diff --git a/SpaceBot/Modules/ping.bmx b/SpaceBot/Modules/ping.bmx index fc6f911..7c6ff73 100644 --- a/SpaceBot/Modules/ping.bmx +++ b/SpaceBot/Modules/ping.bmx @@ -1,15 +1,15 @@ SuperStrict Import "../irc.bmx" AddHook(IRCClient.INHOOK, IRCPingPong, Null) Function IRCPingPong:Object(id:Int, data:Object, conte...
Spacerat/BlitzIRC
bd3ac7e94e46e55a8c9871d52468fadd90cf29ab
Another USER string correction.
diff --git a/SpaceBot/irc.bmx b/SpaceBot/irc.bmx index d844284..77bb32f 100644 --- a/SpaceBot/irc.bmx +++ b/SpaceBot/irc.bmx @@ -1,291 +1,291 @@ SuperStrict Import brl.threads Import brl.socketstream Import brl.textstream Import brl.hook Import brl.linkedlist Rem bbdoc: IRC Event object about: This objec...
Spacerat/BlitzIRC
31cee5210509a6c70acb76d31b7c21a3684a3dda
Comitted PING/PONG module.
diff --git a/SpaceBot/Modules/ping.bmx b/SpaceBot/Modules/ping.bmx new file mode 100644 index 0000000..fc6f911 --- /dev/null +++ b/SpaceBot/Modules/ping.bmx @@ -0,0 +1,15 @@ +SuperStrict + +Import "../irc.bmx" + +AddHook(IRCClient.INHOOK, IRCPingPong, Null) + +Function IRCPingPong:Object(id:Int, data:Object, context:Ob...
Spacerat/BlitzIRC
98e79f0f258a910a84759c06c87f61af030f7a2a
Fixed USER string.
diff --git a/SpaceBot/irc.bmx b/SpaceBot/irc.bmx index bd6a530..d844284 100644 --- a/SpaceBot/irc.bmx +++ b/SpaceBot/irc.bmx @@ -1,291 +1,291 @@ SuperStrict Import brl.threads Import brl.socketstream Import brl.textstream Import brl.hook Import brl.linkedlist Rem bbdoc: IRC Event object about: This objec...
Spacerat/BlitzIRC
6aec4979875fe1a8632e0d569eb118df7d69bda5
Parse() is now SetData(data:String)
diff --git a/SpaceBot/irc.bmx b/SpaceBot/irc.bmx index fe8d176..bd6a530 100644 --- a/SpaceBot/irc.bmx +++ b/SpaceBot/irc.bmx @@ -1,288 +1,291 @@ SuperStrict Import brl.threads Import brl.socketstream Import brl.textstream Import brl.hook Import brl.linkedlist Rem bbdoc: IRC Event object about: This objec...
Spacerat/BlitzIRC
e7c3d3757c027f937c2b5f9855f1732868008e9f
Added more get methods to IRCEvent.
diff --git a/SpaceBot/irc.bmx b/SpaceBot/irc.bmx index b01d8f7..fe8d176 100644 --- a/SpaceBot/irc.bmx +++ b/SpaceBot/irc.bmx @@ -1,240 +1,288 @@ SuperStrict Import brl.threads Import brl.socketstream Import brl.textstream Import brl.hook Import brl.linkedlist -Import joe.threadedio Rem bbdoc: IRC Event ob...
Spacerat/BlitzIRC
99f6f3d29b1ac4b15a90cfb46a94b760b76d02c9
Added SuperStrict
diff --git a/SpaceBot/Modules/debug.bmx b/SpaceBot/Modules/debug.bmx index 20bf4fb..1e9348c 100644 --- a/SpaceBot/Modules/debug.bmx +++ b/SpaceBot/Modules/debug.bmx @@ -1,21 +1,22 @@ +SuperStrict + Import joe.threadedio Import "../irc.bmx" - AddHook(IRCClient.OUTHOOK, PrintIRCOutput, Null) AddHook(IRCClient.INH...
Spacerat/BlitzIRC
75f2d01e5ae6957063968f1d05d8cef3ef0625d5
Added non-thread support; finished the message parser.
diff --git a/SpaceBot/irc.bmx b/SpaceBot/irc.bmx index 7221468..b01d8f7 100644 --- a/SpaceBot/irc.bmx +++ b/SpaceBot/irc.bmx @@ -1,208 +1,240 @@ SuperStrict Import brl.threads Import brl.socketstream Import brl.textstream Import brl.hook +Import brl.linkedlist +Import joe.threadedio Rem bbdoc: IRC Event ob...
Spacerat/BlitzIRC
62dc477872fc66f7f5b31dcd4efa7f72f013c06d
Added code to support threaded and non-threaded mode.
diff --git a/SpaceBot/spacebot.bmx b/SpaceBot/spacebot.bmx index 79a664c..c00e534 100644 --- a/SpaceBot/spacebot.bmx +++ b/SpaceBot/spacebot.bmx @@ -1,25 +1,31 @@ SuperStrict Framework brl.blitz Import "irc.bmx" Import "Modules/debug.bmx" Global SBConfig:IRCClientConfig = New IRCClientConfig Global SBCl...
Spacerat/BlitzIRC
687af91dc3c4572ebc6a30d526400bbd910b4c25
Added the begginings of a decent IRC message parcer.
diff --git a/SpaceBot/irc.bmx b/SpaceBot/irc.bmx index afa5a43..7221468 100644 --- a/SpaceBot/irc.bmx +++ b/SpaceBot/irc.bmx @@ -1,185 +1,208 @@ SuperStrict Import brl.threads Import brl.socketstream Import brl.textstream Import brl.hook Rem bbdoc: IRC Event object about: This object is passed to IRC hook...