You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.4 KiB

  1. #ifndef CONTRIBUTORS_INCLUDED
  2. #define CONTRIBUTORS_INCLUDED
  3. /* Copyright (C) 2006 MySQL AB
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; version 2 of the License.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
  14. /* Structure of the name list */
  15. struct show_table_contributors_st {
  16. const char *name;
  17. const char *location;
  18. const char *comment;
  19. };
  20. /*
  21. Output from "SHOW CONTRIBUTORS"
  22. Get permission before editing.
  23. IMPORTANT: Names should be left in historical order.
  24. Names should be encoded using UTF-8.
  25. */
  26. struct show_table_contributors_st show_table_contributors[]= {
  27. {"Ronald Bradford", "Brisbane, Australia", "EFF contribution for UC2006 Auction"},
  28. {"Sheeri Kritzer", "Boston, Mass. USA", "EFF contribution for UC2006 Auction"},
  29. {"Mark Shuttleworth", "London, UK.", "EFF contribution for UC2006 Auction"},
  30. {NULL, NULL, NULL}
  31. };
  32. #endif /* CONTRIBUTORS_INCLUDED */