Commit graph

910 commits

Author SHA1 Message Date
Thomas Willingham
5dcf3aced3 My links are also out of date. 2014-12-18 17:45:28 +00:00
Oliver
daccc71469 deleted a dead link 2014-12-18 09:31:25 +01:00
friendica
538fc739a7 This needs a lot more cleanup but at least it's a bit more complete now. 2014-12-17 15:51:53 -08:00
friendica
29f24e9731 minor clarifications on a few settings 2014-12-17 14:32:25 -08:00
Thomas Willingham
8712b9d37f Doco - another handful of configs 2014-12-17 21:46:08 +00:00
Thomas Willingham
d82c7c2067 Minor doco 2014-12-16 18:13:04 +00:00
Thomas Willingham
723004a13a Merge pull request #746 from pafcu/autofollowdoc
Document the auto_follow option
2014-12-15 16:30:54 +00:00
Stefan Parviainen
5c20287f95 Document the auto_follow option 2014-12-15 17:17:15 +01:00
Thomas Willingham
372b7b1405 Doco: How to write foreign doco in how to write doco doco. 2014-12-15 15:56:00 +00:00
friendica
d3465802d6 doc update 2014-12-12 00:28:05 -08:00
friendica
452d275b5e don't import to sys channel from self-censored authors 2014-12-12 00:26:07 -08:00
friendica
7f1a42340a Merge https://github.com/friendica/red into pending_merge 2014-12-10 16:26:36 -08:00
friendica
58067c24fc block adult channels from inclusion in public content feeds 2014-12-10 16:24:31 -08:00
Thomas Willingham
a23af1f5f7 Issue #732 2014-12-09 19:14:58 +00:00
zzottel
88cfdb864c Merge pull request #731 from zzottel/master
add main_footer include to all .md files except TOS and README
2014-12-08 11:13:11 +01:00
zottel
8ddf16f1ee add main_footer include to all .md files except TOS and README 2014-12-08 11:06:37 +01:00
Christian Vogeley
f3789b1aeb merge 2014-12-07 16:09:03 +01:00
Christian Vogeley
098eb66ba0 merge 2014-12-07 16:07:34 +01:00
friendica
80ed4193f7 Merge https://github.com/friendica/red into pending_merge 2014-11-28 18:48:38 -08:00
friendica
af3bf10d2f doc updates 2014-11-28 18:47:59 -08:00
Thomas Willingham
728a0667c5 Doco - #710 flipped the colours. Unsurprisingly, they were the other
way round because they were created on a dark theme.  The right thing
to do is not to specify a colour at all, and let the themes handle it.
2014-11-28 18:02:58 +00:00
Andrew Manning
d89d4630d0 Documentation wording
Improved wording. Replaced white colored text with black because the
default theme makes the white invisible.
2014-11-25 06:46:06 -05:00
zottel
22340d105b update to Germanmain help file 2014-11-24 11:56:15 +01:00
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
friendica
16c2aa042f doc update 2014-03-07 14:30:24 -08:00
friendica
d58abc0230 add clock widget and correct some doco 2014-03-05 04:28:48 -08:00
friendica
d860ab3cc4 basic widget reference 2014-03-04 20:52:26 -08:00
friendica
f2c8559170 minor template and doc fixes 2014-03-04 03:27:53 -08:00
friendica
7cdfe48bb4 add choklet to the comanche docs 2014-03-02 17:15:33 -08:00
friendica
cc77538c69 change the docs for template tag 2014-03-01 17:53:57 -08:00
friendica
c402f39cf8 first draft of creating templates documentation 2014-03-01 17:44:18 -08:00
zzottel
745f20ccbf Merge pull request #345 from zzottel/master
correct bbcode link in German docs
2014-02-28 14:04:32 +01:00
zottel
8ae986b9c6 correct bbcode link in German docs 2014-02-28 14:00:50 +01:00
friendica
2d487f306d more doc 2014-02-28 01:31:08 -08:00
friendica
46f0de7120 try to fix youtube mixed content warnings 2014-02-28 00:57:35 -08:00
friendica
2a7e43c08f more to-to 2014-02-27 23:25:23 -08:00
friendica
019781f626 more tasks 2014-02-27 23:10:21 -08:00
friendica
102521844b put schemas in Comanche (this requires theme support (!)) 2014-02-27 20:48:10 -08:00
zzottel
05882df43a Merge pull request #342 from zzottel/master
German help
2014-02-27 18:35:54 +01:00
zottel
6c0fdbebeb some new German files 2014-02-27 18:35:03 +01:00
Thomas Willingham
ac383cf07b Can't type today 2014-02-27 16:33:36 +00:00
Thomas Willingham
9488bc0631 Who reverted that? 2014-02-27 16:31:25 +00:00
Thomas Willingham
46a3c4d804 Doc update 2014-02-27 16:28:29 +00:00
zottel
77e087a380 convert existing German help files to BBCode 2014-02-27 15:01:44 +01:00
Thomas Willingham
fea3422b46 Doco - just a friendicared => [baseurl] 2014-02-24 17:34:40 +00:00
Thomas Willingham
5cc70f75a4 The string replacement missed that little blighter. 2014-02-24 05:20:27 +00:00
Thomas Willingham
29f6975715 Import doco from docs@friendicared.net 2014-02-24 05:13:28 +00:00
friendica
f63e220939 Merge https://github.com/friendica/red into zpull 2014-02-21 23:52:20 -08:00
friendica
0501bab7dc doc update 2014-02-21 23:51:43 -08:00
zottel
a66e7d2999 changed old Friendica stuff to what we have now in Red 2014-02-21 22:27:21 +01:00
zottel
fe6cd80285 small corrections 2014-02-21 22:27:03 +01:00
zottel
d58068186b first few German help files 2014-02-21 22:26:29 +01:00
friendica
44d7047fce SECURITY: do not automatically open an iframe which points into the local website. 2014-02-20 21:15:35 -08:00
friendica
064962ff82 doc and assets update. There is what seems to be a controversial powerpoint in this checkin. The powerpoint is of course *open source* even if powerpoint itself is not. The source file is available for your examination and revision. 2014-02-14 12:25:27 -08:00
Thomas Willingham
8bf7b0fffd Doco - abcjsplugin from Olivier 2014-02-09 18:09:50 +00:00
friendica
fb49647993 doc updates 2014-02-07 00:49:45 -08:00
Thomas Willingham
be475bb0cc Minor doco - markdown doesn't like angle brackets. Also give instructions for mounting
one's own directory rather than the cloud root.
2014-02-07 00:24:39 +00:00
Thomas Willingham
94d874c0b2 Doc - Make TOS include work. 2014-02-01 11:55:36 +00:00
friendica
902c9b1585 doc updates 2014-01-31 20:02:45 -08:00
friendica
1915add7c1 Merge pull request #290 from git-marijus/master
add image floating to bbcode
2014-01-29 15:28:09 -08:00
marijus
4d23902d48 oups 2014-01-30 00:11:17 +01:00
marijus
fe2b6f3dfb add image floating to bbcode 2014-01-30 00:01:19 +01:00
Thomas Willingham
c48c7a64c7 Doco - add KDE/Gnome/Davfs2 instructions 2014-01-29 21:42:12 +00:00
friendica
8c8be2a05e add client field to chatpresence - which will give us a place to put IP addresses for webRTC. Might as well allow for that since we'll (soon) have presence. Then we wouldn't need SIP and folks can "just" p2p each other using any mechanism they wish if they have permission to do so. 2014-01-28 15:05:44 -08:00
friendica
3869b16298 prettyphoto (js|css) not found 2014-01-24 14:35:32 -08:00
tobiasd
420b330e55 the bootstrap theme is obsolete, use clean instead 2014-01-23 11:58:56 +01:00
friendica
3b375a3d3f fix location of string file in Translations.md, fix some permissions and owner vagueness (potential bugs) in profile_tabs() 2014-01-21 23:09:33 -08:00
friendica
6968f583ea Merge pull request #278 from zzottel/master
added feed2red.pl
2014-01-21 04:43:53 -08:00
zottel
46252f94a3 added feed2red.pl 2014-01-21 08:55:14 +01:00
marijus
19b6ed68c1 lighttpd sample conf update 2014-01-21 08:51:21 +01:00
Thomas Willingham
8c4f7216ed Nginx conf update 2014-01-21 05:51:54 +00:00
Thomas Willingham
583be04583 Debian install script doco 2014-01-21 05:26:59 +00:00
Thomas Willingham
3469e63ef5 Add BBCode extensions to doco 2014-01-20 23:34:21 +00:00
friendica
5b69e3b795 Add external resource list so this stuff doesn't get lost. Please update it if you know of other related projects. 2014-01-20 14:18:12 -08:00
friendica
3f7032e542 Merge https://github.com/friendica/red into zpull 2014-01-18 21:46:16 -08:00
friendica
db67f08d3c some more bookmark infrastructure plus a doc update 2014-01-18 21:45:42 -08:00
Thomas Willingham
52d52a6a4f Doco - s/chown/chmod 2014-01-18 05:24:51 +00:00
friendica
13d0a914c7 doc updates 2014-01-10 00:48:35 -08:00
friendica
3298768d95 directory creation error, display localtimes on cloud webpage, doc updates 2014-01-10 00:47:40 -08:00
friendica
6acff72d79 some doc updates 2014-01-08 20:20:15 -08:00
friendica
73102f0c26 teehee, tada, todo, etc. 2014-01-08 00:57:28 -08:00
friendica
8d562abe78 keep the to-do list somewhat current. 2014-01-08 00:03:01 -08:00
friendica
d2d071029f doc updates 2014-01-03 01:41:55 -08:00
friendica
ca8bf551d1 Shorten the to-do list some more. 2013-12-30 21:50:59 -08:00
friendica
5455a156b0 for once the to-do list is actually shrinking. 2013-12-30 15:46:38 -08:00
friendica
2cafe172dc more doc updates 2013-12-27 21:21:03 -08:00
friendica
121ee48963 sslify - remove the redirect fallback - as it gets called occasionally and creates mixed content exceptions. Let's see how we go without it. Also a doc update. 2013-12-27 21:19:23 -08:00
friendica
c5c5e8b4e0 knock a couple of items off the to-do list. There may still be some associated issues and/or feature requests but we'll deal with those separately. 2013-12-25 14:22:42 -08:00
friendica
b1ade138ff use colorbox for single photo viewing (replacing prettyPhoto, which may have license incompatibilities). Also set maximum size of a directory popup and let it scroll after that in case somebody set their profile keywords to the content of Webster's dictionary. 2013-12-25 01:05:46 -08:00
friendica
71dde7c687 use case-insensitive array search for matching directory keywords with your own 2013-12-23 22:56:32 -08:00
friendica
dcc58dec00 Provide Terms of Service placeholder page (includes doc/SiteTOS.md) 2013-12-22 19:56:22 -08:00
friendica
aa312f72bf comanchify mod_directory. Two modules remaining. Actually three because message needs to be split. 2013-12-20 12:43:04 -08:00
friendica
916f3e9afc doc updates 2013-12-20 01:39:05 -08:00
friendica
bccc20f38c default photo issue, and connections page showing deleted accounts. Also show last updated on connedit page 2013-12-19 19:16:46 -08:00
friendica
648a7a5735 add bbcode reference 2013-12-19 18:33:02 -08:00
friendica
564f431551 comanchificate mod_photos 2013-12-19 17:36:31 -08:00
friendica
9728a1303d There's always more to do... 2013-12-16 20:54:03 -08:00
friendica
1975fa50da doc additions 2013-12-13 01:14:15 -08:00
friendica
64b16f1e1a add construct_page hook 2013-12-13 01:13:35 -08:00
friendica
ed9f108722 comanchify the savedsearch widget 2013-12-09 21:20:55 -08:00
friendica
aad0e97862 description of work needed on photos module was duplicated 2013-12-08 20:17:26 -08:00
friendica
f2d8127012 update the to-do list 2013-12-07 13:17:41 -08:00
friendica
90fff1de1c doc updates 2013-12-06 00:11:03 -08:00
friendica
2563edab43 doc updates 2013-11-29 00:57:33 -08:00
friendica
8cd9a2c3a9 doc updates 2013-11-28 19:37:39 -08:00
friendica
f6b43a0a7b doc updates 2013-11-22 11:52:26 -08:00
friendica
f896819c78 There was one small typo - and I'm trying with great difficulty not to use the word "user" to refer to site members - especially in public documentation. In dev forums is another matter. It does exist in function names and the string "username" isn't considered derogatory, but most other times it's considered derogatory to site members. Channel is often another acceptable replacement. 2013-11-21 14:51:12 -08:00
Thomas Willingham
b170d80471 Remove telltale signs the doco was mostly stolen from APW 2013-11-21 19:42:04 +00:00
Thomas Willingham
35c465d4b7 Document schemas 2013-11-21 19:41:09 +00:00
friendica
5cf5cbd193 leave off the file extension 2013-11-18 19:20:11 -08:00
friendica
be0197a3a0 pull in some doco from the project wiki, keep it with the code 2013-11-18 19:17:25 -08:00
friendica
d049df8fa5 wordsmithing 2013-11-18 19:02:38 -08:00
friendica
1593c83728 update to reflect that account and channel removal is now possible, though bugs likely remain. 2013-11-18 19:00:33 -08:00
friendica
772e3795bf typo 2013-11-17 17:26:41 -08:00
friendica
92f37fd0d5 document extra features 2013-11-17 01:10:46 -08:00
friendica
808f0fc1d4 more to-do 2013-11-16 13:19:33 -08:00
friendica
e16943006b update to-do 2013-11-16 13:07:44 -08:00
friendica
f13c513aba update to-do list 2013-11-15 22:10:30 -08:00
friendica
0f93174b61 Let's provide a shared to-do list for code and doco 2013-11-15 15:15:44 -08:00
friendica
f9a622c44e doc update 2013-11-15 01:10:51 -08:00
friendica
13fb987b04 some minor documentation updates and corrections 2013-11-13 16:30:20 -08:00
Olaf Conradi
66a6dc1844 Add woff files to static download
This enables font downloading in binary mode.
2013-11-12 23:22:22 +01:00
Olaf Conradi
f55fec9ace Improve Nginx config to prevent php injection in uri
First check if php script exists before calling php-fpm.
2013-11-12 23:21:08 +01:00
friendica
97a109eed4 doc update 2013-11-09 12:15:34 -08:00
Olaf Conradi
37e8be8d3b Fix Nginx config for Nginx 1.4.x 2013-11-05 23:30:21 +01:00
friendica
8eed3a1006 doc updates 2013-11-02 15:45:38 -07:00
friendica
1380bee82c Comanche documentation and some cleanup of layout page (including link to doco) and a few other webpage related cleanups 2013-10-28 17:48:42 -07:00
friendica
c36fc59df3 doc updates 2013-10-26 01:27:19 -07:00
friendica
4d92cc05c3 init_1 is a valid hook 2013-10-19 16:29:23 -07:00
Thomas Willingham
49fb6326e0 Clean up dupes in hook list 2013-10-19 18:02:50 +01:00
friendica
f2daed5188 basic gotcha's enumerated when porting Friendica addons 2013-10-18 17:01:06 -07:00
friendica
ac23a1bfa2 put translate README into help docs 2013-10-18 15:57:10 -07:00
friendica
7e5570aa9c add hooklist to plugin page 2013-10-18 15:52:17 -07:00
friendica
4ce948731a doc - complete hook list, still need detailed functional descriptions with parameters and examples for each 2013-10-18 15:48:59 -07:00
friendica
3772682204 Put a status editor on the display page if you're logged in. This fixes issue #113 and also provides the ability to reshare from that page. 2013-10-18 14:25:55 -07:00
friendica
4a87ebfc12 doc updates 2013-10-18 14:25:27 -07:00
friendica
78475d349b and did it again 2013-10-16 21:51:42 -07:00
friendica
2cf136b186 wrong function name 2013-10-16 21:50:09 -07:00
friendica
da73813487 advanced plugins as a stepping stone to building modules 2013-10-16 21:00:14 -07:00
friendica
06e1e6a1b6 minor edits 2013-10-16 20:30:56 -07:00
friendica
aee569fc47 first cut at plugin author's guide 2013-10-16 20:04:52 -07:00
friendica
9cb3a44177 add code-style guidelines. These aren't laws or rules, they are guidelines. 2013-10-15 16:52:57 -07:00
friendica
09950745c1 doc updates 2013-10-11 20:43:53 -07:00
friendica
36440e190e doc additions 2013-10-04 04:47:24 -07:00
friendica
24dd15c205 doc update 2013-10-04 04:46:55 -07:00
friendica
bacab7a3f0 doc links 2013-10-01 18:50:08 -07:00
friendica
c98605df37 doc updates 2013-09-28 04:30:57 -07:00
friendica
96ad49b1b8 doc updates 2013-09-20 05:43:30 -07:00
friendica
3354abfd42 add -C cfgfile option to shred to allow multiple configurations. I just added the option for multiple configs, I didn't make it work as it requires quite a bit of change to the shred program flow; which tries to load the default config before doing anything at all. 2013-09-17 01:31:46 -07:00
Tazman DeVille
6c308a2d72 fixed link to wiki 2013-09-17 04:52:36 +02:00
friendica
83e086edcd doc update, put more telemetry on notifier and try to ensure that private posts have recipients. 2013-09-13 04:51:55 -07:00
friendica
77ba2dcb06 doc updates 2013-09-06 03:11:08 -07:00
friendica
63c60b224c provide mimetype selector on edit (pages and blocks) 2013-09-06 03:10:25 -07:00
friendica
625dcb911a doc updates 2013-08-31 04:22:40 -07:00
friendica
d43a765985 more debugging on localize_item top find out why likes are not translated in notifications, but are in displayed posts (using 'new' on matrix page) - in one case we're successfully pulling stuff from item['object'] and in the other we aren't - and it's the same object. 2013-08-31 04:19:26 -07:00
friendica
c2fe299d16 missing doc files 2013-08-24 18:56:26 -07:00
friendica
381f457c3f fix xchans more completely after a URL change 2013-08-24 16:52:38 -07:00
friendica
b5efa1a63a issue #82, posted order not working - also doc update 2013-08-17 06:30:09 -07:00
Thomas Willingham
9f2b651491 How did that end up there? Move sample config to right place. 2013-08-11 00:21:56 +01:00
friendica
7e97b358fd add a few missing doc pages 2013-08-09 01:24:50 -07:00
friendica
c02a930121 move sitekey creation to the account creation function instead of during channel creation. Channel import bypassed sitekey creation completely. We should do it during install, but it's possible somebody might have to install manually and the sitekey would never get created. This is the best compromise I can come up with. Looks like the doc tree was also updated in this checkin 2013-08-09 01:20:34 -07:00
friendica
8a7fea45cc doc updates 2013-08-03 00:41:40 -07:00
Christian Vogeley
4e447bb7e8 change back mod to 644 2013-08-03 01:31:11 +02:00
Christian Vogeley
f09ac4e597 Revert "Revert "merge""
This reverts commit 9294f72adb.
2013-08-03 00:18:14 +02:00
Christian Vogeley
9294f72adb Revert "merge"
This reverts commit c0cd147a3a, reversing
changes made to d2d1e54bfe.
2013-08-03 00:14:59 +02:00
Christian Vogeley
c0cd147a3a merge 2013-08-03 00:04:26 +02:00
friendica
1d816ba90a basic email invitations - and doc update 2013-08-02 03:45:40 -07:00
Christian Vogeley
37662c1f45 . 2013-07-27 22:37:06 +02:00
Christian Vogeley
3f57a28951 don't know why they were marked as changed 2013-07-27 22:30:34 +02:00
Christian Vogeley
b2053f7504 don't why they were marked as changed 2013-07-27 22:30:04 +02:00
friendica
53118a4352 add gz to access denied files to block rotated logs from public access 2013-07-26 03:50:46 -07:00
friendica
21c73ceb10 include zot 2013-07-25 17:52:55 -07:00
friendica
ade8174750 private pokes - perhaps a little *too* private. 2013-07-19 01:20:51 -07:00
friendica
5b73755af7 Merge https://github.com/friendica/red into zpull 2013-07-14 01:14:03 -07:00
friendica
8154268d0a new doc pages 2013-07-14 01:13:38 -07:00
friendica
39856f7cb1 Add self to recipient lists. Sure we already have a copy but it's possible our nomadic channel clones don't. 2013-07-14 01:12:05 -07:00
Thomas Willingham
e29961f818 Doco 2013-07-11 03:17:36 +01:00
friendica
6e880cfd49 use current channel photo for favicon where applicable - might be browser dependent but seems to work on FF 2013-07-07 17:22:40 -07:00
friendica
28e0665cad doc update, plus possible fix to "complex delivery chains" issue. Basically when the top-level post creator replies to a thread he sent to a forum via tags, it isn't getting redelivered to the forum members. 2013-06-29 02:04:44 -07:00
Thomas Willingham
5bbda45cb1 Verbose Nginx conf. Essentially the one from Friendica with a few alterations. 2013-06-23 20:55:57 +01:00
friendica
b0fdfd0ca3 upgrade doco 2013-06-21 15:16:06 -07:00
friendica
e16d678aab relocate tagadelic to include/taxonomy 2013-06-21 15:15:07 -07:00
friendica
765d6e0a97 push refresh messages, performance work on conversations and configs, doc updates 2013-06-14 16:54:58 -07:00
Thomas Willingham
047967da99 Nginx config - add an index in case they don't have a http block 2013-06-13 18:47:22 +01:00
Thomas Willingham
9992b1ffe6 Add sample nginx conf in doc/install - we'll keep configs and trouble shooting doco here, where everything can be plain text,
since it's for people who haven't got Red installed yet/properly, and may not be able to read markdown easily.
2013-06-13 17:46:23 +01:00
friendica
ee1ecd8ea2 remove uploaded import file once we're done with it. 2013-06-08 16:29:56 -07:00
friendica
25a55219ec quick and dirty (real dirty) template doco 2013-06-03 16:39:50 -07:00
friendica
6cafab10e6 fix pager, doc update 2013-06-03 16:29:33 -07:00
Thomas Willingham
09f44b8096 Update doco 2013-05-29 02:48:36 +01:00
friendica
5c1f959c18 set default contact affinity back to 99 - we'll solve the other problem another way, this one is flawed 2013-05-24 06:02:30 -07:00
friendica
367b21f886 Merge https://github.com/friendica/red into zpull 2013-05-18 01:27:14 -07:00
friendica
f2de266ce6 doc update plus fix the "only to those in my address book" permission 2013-05-18 01:25:54 -07:00
Thomas Willingham
8e22e72b2e Typo 2013-05-18 02:52:15 +01:00
Thomas Willingham
d6fed739cf Doco 2013-05-16 04:44:41 +01:00
friendica
bbca8a906a Merge pull request #53 from beardy-unixer/master
Doco
2013-05-14 21:29:50 -07:00
friendica
5e4b9d7766 disable pcss when installing since modules don't yet work and pcss uses the view module, plus weekly doc update 2013-05-14 21:25:58 -07:00
Thomas Willingham
304934a90c (doco) Use Github issue tracker instead of Friendica forum. 2013-05-14 19:50:41 +01:00
Thomas Willingham
96fa691f8a Doco 2013-05-14 19:14:30 +01:00
friendica
34526e8253 doc cleanup 2013-05-10 03:59:11 -07:00
friendica
946554ff4b doc update 2013-05-10 03:52:06 -07:00
friendica
ac64c93bf8 doc update 2013-04-26 15:09:35 -07:00
friendica
552f03122c db abstraction layer 2013-04-22 20:02:21 -07:00
friendica
9e22ec928b more umbilical cutting 2013-04-18 21:06:31 -07:00
friendica
5c43c57ce1 doc update 2013-04-16 16:23:35 -07:00
friendica
36bfe90882 update doco 2013-04-16 16:05:05 -07:00
friendica
b84d8bfbc9 begin to cut the umbilical 2013-04-14 22:24:47 -07:00
friendica
8148b7c32f update manage table and some documentation 2013-03-27 19:02:01 -07:00
friendica
5a29f511c1 add xconfig table and functions, update strings and doco 2013-03-15 15:36:58 -07:00
friendica
4cfbdfa6db cleanup affinity tool 2013-03-03 23:38:08 -08:00
friendica
ed2ff18cac remove date on the footer 2013-02-26 19:01:56 -08:00
friendica
c1e2f95484 doc update 2013-02-26 18:26:33 -08:00
friendica
0ee1e83a3c small doco update 2013-02-26 16:04:28 -08:00
friendica
b69fca14e7 initial doco 2013-02-26 15:49:37 -08:00
Michael Johnston
6199e1d5b8 add siteinfo.tpl 2013-02-20 21:56:59 -05:00
friendica
8e8482355b more heavy lifting 2012-10-23 17:14:50 -07:00
Simon L'nu
6b414d3de4 more ' = ' spacing fixes
Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
2012-04-10 23:45:47 -04:00
Simon L'nu
2af41ee57b [fix] absolute links in docs and newmember.php; breaks sub-dir installs
Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
2012-04-10 23:34:39 -04:00
Klaus Weidenbach
1f9fe8b5ee Remove Gravatar from core and add new hook avatar_lookup.
This patch removes all occurances of Gravatar from friendica's core and adds a new hook "avatar_lookup" inside the function avatar_img($email) where the new *avatar-plugins should hook in.
I haven't touched the language files yet. Are they updated automatically somehow?
2012-04-09 21:22:09 +02:00
Alexander Kampmann
355c42cb30 Merge branch 'master' of https://github.com/friendica/friendica
Conflicts:
	include/config.php
	update.php
