staticindex.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. session_start();
  3. include('logo.html');
  4. include('menulist.html');
  5. include('static-configuration');
  6. ?>
  7. <h2>The Idea</h2>
  8. <p>
  9. That nice snippets of C code should be moved out of junkcode
  10. directories and exposed to a wider world, where they can become
  11. something useful.
  12. </p>
  13. <p>
  14. CCAN is loosely modelled after the successful <a href="http://cpan.org">CPAN project</a>
  15. for Perl code development and sharing.
  16. </p>
  17. <h2>Getting The Code</h2>
  18. <p>
  19. Once you <a href="list.html">grab some modules</a>, there are two basic
  20. ways to use it:
  21. <ol>
  22. <li> Just hack it to compile in your project.
  23. <li> Use it in place by giving it a "config.h" (steal
  24. <a href="example-config.h">this example</a>) and compiling all the .c
  25. files (simply, or as in this <a href="Makefile-ccan">Makefile</a>).
  26. </ol>
  27. </p>
  28. <p>
  29. There's also a
  30. <a href="http://bazaar-vcs.org/">Bazaar</a> repository for all the CCAN
  31. infrastructure at http://ccan.ozlabs.org/repo (<a href="http://ccan.ozlabs.org/browse">browse</a>).
  32. </p>
  33. <h2>Module Contributions</h2>
  34. <p>
  35. We welcome new code! The guide to creating new modules is a work in
  36. progress (just copy an existing module), but anyone can send code to
  37. the <a href="http://ozlabs.org/mailman/listinfo/ccan">friendly
  38. mailing list</a> or just <a href="upload.html">upload it</a>.
  39. </p>
  40. <p>
  41. "GPLv2 or later" and supersets thereof (eg. LGPLv2+ or BSD)
  42. licenses preferred.
  43. </p>
  44. <h2>Complaints, Ideas and Infrastructure</h2>
  45. <p>
  46. We have a <a href="http://ozlabs.org/mailman/listinfo/ccan">low volume
  47. mailing list</a> for discussion of CCAN in general, and you're welcome
  48. to join.
  49. </p>
  50. <p>
  51. We also have an IRC channel: #ccan on <a href="http://freenode.net">Freenode</a>.
  52. </p>
  53. <p>
  54. We also have a <a href="Wiki/">wiki</a>; feel free to enhance it.
  55. </p>
  56. <p>
  57. <i>Rusty Russell</i>
  58. </p>
  59. <hr>
  60. </body></html>