aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | | Display comment scoreArtur Malabarba2014-12-221-10/+13
| | | | | | | | | |
| * | | | | | | | | Make entire code-block a single buttonArtur Malabarba2014-12-221-13/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes a bug we had. Hitting TAB on a codeblock would move us to the next line on the code block, instead of going to another button. Now the entire code block is a single button, so that is fixed.
| * | | | | | | | | Activate major-mode when editing code-blocksArtur Malabarba2014-12-221-5/+8
| | | | | | | | | |
| * | | | | | | | | delay-mode-hooks on code blocksArtur Malabarba2014-12-221-9/+15
| | | | | | | | | |
| * | | | | | | | | delay-mode-hooks on markdown-mode. Fix #159Artur Malabarba2014-12-221-1/+1
| | | | | | | | | |
| | | | | * | | | | Fix bad docstringSean Allred2015-01-021-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Branch: search
| | | | | * | | | | Introduce convencience function for site promptingSean Allred2015-01-022-1/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Arose from comment discussion at [1]. This function allows for simplified syntax when the use case wants to retrieve a site token in an interactive context. See docstring for details. [1]: https://github.com/vermiculus/sx.el/pull/183/files#r22403919
| | | | | * | | | | CheckdocSean Allred2015-01-011-9/+9
| | | | | | | | | |
| | | | | * | | | | Add tests for search functionalitySean Allred2015-01-012-1/+54
| | | | | | | | | |
| | | | | * | | | | Add sx-search to sx-loadSean Allred2015-01-011-0/+1
| | | | | | | | | |
| | | | | * | | | | Merge branch 'master' into searchSean Allred2015-01-018-201/+181
| | | | | |\ \ \ \ \ | |_|_|_|_|/ / / / / |/| | | | | | | | |
| | | | | * | | | | Bind sx-search to sArtur Malabarba2014-12-282-0/+2
| | | | | | | | | |
| | | | | * | | | | Implement searching with sx-searchArtur Malabarba2014-12-281-0/+112
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix #16 Fix #20
| | | | | * | | | | Implement sx--multiple-read for reading multiple stringsArtur Malabarba2014-12-281-0/+19
| | | | | | | | | |
| | | | | | | | | * Miscellaneous changesSean Allred2015-01-031-8/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Use `sx-load' instead of the specific features we need * Use one `insert' form instead of two
| | | | | | | | | * Remove temporary files before each testSean Allred2015-01-031-0/+1
| | | | | | | | | |
| | | | | | | | | * Start tracking tag-bot dataSean Allred2015-01-03267-0/+137865
| | | | | | | | | |
| | | | | | | | | * Use new `sx-filter-from-nil' macroSean Allred2015-01-034-47/+27
| | | | | | | | | |
| | | | | | | | | * Introduce :page and :pagesize into sx-method-callSean Allred2015-01-033-6/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Default page size is 100 to reduce number of overall requests made. Fixes #190.
| | | | | | | | | * Simplfy logicSean Allred2015-01-031-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `get-all' will be re-bound to either a function or nil, so using `or' with it is appropriate.
| | | | | | | | | * Use `push' instead of `setq'Sean Allred2015-01-031-5/+2
| | | | | | | | | |
| | | | | | | | | * Fix title commentarySean Allred2015-01-031-2/+5
| | | | | | | | | |
| | | | | | | | | * Simplify formSean Allred2015-01-031-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If it's `t', then we still have our desired behavior. If it's not `t', then we just have 'it' -- when 'it' is `nil' (note, also not `t'), we obviously have `nil'. The behavior has not changed through this patch.
| | | | | | | | | * Remove superfluous local variableSean Allred2015-01-031-5/+4
| | | | | | | | | |
| | | | | | | | | * Sort tag list before writingSean Allred2015-01-031-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This should ensure that diffs are as small as possible.
| | | | | | | | | * Increase tag retrieval speedSean Allred2015-01-031-1/+2
| | | | | | | | | |
| | | | | | | | | * One tag per lineSean Allred2015-01-031-3/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will make the diffs much shorter.
| | | | | | | | | * Add sx-tag to loaderSean Allred2015-01-031-0/+1
| | | | | | | | | |
| | | | | | | | | * Update sx-bot.shSean Allred2015-01-021-5/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Send a notifcation when tags have finished. Function `notify-done' can be extended for other operating systems. For example, I believe Red Hat has `notify-send'.
| | | | | | | | | * Message after writing, not beforeSean Allred2015-01-021-2/+2
| | | | | | | | | |
| | | | | | | | | * Fix sx-tag--get-allSean Allred2015-01-021-5/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Instead of returning (((name . "tag")) ((name . "tag"))), return ("tag" "tag")
| | | | | | | | | * Initialization for tag botSean Allred2015-01-021-0/+5
| | | | | | | | | |
| | | | | | | | | * Fix get-all function for tag botSean Allred2015-01-021-4/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * write is done right after retrieval * progress updates after each site
| | | | | | | | | * Message actionsSean Allred2015-01-021-3/+5
| | | | | | | | | |
| | | | | | | | | * Don't display status messages from url during testSean Allred2015-01-021-0/+1
| | | | | | | | | |
| | | | | | | | | * Grab as many tags at a time as possibleSean Allred2015-01-021-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This might need to be refactored into :get-all or request-all.
| | | | | | | | | * Load botSean Allred2015-01-021-1/+1
| | | | | | | | | |
| | | | | | | | | * Fix sx-bot-fetch-and-write-tagsSean Allred2015-01-021-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sx-bot-write-to-file expects a cons cell.
| | | | | | | | | * Hotfix oversightSean Allred2015-01-021-1/+1
| | | | | | | | | |
| | | | | | | | | * Merge branch 'get-all' into tag-botSean Allred2015-01-021-0/+4
| | | | | | | | | |\ | | | | | | | | |_|/ | | | | | | | |/| |
| | | | | | | * | | Fix testSean Allred2015-01-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Dumb mistake -- I wasn't taking the length of the request before comparing it.
| | | | | | | * | | Test new sx-method functionalitySean Allred2015-01-021-0/+4
| | | | | | | | | |
| | | | | | | | | * Implement sx-tag--get-allSean Allred2015-01-021-0/+7
| | | | | | | | | |
| | | | | | | | | * Merge branch 'get-all' into tag-botSean Allred2015-01-022-4/+30
| | | | | | | | | |\ | | | | | | | | |_|/ | | | | | | | |/| |
| | | | | | | * | | Analog of request-all-items for sx-method-callSean Allred2015-01-021-2/+28
| | | | | | | | | |
| | | | | | | * | | Remove process-function from request-all-itemsSean Allred2015-01-021-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It doesn't really make sense.
| | | | | | | | | * Fix sx-tag-filterSean Allred2015-01-022-2/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It wasn't returning any .items because it wasn't included in the filter. This commit also introduces a convenience macro in sx-filter to avoid this scenario in the future.
| | | | | | | | | * Trailing whitespaceSean Allred2015-01-021-2/+2
| | | | | | | | | |
| | | | | | | | | * Merge branch 'get-all' into tag-botSean Allred2015-01-0225-498/+962
| | | | | | | | | |\ | | | | | | | | |_|/ | | | | | | | |/| |
| | | | | | | * | | Use variable instead of default for request-delaySean Allred2015-01-021-5/+8
| | | | | | | | | |