Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 5

SEO Panel - A complete control panel for search engine optimization includes keyword rank checker,google pagerank checker,alexa rank checker,sitemap generator,meta tag generator,back link checker,Website Submission tool. Features seo panel : * keyword rank checker - Keyword position rank ... [More] checker * sitemap Generator - Automatic Sitemap Generator * google pagerank checker - Google pagerank checker * meta tag generator - Meta tag generator * alexa Rank checker - Multiple Alexa Rank checker * back link checker - Back link checker * directory submission tool - Automatic Website Submission tool * Proxy Server Feature * Multi Language Support * Print and Export Reports * Import Keywords to Seo Panel [Less]

5.0
 
  0 reviews  |  2 users  |  42,288 lines of code  |  1 current contributor  |  Analyzed 5 days ago
 
 

Simple framework to implement crawling technolgy in own programs and libraries.

3.0
   
  0 reviews  |  2 users  |  53,653 lines of code  |  1 current contributor  |  Analyzed over 2 years ago
 
 

A high configurable sitemap component for Joomla. It shows all menus and content items or only the items you like. You could design the output by using css via classes or contextselectors.

0
 
  0 reviews  |  1 user  |  2,767 lines of code  |  0 current contributors  |  Analyzed over 2 years ago
 
 

The Silverlight SEO Project is designed to simplify configuring sites that host Silverlight Navigation applications for search engine optimization, by providing html content to search engine crawlers and Silverlight to users with the plug-in installed.

5.0
 
  0 reviews  |  1 user  |  98,417 lines of code  |  1 current contributor  |  Analyzed 8 days ago
 
 

This Python script is a platform-independent site map generator. It crawls a web site starting from a given URL and outputs XML sitemap file that you can use for Google or other search engines.

3.0
   
  0 reviews  |  1 user  |  0 current contributors
 
 

Current version: 0.2a5 (alpha for developers), 2007-04-12 Attention: The project has been suspended for a while. For further information contact us via the mailing list. Pycoon is a Python WSGI web development framework which allows XML processing pipelines to handle HTTP requests based on URI ... [More] pattern matching. It is similar in intention to the Apache Cocoon framework. Pycoon uses sitemap file format compatible with Apache Cocoon Sitemap 1.0. The architecture of Pycoon focuses on: Full sitemap file format compatibility with Apache Cocoon Heavy usage of WSGI modularity ideas Simplicity of deployment Optimization issues Pycoon is a WSGI middleware that dispatches requests based on Apache Cocoon sitemap logic. Data is processed by an XML pipeline composed of several WSGI applications and middleware components. An HTTP server WSGI interface and it's implementations (Pycoon front-end) are already complete. WSGI interfaces of sitemap components and implementations of them (Pycoon back-end) are in progress. Starting pointsPycoon Wiki Quick starter guide Roadmap Changelog Pycoon downloads DocumentationList of implemented features (compared with Apache Cocoon) Developer guide [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

Cosoware's ASP.NET web controls, providers, modules etc.

0
 
  0 reviews  |  0 users  |  1,562 lines of code  |  0 current contributors  |  Analyzed 10 months ago
 
 

Sitemap generators create a Sitemap compliant with the Sitemap Protocol of sitemaps.org. Common inputs for the generators include access logs, URL lists, and webserver directories. Please see the documentation for more information.

0
 
  0 reviews  |  0 users  |  9,580 lines of code  |  0 current contributors  |  Analyzed 5 days ago
 
 

django-podcast is a Django application that allows you to easily publish podcasts that conform to the RSS 2.0 and iTunes RSS podcast specifications. Update 2009/03/05: This project has, like all of the cool Django apps, moved to GitHub. The code here will be available for archival purposes, but ... [More] for the latest, get on over to GitHub, fork, contribute, and all that good stuff. Django and Python versiondjango-podcast requires at least Django 0.97 revision 7967. This revision incorporated the newforms-admin branch into trunk and makes the most notable use of it in the categories class of the application's models. However, I heavily encourage you to develop with the Django development version (known as "trunk"), which is Django 1.0.x at the time of this writing. At the least, please use Django 1.0. If you're developing on a web host, Python is probably already installed. To check, type python from the command line after logging in via SSH. If Python isn't installed, download and install Python. At least Python version 2.3 is recommended. ssh user@domain.com python InstallationAfter connecting to your server via SSH, typically you download Django and other packages into a source directory. You would then symlink the django directory to a location that resides on your Python path. Likewise, download django-podcast from the Google Code Subversion repository and symlink the podcast directory. If you work with WebFaction (like I do), and assuming one location on your Python path is $HOME/webapps/django/lib/python2.5, it might go like: mkdir ~/source svn co http://code.djangoproject.com/svn/django/trunk/ $HOME/source/django-trunk/ ln -s $HOME/source/django-trunk/django/ $HOME/webapps/django/lib/python2.5/django svn co http://django-podcast.googlecode.com/svn/trunk/ $HOME/source/django-podcast-read-only/ ln -s $HOME/source/django-podcast-read-only/podcast/ $HOME/webapps/django/lib/python2.5/podcast Add podcast as a tuple item to your INSTALLED_APPS in settings.py: INSTALLED_APPS = ( ... 'podcast', ... )Add these lines to your URL configuration, urls.py: urlpatterns += patterns('', (r'^podcasts/', include('podcast.urls')), )Run the syncdb command from the directory in which your settings.py resides, most probably your applications' project directory. Again, if you're on WebFaction like I am, where example-project is your project name: cd ~/webapps/django/example-project/ python manage.py syncdb Alternatively if the Django binary directory is on your Python path, run the syncdb command from any directory to install the database tables. django-admin.py syncdb If you installed the Django admin application, you should be able to see the podcast application's show and episode areas: http://www.example.com/admin/podcast/ You might need to restart the server for changes to take effect, especially if you are running Django on mod_python. DependenciesNone. However, consider a thumbnail creation utility, such as sorl-thumbnail, if you are not in control of creating your podcast show artwork. iTunes suggests show artwork should be a width and height of 600 pixels, but you might want to reduce the size of artwork on your website. Web site URLsThe default, out-of-the-box Web site URLs should look something like: http://www.example.com/podcasts/ http://www.example.com/podcasts/title-of-show/ http://www.example.com/podcasts/title-of-show/title-of-episode/ The /podcasts/ portion of the URL is hard coded into the URL configuration. Beautifully designed default templates are included, so feel free to show off your URLs after saving a show and an episode! Note that the templates were not stress tested in Internet Explorer 6 or 7, but work on Web standards browsers. FeedBurner and iTunes URLsAfter saving at least one show and one episode, consider submitting your feed URL to FeedBurner for keeping track of podcast subscriber statistics. Your feed URL should be something like, where title-of-show is the slug of your show: http://www.example.com/podcasts/title-of-show/feed/ Remember to check the checkbox for "I'm a podcaster!" Your new FeedBurner URL should be something like: http://feeds.feedburner.com/TitleOfShow You can now return to your website's admin and paste this URL into your Show's FeedBurner textbox. For bonus points, submit your FeedBurner URL to the iTunes Store. Your iTunes podcast URL should then be something like: http://phobos.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=000000000 The advantage of submitting your FeedBurner URL to the iTunes Store allows you to track show statistics while also giving users the advantage of using the friendly iTunes interface. Return to the admin again and paste the iTunes show URL into the Show's iTunes URL textbox. Promote either the FeedBurner URL or the iTunes URL using each respective template tag on your website (in the simplest example): {{ show.feedburner }} {{ show.itunes }} Ping iTunes for new contentThe iTunes Store checks new content daily but you might want to make a new episode available immediately in the iTunes Store. Visit your show's ping URL to make that episode available, which would be something like: https://phobos.apple.com/WebObjects/MZFinance.woa/wa/pingPodcast?id=000000000 Alternatively, if you're a savvy developer, you could set up a cron job to handle this, but note that pinging too often could result in a removal from the iTunes Store. Yahoo! Media RSS feed submissionLikewise, considering submitting your podcast to Yahoo! Search, which specifically accepts any kind of regularly published media-based (audio, video, image, document, etc.) RSS 2.0 feed or Media RSS feed. Your Media RSS feed should be something like: http://www.example.com/podcasts/title-of-show/media/ Google video sitemapsIf you're creating a video podcast, you can submit a video sitemap to Google Webmaster Tools. The video sitemap will help Google index videos in Google Video. After a successful installation, the video sitemap URL should be something like: http://www.example.com/podcasts/title-of-show/sitemap.xml Additionally, you can add the video sitemap URL to your robots.txt file. Sitemap: http://www.example.com/podcasts/title-of-show/sitemap.xml Google allows the submission of a media RSS feed instead of the sitemap to Google Webmaster Tools if you prefer. Relevant linksSome URLs that helped me and could help you: SpecificationsRSS 2.0 specification Apple iTunes podcast technical specification Media RSS 2.0 Module specification Google Video Media RSS Specification Atom syndication format specification Google video sitemaps Tutorials, Validators, SoftwareComparing Media RSS formats Webmonkey's "Use Media RSS" Apple iTunes podcasts Apple iTunes audio podcasts Apple iTunes video podcasts Apple iTunes HD podcasts Feed Validator MetaX, Macintosh meta-data tagger (for saving episode-specific artwork and other meta data) For the curious, django-podcast is compatible with enhanced podcasts and HD podcasts; both depend on the respective file's preparation and not on the feeds. LicensingThis software is licensed under the new BSD license. SupportPlease file a ticket if you find a problem with this application, and if you're feeling generous a patch to go with it. Help me help you! If you used this Django application, I'd love to see it in action, and if you have suggestions or feature requests, drop me a line at rich (at) richardcornish (dot) com and let me know. [Less]

0
 
  0 reviews  |  0 users  |  989 lines of code  |  0 current contributors  |  Analyzed 9 days ago
 
 

The Perl Sitemap Generator is a Perl script that creates a Sitemap for your site using the Sitemap Protocol. This script can create Sitemaps from URL lists, web server directories, access logs, or from other sitemaps. This tool is a translation of Google Sitemap Generator from python to perl. In ... [More] order to use this script: You must be able to connect to and run scripts on your web server. Your web server must have Perl 5.8.0 or later installed. You must know the directory path to your site. If your web server hosts one site, this may be a path such as var/www/html. If you have a virtual server that hosts multiple sites, this may be a path such as home/virtual/site1/fst/var/www/html. You must be able to upload files to your web server (for instance, using FTP). If you will be generating a list of URLs based on access logs, you must know the encoding used for those logs and the complete path to them. If you aren't sure about any of this, you can check with your web hosting company. Now you’re ready to get started. Here’s an overview of what you’ll need to do. Download the Sitemap Generator program files. Extract the files to a local directory. Create a configuration file for your site using the provided example_config.xml file as a template. Modify this file as needed for your site and save it. Upload the necessary files to your web server. Run sitemap_gen.pl. Add the generated Sitemap to your Google webmaster tools account. Set up a recurring script. (optional) If you are unable to use the Sitemap Generator, you can add a Sitemap to your Google webmaster tools account in another format, such as a simple text file. You can also find links to third-party programs that support Google Sitemaps here. [Less]

0
 
  0 reviews  |  0 users  |  2,286 lines of code  |  0 current contributors  |  Analyzed 5 days ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.