Commit graph

587 commits

Author SHA1 Message Date
friendica
746e4860fa more roadmap 2014-11-23 15:09:07 -08:00
friendica
d191e7c348 project roadmap 2014-11-23 14:51:04 -08:00
friendica
86b6861aae Merge https://github.com/friendica/red into pending_merge 2014-11-22 12:26:33 -08:00
friendica
b16f938830 random block widget 2014-11-22 12:26:04 -08:00
friendica
c785b5a90c doc updates 2014-11-22 12:25:49 -08:00
Habeas Codice
cf739c0361 Merge remote-tracking branch 'upstream/master' 2014-11-21 15:39:14 -08:00
Habeas Codice
b224f8056c new system config reserved_channels
prevents members from creating channels in a reserved list
2014-11-21 15:35:59 -08:00
friendica
afd8b2ddf2 random photo widget 2014-11-20 15:34:49 -08:00
friendica
7a1b345bc2 to-do update 2014-11-20 03:12:06 -08:00
Habeas Codice
6413395a76 Merge remote-tracking branch 'upstream/master' 2014-11-18 12:14:14 -08:00
Habeas Codice
6cc906fd1d update docs 2014-11-18 12:10:40 -08:00
friendica
7b39fac5f0 forgot to add catcloud to the widget doc 2014-11-17 20:11:05 -08:00
Habeas Codice
333f3b1715 Merge remote-tracking branch 'upstream/master' 2014-11-17 03:20:20 -08:00
friendica
87cdfc1751 doc updates 2014-11-15 14:03:28 -08:00
habeascodice
2dbecf9545 Merge branch 'master' of https://github.com/habeascodice/red 2014-11-13 13:30:29 -08:00
Habeas Codice
ac27db22c1 Merge remote-tracking branch 'upstream/master'
Conflicts:
	boot.php
	include/dba/dba_driver.php
	include/diaspora.php
	include/follow.php
	include/session.php
	include/zot.php
	mod/photos.php
	mod/ping.php
