{"id":300,"date":"2013-04-27T14:59:45","date_gmt":"2013-04-27T18:59:45","guid":{"rendered":"http:\/\/internetdistinction.com\/wsisimpacts\/?page_id=300"},"modified":"2020-09-09T13:59:10","modified_gmt":"2020-09-09T17:59:10","slug":"pp_123","status":"publish","type":"page","link":"https:\/\/internetdistinction.com\/wsisimpacts\/wsis\/plenipotentiary\/pp-2010\/pp_123\/","title":{"rendered":"PP Resolution 123"},"content":{"rendered":"<p><style type=\"text\/css\">\r\nbody {}\r\n\r\n:link { color: #0000ff; text-decoration:none;}\r\n:visited { color: #6666ff; text-decoration:none; }\r\na:active { color: #0000ff; text-decoration:none;}\r\na:hover {color: #0000ff; text-decoration:underline; }\r\n\r\ndiv.basetext {}\r\n\r\ndiv.basetop {}\r\n\r\nh1 {\r\n    text-align:center;\r\n}\r\n\r\nspan.h2 {}\r\n\r\ndiv.year {}\r\n\r\ndiv.form {}\r\n\r\nspan.cpt {}\r\n\r\nspan.cm {}\r\n\r\n.fl {}\r\n\r\nul {}\r\n\r\nli {}\r\n\r\nul li {}\r\n\r\nli.basic {}\r\n\r\nspan.links {}\r\n\r\n\r\n\r\n\r\n.sub { display: none; }\r\n.subexp {display: block; }\r\n.sub { display: none; } \r\n\r\n.subexp {display: block; } \r\n\r\nli.exp {\r\n  cursor:pointer;\r\n}\r\n\r\nli.col {\r\n  cursor:pointer;\r\n}\r\n\r\nli.exp_active {\r\n  background-color:#eeeeff;\r\n  cursor:pointer;\r\n}\r\n\r\nli.col_active {\r\n  background-color:#eeeeff;\r\n  cursor:pointer;\r\n}\r\n\r\n\r\nli.basic_active {\r\n  background-color:#eeeeff;\r\n}\r\n<\/style><br \/>\n<SCRIPT language=JavaScript>\r\nfunction get_keycode(evt) {\r\n  \/\/ IE\r\n    code = document.layers ? evt.which\r\n           : document.all ? event.keyCode \/\/ event.keyCode!=evt.keyCode!\r\n           : evt.keyCode;\r\n\r\n  if (code==0) \r\n    code=evt.which; \/\/ for NS\r\n  return code;\r\n}\r\n\r\nvar lastnode=null;\r\nvar listnodes = null;\r\nvar list_index=1;\r\nvar lastnodetype=''; \/\/ determines if node is a link, input or text;\r\n\r\n\/\/ up, left, down, right, keypress codes\r\n\/\/ijkl\r\n\/\/var keys = new Array(105,106,107,108);\r\n\/\/num arrows\r\n\/\/var keys = new Array(56,52,50,54);\r\n\/\/wasd\r\n\/\/ var press2 = new Array(119,97,115,100);\r\n var press = new Array(47,45,42,43);\r\n\r\n\/\/ keydown codes\r\n  \/\/  var keys2=new Array(87,65,83,68);\r\n  var keys= new Array(38,37,40,39);\r\n\r\n  \/\/ keyset 1 = keydown, otherwise press\r\nfunction checkup(keyset,n) {\r\n  if (keyset==1) return (n==keys[0]);\r\n  return ((n==press[0]) \/*|| (n==press2[0])*\/)\r\n}\r\n\r\nfunction checkdn(keyset,n) {\r\n  if (keyset==1) return (n==keys[2]);\r\n  return ((n==press[2]) \/*|| (n==press2[2])*\/)\r\n}\r\n\r\nfunction checkl(keyset,n) {\r\n  if (keyset==1) return (n==keys[1]);\r\n  return ((n==press[1]) \/*|| (n==press2[1])*\/)\r\n}\r\n\r\nfunction checkr(keyset,n) {\r\n  if (keyset==1) return (n==keys[3]);\r\n  return ((n==press[3]) \/*|| (n==press2[3])*\/)\r\n}\r\n\r\n\r\n\r\n\r\n\r\nfunction is_exp(n) {\r\n  if (n==null) return false;\r\n  return ((n.className=='exp') || (n.className=='exp_active'));\r\n}\r\n\r\nfunction is_col(n) {\r\n  if (n==null) return false;\r\n  return ((n.className=='col') || (n.className=='col_active'));\r\n}\r\n\r\nfunction is_basic(n) {\r\n  if (n==null) return false;\r\n  return ((n.className=='basic') || (n.className=='basic_active'));\r\n}\r\n\r\n\r\n\r\n\/* returns i>=0 if true *\/\r\nfunction is_active(node) {\r\n  if (node.className==null) return false\r\n  return node.className.indexOf('_active');\r\n}\r\n\r\nfunction toggle_class(node) {\r\n  if ((node==null) || (node.className==null)) return;\r\n  str=node.className;\r\n  result=\"\";\r\n  i = str.indexOf('_active');\r\n  if (i>0)\r\n    result= str.substr(0,i);\r\n  else\r\n    result= str+\"_active\";\r\n  node.className=result; \r\n  return node;\r\n}\r\n\r\nfunction activate(node) {\r\n  node.style.backgroundColor='#eeeeff';\r\n}\r\n\r\nfunction deactivate(node) {\r\n   node.style.backgroundColor='#ffffff';\r\n}\r\n\r\nfunction is_list_node(n) {\r\n  if (n==null) return false;\r\n  if (n.className==null) return false;\r\n  if ( (is_exp(n)) || \r\n       (is_col(n)) ||\r\n       (is_basic(n)) )\r\n   return true; else return false;\r\n}\r\n\r\n\r\nfunction get_href(n) {\r\n  alist=n.attributes;\r\n  if (alist!=null) {\r\n    hr = alist.getNamedItem('href');\r\n    if (hr!=null) return hr.nodeValue;\r\n  }\r\n  if (n.childNodes.length==0) return '';\r\n  for (var i=0; i<n.childNodes.length; i++) {\r\n    s = get_href(n.childNodes[i]);\r\n    if (s!='') return s;\r\n  }\r\n  return '';\r\n}\r\n\r\nfunction get_link(n) {\r\n  if (n==null) return null;\r\n  if (n.style==null) return null;\r\n\r\n \/\/ disabling uncontrolled recursion to prevent error messages on IE\r\n \/\/ when trying to focus to invisible links (readonly mode)\r\n\/\/    alert(n.nodeName+' '+n.className);\r\n  if ((n.nodeName=='UL') && (n.className=='sub')) return null;\r\n\r\n  if (n.nodeName=='A') return n;\r\n  if (n.childNodes.length==0) return null;\r\n  for (var i=0; i<n.childNodes.length; i++) {\r\n    s = get_link(n.childNodes[i]);\r\n    if (s!=null) return s;\r\n  }\r\n  return null;\r\n}\r\n\r\nfunction set_lastnode(n) {\r\n\/*var d = new Date();\r\nvar t_mil = d.getMilliseconds();*\/\r\n\/\/ testattu nopeuksia explorerilla, ei merkitt\u00e4vi\u00e4 eroja\r\n  if (lastnode==n) return; \r\n\/*  deactivate(lastnode)\r\n  lastnode=n;\r\n  activate(lastnode);*\/\r\n\r\n  if (is_active(lastnode)>=0)\r\n    toggle_class(lastnode);\r\n  lastnode=n;\r\n  if (!(is_active(lastnode)>=0))\r\n    toggle_class(lastnode);\r\n\r\n\r\n\/*var d2 = new Date();\r\nvar t_mil2 = d2.getMilliseconds();\r\n  window.alert(t_mil2-t_mil);*\/\r\n}\r\n\r\nfunction next_list_node() {\r\n  tempIndex = list_index;\r\n  while (tempIndex<listnodes.length-1) {\r\n    tempIndex++;\r\n    var x = listnodes[tempIndex];\r\n    if (is_list_node(x)) {\r\n      list_index=tempIndex;\r\n      return;\r\n    }\r\n  }\r\n}\r\n\r\nfunction prev_list_node() {\r\n  tempIndex = list_index;\r\n  while (tempIndex>0) {\r\n    tempIndex--;\r\n    var x = listnodes[tempIndex];\r\n    if (is_list_node(x)) {\r\n      list_index=tempIndex;\r\n      return;\r\n    }\r\n  }\r\n}\r\n\r\n\r\n\r\nfunction getsub (li) {\r\n  if (li.childNodes.length==0) return null;\r\n  for (var c = 0; c < li.childNodes.length; c++)\r\n    if ( (li.childNodes[c].className == 'sub') || (li.childNodes[c].className == 'subexp') ) \r\n      return li.childNodes[c];\r\n}\r\n\r\nfunction find_listnode_recursive (li) {\r\n  if (is_list_node(li)) return li; \r\n  if (li.childNodes.length==0) return null;\r\n  result=null;\r\n  for (var c = 0; c < li.childNodes.length; c++) {\r\n    result=find_listnode_recursive(li.childNodes[c]);\r\n    if (result!=null) return result;\r\n  }\r\n  return null;\r\n}\r\n\r\nfunction next_child_listnode(li) {\r\n  var result=null;\r\n  for (var i=0; i<li.childNodes.length; i++) {\r\n    result=find_listnode_recursive(li.childNodes[i]);\r\n    if (result!=null) return result;\r\n  }\r\n  return null;  \r\n}\r\n\r\nfunction next_actual_sibling_listnode(li) {\r\n  if (li==null) return null;\r\n  var temp=li;\r\n  while (1) { \r\n    var n = temp.nextSibling;\r\n    if (n==null) {\r\n      n=parent_listnode(temp);\r\n      return next_actual_sibling_listnode(n);\r\n    }\r\n    if (is_list_node(n)) return n;\r\n    temp=n;\r\n  }\r\n}\r\n\r\nfunction next_sibling_listnode(li) {\r\nif (li==null) return null; \r\n var result=null;\r\n  var temp=li;\r\n  if (is_col(temp)) return next_child_listnode(temp);\r\n  while (1) { \r\n    var n = temp.nextSibling;\r\n    if (n==null) {\r\n      n=parent_listnode(temp);\r\n      return next_actual_sibling_listnode(n);\r\n    }\r\n    if (is_list_node(n)) return n;\r\n    temp=n;\r\n  }\r\n}\r\n\r\nfunction last_sibling_listnode(li) {\r\n  if (li==null) return null;\r\n  var temp=li;\r\n  var last=null;\r\n  while(1) {\r\n    var n = temp.nextSibling;\r\n    if (is_list_node(temp)) \r\n      last = temp;\r\n    if (n==null) {\r\n      if (is_col(last)) return last_sibling_listnode(next_child_listnode(last));\r\n      else return last;\r\n    }\r\n    temp = n;\r\n  }\r\n}\r\n\r\nfunction prev_sibling_listnode(li) { \r\n  if (li==null) return null;\r\n  var temp=li;\r\n  var n = null;\r\n  while (1) { \r\n    n = temp.previousSibling;\r\n    if (n==null) {\r\n      return parent_listnode(li);\r\n    }\r\n    if (is_list_node(n)) {\r\n      if (is_col(n)) { \r\n        return last_sibling_listnode(next_child_listnode(n));\r\n      }\r\n      else {\r\n        return n;\r\n      }\r\n    }\r\n    temp=n;\r\n  }\r\n}\r\n\r\n\r\nfunction parent_listnode(li) {\r\n  \/\/ added 12.7.2004 to prevent IE error when readonly mode==true\r\n  if (li==null) return null;\r\n  n=li;\r\n  while (1) {\r\n    n=n.parentNode;\r\n    if (n==null) return null;\r\n    if (is_list_node(n)) return n;\r\n  }\r\n}\r\n\r\nfunction getVisibleParents(id) {\r\n  var n = document.getElementById(id);\r\n  while(1) {\r\n    expand(n);\r\n    n = parent_listnode(n);\r\n    if (n==null) return;\r\n  }\r\n}\r\n\r\nfunction onClickHandler (evt) {\r\nif (lastnode==null) \r\n{\r\nlistnodes = document.getElementsByTagName('li');\r\nlastnode=listnodes[1];\r\ntemp=listnodes[1];\r\n}\r\n\r\n\r\n  var target = evt ? evt.target : event.srcElement;\r\n  if (!is_list_node(target)) return;\r\n  toggle(target);\r\n  set_lastnode(target);\r\n}\r\n\r\n\r\nfunction expand(node) {\r\n    if (!is_exp(node)) return;\r\n    if (node.className=='exp_active') \r\n      node.className='col_active';\r\n    else \r\n        node.className='col';\r\n    setSubClass(node,'subexp');\r\n    \/\/    getsub(node).className='subexp';\r\n}\r\n\r\nfunction collapse(node) {\r\n  if (!is_col(node)) return;\r\n  \r\nif (node.className=='col_active')\r\n    node.className='exp_active'\r\n  else \r\n    node.className='exp';\r\n\r\n setSubClass(node,'sub');\r\n\/\/  getsub(node).className='sub';\r\n\r\n}\r\n\r\nfunction setSubClass(node,name) {\r\n  sub = getsub(node);\r\n  if (sub==null) return;\r\n  sub.className=name;  \r\n}\r\n\r\nfunction toggle(target) {\r\n  if (!is_list_node(target)) return;\r\n    if (is_col(target)) {\r\n      target.className='exp';\r\n      setSubClass(target,'sub');\r\n      \/\/      getsub(target).className='sub';\r\n    }\r\n    else if (is_exp(target)) {\r\n      target.className='col';\r\n      setSubClass(target,'subexp');\r\n      \/\/      getsub(target).className='subexp';\r\n    }\r\n \r\n}\r\n\r\nfunction expandAll(node) {\r\n    if (node.className=='exp') {\r\n        node.className='col';\r\n        setSubClass(node,'subexp');\r\n\/\/        getsub(node).className='subexp';\r\n    }\r\n    var i;\r\n    if (node.childNodes!=null) \r\n\/\/    if (node.hasChildNodes()) \r\n        for ( i = 0; i<node.childNodes.length; i++)\r\n            expandAll(node.childNodes[i]);\r\n}\r\n\r\nfunction collapseAll(node) {\r\n    if  (node.className=='col') {\r\n        node.className='exp';\r\n        setSubClass(node,'sub');\r\n\/\/        getsub(node).className='sub';\r\n    }\r\n    var i;        \r\n    if (node.childNodes!=null) \r\n\/\/ for opera   if (node.hasChildNodes()) \r\n        for ( i = 0; i<node.childNodes.length; i++)\r\n            collapseAll(node.childNodes[i]);\r\n}\r\n\r\n\r\n\r\nfunction unFocus(node) {\r\n     \/\/ unfocuses potential link that is to be hidden (if a==null there is no link so it should not be blurred).\r\n     \/\/ tested with mozilla 1.7, 12.7.2004. \/mn (\r\n      intemp=parent_listnode(node);  \r\n      a = get_link(intemp);     \/\/ added 6.4. to get keyboard working with\r\n      \/\/ moved before collapse to prevent an error message with IE when readonly==true      \r\n      if (a!=null) a.blur(); \/\/ netscape after collapsing a focused node\r\n      return intemp;\r\n}\r\n\r\n\/\/ mode: 0==keypress, 1==keyup\r\nfunction keyfunc(evt,mode) {\r\n var c = get_keycode(evt);\r\n var temp = null;\r\n var a = null;\r\n\r\n  if (lastnode==null) {\r\n    listnodes = document.getElementsByTagName('li');\r\n    lastnode=listnodes[1];\r\n    temp=listnodes[1];\r\n  }\r\n\r\n  \/\/window.alert(c);\r\n  if (checkup(mode,c)) { \/\/ i \r\n   temp=prev_sibling_listnode(lastnode);\r\n  }\r\n  else if (checkdn(mode,c)) { \/\/ k\r\n    temp=next_sibling_listnode(lastnode);\r\n  }\r\n  else if (checkr(mode,c)) { \/\/ l\r\n    expand(lastnode);\r\n    \/\/  temp=next_child_listnode(lastnode);\r\n    \/\/ if (temp==null) {\r\n      a = get_link(lastnode);\r\n        if (a!=null) a.focus(); else self.focus(); \r\n      \/\/}\r\n  }\r\n  else if (checkl(mode,c)) { \/\/ j\r\n    if (is_col(lastnode)) {\r\n      unFocus(lastnode);\r\n      collapse(lastnode);\r\n    }\r\n    else {\r\n      temp=unFocus(lastnode);\r\n      collapse(temp);\r\n    }\r\n   \/\/    if (temp==null) lastnode.focus(); \/\/ forces focus to correct div (try mozilla typesearch) (doesn't seem to work -mn\/6.4.2004)\r\n  }\r\n  else return;\r\n  if (temp!=null) set_lastnode(temp);\r\n\r\n  \/\/ alert('pressed ' + String.fromCharCode(c) + '(' + c + ')');\r\n  return true;\r\n}\r\n\r\n\r\nfunction keytest (evt) {\r\n  return keyfunc(evt,1);\r\n};\r\n\r\n\r\nfunction presstest (evt) {\r\n  return keyfunc(evt,0);\r\n};\r\n\r\n\r\n  document.onclick = onClickHandler;\r\n  document.onkeypress = presstest;\r\n  document.onkeyup = keytest;\r\n<\/SCRIPT><\/p>\n<h3><span>PP RESOLUTION  123  (Rev. Guadalajara, 2010)<\/span><\/h3>\n<h4><span>Bridging the standardization gap between developing and developed countries<\/span><\/h4>\n<p><span>The Plenipotentiary Conference of the International Telecommunication Union (Guadalajara, 2010),<\/span><\/p>\n<ul class=\"subexp\">\n<li class=\"exp\"><span>recalling<\/span>\n<ul class=\"sub\">\n<li class=\"basic\"><span>Resolution 123 (Rev. Antalya, 2006) of the Plenipotentiary Conference,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\"><span>considering<\/span>\n<ul class=\"sub\">\n<li class=\"basic\"><span>a)        that &#8220;the Union shall in particular facilitate the worldwide standardization of telecommunications, with a satisfactory quality of service&#8221; (No. 13 in Article 1 of the ITU Constitution);<\/span><\/li>\n<li class=\"basic\"><span>b)        that, in connection with the functions and structure of the Telecommunication Standardization Sector (ITU-T), in Article 17, the Constitution indicates that those functions shall be &#8220;&#8230;, bearing in mind the particular concerns of the developing countries, to fulfil the purposes of the Union&#8230;&#8221;;<\/span><\/li>\n<li class=\"basic\"><span>c)        that, under the strategic plan for the Union for 2012-2015, ITU-T is to work to &#8220;provide support and assistance to developing countries in bridging the standardization gap in relation with standardization matters, information and communication network infrastructure and applications, and relevant training materials for capacity building, taking into account the characteristics of the telecommunication environment of the developing countries&#8221;,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\"><span>considering further<\/span>\n<ul class=\"sub\">\n<li class=\"basic\"><span>a)        that the World Telecommunication Standardization Assembly adopted Resolutions 17, 44, 53 and 54 to assist in bridging the standardization gap between developing and developed countries;<\/span><\/li>\n<li class=\"basic\"><span>b)        that the World Telecommunication Development Conference adopted Resolution 47 (Rev. Hyderabad, 2010), which calls for activities to enhance knowledge and effective application of recommendations of ITU-T and of the ITU Radiocommunication Sector (ITU-R) in developing countries, and Resolution 37 (Rev. Hyderabad, 2010), which recognizes the need to create digital opportunities in developing countries,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\"><span>recalling<\/span>\n<ul class=\"sub\">\n<li class=\"basic\"><span>that the Geneva Plan of Action and Tunis Agenda for the Information Society of the World Summit on Information Society (WSIS) emphasize efforts to overcome the digital divide and development divides,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\"><span>noting<\/span>\n<ul class=\"sub\">\n<li class=\"col\"><span>the following goals for ITU-T in the strategic plan for the Union for 2012-2015, adopted in Resolution 71 (Rev. Guadalajara, 2010) of this conference:<\/span>\n<ul class=\"subexp\">\n<li class=\"basic\"><span>\u2022        to develop interoperable, non-discriminatory international standards (ITU-T recommendations)<\/span><\/li>\n<li class=\"basic\"><span>\u2022        to assist in bridging the standardization gap between developed and developing countries;<\/span><\/li>\n<li class=\"basic\"><span>\u2022        to extend and facilitate international cooperation among international and regional standardization bodies<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"col\"><span>and the following strategic goal of the Telecommunication Development Sector (ITU-D) in the strategic plan for the Union for 2012-2015, adopted in Resolution 71 (Rev. Guadalajara, 2010):<\/span>\n<ul class=\"subexp\">\n<li class=\"basic\"><span>\u2022        to provide assistance to developing countries in bridging the digital divide by achieving broader telecommunication\/ICT-enabled socio-economic development,<\/span><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\"><span>recognizing<\/span>\n<ul class=\"sub\">\n<li class=\"basic\"><span>a)        the continued shortage of human resources in the standardization field in developing countries, resulting in a low level of developing-country participation in ITU-T and ITU-R meetings, in spite of the improvement observed in such participation lately, and, consequently, in the standards-making process, leading to difficulties when interpreting ITU-T and ITU-R recommendations;<\/span><\/li>\n<li class=\"basic\"><span>b)        ongoing challenges relating to capacity building, in particular for developing countries, in the light of rapid technological innovation and increased convergence of services;<\/span><\/li>\n<li class=\"basic\"><span>c)        the moderate level of participation by representatives of developing countries in ITU standardization activities, whether through lack of awareness of these activities, difficulties in accessing information, lack of training for human talent in standardization-related matters, or lack of financial resources to travel to meeting sites, which are factors with impact in terms of widening the existing knowledge gap;<\/span><\/li>\n<li class=\"basic\"><span>d)        that technological needs and realities vary from country to country and region to region, and in many cases developing countries do not have opportunities or mechanisms to make them known;<\/span><\/li>\n<li class=\"basic\"><span>e)        that in implementation of the provisions of the Annex to Resolution 44 (Rev. Johannesburg, 2008) and of Resolutions 17, 53 and 54 (Rev. Johannesburg, 2008), ITU actions have been carried out through ITU-T to assist in reducing the standardization gap between developing and developed countries,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\"><span>taking into account<\/span>\n<ul class=\"sub\">\n<li class=\"basic\"><span>a)        that developing countries could benefit from improved capability in the application and development of standards;<\/span><\/li>\n<li class=\"basic\"><span>b)        that ITU-T and ITU-R activities and the telecommunication\/information and communication technology (ICT) market could also benefit from better involvement of developing countries in standards-making and standards application;<\/span><\/li>\n<li class=\"basic\"><span>c)        that initiatives to assist in bridging the standardization gap are intrinsic to, and are a high priority task of, the Union;<\/span><\/li>\n<li class=\"basic\"><span>d)        that although ITU is making efforts to reduce the standardization gap, major disparities in knowledge and management of standards remain between developing and developed countries,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\"><span>resolves to instruct the Secretary-General and the Directors of the three Bureaux<\/span>\n<ul class=\"sub\">\n<li class=\"basic\"><span>1        to work closely with each other on the follow-up and implementation of this resolution, as well as Resolution ITU-R 7 (Geneva, 2007) of the Radiocommunication Assembly, Resolutions 17 , 44 and 54 (Rev. Johannesburg, 2008) and 47 (Rev. Hyderabad, 2010), and to step up actions intended and to reduce the standardization gap between developing and developed countries;<\/span><\/li>\n<li class=\"basic\"><span>2        to maintain a close coordination mechanism among the three Sectors at the regional level for bridging the digital divide, through activities of the ITU regional offices to that end;<\/span><\/li>\n<li class=\"basic\"><span>3        to identify ways and means to support the participation of representatives of developing countries in the meetings of the three Sectors of ITU and the dissemination of information on standardization;<\/span><\/li>\n<li class=\"basic\"><span>4        to further collaborate with the relevant regional organizations and support their work in this area,<\/span><\/li>\n<li class=\"basic\"><span>5        to strengthen the reporting mechanisms on the implementation of the action plan associated with Resolution 44 (Rev. Johannesburg, 2008) through, for example, the annual operational plans,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\"><span>invites Member States and Sector Members<\/span>\n<ul class=\"sub\">\n<li class=\"basic\"><span>to make voluntary contributions (financial and inkind) to the fund for bridging the standardization gap, as well as to undertake concrete actions to support ITU&#8217;s actions and the initiatives of its three Sectors and its regional offices in this matter.<\/span><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>PP RESOLUTION 123 (Rev. Guadalajara, 2010) Bridging the standardization gap between developing and developed countries The Plenipotentiary Conference of the International Telecommunication Union (Guadalajara, 2010), recalling Resolution 123 (Rev. Antalya, 2006) of the Plenipotentiary Conference, considering a) that &#8220;the Union shall in particular facilitate the worldwide standardization of telecommunications, with a satisfactory quality of service&#8221; [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1427,"menu_order":123,"comment_status":"open","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-300","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/pages\/300","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/comments?post=300"}],"version-history":[{"count":1,"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/pages\/300\/revisions"}],"predecessor-version":[{"id":1849,"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/pages\/300\/revisions\/1849"}],"up":[{"embeddable":true,"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/pages\/1427"}],"wp:attachment":[{"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/media?parent=300"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}