aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #35 from vermiculus/24.4-testingArtur Malabarba2014-11-092-4/+19
|\ | | | | Add 24.4 support
| * Ensure dependencies for this version are in placeSean Allred2014-11-091-0/+1
| |
| * Ensure Emacs uses hard tabs for this fileSean Allred2014-11-091-0/+4
| |
| * Add rules to install evm; caskSean Allred2014-11-091-0/+6
| |
| * Ensure correct version is being testedSean Allred2014-11-091-0/+1
| | | | | | | | | | | | The `--use' option for `evm' seems to be ineffective on my machine. This usage is (or should be) functionally equivalent; it links `emacs' to the correct version in EVM.
| * Compress Makefile usageSean Allred2014-11-091-3/+3
| | | | | | | | | | | | Instead of using `make 24.1', use `make 1'. Also, skip install if it is present already.
| * Avoid .DEFAULT rule in MakefileSean Allred2014-11-091-2/+4
| | | | | | | | | | | | Instead, use a proper 'group' rule using the `VERSIONS' variable. Also, the use of `::' signals that the order doesn't matter at all; the recipes will be executed in the order they appear in the Makefile.
| * Add 24.4 supportSean Allred2014-11-092-2/+3
|/ | | | Also tests rejeep/evm#48
* Update commentsSean Allred2014-11-081-3/+3
|
* Merge pull request #34 from vermiculus/initializationSean Allred2014-11-0811-219/+258
|\ | | | | Initialization; Persistent, Lazy Filters
| * Merge branch 'master' into initializationSean Allred2014-11-087-8/+57
| |\ | |/ |/| | | | | Conflicts: sx-request.el
* | Consolidate keywords, update emailsSean Allred2014-11-085-8/+34
| |
* | Rename makefileSean Allred2014-11-081-0/+13
| |
* | Add makefileSean Allred2014-11-081-0/+11
| |
| * Use macroSean Allred2014-11-082-2/+3
| |
| * Use macroSean Allred2014-11-082-12/+15
| |
| * Abstract out method callsSean Allred2014-11-088-86/+99
| | | | | | | | | | | | | | | | | | | | | | Keeping method calls within `sx-request.el' was causing circular requirements. This commit sorts through all of the requirements for each of the files and ensures that this does not happen. Much of the content removed was for `sx-request-default-keyword-arguments-alist' and related items. It was unused, so it was pruned. If it is deemed necessary in the future, it should be included in `sx-method.el'.
| * Implement front-end with back-endSean Allred2014-11-081-64/+7
| |
| * Use the key for every request; no exceptionsSean Allred2014-11-081-1/+4
| |
| * Add internal request functionSean Allred2014-11-081-0/+52
| |
| * Delineate and alphabetize API symbolsSean Allred2014-11-081-5/+35
| | | | | | | | It's ugly to look at, but diffs will be more precise.
| * Re-work filtering and cachingSean Allred2014-11-086-67/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * sx-auth.el - Use new symbolic cache access * sx-cache.el - Implement symbolic cache access * sx-filter.el - Use symbolic cache access - Compile and save filters on-demand (more work to be done to this end) * sx-question.el - Symbolic filters * sx-request.el - Protection against infinitely recursing when compiling a filter This will be re-worked into requests (a front-end function) and 'raw' requests (a back-end function). The front-end will add convenience to the back-end. * test/tests.el Remove outdated tests
| * Finish name changesSean Allred2014-11-084-19/+19
| |
| * Introduce initialization logic and hooksSean Allred2014-11-072-5/+31
|/
* Merge pull request #33 from vermiculus/macro--sx-assoc-letSean Allred2014-11-072-28/+70
|\ | | | | Implement sx-assoc-let macro.
| * Add missing symbolsArtur Malabarba2014-11-071-2/+2
| |
| * Implement sx-assoc-let macro.Artur Malabarba2014-11-072-28/+70
|/ | | | Letbind symbols to their values inside alists.
* Merge pull request #31 from vermiculus/renameSean Allred2014-11-0715-825/+936
|\ | | | | Rename files to sx prefix (and variables accordingly)
| * Fix missing request in sx-questionArtur Malabarba2014-11-071-0/+1
| |
| * Update names in testSean Allred2014-11-072-33/+33
| |
| * Refactor to use `sx-` prefixSean Allred2014-11-0711-563/+683
| | | | | | | | A file stackexchange.el should be added for user-facing functions.
| * Renamed all files.Artur Malabarba2014-11-078-11/+1
|/ | | | Still a lot to be done inside them.
* Merge pull request #30 from vermiculus/question-list-live-dataArtur Malabarba2014-11-063-42/+140
|\ | | | | Question list live data
| * Use stack-question-get-questionsArtur Malabarba2014-11-061-1/+5
| |
| * Comment out "*stack-question*" buffer testArtur Malabarba2014-11-061-2/+3
| |
| * Fix test regexpArtur Malabarba2014-11-061-3/+3
| |
| * Remove cl-flet (not defined for < 24.3)Artur Malabarba2014-11-061-29/+28
| |
| * package-initialize on testsArtur Malabarba2014-11-061-1/+5
| |
| * Merge branch 'master' into question-list-live-dataArtur Malabarba2014-11-063-11/+98
| |\ | |/ |/|
* | Merge pull request #25 from vermiculus/authSean Allred2014-11-062-2/+83
|\ \ | | | | | | Authentication
| * \ Merge branch 'master' into authSean Allred2014-11-061-2/+7
| |\ \ | |/ / |/| | | | | | | | Conflicts: stack-core.el
* | | Merge pull request #26 from vermiculus/elevated-api-request-limitSean Allred2014-11-061-2/+7
|\ \ \ | | | | | | | | Add API key to requests
| * | | Add API key to requestsSean Allred2014-11-051-2/+7
| | | |
| | * | Merge branch 'master' into authSean Allred2014-11-061-7/+8
| | |\ \ | |_|/ / |/| | |
* | | | Merge pull request #24 from KingShimkus/patch-1Sean Allred2014-11-051-7/+8
|\ \ \ \ | |/ / / |/| | | Made it more readable.
| * | | Made it more readable.Luke Shimkus2014-11-041-7/+8
|/ / / | | | | | | Just fixed the links and made it more readable.
| * | Remove unused permissionSean Allred2014-11-061-2/+1
| | | | | | | | | | | | | | | | | | We are not using `private_info' yet, so there is no need to request this permission. It can, of course, be easily added later on if the information is ever usable.
| * | Change constant to variableSean Allred2014-11-061-2/+4
| | | | | | | | | | | | | | | As it is let-bound in the authentication flow, it is not truly a constant. Add a warning to the documentation appropriately.
| * | Prune unnecessary variableSean Allred2014-11-051-2/+0
| | | | | | | | | | | | | | | This key is actually used in request-making on the whole, so it has been moved to `stack-core.el' as of 9cb376361983742f0a15775b233fc194d61b3ea7.
| * | Use standard '.el' extenstion for cacheSean Allred2014-11-051-1/+1
| | | | | | | | | | | | | | | | | | This should probably be altered so that the caching function requires symbols; this would keep everything consistent since the caching function could apply the same pattern to every symbol it receives.