2014-11-13 13:06:31 -08:00
Habeas Codice
1a5a5c7edb PostgreSQL support initial commit
There were 11 main types of changes:
- UPDATE's and DELETE's sometimes had LIMIT 1 at the end of them. This is not only non-compliant but
it would certainly not do what whoever wrote it thought it would. It is likely this mistake was just
copied from Friendica. All of these instances, the LIMIT 1 was simply removed.
- Bitwise operations (and even some non-zero int checks) erroneously rely on MySQL implicit
integer-boolean conversion in the WHERE clauses. This is non-compliant (and bad programming practice
to boot). Proper explicit boolean conversions were added. New queries should use proper conventions.
- MySQL has a different operator for bitwise XOR than postgres. Rather than add yet another dba_
func, I converted them to "& ~" ("AND NOT") when turning off, and "|" ("OR") when turning on. There
were no true toggles (XOR). New queries should refrain from using XOR when not necessary.
- There are several fields which the schema has marked as NOT NULL, but the inserts don't specify
them. The reason this works is because mysql totally ignores the constraint and adds an empty text
default automatically. Again, non-compliant, obviously. In these cases a default of empty text was
added.
- Several statements rely on a non-standard MySQL feature
(http://dev.mysql.com/doc/refman/5.5/en/group-by-handling.html). These queries can all be rewritten
to be standards compliant. Interestingly enough, the newly rewritten standards compliant queries run
a zillion times faster, even on MySQL.
- A couple of function/operator name translations were needed (RAND/RANDOM, GROUP_CONCAT/STRING_AGG,
UTC_NOW, REGEXP/~, ^/#) -- assist functions added in the dba_
- INTERVALs: postgres requires quotes around the value, mysql requires that there are not quotes
around the value -- assist functions added in the dba_
- NULL_DATE's -- Postgres does not allow the invalid date '0000-00-00 00:00:00' (there is no such
thing as year 0 or month 0 or day 0). We use '0001-01-01 00:00:00' for postgres. Conversions are
handled in Zot/item packets automagically by quoting all dates with dbescdate().
- char(##) specifications in the schema creates fields with blank spaces that aren't trimmed in the
code. MySQL apparently treats char(##) as varchar(##), again, non-compliant. Since postgres works
better with text fields anyway, this ball of bugs was simply side-stepped by using 'text' datatype
for all text fields in the postgres schema. varchar was used in a couple of places where it actually
seemed appropriate (size constraint), but without rigorously vetting that all of the PHP code
actually validates data, new bugs might come out from under the rug.
- postgres doesn't store nul bytes and a few other non-printables in text fields, even when quoted.
bytea fields were used when storing binary data (photo.data, attach.data). A new dbescbin() function
was added to handle this transparently.
- postgres does not support LIMIT #,# syntax. All databases support LIMIT # OFFSET # syntax.
Statements were updated to be standard.

These changes require corresponding changes in the coding standards. Please review those before
adding any code going forward.

Still on my TODO list:
- remove quotes from non-reserved identifiers and make reserved identifiers use dba func for quoting
- Rewrite search queries for better results (both MySQL and Postgres)
2014-11-13 12:21:58 -08:00
friendica
226d695525 make it a bit personal 2014-11-12 23:55:04 -08:00
friendica
1c1705e060 ok, I think I'll give it a break now. 2014-11-12 19:43:54 -08:00
friendica
a77abb0694 minor word tweaks 2014-11-12 19:04:24 -08:00
friendica
634475164e wordsmith 2014-11-12 16:11:18 -08:00
friendica
9478fd7fd4 more minor wordsmithing 2014-11-12 16:04:49 -08:00
friendica
f41c748fe2 Some dates couldn't be verified without going way back in the archives so at least make this document accurate based on what I have in front of me. 2014-11-12 15:47:29 -08:00
friendica
40e3da7b4f add history link 2014-11-12 15:40:11 -08:00
friendica
4e7567ffa2 History of RedMatrix, Friendica, Mike Macgirvin, and associated other stuff. 2014-11-12 15:31:24 -08:00
Thomas Willingham
b29a968be8 Document reinstalling, or saying don't do that without explicitly stating don't do that. 2014-11-08 00:17:53 +00:00
zottel
add493ef4d update to German help files 2014-11-07 22:46:39 +01:00
friendica
d17c15a992 doc updates 2014-11-07 05:14:53 -08:00
friendica
e32a339a3d doc updates 2014-11-01 00:36:01 -07:00
friendica
7f0bd5a6e5 doc updates 2014-10-31 05:05:31 -07:00
Thomas Willingham
fbd027709a Debian doco - no longer uses dropbear. 2014-10-31 01:13:56 +00:00
habeascodice
bc02b93372 Merge remote branch 'upstream/master' 2014-10-29 03:39:07 -07:00
friendica
1b53d1c1d3 Merge https://github.com/friendica/red into pending_merge 2014-10-27 16:20:59 -07:00
friendica
583b445bc0 add "repository" permissions role and make sure we have a sane "accept" default for the custom role. 2014-10-27 16:19:30 -07:00
Jeroen
6ff795a9f2 Merge branch 'master' of https://github.com/friendica/red 2014-10-27 15:06:34 +00:00
Jeroen
eec0a67dde update nl + Terms of Service more prominent in the help files. 2014-10-27 15:05:59 +00:00
friendica
bc3e7c4cad some documentation of permission roles and what the differences are. 2014-10-27 02:17:30 -07:00
friendica
98bce0e719 the to-do list is getting longer again. 2014-10-24 14:31:21 -07:00
zottel
4d0455befd correction to addon footer 2014-10-24 17:09:37 +02:00
zottel
d98fcdf3fb update to German help 2014-10-24 17:08:50 +02:00
friendica
5ede7bd654 doc updates 2014-10-24 04:16:45 -07:00
Thomas Willingham
b27790302b Doco - politics, unwritten pages, links, and stuff. Nothing major. 2014-10-22 23:13:17 +01:00
habeascodice
fc12123329 missing custom/ description 2014-10-20 04:49:44 -07:00
friendica
bae3029c63 merge madness 2014-10-19 16:12:05 -07:00
friendica
88d63d1b77 new doc added to doc checkin 2014-10-19 15:55:22 -07:00
friendica
478e7c4479 doc updates 2014-10-19 15:54:51 -07:00
marijus
1ee2b631db lighttpd sample conf security enhancement 2014-10-16 22:52:28 +02:00
Thomas Willingham
11ad127c68 Let's not play security expert. Use Mozillas recommended server
config, even if it's ridiculously verbose.  Reasoning - they make
the browser, so if they've got it wrong, you're buggered anyway.
2014-10-16 01:57:04 +01:00
Thomas Willingham
1eb478ba54 SSL is broken you say? Well bah gum.
Someone probably needs to update Lighttpd and Apache too.
2014-10-16 00:47:02 +01:00
tuscanhobbit
9f95162593 one more hidden config 2014-10-13 21:29:47 +02:00
friendica
1f976fbfe6 bit of cleanup of hidden_configs. This is a start - we've got hundreds more. 2014-10-12 17:59:03 -07:00
Thomas Willingham
fd00a24957 Some more previously undocumented configs. 2014-10-11 18:37:07 +01:00
Thomas Willingham
2e2f101e0b Doco: Hidden configs - you won't believe what happens next!
Covered the P's, still need to do the X and just the configs.  Work in
progress, so not linked from the index yet.
2014-10-11 15:15:55 +01:00
friendica
8e7e488ffe doc updates 2014-10-10 00:13:00 -07:00
Klaus Weidenbach
33394f58ff Moved RedBrowser class from reddav.php to it's own file.
First step on cleaning up ReadDAV classes and restructuring it bit in
preparation for adding some more DAV features, photo access, CalDAV, etc.
and hopefully also some PHPunits.
Add a PHP5.3 namespace for RedDAV classes. Any objections against this or
the vendor namespace?
Add some more documentation for RedBrowser.
2014-10-06 23:38:33 +02:00
Michael Johnston
5eba3c17cb typo 2014-10-03 20:36:52 -04:00
friendica
f5623ae11d doc updates 2014-10-03 03:34:50 -07:00
habeascodice
5f58603158 relevant now that site statistics are all the hotness 2014-09-28 19:32:13 -07:00
friendica
1e7fbac6c1 doc updates, clean up buttons on PM edit template to match other edit buttons 2014-09-26 01:52:30 -07:00
friendica
81ee35e03b fix url mismatches of a single trailing slash for feed author/owner comparisons; update diaspora_compat 2014-09-23 20:55:22 -07:00
zottel
ccc97ffdc0 update German main help page 2014-09-23 16:35:30 +02:00
friendica
1c56442818 Repeat after me - we always refer to our clientelle as 'members'. If your software calls you a "user" - get rid of it. 2014-09-19 23:35:16 -07:00
friendica
083b5da967 doc updates 2014-09-19 02:22:12 -07:00
Thomas Willingham
595be9919b Merge branch 'master' of https://github.com/friendica/red 2014-09-18 17:08:23 +01:00
Thomas Willingham
65441b95bb Doco - permissions needs some work, but this is a relative whopper. 2014-09-18 17:07:47 +01:00
friendica
7167208345 forgot this one... 2014-09-17 22:30:25 -07:00
friendica
4014093572 implement permission roles - the backend should be done except for maybe a couple of small tweaks. Now we just need to define the rest of the roles and create a chooser for them. Adam started on this some time back but I don't know where that has gone. 2014-09-17 17:59:46 -07:00
friendica
cd79044778 no sense maintaining 2 to-do files. I think the one I'm removing is referenced online somewhere - which is why it wasn't done earlier. Can't find it, so just note that somebody will complain and we'll have to edit the pointer someday. 2014-09-16 23:12:50 -07:00
friendica
171719a774 additions and edits to the faq 2014-09-15 17:59:47 -07:00
friendica
56c1c5cd88 couple of edits to make this more current 2014-09-15 17:43:40 -07:00
Thomas Willingham
d2a4b34c98 Trivial typo - concatenated string that should be. Doesn't really
deserve it's own commit, but if I don't fix it now, nobody will notice for
another18 months.
2014-09-16 00:55:41 +01:00
Jeroen
eaf3bd3326 See comments on commit 5ab85b0. Also fixed some bb typo's in docu index. 2014-09-15 15:35:40 +00:00
Thomas Willingham
969f2530cc Doco - kill dupe 2014-09-13 19:56:30 +01:00
Thomas Willingham
d84eb8c79a Bring DB doco up to date 2014-09-13 19:27:24 +01:00
Thomas Willingham
f85aba3a1e Doco - some links that got stripped at some point 2014-09-13 18:51:51 +01:00
Thomas Willingham
a5a501c90f Here, have a semi-colon 2014-09-13 15:25:05 +01:00
Thomas Willingham
c8508a310f Only use one install file 2014-09-13 15:23:40 +01:00
friendica
701ae2981d doc updates 2014-09-12 01:59:31 -07:00
friendica
ab7f2db4d7 doc updates and a couple of issues spotted in the logs (diaspora likes, feed author import) 2014-09-12 00:59:23 -07:00
friendica
e00e55af57 keep the docs updated on what's happening. 2014-09-11 18:21:31 -07:00
friendica
6991a3ac01 more compatibility notes 2014-09-10 21:43:25 -07:00
jeroenpraat
9f5ad8e9de channel or account 2014-09-10 14:04:14 +02:00
jeroenpraat
e1ddcc32b7 should be updated 2014-09-10 14:03:19 +02:00
Thomas Willingham
1ce132a1ca Doco - URL update, kill dupe 2014-09-10 05:02:12 +01:00
Thomas Willingham
ec4f30c3f6 Merge remote-tracking branch 'upstream/master' 2014-09-09 21:32:25 +01:00
Thomas Willingham
652ec8c3fc Doco - note in Nginx file to kill a recurring support request. 2014-09-09 21:31:33 +01:00
friendica
a0b3ddca40 doc updates 2014-09-05 01:58:12 -07:00
friendica
1659e0e7ad update docs as D* members should now be able to participate in redmatrix forums. They will need to plus-tag the forum. There may still be minor issues, but nothing fundamentally at odds with this working. 2014-09-03 22:52:38 -07:00
friendica
17c1ddb77e updated compatibility notes 2014-09-02 04:39:01 -07:00
jeroenpraat
888c5dc849 missing ' 2014-08-31 21:25:33 +02:00
friendica
345d170236 doc update 2014-08-29 17:31:29 -07:00
friendica
2d210db1b8 ability to create/edit/delete custom profile field definitions - read the source. Currently the created entries aren't added to the allowed fields arrays, but this can be done by hand until that bit is made available. Only choice for input type at the moment is 'text' or a text input, not a textarea. Multiple choice will be added later. 2014-08-27 22:01:02 -07:00
friendica
287ce2576f thanks thomas... 2014-08-27 17:25:11 -07:00
friendica
b478fe8dff compatibility notes 2014-08-27 16:48:43 -07:00
friendica
9f22f28d2f doc update 2014-08-22 15:51:03 -07:00
zottel
ecf8b70794 updated German main.bb doco file 2014-08-20 14:44:55 +02:00
Thomas Willingham
8d3dc7541d Doco - attempt to explain pull requests in git for non developers. 2014-08-17 14:57:39 +01:00
RedMatrix
33d43a2a64 Merge pull request #566 from tonnerkiller/master
Posting by API and Wordpress plugin
2014-08-17 18:48:43 +10:00
Thomas Willingham
e3c8d36e06 Install doc - mcrypt is required, not optional. Even if it's intended
to be optional, it isn't.  WSoD abound without it.
2014-08-16 20:48:23 +01:00
tonnerkiller
03678716fe api_posting.bb is a new doco file that explains posting to the redmatrix from an external program by exampple of command line tool curl
main.bb is an updated version of the doco main site with a link to api_posting.bb
2014-08-16 13:13:57 +02:00
friendica
4286389654 doc update 2014-08-15 06:06:39 -07:00
friendica
41aa9e13cf doc update 2014-08-15 06:05:52 -07:00
friendica
2aef2ed56b Merge https://github.com/friendica/red into pending_merge 2014-08-08 15:27:47 -07:00
friendica
55aa0c1041 doc updates 2014-08-08 15:26:36 -07:00
zottel
08bee2a03a update German main help page 2014-08-08 14:28:02 +02:00
friendica
22312b9577 update to-do 2014-08-06 15:47:03 -07:00
friendica
1199fe415a doc updates 2014-08-01 01:23:50 -07:00
Jeroen
c7f00422d8 More doc updates 2014-07-30 21:06:18 +00:00
jeroenpraat
da4e2895d3 Inserted text from Network Privacy (changed this to Identity Privacy) 2014-07-30 22:39:43 +02:00
friendica
f0f6f1e080 Start of a comprehensive Privacy Policy document 2014-07-28 21:03:10 -07:00
friendica
52fa84135c wrong label on icon 2014-07-25 01:13:08 -07:00
friendica
67000917f4 doc updates 2014-07-20 00:23:35 -07:00
friendica
996914616c doc updates 2014-07-13 16:02:48 -07:00
zottel
dd1bf6e4c2 added link to privacy help file 2014-07-11 16:53:49 +02:00
friendica
c74fd78993 move smarty compiled files to store/[data]/smarty3 - which puts all writeable areas of the server except the config file and logs under the "store" directory. We'll do logs at a future time. 2014-07-10 21:34:52 -07:00
tonybaldwin
62ea1841d2 added link to nubasic in external resources/3rd party themes 2014-07-10 16:07:16 +02:00
Thomas Willingham
ffb7798a75 Minor doco 2014-07-08 21:58:32 +01:00
friendica
054d5e100f a bit of word cleanup 2014-07-06 19:44:34 -07:00
jeroenpraat
7317e2bad2 Added a help file about privacy (as promised). Please take a look and fix spelling and grammar. Maybe I forgot something (please add) or I used the wrong words. Be free to improve. 2014-07-07 00:17:58 +00:00
friendica
a22ec8cbfa doc updates 2014-07-04 20:34:34 -07:00
zottel
3654093dc0 update German docs 2014-07-02 14:50:03 +02:00
Thomas Willingham
2423e71b40 Doco - better wording. Unless it was intended to block indexing, but
it never did that - it always just blocked search (which seems to be
a sane default).
2014-07-01 18:12:59 +01:00
Thomas Willingham
03e4240a22 Doco - update raspberry pi install, mostly trivial, only real change
is to block search properly without relying on robots.txt which doesn't
really work.
2014-07-01 18:04:49 +01:00
Thomas Willingham
d2effa545c Doco - couple of extra features that aren't anymore. 2014-07-01 03:10:43 +01:00
Thomas Willingham
6bd9492e77 Doco - update Debian install. That link is out of date, and the git moved too. 2014-06-30 19:29:02 +01:00
Thomas Willingham
f18e121e10 Doco - move existing FAQ to new sub-FAQs 2014-06-30 18:54:09 +01:00
Thomas Willingham
7a079cd7dc Make [observer.baseurl] more reliable using connurl which will change
less often than xchan_url, which can break the regex and might not
even contain the baseurl at all, plus a bit of doco clean up.
2014-06-30 16:23:42 +01:00
friendica
4c669be2ef minor changes 2014-06-29 20:09:06 -07:00
friendica
b1e887209d very minor, we don't like the word "user" - it's downgrading. Everybody here is a "member". 2014-06-29 19:55:35 -07:00
RedMatrix
0bd2dbaf64 Merge pull request #518 from tluther/master
Doco work
2014-06-30 09:24:45 +10:00
Tobias Luther
f1d5ffda69 delete my original doc working backup folder 2014-06-29 21:20:43 +02:00
Tobias Luther
1a118a0828 Tidied the folder from old backups
created new files for a quick explanation of the use of accounts, profiles, channels
added FAQ for users, admins and developers (the last one might not be exactly necessary?)
created a file to explain posting for new users
created new file to explain nomadic identities for users
modified main.bb
2014-06-29 21:07:42 +02:00
root
a47971aefd Some doco work. Changed main.bb and added a return link to all .bb files and began planning new entries for user orientated documentation. 2014-06-29 18:32:40 +02:00
Daniel Frank
e7857879fb German translation for channels.md 2014-06-29 17:14:17 +02:00
Daniel Frank
6a76c0a775 Update Profile.md
added missing word
2014-06-29 16:25:59 +02:00
Thomas Willingham
d956b70370 Doco - update dav2fs instructions. That should never have worked,
but now it actually doesn't work.
2014-06-29 02:51:47 +01:00
Thomas Willingham
e6a29c7cea Doco - yeah, it really took four bloody checkins to finally get this right. 2014-06-28 19:53:31 +01:00
friendica
532b6f7fce doc update 2014-06-28 05:05:09 -07:00
Thomas Willingham
0f86e93884 Doco - update the right index this time, and only maintain one.
The doco needs cleaning up as we go along,  We should keep the bbcode
despite the failed experiment because identity tags are just too useful
to be without.
2014-06-26 05:11:01 +01:00
Haakon Meland Eriksen
c74e680ac0 Removed docs that were not translated 2014-06-24 20:51:22 +02:00
Haakon Meland Eriksen
b8dc9e855a Merge remote-tracking branch 'upstream/master' 2014-06-24 19:34:36 +02:00
Thomas Willingham
b2b47dcd7c Doco - oops, forgot the index 2014-06-24 04:41:33 +01:00
Thomas Willingham
f6ccb155a1 Doco - gnusocial doco from Randal 2014-06-24 04:35:25 +01:00
friendica
3878f1e69b another one ticked off 2014-06-23 18:01:18 -07:00
Thomas Willingham
388872949e Merge branch 'master' of https://github.com/friendica/red 2014-06-22 18:00:23 +01:00
Thomas Willingham
b47ff712de Minor doco 2014-06-22 18:00:04 +01:00
friendica
5968bc7f86 moods not working in other languages + doc updates 2014-06-21 16:04:00 -07:00
Thomas Willingham
ccb17972ab Doco - update external resources 2014-06-18 03:38:29 +01:00
tony baldwin
3336db5006 added QR code instruction 2014-06-16 07:48:44 -04:00
friendica
0f6c321e3f only show jotnets when posting conversation items 2014-06-14 20:16:40 -07:00
friendica
b5ea259666 try to force the update mode to fix the "starting up browser, quickly loads page 2 at the beginning" bug 2014-06-13 05:38:00 -07:00
friendica
376a51f8d8 doc updates 2014-06-06 23:56:52 -07:00
Thomas Willingham
30b355fa0d Doco - couple of typos 2014-06-03 19:20:01 +01:00
Thomas Willingham
565089feb4 Doco - 10% of the issues take up 90% of the time. The worst offenders are documented here. 2014-06-03 19:14:19 +01:00
friendica
d41b76aa11 cross some more stuff off the to-do list 2014-06-02 19:28:45 -07:00
friendica
3e687e6051 minor tweaks 2014-06-01 21:29:35 -07:00
friendica
c857c5a648 updated README 2014-05-30 15:52:40 -07:00
friendica
c37ee6f06f doc updates 2014-05-30 02:52:29 -07:00
Alexandre Hannud Abdo
80c5b540c7 fix links to doco regarding translation 2014-05-28 04:43:17 -03:00
friendica
eb58ef8834 added note about the chunked-encoding fiasco. 2014-05-27 18:10:11 -07:00
friendica
f67d54c542 Still a bit of work on remote app install, but we can check that one off the list. 2014-05-26 17:16:28 -07:00
friendica
e81f31c41c move some zot doco to our doc area and start on zot_structures 2014-05-26 16:38:39 -07:00
friendica
44533f330f doc additions 2014-05-23 14:53:37 -07:00
friendica
626eab99f8 add profile photo app because it is sometimes hard to find. Also doc updates 2014-05-23 14:52:55 -07:00
Thomas Willingham
9397f2dff6 Minor doco 2014-05-16 21:15:42 +01:00
friendica
b559134a14 more doc updates 2014-05-16 02:13:59 -07:00
friendica
6ac50faaa2 doc updates 2014-05-16 02:13:27 -07:00
friendica
e5e479b405 doc updates 2014-05-14 18:21:43 -07:00
friendica
9af818b133 explain default permissions choices better 2014-05-14 17:11:05 -07:00
friendica
b0dc3d3b4c add photo widget 2014-05-13 21:33:39 -07:00
friendica
13cf31ae73 update the tagging doco 2014-05-12 18:12:31 -07:00
jeroenpraat
6f78d4785c Docu update: https://redmatrix.nl/channel/jeroenpraat/?f=&mid=00eeea0d6df910aa92a02bcd292cf0b9e5f918281e34a771eddc485085e4ba0a@redmatrix.nl&zid=jeroenpraat%40redmatrix.nl 2014-05-12 20:15:25 +00:00
friendica
dbb83abff6 doc updates 2014-05-09 01:52:44 -07:00
friendica
4cf684a701 better checking for SSL servers, even though it probably doesn't fix the cookie bug 2014-05-08 18:50:33 -07:00
friendica
45ce3f4b13 You wouldn't think we need this text, but we really do. 2014-05-05 19:45:30 -07:00
friendica
8584b13e9c added text on concensus building and hints on when to make a feature optional or a plugin. 2014-05-05 19:33:48 -07:00
friendica
cdf5e08eb9 weekly update 2014-05-02 17:28:46 -07:00
friendica
14cf9572cd doc/strings update 2014-04-25 16:08:58 -07:00
friendica
ae1f9bf1c4 move create a new collection below the actual collection list again. failed experiment. 2014-04-18 15:31:15 -07:00
Thomas Willingham
3a96691e29 Doc - missing closing tag 2014-04-17 01:19:58 +01:00
Charles
51d7be6f24 added "network" as another user group for davfs 2014-04-16 17:12:49 -07:00
Thomas Willingham
9589d12c93 Doco - Add some troubleshooting for 0 byte files in Davfs2 2014-04-16 18:50:48 +01:00
tony baldwin
9919d109fd added breaks after added bbcode spoiler line 2014-04-12 08:44:28 -04:00
tony baldwin
e8de088037 added spoiler tag to bbcode help doc 2014-04-12 08:40:48 -04:00
friendica
2677ee0b49 doc update 2014-04-11 14:01:22 -07:00
sasiflo
f16fc1eb4f Added some more details about why browser-valid SSL certificates must be
used when SSL is used at all.

It is now in the check failure message in the installation routine, the
installation readme and in the documentation pages.
2014-04-10 23:41:18 +02:00
RedMatrix
22cdfef216 Merge pull request #396 from solstag/master
Update documentation on connecting to channels and on documentation.
2014-04-05 09:41:06 +11:00
Alexandre Hannud Abdo
022473bf6f Update documentation on connecting to channels and on documentation. 2014-04-04 19:31:48 -03:00
friendica
f832e59585 doc updates, plus back-end work for rpost to let you post to a different channel than your current logged-in channel. Need the same for rbmark back-end. Then we "just" need a selector widget on the editor forms. 2014-04-04 15:25:18 -07:00
friendica
3c23d1f9fe doc update 2014-03-28 01:12:36 -07:00
friendica
e6ea4a7574 ssl ciphers - be liberal in what we accept, conservative in what we generate 2014-03-24 17:16:01 -07:00
friendica
592f5591d9 update widget docs with archive widget changes 2014-03-23 20:08:42 -07:00
friendica
78f003e4a5 doc update 2014-03-21 01:14:35 -07:00
friendica
074d2839c0 doc update 2014-03-16 14:56:04 -07:00
Haakon Meland Eriksen
c2d520f1be API functions translated into Norwegian bokmål - typo 2014-03-12 20:27:22 +01:00
Haakon Meland Eriksen
a3dda80cc3 API functions translated into Norwegian bokmål 2014-03-12 20:21:56 +01:00
Haakon Meland Eriksen
843cef99ea Norwegian splash and main.bb doc 2014-03-11 22:49:26 +01:00
friendica
8b04db794f describe the known flaws 2014-03-08 23:45:26 -08:00
friendica
e1e107e424 advanced directory search help file 2014-03-08 23:18:34 -08:00
friendica
66dc228be8 HOWTO create a derived theme lesson 1. Do not attempt to do anything more complicated until you have successfully completed this exercise. 2014-03-08 21:13:42 -08:00