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
ec46cb0a
Commit
ec46cb0a
authored
Aug 19, 2011
by
François Billioud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
little changes in the website appearance
parent
8d4e347f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
24 additions
and
8 deletions
+24
-8
UNGProject/css/ung.css
UNGProject/css/ung.css
+4
-1
UNGProject/index.php
UNGProject/index.php
+2
-2
UNGProject/login.html
UNGProject/login.html
+15
-3
UNGProject/theme.html
UNGProject/theme.html
+1
-0
UNGProject/ung.html
UNGProject/ung.html
+2
-2
No files found.
UNGProject/css/ung.css
View file @
ec46cb0a
...
...
@@ -105,7 +105,7 @@ div#select_language ul li span {
div
#select_language
ul
li
:hover
ul
{
display
:
block
;
}
.menu_create_object
li
li
:hover
,
div
#select_language
ul
li
li
:hover
{
div
#select_language
ul
li
li
:hover
{
background-color
:
#DAE6F6
;
}
/* other options */
...
...
@@ -307,6 +307,9 @@ div.gadget-column {
background-color
:
#FFFFFF
;
border
:
1px
solid
#D1D1D1
;
}
.option_menu
li
li
:hover
{
background-color
:
#DAE6F6
;
}
.option_menu
ul
{
list-style
:
none
outside
none
;
margin
:
0
;
...
...
UNGProject/index.php
View file @
ec46cb0a
...
...
@@ -3,9 +3,9 @@
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
/>
<title></title>
<script
type=
"text/javascript"
>
function
reloc
(
url
)
{
window
.
location
=
url
;}
</script>
<script
type=
"text/javascript"
>
function
reloc
(
url
)
{
window
.
location
.
replace
(
url
)
;}
</script>
</head>
<body
onload=
"reloc('
mail
.html');"
>
<body
onload=
"reloc('
ung
.html');"
>
</body>
</html>
UNGProject/login.html
View file @
ec46cb0a
...
...
@@ -17,6 +17,8 @@
<link
type=
"text/css"
rel=
"stylesheet"
href=
"css/ung.css"
/>
<script
type=
"text/javascript"
src=
"js/jquery/jquery.js"
></script>
<script
type=
"text/javascript"
src=
"js/tools.js"
></script>
<script
type=
"text/javascript"
src=
"unhosted/jio.js"
></script>
<script
type=
"text/javascript"
src=
"js/theme.js"
></script>
<script
type=
"text/javascript"
src=
"js/ung.js"
></script>
<script
type=
"text/javascript"
src=
"js/login.js"
></script>
...
...
@@ -28,6 +30,16 @@
<script
type=
"text/javascript"
>
var
init
=
function
()
{
//fill known informations
var
wallet
=
getWallet
();
if
(
wallet
)
{
if
(
wallet
.
userName
)
$
(
"
input#name
"
).
attr
(
"
value
"
,
wallet
.
userName
);
if
(
wallet
.
storageLocation
)
$
(
"
input#storage_location
"
).
attr
(
"
value
"
,
wallet
.
provider
);
}
//log an user after having logged in in their JIO account
tryLog
();
tooltip
=
new
Tooltip
();
$
(
"
span.tooltipElement
"
)
.
mouseover
(
function
()
{
tooltip
.
show
(
"
sdf
"
)})
...
...
@@ -116,15 +128,15 @@
</tr>
<tr>
<td
align=
"center"
>
<label
for=
"
id_provider
"
>
ID provider
<label
for=
"
storage_location
"
>
Storage Location
<span
class=
"tooltipElement"
onmouseover=
"tooltip.show('please, indicate the storage server<br/>where your data will be stored<br/>let free to store on your computer')"
>
(?)
</span>
</label>
</td>
<td>
<input
id=
"
id_provider"
type=
"text"
value=
""
name=
"id_provider
"
/>
<input
id=
"
storage_location"
type=
"text"
value=
""
name=
"storage_location
"
/>
</td>
</tr>
<tr>
...
...
UNGProject/theme.html
View file @
ec46cb0a
...
...
@@ -25,6 +25,7 @@
<script
type=
"text/javascript"
src=
"js/base64.js"
></script>
<script
type=
"text/javascript"
src=
"js/tools.js"
></script>
<script
type=
"text/javascript"
src=
"unhosted/jio.js"
></script>
<script
type=
"text/javascript"
src=
"js/theme.js"
></script>
...
...
UNGProject/ung.html
View file @
ec46cb0a
...
...
@@ -18,9 +18,9 @@
<link
type=
"text/css"
rel=
"stylesheet"
href=
"css/gadget.css"
/>
<script
type=
"text/javascript"
src=
"js/jquery/jquery.js"
></script>
<script
type=
"text/javascript"
src=
"js/jquery/jquery-ui.js"
></script>
<!--<script type="text/javascript" src="/ung/erp5.js"></script>
<script type="text/javascript" src="/erp5_knowledge_box.js"></script>-->
<script
type=
"text/javascript"
src=
"js/tools.js"
></script>
<script
type=
"text/javascript"
src=
"unhosted/jio.js"
></script>
<script
type=
"text/javascript"
src=
"js/theme.js"
></script>
<script
type=
"text/javascript"
src=
"js/ung.js"
></script>
...
...
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