Skip to content
Snippets Groups Projects
  1. Nov 02, 2009
  2. Oct 20, 2009
    • Andreas Gohr's avatar
      Coding Standard Cleanup · db959ae3
      Andreas Gohr authored
      Ignore-this: 259cb5773c3144c6c706d87298dcf674
      
      darcs-hash:20091020212338-7ad00-6bf1c5c403491f136a1c02af5ecd9f84d7227107.gz
      db959ae3
  3. Oct 07, 2009
    • Andreas Gohr's avatar
      New dformat() function for fuzzy date support · f2263577
      Andreas Gohr authored
      Ignore-this: 7193cd788fee2c05a9068bf6edd5dc17
      
      It is now possible to use the %f placeholder in $conf['dformat']
      to add a fuzzy age string.
      
      Template developers and plugin authors should replace their strftime +
      $conf['dformat'] calls with calls to the new dformat() function.
      
      Example:
      
         %Y/%m/%d %H:%M (%f) produces dates like this:
      
         2009/09/16 10:36 (3 weeks ago)
      
      darcs-hash:20091007133614-6e07b-677108d1b43928ef8fd886813e43514507b5e073.gz
      f2263577
  4. Oct 04, 2009
  5. Sep 21, 2009
    • Andreas Gohr's avatar
      diff view puts revision back into $REV · 6f8e9f59
      Andreas Gohr authored
      Ignore-this: c671d4887772c0e08b04687472a5142f
      
      When a diff is shown without giving a revision (eg when coming from recent
      changes), the diff is done agains the latest non-current revisions. This
      revision is now put back into the global $REV.
      
      This fixes a problem with the restore button not visible.
      
      However this only works when the restore button is called after the diff
      view. A better solution probably needs to be found.
      
      darcs-hash:20090921213302-7ad00-aa9ef53f9bc9ea8d0dc51e55b049943feb11c412.gz
      6f8e9f59
  6. Sep 20, 2009
    • Kazutaka Miyasaka's avatar
      enhanced full-text search function · 865c2687
      Kazutaka Miyasaka authored
      Ignore-this: cb05f50ca4de12e1cdf3a6cfb0e1b8bc
      
        - better search experience in Asian language
        - sophisticated search query syntax (OR, grouping, etc.)
      
      darcs-hash:20090920121116-9b77a-2718be7a043374669037b10d94101fc70efb95e3.gz
      865c2687
  7. Jul 25, 2009
  8. Jun 06, 2009
  9. May 31, 2009
    • Andy Webber's avatar
      Enhance "locked by" page · 6d233a0c
      Andy Webber authored
      Make "locked by" name in main part of locked page use "showuseras" config (via editorinfo()). This was missed from editor_info_patch of October 2008
      
      darcs-hash:20090531132514-6ad63-9ae8e1aad5b7f68573cb0c41fad8c141db2ead6f.gz
      6d233a0c
  10. May 26, 2009
  11. Mar 11, 2009
    • daniel.lindgren's avatar
      Search function update · b42bcfe7
      daniel.lindgren authored
      Ignore-this: 4cd6bddacb795ef15f133559c223ac1f
      
      * Adds the possibility to exclude namespace(s) from search, by preceding them with "^".
      * Changed handling of search parameters to allow any order of words and namespaces.
      
      darcs-hash:20090311160255-13810-c2e00cc7764d180967b4c6f22e17b1c0dafe36f4.gz
      b42bcfe7
  12. Feb 13, 2009
  13. Feb 02, 2009
  14. Jan 22, 2009
  15. Jan 20, 2009
  16. Jan 19, 2009
  17. Jan 16, 2009
  18. Dec 13, 2008
  19. Nov 19, 2008
    • Chris Smith's avatar
      FS#630: allow $conf['useheading'] to individually apply to content links and/or navigation links · fe9ec250
      Chris Smith authored
      $conf['useheading'] values are now:
      - 0            : off, use page name in link text
      - 'content'    : use first heading text for links in wiki page content
      - 'navigation' : use first heading text for links in non-page content, e.g. breadcrumps, backlinks, search results, etc.
      - 1            : use first heading text in all links
      (for backwards compatibility, any other values are mapped to 0 or 1 by empty() function.)
      
      $conf['useheading'] value should now be checked using the useHeading($linktype) function,
      where linktype can be "content" or "navigation"
      
      darcs-hash:20081119140758-f07c6-6e26456d50dcecc949fada31b0d4e72877fde1cc.gz
      fe9ec250
  20. Nov 09, 2008
  21. Oct 16, 2008
  22. Oct 12, 2008
  23. Oct 11, 2008
  24. Oct 01, 2008
    • Andy Webber's avatar
      editor_info_patch · dc58b6f4
      Andy Webber authored
      At present, DW shows the username on the bottom left under "logged in as", and the login name for "last modified", "locked by" and under
      revisions/recent changes. In a corporate environment, particularly when integrated with a Single Sign-On system, the login name may be somewhat
      unfriendly. This patch makes the "logged in as" the same as the value used elsewhere and also allows an admin to decide whether it should be the
      login name, username or e-mail address that is displayed. The e-mail address may also, optionally, be a mailto: link. E-mail addresses are
      obfuscated according to the 'mailguard' setting. The default behaviour is to show the login name which is no change from previous behaviour for the
      "last modified"/"locked by"/revisions/"recent changes", but is a change for the "logged in as".
      
      darcs-hash:20081001152914-6ad63-9cd7174068ac55de381f1318a4401f8c51de5b0c.gz
      dc58b6f4
  25. Aug 30, 2008
    • Gina Haeussge's avatar
      Fix for FS#1478 · f7c7911a
      Gina Haeussge authored
      darcs-hash:20080830211206-2b4f5-4f7073d95c950329f7bd2a6eb9bced948e37db1f.gz
      f7c7911a
  26. Aug 14, 2008
    • Andreas Gohr's avatar
      display the (shortened) namespace for page quicksearch · bd2f6c2f
      Andreas Gohr authored
      When displaying pagename matches in the Ajax quick search or normal search,
      the namespace of the page is shown behind the pagename. This makes it easier
      to distinguish the pages when the same namespace is used in different namespaces.
      
      To avoid breaking the layout in deep nested namespace hierarchies, the namespace
      is shortened in the middle when needed.
      
      This patch also disables the effect of the useheadings option in the Ajax quick
      search. After all the results should show what was found and since the search
      works on pagenames not headings it should show pagenames as result.
      
      darcs-hash:20080814194826-7ad00-9add9c1bbbb4f4ede3c6884d37427644b2cddc56.gz
      bd2f6c2f
  27. Aug 12, 2008
  28. Jul 15, 2008
    • Andreas Gohr's avatar
      remove sensitive data from debug output more aggressively · 24297a69
      Andreas Gohr authored
      This patch adds a new function that is used to remove sensitive data from
      the debug output in a broader way. It will remove some innocent data but
      should make sure most passwords and similar data can not be accessed even
      when stored in some plugin's configuration data.
      
      Disabling the debug option is still highly recommended.
      
      darcs-hash:20080715211616-7ad00-19334e56d3910bcaa04147c4c59e0c59571764f3.gz
      24297a69
  29. May 04, 2008
Loading