Les nouveautés et Tutoriels de Votre Codeur | SEO | Création de site web | Création de logiciel

Seo Master present to you:

Have you noticed, that some web sites do not allow their visitors using right mouse click while pointer is on the blog area. This option is useful for the site and blog owners, who want to minimize the possibilities of the content direct copying to other posts.

right click disable copy How to Disable Right click in Blogger / Blogspot ?

Right click on any internet browser is very important element and we must use it when it comes to copy or editing texts and etc. It’s very important when it comes to webmasters too. but some people may use it in a bad way, and you may want to make click right disabled on your blog. to protect you text, images links and etc.

To setup this tool in your blog Copy the Following code and paste it to your blog by adding a new page element.

Step 1 : Go to Dashboard > Layout > Add Gadget > HTML / JavaScript

Step 2 : Copy the Below Script and paste it in that blogger widget.

 

<script language=JavaScript>
<!--

//Disable right mouse click Script
//By Being Geeks
//For full source code, visit http://www.beinggeeks.com

var message="Function Disabled!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// -->
</script>

 

Step 3 : Save the html/javascript and view you blog.

When you will try to do right click, a message will tell you that “Function disabled” , and if you want to change this words” Function Disabled” Then simply find it in code and replace it.
2013, By: Seo Master

Seo Master present to you: This post is part of the Who's @ Google I/O, a series of blog posts that give a closer look at developers who'll be speaking or demoing at Google I/O. Today's post is a guest post written by Alex Moffat, Chief Engineer - Blueprint, Lombardi Software

Lombardi has been using Google Web Toolkit (GWT for short) since January 2007 to build Lombardi Blueprint, an online, collaborative business process modeling and documentation tool. The client part of Blueprint is completely written using GWT and runs in any modern browser, that is IE6 and anything later, such as IE7, IE8 or Firefox. One of the biggest advantages of Blueprint is that it's easier to learn and quicker to use than a pure diagramming tool like Visio and it's more effective because it's focused on process mapping.

One of the things we do to make Blueprint more effective is automatic diagram layout. This allows the user to focus on describing their process instead of worrying about object positioning and line routing. You can see this in action in the video below as objects are added to the diagram.



Remember, this is JavaScript compiled by GWT from Java code, but it's as fast as, or faster than, anything you could write by hand, compact, and much, much, easier to maintain. The ability to use the excellent tooling available for Java is one of the great advantages of GWT.

One of the goals for our automated layout routines is to generate a flow diagram that looks like it was produced by a human. When the algorithms don't get it quite right, Blueprint also supports hinted layouts so that the user can drag and drop hints about where one object should be positioned in relation to another. Working out what the final layout should be and where the lines should go for large diagrams can be computationally expensive.

Modern browsers have very fast JavaScript engines. For these systems, there are no problems. However, we still need to support the browsers our customers use, which may not necessarily be the fastest or most up-to-date.

This is where GWT gives us a unique benefit. We can implement our algorithms in Java and compile this implementation twice, once with GWT to produce JavaScript to run on the client and once with javac to produce JVM bytecode to run on the server. This lets us use the much faster JVM if we need to without having to create, and maintain, separate client and server layout implementations. There's no other toolkit that makes this possible, never mind easy.

Blueprint client code continuously measures how long it takes to perform the layout and routing operation in the browser. If this exceeds our threshold value, then the code dynamically switches to trying a server side layout. We call the server code with GWT and the data structures returned, via the GWT serialization mechanism, are of course the same ones produced by the layout when executed on the client. The time required for a server layout is also measured, which includes both the execution time and any network delays so we account for the different connection experiences people have. After the first server layout, Blueprint chooses whichever method, client or server, has the lowest average elapsed time. I'm still amazed by how easy this was to implement.

Damon Lundin and I will be talking at Google I/O this year about how we built Blueprint, both what we do technically with GWT to get high performance and how we organize development so that we can make the most effective use of GWT. We look forward to meeting fellow GWT developers in person!

2013, By: Seo Master
Seo Master present to you: By Amy Walgenbach of the Google I/O Team

The complete schedule for I/O is now available, so if you’re attending Google I/O on May 10-11, you can now start planning two days packed with sessions and events. The schedule for I/O BootCamp is also up for your convenience.

The in-depth descriptions of I/O sessions, complete with speakers for each, are available on the Sessions page of the I/O site. With so many great sessions to choose from, we wanted to highlight two special sessions that will take place at the close of Day 1.

Ignite. Fast-paced, fun, and thought-provoking, Ignite captures the best of geek culture in a series of five-minute speed presentations. It's a high-energy session of short talks by people who have an idea—and the guts to get onstage and share it. This year we will learn about the Brain API, the similarities of Disneyland and Burning Man, and a dissection of the Tiger Mom myth.

Google Ventures Meetup. Google Ventures will be holding an experiment in controlled chaos. This event will bring attendees together with members of the Google Ventures core team (investors and experienced startup veterans), and select portfolio companies ranging from small, new teams to later-stage, successful companies. The room will be arranged to enable attendees to speak to panels of "experts" in bite-sized, three-minute 1:1 conversations, otherwise known as VC speed dating. Our goal is to connect both practicing and soon-to-be entrepreneurs with experts who can impart advice, lessons learned, and quick tips.

We’ve also posted our Office Hours schedule. Google engineers will be on hand to answer any questions you have about the products and technologies featured at I/O. We’ll be holding office hours for Accessibility, Android, Apps, App Engine, Chrome, Commerce, Developer Tools/GWT, Geo, Google APIs, Google TV, Google Mobile Ads/AdMob, and YouTube.

Be sure to check @googleio for the latest updates.


Posted by Scott Knaster, Editor
2013, By: Seo Master
Powered by Blogger.