2012-04-05 13:39:15 +02:00
Thomas Willingham
1457d6e90f Modified peopleyouknow to handle sites without Facebook better 2012-04-02 01:26:45 +01:00
Thomas Willingham
8c9c561f6c New user quick start. 2012-04-02 00:23:58 +01:00
Thomas
7e10401ec0 doc/Account-Basics.md 2012-03-06 19:15:40 +00:00
Thomas
bab865b14e doc/Account-Basics.md 2012-03-06 19:15:24 +00:00
Thomas
aed5a8e2e5 a 2012-03-06 19:11:24 +00:00
Thomas
6720c83a4a doc/Remove-Account.md 2012-03-06 19:07:15 +00:00
Thomas
2772bb7f58 doc/Making-Friends.md 2012-03-06 19:04:42 +00:00
Thomas
ec1740cd40 doc/Bugs-and-Issues.md 2012-03-06 18:55:45 +00:00
Thomas
1bf9f3823c doc/Account-Basics.md 2012-03-06 18:48:39 +00:00
friendica
f5c5da742d attribution issue - don't take author name from contact if available from item. 2012-02-24 20:03:13 -08:00
friendica
b95e3ac496 more privacy docs 2012-02-24 12:52:50 -08:00
Simon L'nu
4e3506fce3 clean up Groups help file. there was a stray 'Freindika' in it
Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
2012-02-22 06:05:48 -05:00
Simon L'nu
49179f9033 add :headdesk and fix doc/Pages.md to remove the absolute URL to /
Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
2012-02-19 05:17:26 -05:00
friendica
48f5bd492d naked link with no protocol being passed from Diaspora 2012-02-16 23:14:36 -08:00
friendica
94c7289a3f updates to plugin docs 2012-02-13 19:06:15 -08:00
friendica
068cb53a9e page delegation 2012-01-26 20:08:02 -08:00
friendica
8aa2552372 add remove_user hook (it looks like dreamhost changed all my file permissions, this will make a nasty commit) 2012-01-18 16:21:30 -08:00
friendica
c568493f57 add expire_starred option, fix "delete selected" on some themes, new project name in email templates 2011-11-21 19:01:05 -08:00
friendica
6726d406f0 revup - change connector config link in doc 2011-11-15 12:01:21 -08:00
Friendika
02a1fdacd7 strip duplicate code blocks bb2d* 2011-11-08 15:38:06 -08:00
Friendika
6d507a840a some doc updates 2011-11-08 14:12:01 -08:00
Friendika
cc1c015f20 @ completion is a bit too greedy 2011-11-05 21:43:58 -07:00
Abinoam P. Marques Jr.
7f6e507457 Added addon installation instruction. Exclusive repo. 2011-09-27 00:18:08 -03:00
Abinoam P. Marques Jr.
c52ef08578 Changing the git url to Free-Friendika at Install.md. It's lacking addon install instruction. 2011-09-26 23:51:46 -03:00
Abinoam P. Marques Jr.
e20ba2c271 Changing git url for Free-Friendika 2011-09-26 23:45:08 -03:00
Friendika
6eb6b8f969 updated documentation 2011-09-05 19:19:58 -07:00
Erkan Yilmaz
0401130246 typos + adapt 2011-09-02 08:15:36 +02:00
Friendika
43110db749 begin invites, fb setup changes 2011-07-17 16:08:47 -07:00
Friendika
980d3864cb document newmember link so you can find it later. 2011-06-03 06:49:57 -07:00
Friendika
1e0d3173f8 i before e, except after.... 2011-06-01 21:15:20 -07:00
Friendika
ce25042a84 explain that blocking profile wall access will effectively block OStatus communications. 2011-05-25 17:25:07 -07:00
Friendika
990d5e82a0 doc updates - connecting to services 2011-05-18 17:29:12 -07:00
Friendika
8fa9ca520b "show all n comments" comes back after toggled and ajax updated, plus connector doc improvements 2011-05-17 17:40:00 -07:00
Friendika
c4f7c37835 "installing connectors" help page 2011-05-12 21:56:28 -07:00
Friendika
34f3cb68a6 document the end-user steps needed to use optional Facebook connector 2011-05-05 20:35:46 -07:00
Friendika
ebfe536ded expose "friendika" (about) page 2011-04-29 16:58:19 -07:00
Friendika
b603641807 doc updates 2011-04-22 00:11:28 -07:00
Friendika
741a262f1b updated docs to reflect email contacts 2011-04-18 01:48:29 -07:00
Friendika
158b65894a initial checkin mailbox reading functions - lots more to do 2011-04-15 19:16:37 -07:00
Friendika
44c47f118c "profile locator/address" is now called "Identity Address" to reduce confusion 2011-04-14 20:37:42 -07:00
Friendika
17a7dae67d doco 2011-04-13 16:58:21 -07:00
Friendika
767f165965 local documentation library 2011-04-13 07:07:21 -07:00