acknowledgements.qbk 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  1. [/==============================================================================
  2. Copyright (C) 2001-2011 Joel de Guzman
  3. Copyright (C) 2001-2011 Hartmut Kaiser
  4. Distributed under the Boost Software License, Version 1.0. (See accompanying
  5. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. ===============================================================================/]
  7. [section Acknowledgments]
  8. The __spirit__ repository is the result of the contributions of active members
  9. of the Spirit community. We would like to express our thanks to all who
  10. directly contributed and to everybody directly or indirectly involved in the
  11. discussions, which led to the creation of the parser and generator components.
  12. The following people have directly contributed code to this repository:
  13. [*Aaron Graham] wrote the __qi_advance__ parser component, which allows the
  14. parser to skip (advance) through a specified number of iterations without
  15. performing unnecessary work.
  16. [*Chris Hoeppler] submitted the __qi_confix__ parser directive allowing to
  17. embed a parser (the subject) inside an opening (the prefix) and a closing
  18. sequence (the suffix).
  19. [*Francois Barel] contributed the __qi_subrule__ parser and __karma_subrule__
  20. generator components, allowing to create a named parser or generator, and
  21. to refer to it by name. These components are in fact fully static versions of
  22. the corresponding `rule` component.
  23. [*Thomas Bernard] contributed the __qi_keywords__ and __qi_keywords_list__
  24. parser components, allowing to define keyword parsers.
  25. [endsect]