staticindex.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 succesful <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
  32. <a href="http://ccan.ozlabs.org/repo">http://ccan.ozlabs.org/repo</a>.
  33. </p>
  34. <h2>Module Contributions</h2>
  35. <p>
  36. We welcome new code! The guide to creating new modules is a work in
  37. progress (just copy an existing module), but anyone can
  38. just <a href="upload.html">upload code</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>