aboutsummaryrefslogtreecommitdiffstats
path: root/include/nav.php
Commit message (Collapse)AuthorAgeFilesLines
* incutio xmlrpc library uses old-style (php4) constructors which have been ↵redmatrix2016-09-041-1/+1
| | | | deprecated for some time. They should still work on 7.0, but it's only a matter of time before they go away.
* fix register link if logged inMario Vavti2016-09-041-1/+1
|
* show home icon in first position in nav, provide register link also if ↵Mario Vavti2016-09-021-2/+2
| | | | register policy is set to approve and whitespace cleanup
* provide techlevels in the pro server role. Should have no visible effect on ↵redmatrix2016-08-311-0/+1
| | | | other roles.
* use config system.server_role and deprecate 'UNO'redmatrix2016-08-071-9/+11
|
* force immediate avatar updateTreer2016-07-031-0/+13
|
* provide wiki as a feature (default is on so there aren't any surprises) and ↵redmatrix2016-06-291-0/+2
| | | | add to channel menu and profile tabs
* add letsencrypt x3 intermediate cert and new cert file, improve UX of new ↵redmatrix2016-06-271-2/+2
| | | | registrations
* simplify context help js and move it to main.js where all the nav related js ↵Mario Vavti2016-04-231-13/+4
| | | | resides, do not close the context help if we click outside of it - members might want to work on something while help is open, move the link to /help to dropdown-menu.
* some fixes for contextual help and disable transition animation for now - it ↵Mario Vavti2016-04-211-6/+11
| | | | looked really wired because main moved with a different speed than help-content and help-content can not be displayed under the panel as it is implemented now.
* Added admin/site setting that toggles context help panel. If disabled, ↵Andrew Manning2016-04-211-0/+6
| | | | original help menu button behavior is restored.
* Merge branch 'dev' into toggle-context-helpAndrew Manning2016-04-201-1/+1
|\
| * module updatesredmatrix2016-04-181-1/+1
| |
* | Try toggling context help using onclick attributeAndrew Manning2016-04-191-2/+3
|/
* issue #340redmatrix2016-04-061-9/+1
|
* fix contextual helpMario Vavti2016-04-051-3/+2
|
* Merge pull request #338 from anaqreon/contextual-helpredmatrix2016-04-051-3/+13
|\ | | | | Contextual help
| * Merge branch 'master' of https://github.com/redmatrix/hubzilla into ↵Andrew Manning2016-04-031-23/+21
| |\ | | | | | | | | | contextual-help
| * | Search docs/context/ hierarchically for help.html files to reduce redundancyAndrew Manning2016-03-261-2/+7
| | |
| * | Override navbar help button to open contextual help panel. Contextual help ↵Andrew Manning2016-03-211-3/+8
| | | | | | | | | | | | for mail written.
* | | issue #138 ; make ajaxchat optional and configurable. For reasons we've ↵redmatrix2016-04-031-1/+1
| |/ |/| | | | | discussed repeatedly the ajax chat will not be removed from core as XMPP chat does not provide decentralised access control compatible with nomadic identity.
* | static Appredmatrix2016-03-311-17/+17
| |
* | deprecate $a->get_baseurl()redmatrix2016-03-301-3/+3
| |
* | some work on mod chatMario Vavti2016-03-301-3/+1
|/
* uno stuffredmatrix2016-02-051-8/+11
|
* some heavy private mail restructuring - work in progressMario Vavti2015-09-241-4/+4
|
* looks like chat has been neglected a bit recentlyredmatrix2015-09-201-3/+2
|
* change matrix to grid, begin webfinger optimisationredmatrix2015-09-161-2/+2
|
* more work on db storage of docoredmatrix2015-07-051-2/+2
|
* DB changes for some channel flagsredmatrix2015-06-151-7/+2
|
* adjust icon sizeMario Vavti2015-05-071-1/+1
|
* whitespacefriendica2015-03-091-2/+1
|
* make network page default options work more or less universally instead of ↵friendica2015-03-091-2/+1
| | | | just from the navbar, and fix some saved-search weirdness related to the delete-term icon
* remote_user => remote_channelfriendica2015-01-281-2/+2
|
* local_user => local_channelfriendica2015-01-281-11/+11
|
* Make nav search use textcompleteStefan Parviainen2015-01-071-9/+1
|
* Add hint on how to use search boxStefan Parviainen2014-12-141-0/+1
|
* Add some ids to nav elementsStefan Parviainen2014-12-121-27/+27
|
* Merge remote-tracking branch 'upstream/master'Habeas Codice2014-11-131-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | 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
| * Use consistent terminology for channel directoryStefan Parviainen2014-11-091-1/+1
| |
* | PostgreSQL support initial commitHabeas Codice2014-11-131-1/+1
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
* merge madnessfriendica2014-10-191-1/+1
|
* Login menuStefan Parviainen2014-10-161-6/+5
|
* fix userinfo icon sizemarijus2014-10-091-1/+1
|
* network page default optionfriendica2014-10-041-1/+4
|
* implement a "powered-by" but leave it turned off until somebody with a good ↵friendica2014-09-291-0/+7
| | | | eye for layout can figure out where best to put it.
* Navbar notifications: don't show "nothing new here" unless we've checked and ↵friendica2014-09-201-1/+1
| | | | there's nothing. Until we know for sure, display "Loading...".
* aalso change the way we check for number of chatroomsmarijus2014-09-201-2/+2
|
* show bookmarks menu only if we have any bookmarks alreadymarijus2014-09-201-2/+7
|
* nav channel selectionfriendica2014-08-181-1/+14
|