Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | native wiki updates | Hubzilla | 2017-01-18 | 1 | -4/+3 | |
| | ||||||
* | nwiki updates | Hubzilla | 2017-01-18 | 1 | -126/+170 | |
| | ||||||
* | call zidify_links() when formatting bbcode for internal consumption | zotlabs | 2016-12-19 | 1 | -2/+2 | |
| | ||||||
* | more wiki cleanup | Mario Vavti | 2016-12-15 | 1 | -9/+1 | |
| | ||||||
* | wiki: do not show revert buttons if we do not have write perms and minor cleanup | Mario Vavti | 2016-12-14 | 1 | -11/+4 | |
| | ||||||
* | translateable string | Mario Vavti | 2016-12-04 | 1 | -0/+1 | |
| | ||||||
* | fixes for toc bbcode and bbcode wiki toc | Mario Vavti | 2016-12-04 | 1 | -2/+2 | |
| | ||||||
* | more wiki cleanup | Mario Vavti | 2016-12-01 | 1 | -3/+1 | |
| | ||||||
* | wiki cleanup - wip. please watch out for eventual regressions | Mario Vavti | 2016-12-01 | 1 | -10/+15 | |
| | ||||||
* | do not call purify_html() at this place | Mario Vavti | 2016-11-30 | 1 | -2/+4 | |
| | ||||||
* | go live with wiki mimetypes - you can now choose if a wiki will contain ↵ | Mario Vavti | 2016-11-30 | 1 | -17/+34 | |
| | | | | markdown or bb-code markup | |||||
* | more work on wiki mimetypes | Mario Vavti | 2016-11-29 | 1 | -4/+5 | |
| | ||||||
* | some basic work for implementing mimetypes for wikis | Mario Vavti | 2016-11-28 | 1 | -4/+3 | |
| | ||||||
* | minor cleanup and remove more double encoding | Mario Vavti | 2016-11-28 | 1 | -1/+1 | |
| | ||||||
* | Make a git commit when a new page is created, recording who created the page. | Andrew Manning | 2016-11-24 | 1 | -1/+12 | |
| | ||||||
* | whitespace and minor fixes | Mario Vavti | 2016-11-23 | 1 | -1/+1 | |
| | ||||||
* | silence headers already sent warning. issue #596 | Mario Vavti | 2016-11-23 | 1 | -6/+9 | |
| | ||||||
* | whitespace and coding style | Mario Vavti | 2016-11-23 | 1 | -8/+17 | |
| | ||||||
* | whitespace cleanup | Mario Vavti | 2016-11-23 | 1 | -25/+25 | |
| | ||||||
* | display wiki list on wiki landing page. | Mario Vavti | 2016-11-22 | 1 | -18/+31 | |
| | ||||||
* | Hide all content if no wiki is selected except for a message saying to ↵ | Andrew Manning | 2016-11-18 | 1 | -2/+3 | |
| | | | | choose one. | |||||
* | Move page list back out to the side menu, but with the new page form below ↵ | Andrew Manning | 2016-11-18 | 1 | -0/+1 | |
| | | | | the new page button like the new wiki form. Disable text editing if viewer lacks edit permission, and change the tab label to Source instead of Edit in that case. | |||||
* | wiki: simplify permission model, reduce duplicate calls to get the same ↵ | zotlabs | 2016-11-15 | 1 | -115/+102 | |
| | | | | channel info and permissions, return the owner permissions with the normal permission check (keeping all permission fetching in one place), rename the 'channel' variable to 'owner' in several places to identify this channel role more clearly as to the way it is being used in this module, update the deprecated call to proc_run (include/notifier) and make several notice messages translatable. | |||||
* | Moved delete wiki button into new edit wiki form, opened by edit wiki icon ↵ | Andrew Manning | 2016-11-14 | 1 | -1/+0 | |
| | | | | in wiki list | |||||
* | zidify wiki content | zotlabs | 2016-11-13 | 1 | -2/+2 | |
| | ||||||
* | Moved save to bottom. Created Wiki Tools dropdown to be consistent, moved ↵ | Andrew Manning | 2016-11-12 | 1 | -0/+2 | |
| | | | | page tools in there as well as new page and new wiki | |||||
* | deprecate/remove get_channel_by_nick() which is just a less generalised ↵ | zotlabs | 2016-11-08 | 1 | -11/+11 | |
| | | | | variant of channelx_by_nick() | |||||
* | Add wiki download button to export the selected wiki repo to a zip file | Andrew Manning | 2016-10-22 | 1 | -0/+30 | |
| | ||||||
* | Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev | Mario Vavti | 2016-08-05 | 1 | -2/+3 | |
|\ | ||||||
| * | Parse bbcode when page loads | Andrew Manning | 2016-08-04 | 1 | -2/+2 | |
| | | ||||||
| * | Convert select bbcode tags including [observer], [baseurl], [sitename] | Andrew Manning | 2016-08-03 | 1 | -0/+1 | |
| | | ||||||
* | | multi acl: port /wiki | Mario Vavti | 2016-08-04 | 1 | -4/+13 | |
|/ | ||||||
* | disable wiki if feature disabled, sync updates of delayed publish posts | redmatrix | 2016-06-30 | 1 | -0/+5 | |
| | ||||||
* | Merge remote-tracking branch 'upstream/dev' into wiki | Andrew Manning | 2016-06-30 | 1 | -1/+18 | |
|\ | ||||||
| * | provide wiki as a feature (default is on so there aren't any surprises) and ↵ | redmatrix | 2016-06-29 | 1 | -0/+15 | |
| | | | | | | | | add to channel menu and profile tabs | |||||
| * | 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 | 1 | -0/+2 | |
| | | | | | | | | which should fix issue #431 | |||||
* | | Replace homemade table of content generator with existing jQuery plugin. Now ↵ | Andrew Manning | 2016-06-30 | 1 | -4/+2 | |
| | | | | | | | | toc is linked to document headings. | |||||
* | | Fixed bug with rendering table of contents upon page load | Andrew Manning | 2016-06-26 | 1 | -2/+3 | |
| | | ||||||
* | | Also generate table of contents when loading the page | Andrew Manning | 2016-06-26 | 1 | -0/+1 | |
| | | ||||||
* | | Added table of contents generator. Table is inserted wherever [toc] is ↵ | Andrew Manning | 2016-06-26 | 1 | -0/+1 | |
|/ | | | | encountered. | |||||
* | 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 | |||||
* | 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. | |||||
* | Add formatted heading for revision comparison viewer | Andrew Manning | 2016-06-20 | 1 | -1/+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 | |||||
* | Rename page feature added. Fixed bug in git commit function and other minor ↵ | Andrew Manning | 2016-06-15 | 1 | -4/+50 | |
| | | | | fixes. | |||||
* | some work to provide propagation and honouring of the item_notshown flag. | redmatrix | 2016-06-13 | 1 | -2/+2 | |
| | ||||||
* | Apply purify_html to page content before preview and save to prevent ↵ | Andrew Manning | 2016-06-12 | 1 | -15/+3 | |
| | | | | JavaScript code injection. | |||||
* | Revised permissions checks across API and enabled collaborative editing ↵ | Andrew Manning | 2016-06-08 | 1 | -79/+60 | |
| | | | | using the write_pages per-channel permission. | |||||
* | Hide page history viewer when viewing sandbox | Andrew Manning | 2016-06-05 | 1 | -1/+4 | |
| |