Review the Literatures of the Commons, and its Application to the Intellectual Property and the Internet
function changeLanguage1(language, response)
$.ajax(
url: '/AltLanguage_ajax.cfm?type=changeLanguage&partid=1&strCode=en',
cache: false,
success: function(data)
// Update values in cookies
Set_Cookie('SITEID',language,'-1','/','.ssrn.com','');
Set_Cookie('SITEID',language,'1000','/','.ssrn.com','');
// Finally, perform redirection
if (response == 'reload')
window.location.reload();
else
window.location.href=response;
);
function Set_Cookie( name, value, expires, path, domain, secure )
// set time, its in milliseconds
var today = new Date();
today.setTime( today.getTime() );
/*
if the expires variable is set, make the correct
expires time, the current script below will set
it for x number of days, to make it for hours,
delete * 24, for minutes, delete * 60 * 24
*/
if ( expires )
expires = expires * 1000 * 60 * 60 * 24;
var expires_date = new Date( today.getTime() + (expires) );
document.cookie = name + "=" +escape( value ) +
( ( expires ) ? ";expires=" + expires_date.toGMTString() : "" ) +
( ( path ) ? ";path=" + path : "" ) +
( ( domain ) ? ";domain=" + domain : "" ) +
( ( secure ) ? ";secure" : "" );
/*
* We use this function when the language should be stripped from an object, like a form RADIO
*/
function getLanguage ( oObj ) :?,.";
// Need to clean up code if object came from Mura site.
sCode = oObj.value;
if (sCode.length > 2)
for (var i = 0; i < specialChars.length; i++)
sCode = sCode.replace(new RegExp("\" + specialChars[i], 'gi'), '');
// After cleaning up special chars, we take the first two chars.
sCode = sCode.substring(0,2).trim();
return sCode;
Skip to main content
Remember me
Forgot ID or Password?
Register now
- Your Account
- User Home
- Personal Info
- Affiliations
- Subscriptions
- My Papers
My Library
Sign out
Advanced Search
if(typeof jQuery == 'undefined')
document.write(unescape("%3Cscript src='https://#strStaticServer#/libraries/JQuery/v1.12.4/jquery.min.js' type='text/javascript'%3E%3C/script%3E"));
function sentEmailValidation(lngLoginID, forwardURL)
var parameters =
"lngLoginID" : lngLoginID,
"strForwardURL" : forwardURL
;
$.ajax(
type: "POST",
url: "https://static.ssrn.com/cfc/webServices/loginServices.cfc?method=sentValidationEmailNew",
data: parameters,
dataType: "jsonp",
async: false,
success: function(data)
if(data.RESULT == 1)
$("#errorMessageLogin").html(data.MESSAGE);
,
error: function(jqXHR, textStatus, errorThrown)
console.log(textStatus, errorThrown);
);
;
$( document ).ready(function()
// Show translation notice on footer on load
var hebrewIsSelected = $('.dropdown-lang option:last-child').is(':selected'),
$body = $('body'),
$loginBox = $('.loginBox'),
$menuMain = $('.menu-main'),
$profileMenu = $('.profileMenu');
if (hebrewIsSelected)
toggleTranslationNote();
/* dropdown user*/
$('#btnSignin').click(function(e)
e.preventDefault();
pageDataTracker.trackEvent('conversionDriverClick', conversionDriver:name : 'ssrn-header:sign-in-or-register');
$("#txtLogin").val("");
$("#txtPasswordLogin").val("");
$("#errorMessageLogin").hide();
$("#error_show_login").hide();
$("#error_show_pass").hide();
$(".menu-main .register-link").hide();
$loginBox.toggleClass('open');
$body.toggleClass('nav-is-open');
);
$('#btnRegister').on('click', function()
pageDataTracker.trackEvent('conversionDriverClick', conversionDriver:name : 'ssrn-header:register');
);
$('#topPapesLink').on('click', function()
pageDataTracker.trackEvent('conversionDriverClick', conversionDriver:name : 'rankings-top-papers');
);
$('#submitPaperLink').on('click', function()
pageDataTracker.trackEvent('conversionDriverClick', conversionDriver:name : 'ssrn-header:submit-article');
);
$('#btnMenu').on('click', function()
$body.addClass('nav-is-open');
$menuMain.addClass('open');
);
$('.mo-nav-close-btn').on('click', function()
$body.removeClass('nav-is-open');
$(this).closest('.mo-nav').removeClass('open');
);
$('.mo-nav-search-btn').on('click', function()
$menuMain.find('.menu-search').toggleClass('open');
);
$(document).on('click','#profile', function(e)
e.preventDefault();
$body.toggleClass('nav-is-open');
$profileMenu.toggleClass('open');
);
/* Cleaning the email text*/
$('#txtLogin').bind("change keyup input",function()
$(".error_show_login").hide();
$("#txtLogin").removeClass("loginError");
$("#errorMessageLogin").hide();
);
/* Cleaning the password text*/
$('.password-inp').bind("change keyup input",function()
$(".error_show_pass").hide();
$("#txtPasswordLogin").removeClass("loginError");
$("#errorMessageLogin").hide();
);
/*Function for encrypt*/
function encrypt(key1, key2, key3)
var key = btoa(key1 + ";
function validateFields () emptyPass == true)
return false;
return true;
;
$('.password-inp').keypress(function(event) event.which == 13)
event.preventDefault();
login();
);
$('#txtLogin').keypress(function(event) event.which == 13)
event.preventDefault();
login();
);
$("#signin").click(function()
login();
);
function login()
if (validateFields() != false)
var user = document.getElementById("txtLogin").value;
var pass = document.getElementById("txtPasswordLogin").value;
var remember = $('.remember-me-check').prop('checked');
var keyUser = encrypt(user, pass, remember);
var parameters =
"key" : keyUser
;
$.ajax(
type: "POST",
url: "https://static.ssrn.com/cfc/webServices/loginServices.cfc?method=signinService",
data: parameters,
dataType: "jsonp",
async: false,
success: function(data)
if(data.ILOGINRESULT == 0)
var lngPartLogedIn = data.USER.PART_ID;
buildmenu(lngPartLogedIn);
$("#name-header div.user-name-overflow").text(data.USER.FULLNAME);
$("#name-mo-header").text(data.USER.FULLNAME);
$('#profile').show();
$("#btnSignin").hide();
$("#btnRegister").hide();
$loginBox.removeClass('open');
$body.removeClass('nav-is-open');
pageData.visitor.loginSuccess = "true";
pageData.visitor.loginStatus = "logged in";
pageData.visitor.accessType = "ss:registered-user";
pageData.visitor.userId = data.USER.ENCRYPT_PART_ID;
pageDataTracker.trackEvent( 'newPage' , pageData);
else
pageData.visitor.loginSuccess = "false";
pageDataTracker.trackEvent( 'newPage' , pageData);
$("#errorMessageLogin").html(data.MESSAGETOSHOW);
$("#errorMessageLogin").show();
);
else
return false;
;
;
function buildmenu(lngPartLogedIn)
$("#personal").attr("href", "https://hq.ssrn.com/Participant.cfm?rectype=edit&partid=" + lngPartLogedIn + "&perinf=y");
$("#affil").attr("href", "https://hq.ssrn.com/Affiliations/AffiliationList.cfm?partid=" + lngPartLogedIn);
$("#suscr").attr("href", "https://hq.ssrn.com/Subscriptions.cfm?partId=" + lngPartLogedIn);
$("#mypapers").attr("href", "https://hq.ssrn.com/submissions/MyPapers.cfm?partid=" + lngPartLogedIn);
;
$(document).click(function(event)
if(!$(event.target).closest('.header-tooltip').length && $(event.target)[0] != $('#btnSignin')[0] && $(event.target)[0] != $('#profile')[0] )
if($('.header-tooltip').is(":visible") && $('.mo-nav-header').is(":hidden"))
$body.removeClass('nav-is-open');
$('.header-tooltip').removeClass('open');
// Makes the submenu links accesible by keyboard
$('.has-sub-menu a')
.focus(function()
$(this).parents("li").addClass("focus");
)
.blur(function()
$(this).parents("li").removeClass("focus");
);
);
// Show translation notice on change
$('.dropdown-lang').on('change', function()
toggleTranslationNote();
);
// Accordion functionality on Footer MO
var $collapseBtn = $('h4[data-toggle="collapse"]'),
$collapsableContent = $('.collapsable');
$collapseBtn.on('click', function()
var $this = $(this),
$parent = $this.parent(),
$thisCollapsable = $parent.find('.collapsable');
$collapsableContent.slideUp('fast');
if ( !$thisCollapsable.is(":visible") )
$thisCollapsable.slideDown('fast');
);
// Show translation notice on footer
function toggleTranslationNote()
$('.translation-notice').toggle();
);
//Language function
function changeLanguage(lang)
var curretUrl = window.location.href;
if(curretUrl.indexOf('&lng') != -1)
var new_url = curretUrl.substring(0, curretUrl.indexOf('&lng'));
else
var new_url = window.location.href;
window.location.href=new_url+'&lng='+lang;
var paperTitle = "Review the Literatures of the Commons, and its Application to the Intellectual Property and the Internet";
var addthis_share = addthis_share || ;
addthis_share =
url: "https://ssrn.com/abstract=1011343",
passthrough :
twitter:
text: paperTitle + " @SSRN"
function trackEventSocial(platform)
pageDataTracker.trackEvent('socialShare',
social:
sharePlatform : platform
);
;
$('.addthis_button_facebook').click(function(e)
trackEventSocial('Facebook');
);
$('.addthis_button_twitter').click(function(e)
trackEventSocial('Twitter');
);
$('.addthis_button_citeulike').click(function(e)
trackEventSocial('CiteULike');
);
$('#socialEmail').click(function(e)
trackEventSocial('Email');
);
$('#permalink').click(function(e)
trackEventSocial('Permalink');
);
Copy URL
Copy URL
Review the Literatures of the Commons, and its Application to the Intellectual Property and the Internet
Midnight University Journal, 2007
20 Pages
Posted: 2 Sep 2007
Abstract
There are many controversial ideas of resource utilization. The main discussion is how to maximally benefit from the scarce resources; "private property" and "common property" regimes are the two major solutions for centuries. However, the private property has been taking into the major role as the most convincing principle of economics. The intellectual property has been established and developed but not exactly from the same ground of property of things. Today the intellectual property is expanding its border of exclusive rights and impairs individuals' reasonable rights to enjoy the common intellectual property. The more problematic issue has occurred when the intellectual property are published via the internet. The intellectual property has being reviewed. Legal academics already realize the expanding border of intellectual property. They are currently trying to emphasize the solution of common property. This article is aimed to review those distinguish literatures of the commons, its application to the information age today, and its fascinating way of tomorrow.
Keywords: Intellectual Property, Internet, Commons, Public Domain
Suggested Citation:
Suggested Citation
Bunaramrueang, Piyabutr, Review the Literatures of the Commons, and its Application to the Intellectual Property and the Internet. Midnight University Journal, 2007. Available at SSRN: https://ssrn.com/abstract=1011343
Register to save articles to
your library
Register
Paper statistics
based on a number of measures,
such as downloads and citations.
To be ranked, a paper must be a publicly available
scholarly full-text paper on SSRN.
Privately available papers
are not considered in these rankings." class="lbl">rank
17
that have been resolved by our automated systems,
with hot links to online versions of each paper
where we have been able to locate them.">
References
$(document).ready(function()
if(navigator.appName == "Netscape" && navigator.appVersion.indexOf('Edge') > -1)
$('.related-journals-tooltip').css('top','32px');
if(navigator.userAgent.toLowerCase().indexOf('firefox') > -1)
$('.related-journals-tooltip').css('right','5px');
);
var times = 0; // track the number of times the MORE link has been clicked (to avoid fraud)
// Track Recommendations appearances
function trackAppearances ()
times++; // to avoid fraud - we only track these the first time the additional recommendations are shown
var ab_id_source = '1011343';
var list_of_ab_id_target = '';
var initial_limit = '3';
var algorithm = '1';
var fraud = '0';
if (times == 1)
$.ajax(
url: 'TrackRecommendationsAppearances.cfm?ab_id_source=' + ab_id_source + '&list_of_ab_id_target=' + list_of_ab_id_target + '&initial_limit=' + initial_limit + '&algorithm=' + algorithm + '&fraud=' + fraud,
cache: false,
success: function(data)
);
Feedback
var strServer = "papers.ssrn.com";
var strSugPageName = "/sol3/papers.cfm";
var strIP = "153.92.0.15";
var strFullUrl = "papers%2Essrn%2Ecom%2Fsol3%2Fpapers%2Ecfm%3Fabstract%5Fid%3D1011343";
var sEmail = "";
var pkBaseURL = (("https:" == document.location.protocol) ? "https://piwik.ssrn.com/" : "http://piwik.ssrn.com/");
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
try
var piwikTracker = Piwik.getTracker(pkBaseURL + "piwik.php", 7);
piwikTracker.setCustomVariable(1, "User", "Unknown","visit");
piwikTracker.trackPageView();
piwikTracker.enableLinkTracking();
catch( err )
if (window.loadingTime)addLoadEvent(loadingTime);
setTimeout(function()var a=document.createElement("script");
var b=document.getElementsByTagName("script")[0];
a.src=document.location.protocol+"//script.crazyegg.com/pages/scripts/0020/1063.js?"+Math.floor(new Date().getTime()/3600000);
a.async=true;a.type="text/javascript";b.parentNode.insertBefore(a,b), 1);
var d = new Date("2007-09-02 16:55:15.0");
var seconds = Math.floor(d.getTime() / 1000);
var abstractObj =
format : 'MIME-HTML',
id : "1011343",
onlineDate : "" + seconds + "",
title : "Review the Literatures of the Commons, and its Application to the Intellectual Property and the Internet",
type : 'XOCS-JOURNAL:SCOPE-ABSTRACT:PREPRINT'
var arrAbstract=;
arrAbstract.push(abstractObj);
pageData["content"] = arrAbstract;
pageDataTracker.trackPageLoad();