After about one week, I got approved by Drupal CVS administrator!
Even yesterday I thought maybe another application was needed, but, it was not :)
This is my first contribution to Drupal. It's a very small module called "Contact Tracker". More information can be found on the project page: http...
Today I found a flaw in Javascript abstraction of Drupal: drupal_add_js() function.
Here is my original code:
drupal_add_js('http://www.example.com/a.js');
Then in the rendered HTML document, src property of script tag was:
<script src="/http://www.example.com/a.js"></script>...