Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
officejs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
officejs
Commits
554593ad
Commit
554593ad
authored
Feb 10, 2012
by
Ivan Tyagov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add proof of concepts folder.
parent
d6318863
Changes
13
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
23571 additions
and
0 deletions
+23571
-0
UNGProject/gadget-poc/erp5-spa.js
UNGProject/gadget-poc/erp5-spa.js
+61
-0
UNGProject/gadget-poc/htmlparser.js
UNGProject/gadget-poc/htmlparser.js
+311
-0
UNGProject/gadget-poc/index.html
UNGProject/gadget-poc/index.html
+94
-0
UNGProject/gadget-poc/jquery-1.7.1.js
UNGProject/gadget-poc/jquery-1.7.1.js
+9266
-0
UNGProject/gadget-poc/jquery-ui.js
UNGProject/gadget-poc/jquery-ui.js
+11767
-0
UNGProject/gadget-poc/portal_gadgets/application/asOam
UNGProject/gadget-poc/portal_gadgets/application/asOam
+20
-0
UNGProject/gadget-poc/require.js
UNGProject/gadget-poc/require.js
+2052
-0
UNGProject/poc/aws/aws.js
UNGProject/poc/aws/aws.js
+0
-0
UNGProject/poc/aws/index.html
UNGProject/poc/aws/index.html
+0
-0
UNGProject/poc/aws/jquery-1.7.1.min.js
UNGProject/poc/aws/jquery-1.7.1.min.js
+0
-0
UNGProject/poc/aws/jquery.base64.js
UNGProject/poc/aws/jquery.base64.js
+0
-0
UNGProject/poc/aws/sha1.js
UNGProject/poc/aws/sha1.js
+0
-0
UNGProject/poc/aws/webtoolkit.utf8.js
UNGProject/poc/aws/webtoolkit.utf8.js
+0
-0
No files found.
UNGProject/gadget-poc/erp5-spa.js
0 → 100644
View file @
554593ad
/*
ERP5 dynamic gadget loader
Issues:
- Browser allows load gadgets' file sonly from same origin (conisder use eval?)
-
*/
var
ERP5
=
{
load
:
function
()
{
// Load gadget layoyut by traversing DOM
application
=
$
(
"
#application
"
)
gadget_list
=
application
.
find
(
"
[gadget]
"
);
// load application gadget
ERP5
.
loadGadgetFromUrl
(
application
);
// Load siblings
//gadget_list.each(function(i,v){ERP5.loadGadgetFromUrl($(this));});
},
save
:
function
()
{
// XXX: Save gadget layoyut by traversing DOM and using some kind of storage
console
.
log
(
"
save
"
);
},
parse
:
function
(
data
){
// XXX: Parse an HTML document and get out .js and .css
// XXX: load .css
// XXX: load .jss (see requirejs)
// $.ajax({url:"jquery-ui.js",
// type: "script"});
},
loadGadgetFromUrl
:
function
(
gadget
)
{
// Load gadget's SPECs from URL
url
=
gadget
.
attr
(
"
gadget
"
)
$
.
ajax
({
url
:
url
,
success
:
function
(
data
)
{
ERP5
.
parse
(
data
);
gadget
.
append
(
"
<div>
"
+
data
+
"
</div>
"
);
gadget
.
find
(
"
a
"
).
each
(
function
(){
$
(
this
).
click
(
function
(){
alert
(
"
disabled
"
);
return
false
;})}
)
},
});
}
}
// init all when DOM is ready
$
(
document
).
ready
(
function
()
{
ERP5
.
load
();
});
UNGProject/gadget-poc/htmlparser.js
0 → 100644
View file @
554593ad
/*
* HTML Parser By John Resig (ejohn.org)
* Original code by Erik Arvidsson, Mozilla Public License
* http://erik.eae.net/simplehtmlparser/simplehtmlparser.js
*
* // Use like so:
* HTMLParser(htmlString, {
* start: function(tag, attrs, unary) {},
* end: function(tag) {},
* chars: function(text) {},
* comment: function(text) {}
* });
*
* // or to get an XML string:
* HTMLtoXML(htmlString);
*
* // or to get an XML DOM Document
* HTMLtoDOM(htmlString);
*
* // or to inject into an existing document/DOM node
* HTMLtoDOM(htmlString, document);
* HTMLtoDOM(htmlString, document.body);
*
*/
(
function
(){
// Regular Expressions for parsing tags and attributes
var
startTag
=
/^<
([
-A-Za-z0-9_
]
+
)((?:\s
+
\w
+
(?:\s
*=
\s
*
(?:(?:
"
[^
"
]
*"
)
|
(?:
'
[^
'
]
*'
)
|
[^
>
\s]
+
))?)
*
)\s
*
(\/?)
>/
,
endTag
=
/^<
\/([
-A-Za-z0-9_
]
+
)[^
>
]
*>/
,
attr
=
/
([
-A-Za-z0-9_
]
+
)(?:\s
*=
\s
*
(?:(?:
"
((?:\\
.|
[^
"
])
*
)
"
)
|
(?:
'
((?:\\
.|
[^
'
])
*
)
'
)
|
([^
>
\s]
+
)))?
/g
;
// Empty Elements - HTML 4.01
var
empty
=
makeMap
(
"
area,base,basefont,br,col,frame,hr,img,input,isindex,link,meta,param,embed
"
);
// Block Elements - HTML 4.01
var
block
=
makeMap
(
"
address,applet,blockquote,button,center,dd,del,dir,div,dl,dt,fieldset,form,frameset,hr,iframe,ins,isindex,li,map,menu,noframes,noscript,object,ol,p,pre,script,table,tbody,td,tfoot,th,thead,tr,ul
"
);
// Inline Elements - HTML 4.01
var
inline
=
makeMap
(
"
a,abbr,acronym,applet,b,basefont,bdo,big,br,button,cite,code,del,dfn,em,font,i,iframe,img,input,ins,kbd,label,map,object,q,s,samp,script,select,small,span,strike,strong,sub,sup,textarea,tt,u,var
"
);
// Elements that you can, intentionally, leave open
// (and which close themselves)
var
closeSelf
=
makeMap
(
"
colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr
"
);
// Attributes that have their values filled in disabled="disabled"
var
fillAttrs
=
makeMap
(
"
checked,compact,declare,defer,disabled,ismap,multiple,nohref,noresize,noshade,nowrap,readonly,selected
"
);
// Special Elements (can contain anything)
var
special
=
makeMap
(
"
script,style
"
);
var
HTMLParser
=
this
.
HTMLParser
=
function
(
html
,
handler
)
{
var
index
,
chars
,
match
,
stack
=
[],
last
=
html
;
stack
.
last
=
function
(){
return
this
[
this
.
length
-
1
];
};
while
(
html
)
{
chars
=
true
;
// Make sure we're not in a script or style element
if
(
!
stack
.
last
()
||
!
special
[
stack
.
last
()
]
)
{
// Comment
if
(
html
.
indexOf
(
"
<!--
"
)
==
0
)
{
index
=
html
.
indexOf
(
"
-->
"
);
if
(
index
>=
0
)
{
if
(
handler
.
comment
)
handler
.
comment
(
html
.
substring
(
4
,
index
)
);
html
=
html
.
substring
(
index
+
3
);
chars
=
false
;
}
// end tag
}
else
if
(
html
.
indexOf
(
"
</
"
)
==
0
)
{
match
=
html
.
match
(
endTag
);
if
(
match
)
{
html
=
html
.
substring
(
match
[
0
].
length
);
match
[
0
].
replace
(
endTag
,
parseEndTag
);
chars
=
false
;
}
// start tag
}
else
if
(
html
.
indexOf
(
"
<
"
)
==
0
)
{
match
=
html
.
match
(
startTag
);
if
(
match
)
{
html
=
html
.
substring
(
match
[
0
].
length
);
match
[
0
].
replace
(
startTag
,
parseStartTag
);
chars
=
false
;
}
}
if
(
chars
)
{
index
=
html
.
indexOf
(
"
<
"
);
var
text
=
index
<
0
?
html
:
html
.
substring
(
0
,
index
);
html
=
index
<
0
?
""
:
html
.
substring
(
index
);
if
(
handler
.
chars
)
handler
.
chars
(
text
);
}
}
else
{
html
=
html
.
replace
(
new
RegExp
(
"
(.*)<
\
/
"
+
stack
.
last
()
+
"
[^>]*>
"
),
function
(
all
,
text
){
text
=
text
.
replace
(
/<!--
(
.*
?)
-->/g
,
"
$1
"
)
.
replace
(
/<!
\[
CDATA
\[(
.*
?)
]]>/g
,
"
$1
"
);
if
(
handler
.
chars
)
handler
.
chars
(
text
);
return
""
;
});
parseEndTag
(
""
,
stack
.
last
()
);
}
if
(
html
==
last
)
throw
"
Parse Error:
"
+
html
;
last
=
html
;
}
// Clean up any remaining tags
parseEndTag
();
function
parseStartTag
(
tag
,
tagName
,
rest
,
unary
)
{
tagName
=
tagName
.
toLowerCase
();
if
(
block
[
tagName
]
)
{
while
(
stack
.
last
()
&&
inline
[
stack
.
last
()
]
)
{
parseEndTag
(
""
,
stack
.
last
()
);
}
}
if
(
closeSelf
[
tagName
]
&&
stack
.
last
()
==
tagName
)
{
parseEndTag
(
""
,
tagName
);
}
unary
=
empty
[
tagName
]
||
!!
unary
;
if
(
!
unary
)
stack
.
push
(
tagName
);
if
(
handler
.
start
)
{
var
attrs
=
[];
rest
.
replace
(
attr
,
function
(
match
,
name
)
{
var
value
=
arguments
[
2
]
?
arguments
[
2
]
:
arguments
[
3
]
?
arguments
[
3
]
:
arguments
[
4
]
?
arguments
[
4
]
:
fillAttrs
[
name
]
?
name
:
""
;
attrs
.
push
({
name
:
name
,
value
:
value
,
escaped
:
value
.
replace
(
/
(
^|
[^\\])
"/g
,
'
$1
\\\
"
'
)
//"
});
});
if
(
handler
.
start
)
handler
.
start
(
tagName
,
attrs
,
unary
);
}
}
function
parseEndTag
(
tag
,
tagName
)
{
// If no tag name is provided, clean shop
if
(
!
tagName
)
var
pos
=
0
;
// Find the closest opened tag of the same type
else
for
(
var
pos
=
stack
.
length
-
1
;
pos
>=
0
;
pos
--
)
if
(
stack
[
pos
]
==
tagName
)
break
;
if
(
pos
>=
0
)
{
// Close all the open elements, up the stack
for
(
var
i
=
stack
.
length
-
1
;
i
>=
pos
;
i
--
)
if
(
handler
.
end
)
handler
.
end
(
stack
[
i
]
);
// Remove the open elements from the stack
stack
.
length
=
pos
;
}
}
};
this
.
HTMLtoXML
=
function
(
html
)
{
var
results
=
""
;
HTMLParser
(
html
,
{
start
:
function
(
tag
,
attrs
,
unary
)
{
results
+=
"
<
"
+
tag
;
for
(
var
i
=
0
;
i
<
attrs
.
length
;
i
++
)
results
+=
"
"
+
attrs
[
i
].
name
+
'
="
'
+
attrs
[
i
].
escaped
+
'
"
'
;
results
+=
(
unary
?
"
/
"
:
""
)
+
"
>
"
;
},
end
:
function
(
tag
)
{
results
+=
"
</
"
+
tag
+
"
>
"
;
},
chars
:
function
(
text
)
{
results
+=
text
;
},
comment
:
function
(
text
)
{
results
+=
"
<!--
"
+
text
+
"
-->
"
;
}
});
return
results
;
};
this
.
HTMLtoDOM
=
function
(
html
,
doc
)
{
// There can be only one of these elements
var
one
=
makeMap
(
"
html,head,body,title
"
);
// Enforce a structure for the document
var
structure
=
{
link
:
"
head
"
,
base
:
"
head
"
};
if
(
!
doc
)
{
if
(
typeof
DOMDocument
!=
"
undefined
"
)
doc
=
new
DOMDocument
();
else
if
(
typeof
document
!=
"
undefined
"
&&
document
.
implementation
&&
document
.
implementation
.
createDocument
)
doc
=
document
.
implementation
.
createDocument
(
""
,
""
,
null
);
else
if
(
typeof
ActiveX
!=
"
undefined
"
)
doc
=
new
ActiveXObject
(
"
Msxml.DOMDocument
"
);
}
else
doc
=
doc
.
ownerDocument
||
doc
.
getOwnerDocument
&&
doc
.
getOwnerDocument
()
||
doc
;
var
elems
=
[],
documentElement
=
doc
.
documentElement
||
doc
.
getDocumentElement
&&
doc
.
getDocumentElement
();
// If we're dealing with an empty document then we
// need to pre-populate it with the HTML document structure
if
(
!
documentElement
&&
doc
.
createElement
)
(
function
(){
var
html
=
doc
.
createElement
(
"
html
"
);
var
head
=
doc
.
createElement
(
"
head
"
);
head
.
appendChild
(
doc
.
createElement
(
"
title
"
)
);
html
.
appendChild
(
head
);
html
.
appendChild
(
doc
.
createElement
(
"
body
"
)
);
doc
.
appendChild
(
html
);
})();
// Find all the unique elements
if
(
doc
.
getElementsByTagName
)
for
(
var
i
in
one
)
one
[
i
]
=
doc
.
getElementsByTagName
(
i
)[
0
];
// If we're working with a document, inject contents into
// the body element
var
curParentNode
=
one
.
body
;
HTMLParser
(
html
,
{
start
:
function
(
tagName
,
attrs
,
unary
)
{
// If it's a pre-built element, then we can ignore
// its construction
if
(
one
[
tagName
]
)
{
curParentNode
=
one
[
tagName
];
return
;
}
var
elem
=
doc
.
createElement
(
tagName
);
for
(
var
attr
in
attrs
)
elem
.
setAttribute
(
attrs
[
attr
].
name
,
attrs
[
attr
].
value
);
if
(
structure
[
tagName
]
&&
typeof
one
[
structure
[
tagName
]
]
!=
"
boolean
"
)
one
[
structure
[
tagName
]
].
appendChild
(
elem
);
else
if
(
curParentNode
&&
curParentNode
.
appendChild
)
curParentNode
.
appendChild
(
elem
);
if
(
!
unary
)
{
elems
.
push
(
elem
);
curParentNode
=
elem
;
}
},
end
:
function
(
tag
)
{
elems
.
length
-=
1
;
// Init the new parentNode
curParentNode
=
elems
[
elems
.
length
-
1
];
},
chars
:
function
(
text
)
{
curParentNode
.
appendChild
(
doc
.
createTextNode
(
text
)
);
},
comment
:
function
(
text
)
{
// create comment node
}
});
return
doc
;
};
function
makeMap
(
str
){
var
obj
=
{},
items
=
str
.
split
(
"
,
"
);
for
(
var
i
=
0
;
i
<
items
.
length
;
i
++
)
obj
[
items
[
i
]
]
=
true
;
return
obj
;
}
})();
UNGProject/gadget-poc/index.html
0 → 100644
View file @
554593ad
<html>
<head>
<title>
Gadget POC
</title>
<script
src=
"jquery-1.7.1.js"
type=
"text/javascript"
></script>
<script
src=
"erp5-spa.js"
type=
"text/javascript"
></script>
<script
src=
"htmlparser.js"
type=
"text/javascript"
></script>
</head>
<body>
<div
id=
"application"
gadget=
"portal_gadgets/application/asOam"
gadget:property=
"{}"
>
<div
id=
"navigation"
gadget=
"portal_gadgets/menu/asOam"
gadget:property=
"{}"
gadget:visible=
"true"
>
Navigation
</div>
<div
id=
"main"
gadget=
"portal_gadgets/mode/asOam"
gadget:property=
"{}"
gadget:visible=
"true"
>
<div
id=
"tab"
gadget:type=
"portal_gadgets/tab/asOam"
>
<div
id=
"pad1"
gadget:type=
"portal_gadgets/pad/asOam"
gadget:property=
"{}"
>
PAD1
<div
id=
"column1"
gadget:type=
"portal_gadgets/column/asOam"
gadget:property=
"{}"
>
<div
id=
"box1"
gadget:type=
"portal_gadgets/worklist/asOam"
gadget:property=
"{}"
gadget:movable=
"true"
>
Box1
</div>
<div
id=
"box2"
gadget:type=
"portal_gadgets/contact/asOam"
gadget:property=
"{}"
gadget:movable=
"true"
>
Box2
</div>
</div>
<div
id=
"column2"
gadget:type=
"portal_gadgets/column/asOam"
gadget:property=
"{}"
>
</div>
<div
id=
"column3"
gadget:type=
"portal_gadgets/proxy/asOam"
gadget:property=
"{"
proxy_url
"
:
"
web_page_module
/
default
/
asStrippedHTML
",
"
proxy_dom
"
:
"
#application
.
#main
.
#tab2
.
#column1
.
#map
"
}"
>
</div>
</div>
<div
id=
"pad2"
gadget:type=
"portal_gadgets/pad/asOam"
gadget:property=
"{}"
>
PAD2
<div
id=
"column1"
gadget:type=
"portal_gadgets/column/asOam"
gadget:property=
"{}"
>
</div>
</div>
</div>
</div>
<div
id=
"list"
gadget=
"portal_gadgets/mode/asOam"
gadget:property=
"{}"
>
<div
id=
"action"
gadget=
"portal_gadgets/action/asOam"
gadget:property=
"{}"
>
</div>
<div
id=
"list"
gadget=
"portal_gadgets/list/asOam"
gadget:property=
"{}"
>
</div>
<div
id=
"dialog"
gadget=
"portal_gadgets/dialog/asOam"
gadget:property=
"{}"
>
</div>
</div>
<div
id=
"view"
gadget=
"portal_gadgets/mode/asOam"
gadget:property=
"{}"
>
<div
id=
"action"
gadget=
"portal_gadgets/action/asOam"
gadget:property=
"{}"
>
</div>
<div
id=
"view"
gadget=
"portal_gadgets/view/asOam"
gadget:property=
"{}"
>
</div>
<div
id=
"dialog"
gadget=
"portal_gadgets/dialog/asOam"
gadget:property=
"{}"
>
</div>
</div>
</div>
</body>
</html>
UNGProject/gadget-poc/jquery-1.7.1.js
0 → 100644
View file @
554593ad
This diff is collapsed.
Click to expand it.
UNGProject/gadget-poc/jquery-ui.js
0 → 100644
View file @
554593ad
This diff is collapsed.
Click to expand it.
UNGProject/gadget-poc/portal_gadgets/application/asOam
0 → 100644
View file @
554593ad
<html>
<head>
<title>
Gadget POC
</title>
<script
src=
"jquery-ui.js"
type=
"text/javascript"
></script>
</head>
<script>
$
(
function
()
{
$
(
"
#datepicker
"
).
datepicker
();
});
</script>
<body>
<div
id=
"datepicker"
>
<p>
Simple
<a
href=
"http://www.apple.com/toto"
>
body
</a>
ggg
</p>
</div>
</body>
</html>
\ No newline at end of file
UNGProject/gadget-poc/require.js
0 → 100644
View file @
554593ad
This diff is collapsed.
Click to expand it.
UNGProject/aws/aws.js
→
UNGProject/
poc/
aws/aws.js
View file @
554593ad
File moved
UNGProject/aws/index.html
→
UNGProject/
poc/
aws/index.html
View file @
554593ad
File moved
UNGProject/aws/jquery-1.7.1.min.js
→
UNGProject/
poc/
aws/jquery-1.7.1.min.js
View file @
554593ad
File moved
UNGProject/aws/jquery.base64.js
→
UNGProject/
poc/
aws/jquery.base64.js
View file @
554593ad
File moved
UNGProject/aws/sha1.js
→
UNGProject/
poc/
aws/sha1.js
View file @
554593ad
File moved
UNGProject/aws/webtoolkit.utf8.js
→
UNGProject/
poc/
aws/webtoolkit.utf8.js
View file @
554593ad
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment