winrar rapidshare blogspot
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 8
Gnome-Blog 0.9.1
Gnome-blog project is a panel applet that can post to BloggerAPI compatible blogs. more>>
Gnome-blog project is a panel applet that can post to BloggerAPI compatible blogs.
* Clean interface doesnt get in the way of what youre writing
* WYSIWYG styled text support
* Entries can be written gradually over the course of a day, popping gnome blog open and closed as you have thoughts to jot down and then posting at the end of the day
* Operates as a panel object/applet or a standalone application
* Supports many different kinds of blogs
* New Spell checking
* New Drag and drop images into your blog entry (if your blog supports it)
Supported Blogs:
* Blogger.com / Blogspot.com
* Advogato.org
* Movable Type
* New WordPress
* New LiveJournal.com
* Pyblosxom
* Any other blog using bloggerAPI or MetaWeblog
<<less* Clean interface doesnt get in the way of what youre writing
* WYSIWYG styled text support
* Entries can be written gradually over the course of a day, popping gnome blog open and closed as you have thoughts to jot down and then posting at the end of the day
* Operates as a panel object/applet or a standalone application
* Supports many different kinds of blogs
* New Spell checking
* New Drag and drop images into your blog entry (if your blog supports it)
Supported Blogs:
* Blogger.com / Blogspot.com
* Advogato.org
* Movable Type
* New WordPress
* New LiveJournal.com
* Pyblosxom
* Any other blog using bloggerAPI or MetaWeblog
Download (0.19MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
1220 downloads
Apache2::Autocomplete 0.1
Apache2::Autocomplete is a Perl module to autocomplete service backend via mod_perl. more>>
Apache2::Autocomplete is a Perl module to autocomplete service backend via mod_perl.
SYNOPSIS
Given some form that using Googles autocomplete that receives suggestions from http://localhost/complete/search:
######################################################
# in httpd.conf
PerlModule Apache2::MyAutoComplete
< Location /complete/search >
SetHandler perl-script
PerlResponseHandler Apache2::MyAutoComplete
< /Location >
######################################################
######################################################
# module file Apache2/MyAutoComplete.pm
package Apache2::MyAutoComplete;
use base qw(Apache2::Autocomplete);
# use whatever else
my @NAMES = qw(bob carol ted alice);
sub expand {
my ($self, $query) = @_;
my $re = qr/^Q$queryE/i;
my @names = grep /$re/, @NAMES;
my @values = map {"some description"} @names;
(lc $query, @names, @values, [""]);
}
sub handler {
my $r = shift;
my $ac = __PACKAGE__->new($r);
$ac->run();
return Apache2::Const::OK;
}
######################################################
This module is a mod_perl2 interface to JavaScript::Autocomplete::Backend, which is a base class for implementing an autocomplete service for a form using the Google Suggest protocol. See http://www.google.com/webhp?complete=1&hl=en for an illustration of Google Suggest in operation, as well as http://serversideguy.blogspot.com/2004/12/google-suggest-dissected.html for a description of how the JavaScript code works.
As well as mod_perl2, this package requires JavaScript::Autocomplete::Backend, as well as a CGI.pm-compatible CGI module for supplying the param() and header() methods. If available, CGI::Apache2::Wrapper will be used, which is a minimal module that uses methods of mod_perl2 and Apache2::Request to provide these methods; if this is not available, CGI (version 2.93 or greater) will be used.
Operation of this service requires inclusion of the Autocomplete JavaScript code; a copy of this is included in this distribution, the latest version of which is available at http://www.google.com/ac.js.
<<lessSYNOPSIS
Given some form that using Googles autocomplete that receives suggestions from http://localhost/complete/search:
######################################################
# in httpd.conf
PerlModule Apache2::MyAutoComplete
< Location /complete/search >
SetHandler perl-script
PerlResponseHandler Apache2::MyAutoComplete
< /Location >
######################################################
######################################################
# module file Apache2/MyAutoComplete.pm
package Apache2::MyAutoComplete;
use base qw(Apache2::Autocomplete);
# use whatever else
my @NAMES = qw(bob carol ted alice);
sub expand {
my ($self, $query) = @_;
my $re = qr/^Q$queryE/i;
my @names = grep /$re/, @NAMES;
my @values = map {"some description"} @names;
(lc $query, @names, @values, [""]);
}
sub handler {
my $r = shift;
my $ac = __PACKAGE__->new($r);
$ac->run();
return Apache2::Const::OK;
}
######################################################
This module is a mod_perl2 interface to JavaScript::Autocomplete::Backend, which is a base class for implementing an autocomplete service for a form using the Google Suggest protocol. See http://www.google.com/webhp?complete=1&hl=en for an illustration of Google Suggest in operation, as well as http://serversideguy.blogspot.com/2004/12/google-suggest-dissected.html for a description of how the JavaScript code works.
As well as mod_perl2, this package requires JavaScript::Autocomplete::Backend, as well as a CGI.pm-compatible CGI module for supplying the param() and header() methods. If available, CGI::Apache2::Wrapper will be used, which is a minimal module that uses methods of mod_perl2 and Apache2::Request to provide these methods; if this is not available, CGI (version 2.93 or greater) will be used.
Operation of this service requires inclusion of the Autocomplete JavaScript code; a copy of this is included in this distribution, the latest version of which is available at http://www.google.com/ac.js.
Download (0.011MB)
Added: 2007-03-19 License: Perl Artistic License Price:
950 downloads
JavaScript::Autocomplete::Backend 0.10
JavaScript::Autocomplete::Backend is a Google Suggest-compatible autocompletion backend. more>>
JavaScript::Autocomplete::Backend is a Google Suggest-compatible autocompletion backend.
SYNOPSYS
package MyAutocompleter;
use base qw(JavaScript::Autocomplete::Backend);
my @NAMES = qw(alice bob charlie);
sub expand {
my ($self, $query) = @_;
# do something to expand the query
my $re = qr/^Q$queryE/i;
my @names = grep /$re/, @NAMES;
(lc $query, @names, [], [""]);
}
MyAutocompleter->run;
This is a base class for implementing an autocompletion server with the same protocol used by Google Suggest ( http://www.google.com/webhp?complete=1&hl=en ). It is basically a CGI script that takes a word to be completed as the "qu" parameter and returns a specially concoted JavaScript statement. For more efficiency it should be possible to turn it into a mod_perl handler; that is left as an exercise for the reader.
The front-end JavaScript code is discussed in http://serversideguy.blogspot.com/2004/12/google-suggest-dissected.html .
This module is used by creating a subclass, which should override the expand method, which takes care of searching for the autocompletion results.
<<lessSYNOPSYS
package MyAutocompleter;
use base qw(JavaScript::Autocomplete::Backend);
my @NAMES = qw(alice bob charlie);
sub expand {
my ($self, $query) = @_;
# do something to expand the query
my $re = qr/^Q$queryE/i;
my @names = grep /$re/, @NAMES;
(lc $query, @names, [], [""]);
}
MyAutocompleter->run;
This is a base class for implementing an autocompletion server with the same protocol used by Google Suggest ( http://www.google.com/webhp?complete=1&hl=en ). It is basically a CGI script that takes a word to be completed as the "qu" parameter and returns a specially concoted JavaScript statement. For more efficiency it should be possible to turn it into a mod_perl handler; that is left as an exercise for the reader.
The front-end JavaScript code is discussed in http://serversideguy.blogspot.com/2004/12/google-suggest-dissected.html .
This module is used by creating a subclass, which should override the expand method, which takes care of searching for the autocompletion results.
Download (0.004MB)
Added: 2006-11-24 License: Perl Artistic License Price:
1068 downloads
QuickJava 0.4.2.1
QuickJava is a Firefox extension that allows quick enable and disable of Java and Javascript from statusbar. more>>
QuickJava is a Firefox extension that allows quick enable and disable of Java and Javascript from statusbar.
I have tested this on 1.5.0.4 up to 3.0a1 and it works for me, if you have problems with it working please contact me via the hompage for this extension at: http://quickjavaplugin.blogspot.com/
Also please note that the scope of this extension is NOT as extensive as NoScript, and was not designed to compete with it. If you like NoScript then thats fine and this may not be the extension for you. However this extension is ideal for those who prefer a simpler to use, less invasive interface while still having easier access to the controls.
<<lessI have tested this on 1.5.0.4 up to 3.0a1 and it works for me, if you have problems with it working please contact me via the hompage for this extension at: http://quickjavaplugin.blogspot.com/
Also please note that the scope of this extension is NOT as extensive as NoScript, and was not designed to compete with it. If you like NoScript then thats fine and this may not be the extension for you. However this extension is ideal for those who prefer a simpler to use, less invasive interface while still having easier access to the controls.
Download (0.017MB)
Added: 2007-07-31 License: MPL (Mozilla Public License) Price:
838 downloads
XvSwitch 0.2
XvSwitch allows choosing which display gets XVideo video overlay. more>>
XvSwitch widget has 1 purpose:
To assist you with choosing which display gets XVideo video overlay. It uses shell commands to accomplish the task.
See http://suslikcentral.blogspot.com/2005/12/video-and-tv-out-in-xorg-on-linux.html
for reasons for using this applet and general guidance on Xvideo issue on Linux.
System requirements:
For full, flawless functionality you need:
a) SuperKaramba version 0.39 This theme uses changeInterval function that was introduced recently.
b) One utility from list mentioned in the welcome screen:
- aticonfig - ships with ATIs fglrx drivers, or
- xvattr - an independently-developed application. http://freshmeat.net/projects/xvattr/
c) (the applet WILL work without it too) XvSwitch uses Kdialog for welsome and configuration prompts. If you have "complete" kde, you have Kdialog.
<<lessTo assist you with choosing which display gets XVideo video overlay. It uses shell commands to accomplish the task.
See http://suslikcentral.blogspot.com/2005/12/video-and-tv-out-in-xorg-on-linux.html
for reasons for using this applet and general guidance on Xvideo issue on Linux.
System requirements:
For full, flawless functionality you need:
a) SuperKaramba version 0.39 This theme uses changeInterval function that was introduced recently.
b) One utility from list mentioned in the welcome screen:
- aticonfig - ships with ATIs fglrx drivers, or
- xvattr - an independently-developed application. http://freshmeat.net/projects/xvattr/
c) (the applet WILL work without it too) XvSwitch uses Kdialog for welsome and configuration prompts. If you have "complete" kde, you have Kdialog.
Download (0.025MB)
Added: 2006-06-21 License: GPL (GNU General Public License) Price:
1225 downloads
Anonymouser 0.3.1
Anonymouser is a Firefox extension that can open links anonymously with anonymouse.org more>>
Anonymouser is a Firefox extension that can open links anonymously with anonymouse.org
Usage: Install, Restart Browser
Right click a link (Must be "http://" type link) and select "Open with Anonymouser" or "Open with Anonymouser in New Tab"
Will open... unfortunately with an advertisement. You can use greasemonkey and one of my scripts found here: http://adremover.blogspot.com/
This will be the last update for this extension.
If anybody would like to continue to develop this extension then please feel free to. All I ask is that I am kept on the main developer list in the "About" and given credits on the new homepage.
<<lessUsage: Install, Restart Browser
Right click a link (Must be "http://" type link) and select "Open with Anonymouser" or "Open with Anonymouser in New Tab"
Will open... unfortunately with an advertisement. You can use greasemonkey and one of my scripts found here: http://adremover.blogspot.com/
This will be the last update for this extension.
If anybody would like to continue to develop this extension then please feel free to. All I ask is that I am kept on the main developer list in the "About" and given credits on the new homepage.
Download (0.006MB)
Added: 2007-07-30 License: MPL (Mozilla Public License) Price:
1147 downloads
Atomic 0.6
Atomic provides an Atom protocol client for creating and manipulating Atom feeds. more>>
Atomic provides an Atom protocol client for creating and manipulating Atom feeds.
An Atom protocol client for creating and manipulating Atom feeds (e.g. blogs).
Ive added a new statusbar based interface for quick posts. There are still some unfinished bits there but it does function.
The big news is that it now supports blogspot!
While this plugin has a sidebar inteface, once youve setup your services, you can use the statusbar interface all by itself.
Look on the status bar for the Explore button. That will open the sidebar. From the sidebar you can add services.
At startup, it should prompt you for preferences and have you pick a file for the service list. The default is inside the extensions directory in your mozilla folder.
Afterwards, you need to have access to an Atom Protocol server. That may be the hardest one as the protocol is still a draft RFC
<<lessAn Atom protocol client for creating and manipulating Atom feeds (e.g. blogs).
Ive added a new statusbar based interface for quick posts. There are still some unfinished bits there but it does function.
The big news is that it now supports blogspot!
While this plugin has a sidebar inteface, once youve setup your services, you can use the statusbar interface all by itself.
Look on the status bar for the Explore button. That will open the sidebar. From the sidebar you can add services.
At startup, it should prompt you for preferences and have you pick a file for the service list. The default is inside the extensions directory in your mozilla folder.
Afterwards, you need to have access to an Atom Protocol server. That may be the hardest one as the protocol is still a draft RFC
Download (0.66MB)
Added: 2007-04-05 License: MPL (Mozilla Public License) Price:
1044 downloads
TiX Now! 0.1
TiX Now! is an extension which can stop waiting timer of rapidshare and get direct download links. more>>
TiX Now! is an extension which can stop waiting timer of rapidshare and get direct download links.
It can stop waiting timer of rapidshare and get direct download links from nhacso.net, tialia.com, etc and can solve the MegaUpload full-download-slots problem.
Just very simple: Install the extension and click on the T icon in status bar at the right-bottom corner.
Direct-link will be saved to your clipboard or it can stop the waiting-timer, full download-slots...
I tested on my computer and it works, and i see that it work on some computers, but i also see in your comments that it has error about javascript
<<lessIt can stop waiting timer of rapidshare and get direct download links from nhacso.net, tialia.com, etc and can solve the MegaUpload full-download-slots problem.
Just very simple: Install the extension and click on the T icon in status bar at the right-bottom corner.
Direct-link will be saved to your clipboard or it can stop the waiting-timer, full download-slots...
I tested on my computer and it works, and i see that it work on some computers, but i also see in your comments that it has error about javascript
Download (0.013MB)
Added: 2007-04-06 License: MPL (Mozilla Public License) Price:
574 downloads
Secleted [ 0 ] software to compare
- Page: 1 of 1
- 1
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above winrar rapidshare blogspot search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed