staticindex.php 1.7 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 which don't start with "_" (eg. as in this <a href="Makefile-ccan">simple 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
  37. just <a href="upload.html">upload code</a>.
  38. </p>
  39. <p>
  40. "GPLv2 or later" and supersets thereof (eg. LGPLv2+ or BSD)
  41. licenses preferred.
  42. </p>
  43. <h2>Complaints, Ideas and Infrastructure</h2>
  44. <p>
  45. We have a <a href="http://ozlabs.org/mailman/listinfo/ccan">low volume
  46. mailing list</a> for discussion of CCAN in general, and you're welcome
  47. to join.
  48. </p>
  49. <p>
  50. We also have an IRC channel: #ccan on <a href="http://freenode.net">Freenode</a>.
  51. </p>
  52. <p>
  53. We also have a <a href="Wiki/">wiki</a>; feel free to enhance it.
  54. </p>
  55. <p>
  56. <i>Rusty Russell</i>
  57. </p>
  58. <hr>
  59. </body></html>