Skip to content
Snippets Groups Projects
  1. Dec 26, 2008
  2. Dec 13, 2008
  3. 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
  4. Oct 12, 2008
  5. Oct 11, 2008
  6. 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
  7. Aug 30, 2008
    • Gina Haeussge's avatar
      New event TPL_TOC_RENDER · 7dee3468
      Gina Haeussge authored
          This new event is triggered directly before rendering the TOC. An array
          containing the current TOC items is given as eventdata and can be modified
          by action plugins to e.g. add additional items to the TOC.
      
      darcs-hash:20080830192033-2b4f5-29611563677679f5bfc0d030019e23d7e9a6bcf5.gz
      7dee3468
  8. Aug 17, 2008
    • Andreas Gohr's avatar
      tpl_actiondropdown added · a00de5b5
      Andreas Gohr authored
      This new template function allows a dropdown menu to be used to access all
      the DokuWiki do actions with minimal space requirement.
      
      darcs-hash:20080817203841-7ad00-f267285a3e9f119c5aaaf73ca276e3a2f1f72a94.gz
      a00de5b5
  9. Aug 15, 2008
  10. Jun 20, 2008
  11. Jun 19, 2008
  12. Jun 08, 2008
  13. May 04, 2008
  14. Apr 08, 2008
  15. Mar 13, 2008
  16. Mar 10, 2008
    • Andreas Gohr's avatar
      allow dynamic passing of template to use for css.php · 124af657
      Andreas Gohr authored
      This patch makes it possible to pass the template name to use to the
      lib/exe/css.php dispatcher. When passed the $conf['template'] option is
      ignored by the disaptcher and the given template is used instead.
      
      This makes it possible to switch templates dynamically without loosing the
      CSS dispatcher functionality. This might be useful for things like the
      multitemplate template or for loading a template based on the user agent.
      
      darcs-hash:20080310201630-7ad00-2062fa939b1f868540031ea42a42e948dd82bbb4.gz
      124af657
  17. Feb 27, 2008
    • Guy Brand's avatar
      Add namespace changes mail notifications · 52b0dd67
      Guy Brand authored
      This patch lets DokuWiki send mail notifications when any page inside
      a namespace gets modified. Two actions are introduced: subscribens and
      unsubscribens and two new buttons also appear in the bundled template.
      
      darcs-hash:20080227155024-19e2d-8ce5bd66f4e870db31d6b438516599f294365ce1.gz
      52b0dd67
  18. Feb 23, 2008
    • Andreas Gohr's avatar
      use strftime() instead of date() FS#1335 :!: · e656dcd4
      Andreas Gohr authored
      This patch replaces the use of the date() function with the strftime()
      function. The latter will respect a set locale and will use localized
      strings for things like month names.
      
      Because the format options for strftime differ from the ones used in date,
      DokuWiki will rest the value of $conf['dformat'] if it contains an old
      date format string (detected by missing % characters).
      
      Plugins or templates using the $conf['dformat'] need to be updated.
      
      darcs-hash:20080223124045-7ad00-6afb2b839afc58781463e25577e06adb675fff79.gz
      e656dcd4
  19. Jan 22, 2008
  20. Jan 18, 2008
  21. Sep 29, 2007
  22. Sep 30, 2007
    • Andreas Gohr's avatar
      don't use realpath() anymore (FS#1261 and others) · 00976812
      Andreas Gohr authored
      The use of realpath() to clean up relative file names caused some
      trouble in certain setups relying on symlinks or having restricitve
      file structure setups.
      
      This patch replaces all realpath() calls with a PHP only replacement
      which should solve those problems.
      
      darcs-hash:20070930184250-7ad00-512ff04c95f57fc9eaf104f80372237a3c94286f.gz
      00976812
  23. Sep 04, 2007
  24. Aug 18, 2007
    • Andreas Gohr's avatar
      typo fix FS#1229 · f6547e5d
      Andreas Gohr authored
      darcs-hash:20070818222239-7ad00-d427f89d0cd9cdc88cf99538209e50e1b001ea9c.gz
      f6547e5d
  25. Aug 13, 2007
  26. Aug 05, 2007
    • chris's avatar
      minor fixes for recent tpl_toc() patch · 2bb0d541
      chris authored
      darcs-hash:20070805163833-9b6ab-82e8cd7ec37d163ccb552e3b6aee8c1f70e75f15.gz
      2bb0d541
    • Andreas Gohr's avatar
      separated TOC from page · b8595a66
      Andreas Gohr authored
      This patch introduces a tpl_toc() function which can be used to freely place
      the Table of Contents in a template. When used, tpl_content should be called
      with a parameter of false to supress the automatic TOC placement.
      
      Note: if tpl_toc() us run *before* tpl_content(), TOCs will not work in the
      preview. A work around is to run tpl_content() in a output buffer first.
      
      This patch also adds a getTOC() function for admin plugins which allows plugin
      authors to put create their own TOC which will be placed correctly in the
      template. A convenience function html_mktocitem() is available.
      
      The config manager was adjusted to make ue of this new feature, but some bugs
      might remain.
      
      darcs-hash:20070805132405-7ad00-77d2c3cdf66cc62b2d408cc6580f938636a109af.gz
  27. Aug 04, 2007
    • Andreas Gohr's avatar
      Support for $inner param in tpl_actionlink · c97dfb07
      Andreas Gohr authored
      This allows template authors to use their own HTML content as link body. Eg. to
      use images. Defaults to the appropriate language string.
      
      darcs-hash:20070804071934-7ad00-47670c4998ee74f93e0057323f4d9a4a4a1654b5.gz
      c97dfb07
  28. Jul 18, 2007
    • Andreas Gohr's avatar
      RSS feeds for search results · 4bb1b5ae
      Andreas Gohr authored
      Lets you subscribe to the result of a full text search
      
      darcs-hash:20070718071053-7ad00-131c87d5a51ec0d600358590539193ab59b3dbe6.gz
      4bb1b5ae
  29. Jun 27, 2007
    • Andreas Gohr's avatar
      check for auth object at certain functions · 6957b2ea
      Andreas Gohr authored
      This is a follow up on the previous patch to disable authtentication without
      disabling ACL on backend problems. It fixes a few errors that might occour
      in this rare situation.
      
      darcs-hash:20070627194910-7ad00-de5ac10e0d36ecf8906c080e1d3dc1b2fd85b45d.gz
      6957b2ea
  30. May 13, 2007
Loading