Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'dev' into sabre32 | Mario Vavti | 2016-06-29 | 2 | -2/+5 |
|\ | |||||
| * | readability | redmatrix | 2016-06-28 | 1 | -1/+4 |
| | | |||||
| * | identity_export_year() was a bit short-sighted. We really require arbitrary ↵ | redmatrix | 2016-06-28 | 1 | -1/+1 |
| | | | | | | | | date ranges. A new function was created to tackle this - channel_export_items() which takes a channel, and a start and finish date. Finish date will default to "now" if not set. Will be working this into the interface under a module named "export_items" which will correspond closely to the existing "import_items" module you'll need to do the reverse operation. Will also make it available via the API. Once that is complete, I anticipate removing identity_export_year() as it will then be somewhat redundant, and modifying the documentation on the channel export page accordingly. Note: the function works strictly in GMT so an interface would need to convert from channel local time. | ||||
* | | Merge branch 'dev' into sabre32 | Mario Vavti | 2016-06-28 | 8 | -10/+86 |
|\| | |||||
| * | still working through some issues with curl magic-auth | redmatrix | 2016-06-27 | 4 | -6/+23 |
| | | | | | | | | fixed profile photo upload | ||||
| * | provide a daemon for implementing zot magic-auth over curl. | redmatrix | 2016-06-27 | 1 | -0/+52 |
| | | |||||
| * | add letsencrypt x3 intermediate cert and new cert file, improve UX of new ↵ | redmatrix | 2016-06-27 | 1 | -1/+2 |
| | | | | | | | | registrations | ||||
| * | replace [+] and [-] with chevron icons | redmatrix | 2016-06-27 | 1 | -1/+1 |
| | | |||||
| * | comment on the setup page about the possible need for intermediate certs. | redmatrix | 2016-06-27 | 2 | -4/+10 |
| | | |||||
* | | Merge branch 'dev' into sabre32 | Mario Vavti | 2016-06-27 | 27 | -27/+72 |
|\| | |||||
| * | fix for the rendering side of issue #412. We traditionally store all | redmatrix | 2016-06-26 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | "user generated" content with ENT_COMPAT encoding to reduce the attack vector for JS CSS exploits. This may present compatibility issues sharing wikis to platforms which do not provide such CSS protection. We can either decide that wikis are inherently insecure and filter them on render (with an associated performance penalty), or keep the existing method of filtering on store. I'm not making that choice. I'm merely fixing the obvious rendering issue in mono-platform viewing. | ||||
| * | remove the app $a passed to profile_load, also add profile_load to mod_wiki ↵ | redmatrix | 2016-06-26 | 26 | -26/+28 |
| | | | | | | | | which should fix issue #431 | ||||
| * | document the daemon classes | redmatrix | 2016-06-26 | 1 | -0/+43 |
| | | |||||
* | | Merge branch 'dev' into sabre32 | Mario Vavti | 2016-06-26 | 1 | -21/+25 |
|\| | |||||
| * | A page name wrapped in double brackets is converted into a link to another ↵ | Andrew Manning | 2016-06-25 | 1 | -4/+11 |
| | | | | | | | | page in the current wiki | ||||
| * | Merge remote-tracking branch 'upstream/dev' into wiki | Andrew Manning | 2016-06-25 | 12 | -81/+261 |
| |\ | |||||
| * | | Post generation about new wiki is optional, default is NOT to post. Fixed ↵ | Andrew Manning | 2016-06-25 | 1 | -17/+14 |
| | | | | | | | | | | | | bug in wiki creation. Added embed image dialog and album browser. | ||||
* | | | Merge branch 'dev' into sabre32 | Mario Vavti | 2016-06-24 | 11 | -73/+244 |
|\ \ \ | | |/ | |/| | |||||
| * | | fix pdledit "list layouts" | redmatrix | 2016-06-24 | 1 | -5/+5 |
| | | | |||||
| * | | SuperCurl to provide a re-usable curl options stack and just change options ↵ | redmatrix | 2016-06-23 | 2 | -1/+112 |
| | | | | | | | | | | | | that are different from one call to the next | ||||
| * | | change AbConfig to use channel_id instead of channel_hash; which was a ↵ | redmatrix | 2016-06-23 | 4 | -20/+19 |
| | | | | | | | | | | | | mistake in retrospect | ||||
| * | | relocate the cache class | redmatrix | 2016-06-23 | 1 | -0/+46 |
| | | | |||||
| * | | code cleanup for profile_photos | redmatrix | 2016-06-23 | 4 | -47/+62 |
| | | | |||||
* | | | Merge branch 'dev' into sabre32 | Mario Vavti | 2016-06-23 | 2 | -10/+19 |
|\| | | |||||
| * | | set profile when "use existing photo" | redmatrix | 2016-06-22 | 1 | -4/+14 |
| | | | |||||
| * | | missing class selector when "use photo as profile photo" | redmatrix | 2016-06-22 | 1 | -1/+1 |
| | | | |||||
| * | | db statement debugging | redmatrix | 2016-06-22 | 2 | -5/+4 |
| |/ | |||||
* | | erge branch 'dev' into sabre32 | Mario Vavti | 2016-06-22 | 6 | -7/+751 |
|\| | |||||
| * | provide a skeleton of the current CalDAVClient with lots of notes about how ↵ | redmatrix | 2016-06-21 | 1 | -0/+739 |
| | | | | | | | | best to move forward just in case anybody is feeling ambitious or anxious. | ||||
| * | channel homepage not providing content when javascript disabled | redmatrix | 2016-06-21 | 1 | -0/+3 |
| | | |||||
| * | 1. provide automatic relocation of important links in items that are ↵ | redmatrix | 2016-06-21 | 4 | -7/+9 |
| | | | | | | | | | | | | | | imported or synced to clones 2. provide framework for custom curl request bodies using custom/non-standard request methods. This was a real nightmare because curl doesn't actually let you specify a string to send as the request body (except when doing POST). You have to treat it as a file upload using a custom file handler function which provides the actual content in chunks as if it were buffered I/O. 3. item_store and item_store_update now return the item that was stored | ||||
* | | Merge branch 'dev' into sabre32 | Mario Vavti | 2016-06-21 | 2 | -24/+46 |
|\| | |||||
| * | code optimisation | redmatrix | 2016-06-20 | 1 | -21/+5 |
| | | |||||
| * | Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge | redmatrix | 2016-06-20 | 2 | -4/+43 |
| |\ | |||||
| | * | Merge pull request #429 from anaqreon/wiki | hubzilla | 2016-06-21 | 1 | -2/+41 |
| | |\ | | | | | | | | | Wiki page revision comparison viewer | ||||
| | | * | Add formatted heading for revision comparison viewer | Andrew Manning | 2016-06-20 | 1 | -1/+2 |
| | | | | |||||
| | | * | Merge remote-tracking branch 'upstream/dev' into wiki | Andrew Manning | 2016-06-20 | 1 | -2/+2 |
| | | |\ | |||||
| | | * | | Wiki page revision comparison tool with diff displayed in modal dialog. ↵ | Andrew Manning | 2016-06-17 | 1 | -2/+40 |
| | | | | | | | | | | | | | | | | | | | | Leverages Diff class from http://code.stephenmorley.org/php/diff-implementation with license CC0 1.0 universal http://creativecommons.org/publicdomain/zero/1.0/legalcode | ||||
| * | | | | fix siteinfo plugin list | redmatrix | 2016-06-20 | 1 | -2/+1 |
| | |_|/ | |/| | | |||||
* | | | | Merge branch 'dev' into sabre32 | Mario Vavti | 2016-06-20 | 1 | -2/+2 |
|\ \ \ \ | | |/ / | |/| | | |||||
| * | | | Merge branch 'master' into dev | Mario Vavti | 2016-06-20 | 1 | -2/+2 |
| |\ \ \ | | |/ / | |/| | | |||||
| | * | | missing backslash leading to wsod on xconfig changes | Mario Vavti | 2016-06-20 | 1 | -2/+2 |
| | | | | |||||
| | * | | "thing" always showing default url, not that supplied by the thing. | redmatrix | 2016-06-17 | 1 | -2/+2 |
| | | | | |||||
| | * | | translate already imported system apps | redmatrix | 2016-06-15 | 1 | -0/+2 |
| | | | | |||||
| | * | | Apply purify_html to page content before preview and save to prevent ↵ | Andrew Manning | 2016-06-12 | 1 | -15/+3 |
| | | | | | | | | | | | | | | | | JavaScript code injection. | ||||
* | | | | Merge branch 'dev' into sabre32 | Mario Vavti | 2016-06-18 | 1 | -2/+2 |
|\| | | | |||||
| * | | | "thing" always showing default url, not that supplied by the thing. | redmatrix | 2016-06-17 | 1 | -2/+2 |
| | |/ | |/| | |||||
* | | | Merge branch 'dev' into sabre32 | Mario Vavti | 2016-06-16 | 2 | -4/+52 |
|\| | | |||||
| * | | Merge remote-tracking branch 'upstream/dev' into wiki | Andrew Manning | 2016-06-15 | 5 | -9/+151 |
| |\ \ | |||||
| | * | | translate already imported system apps | redmatrix | 2016-06-15 | 1 | -0/+2 |
| | | | |