Skip to content

Commit b3ca73c

Browse files
Add files via upload
1 parent 2d37de9 commit b3ca73c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+185
-32
lines changed

Aplicacion/Thoth-Web/war/GramaticaCS.css

Lines changed: 91 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,55 @@ h1 {
1010
text-align: center;
1111
}
1212

13-
.MyText {
14-
color: blue;
13+
input[type=text] {
14+
background-color : #d8ecf3;
15+
width: 100%;
16+
padding: 10px 50px;
17+
margin: 0.2px 0;
18+
display: inline-block;
19+
border: 1px solid #000000;
20+
border-radius: 4px;
21+
font-size-adjust: none;
22+
font-weight: bold;
23+
}
24+
25+
/* Texto de las gramática*/
26+
.Grammar-Text{
27+
font-size: 15px;
28+
}
29+
30+
/*Texto de los paneles*/
31+
.Panel-Text{
32+
font: bolder;
33+
font-size: 18px;
34+
margin: 0.5em;
35+
}
36+
37+
.gwt-MenuBar .gwt-MenuItem {
38+
cursor: default;
39+
font-family: fantasy;
40+
font-size: 14px;
41+
color: gray;
42+
}
43+
44+
.gwt-MenuBar-horizontal .gwt-MenuItem {
45+
padding: 5px 10px;
46+
vertical-align: bottom;
47+
color: #000;
48+
font-weight: bold;
49+
}
50+
51+
.gwt-MenuBar-horizontal .gwt-MenuItemSeparator {
52+
width: 1px;
53+
padding: 0px;
54+
margin: 0px;
55+
border: 0px;
56+
border-left: 1px solid #ccc;
57+
background: white;
58+
}
59+
60+
.gwt-MenuBar-vertical .subMenuIcon-selected {
61+
background: #E3E8F3;
1562
}
1663

1764
.sendButton {
@@ -21,12 +68,27 @@ h1 {
2168

2269
/* stock list flex table */
2370
.header {
24-
font: 200% ;
71+
font: 300;
2572
background-color: #2062B8;
2673
color: white;
27-
font-style: italic;
74+
margin: 10px;
75+
text-align: center;
76+
min-width: 60px;
77+
min-height: 10px;
78+
max-height: 10px;
2879
}
2980

81+
/* Estilo de las celdas de la flextable*/
82+
.FlexTable-ColumnLabelCell {
83+
border-width: 0 0 2px 0;
84+
border-style: solid;
85+
border-color: white;
86+
margin: 0;
87+
border: 1px solid #BBBBBB;
88+
padding: 3px;
89+
text-align: center;
90+
/*vertical-align: middle;*/
91+
}
3092

3193
/** Most GWT widgets already have a style name defined */
3294
.gwt-DialogBox {
@@ -41,7 +103,31 @@ h1 {
41103
color: red;
42104
}
43105

44-
/** Set ids using widget.getElement().setId("idOfElement") */
106+
45107
#closeButton {
46108
margin: 15px 6px 6px;
47109
}
110+
111+
.gwt-TextArea {
112+
font-weight: bold;
113+
}
114+
115+
.gwt-RichTextArea {
116+
background-color: wite;
117+
font: "Verdana", sans-serif ;
118+
119+
}
120+
/* Estilo del dockpanel con una separacion de 3px */
121+
.dockpanel td {
122+
padding: 3px;
123+
/*background-color: #dfefff;*/
124+
}
125+
126+
.gwt-Big-Text{
127+
padding: 3px;
128+
background-color: #e6e6e6;
129+
border: 1px solid #808080;
130+
margin-top: 7px;
131+
margin: 10px 10px 10px;
132+
}
133+
Lines changed: 6 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!doctype html>
1+
<!DOCTYPE html>
22
<!-- The DOCTYPE declaration above will set the -->
33
<!-- browser's rendering engine into -->
44
<!-- "Standards Mode". Replacing this declaration -->
@@ -7,36 +7,15 @@
77
<html>
88
<head>
99
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
10+
<meta name="gwt:property" content="locale=es,de,fr,es">
1011

11-
<!-- -->
12-
<!-- Consider inlining CSS to reduce the number of requested files -->
13-
<!-- -->
14-
<link type="text/css" rel="stylesheet" href="GramaticaCS.css">
12+
<!-- <link type="text/css" rel="stylesheet" href="GramaticaCS.css"> -->
1513

16-
<!-- -->
17-
<!-- Any title is fine -->
18-
<!-- -->
1914
<title>Thoth</title>
20-
<!-- -->
21-
<!-- This script loads your compiled module. -->
22-
<!-- If you add any GWT meta tags, they must -->
23-
<!-- be added before this line. -->
24-
<!-- -->
25-
<script type="text/javascript" language="javascript" src="gramaticacs/gramaticacs.nocache.js"></script>
26-
</head>
27-
28-
<!-- -->
29-
<!-- The body can have arbitrary html, or -->
30-
<!-- you can leave the body empty if you want -->
31-
<!-- to create a completely dynamic UI. -->
32-
<!-- -->
33-
<body>
34-
35-
<!-- RECOMMENDED if your web app will not function without JavaScript enabled -->
36-
37-
38-
<!-- <h1>Thoth Web</h1> -->
15+
<script type="text/javascript" language="javascript" src="login/login.nocache.js"></script> <!-- login/login.nocache.js gramaticacs/gramaticacs.nocache.js -->
3916

17+
</head>
18+
<body background="/images/thothSplashScreen.png">
4019

4120
</body>
4221
</html>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<!-- Indices written at Tue, 13 Jun 2017 22:58:29 CEST -->
2+
3+
<datastore-indexes/>
4+
Binary file not shown.
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
3+
<application></application>
4+
<version>1</version>
5+
6+
<!--
7+
Allows App Engine to send multiple requests to one instance in parallel:
8+
-->
9+
<threadsafe>true</threadsafe>
10+
<sessions-enabled>true</sessions-enabled>
11+
12+
<!-- Configure serving/caching of GWT files -->
13+
<static-files>
14+
<include path="**" />
15+
16+
<!-- The following line requires App Engine 1.3.2 SDK -->
17+
<include path="**.nocache.*" expiration="0s" />
18+
19+
<include path="**.cache.*" expiration="365d" />
20+
<exclude path="**.gwt.rpc" />
21+
</static-files>
22+
23+
<!-- Configure java.util.logging -->
24+
<system-properties>
25+
<property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>
26+
</system-properties>
27+
28+
29+
30+
<!--
31+
HTTP Sessions are disabled by default. To enable HTTP sessions specify:
32+
33+
<sessions-enabled>true</sessions-enabled>
34+
35+
It's possible to reduce request latency by configuring your application to
36+
asynchronously write HTTP session data to the datastore:
37+
38+
39+
40+
With this feature enabled, there is a very small chance your app will see
41+
stale session data. For details, see
42+
https://cloud.google.com/appengine/docs/java/config/appconfig#Java_appengine_web_xml_Enabling_sessions
43+
-->
44+
45+
</appengine-web-app>
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?xml version="1.0" encoding="UTF-8" ?>
2+
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
5+
http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd" version="1.0">
6+
7+
<persistence-unit name="transactions-optional">
8+
<provider>org.datanucleus.api.jpa.PersistenceProviderImpl</provider>
9+
<properties>
10+
<property name="datanucleus.NontransactionalRead" value="true"/>
11+
<property name="datanucleus.NontransactionalWrite" value="true"/>
12+
<property name="datanucleus.ConnectionURL" value="appengine"/>
13+
</properties>
14+
</persistence-unit>
15+
</persistence>
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# A default log4j configuration for log4j users.
2+
#
3+
# To use this configuration, deploy it into your application's WEB-INF/classes
4+
# directory. You are also encouraged to edit it as you like.
5+
6+
# Configure the console as our one appender
7+
log4j.appender.A1=org.apache.log4j.ConsoleAppender
8+
log4j.appender.A1.layout=org.apache.log4j.PatternLayout
9+
log4j.appender.A1.layout.ConversionPattern=%d{HH:mm:ss,SSS} %-5p [%c] - %m%n
10+
11+
# tighten logging on the DataNucleus Categories
12+
log4j.category.DataNucleus.JDO=WARN, A1
13+
log4j.category.DataNucleus.Persistence=WARN, A1
14+
log4j.category.DataNucleus.Cache=WARN, A1
15+
log4j.category.DataNucleus.MetaData=WARN, A1
16+
log4j.category.DataNucleus.General=WARN, A1
17+
log4j.category.DataNucleus.Utility=WARN, A1
18+
log4j.category.DataNucleus.Transaction=WARN, A1
19+
log4j.category.DataNucleus.Datastore=WARN, A1
20+
log4j.category.DataNucleus.ClassLoading=WARN, A1
21+
log4j.category.DataNucleus.Plugin=WARN, A1
22+
log4j.category.DataNucleus.ValueGeneration=WARN, A1
23+
log4j.category.DataNucleus.Enhancer=WARN, A1
24+
log4j.category.DataNucleus.SchemaTool=WARN, A1
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)