Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
daaexample
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Iago Gómez Salgado
daaexample
Commits
0cec5cdc
Commit
0cec5cdc
authored
Mar 10, 2017
by
Iago Gómez Salgado
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added pets to datasets
parent
79ba0ac4
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
25 additions
and
1 deletion
+25
-1
dataset-add.xml
src/test/resources/datasets/dataset-add.xml
+5
-0
dataset-delete.xml
src/test/resources/datasets/dataset-delete.xml
+3
-0
dataset-modify.xml
src/test/resources/datasets/dataset-modify.xml
+4
-0
dataset.dtd
src/test/resources/datasets/dataset.dtd
+9
-1
dataset.xml
src/test/resources/datasets/dataset.xml
+4
-0
No files found.
src/test/resources/datasets/dataset-add.xml
View file @
0cec5cdc
...
@@ -16,4 +16,9 @@
...
@@ -16,4 +16,9 @@
<users
login=
"admin"
password=
"43f413b773f7d0cfad0e8e6529ec1249ce71e8697919eab30d82d800a3986b70"
/>
<users
login=
"admin"
password=
"43f413b773f7d0cfad0e8e6529ec1249ce71e8697919eab30d82d800a3986b70"
/>
<users
login=
"normal"
password=
"688f21dd2d65970f174e2c9d35159250a8a23e27585452683db8c5d10b586336"
/>
<users
login=
"normal"
password=
"688f21dd2d65970f174e2c9d35159250a8a23e27585452683db8c5d10b586336"
/>
<pets
id=
"1"
name=
"Ron"
kind=
"Can"
breed=
"Moito"
owner=
"1"
/>
<pets
id=
"1"
name=
"Paul"
kind=
"Gato"
breed=
"Alerxico"
owner=
"2"
/>
<pets
id=
"1"
name=
"Punky"
kind=
"Gato"
breed=
"Alerxico"
owner=
"2"
/>
<pets
id=
"1"
name=
"Cospe"
kind=
"Gaivota"
breed=
"Pepera"
owner=
"1"
/>
</dataset>
</dataset>
\ No newline at end of file
src/test/resources/datasets/dataset-delete.xml
View file @
0cec5cdc
...
@@ -14,4 +14,7 @@
...
@@ -14,4 +14,7 @@
<users
login=
"admin"
password=
"43f413b773f7d0cfad0e8e6529ec1249ce71e8697919eab30d82d800a3986b70"
/>
<users
login=
"admin"
password=
"43f413b773f7d0cfad0e8e6529ec1249ce71e8697919eab30d82d800a3986b70"
/>
<users
login=
"normal"
password=
"688f21dd2d65970f174e2c9d35159250a8a23e27585452683db8c5d10b586336"
/>
<users
login=
"normal"
password=
"688f21dd2d65970f174e2c9d35159250a8a23e27585452683db8c5d10b586336"
/>
<pets
id=
"1"
name=
"Ron"
kind=
"Can"
breed=
"Moito"
owner=
"1"
/>
<pets
id=
"1"
name=
"Paul"
kind=
"Gato"
breed=
"Alerxico"
owner=
"2"
/>
</dataset>
</dataset>
\ No newline at end of file
src/test/resources/datasets/dataset-modify.xml
View file @
0cec5cdc
...
@@ -15,4 +15,8 @@
...
@@ -15,4 +15,8 @@
<users
login=
"admin"
password=
"43f413b773f7d0cfad0e8e6529ec1249ce71e8697919eab30d82d800a3986b70"
/>
<users
login=
"admin"
password=
"43f413b773f7d0cfad0e8e6529ec1249ce71e8697919eab30d82d800a3986b70"
/>
<users
login=
"normal"
password=
"688f21dd2d65970f174e2c9d35159250a8a23e27585452683db8c5d10b586336"
/>
<users
login=
"normal"
password=
"688f21dd2d65970f174e2c9d35159250a8a23e27585452683db8c5d10b586336"
/>
<pets
id=
"1"
name=
"Ron"
kind=
"Can"
breed=
"Moito"
owner=
"1"
/>
<pets
id=
"1"
name=
"Paul"
kind=
"Gato"
breed=
"Alerxico"
owner=
"2"
/>
<pets
id=
"1"
name=
"Punky"
kind=
"Gato"
breed=
"Alerxico"
owner=
"2"
/>
</dataset>
</dataset>
\ No newline at end of file
src/test/resources/datasets/dataset.dtd
View file @
0cec5cdc
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!ELEMENT dataset (people*, users*)>
<!ELEMENT dataset (people*, users*
, pets*
)>
<!ELEMENT people EMPTY>
<!ELEMENT people EMPTY>
<!ELEMENT users EMPTY>
<!ELEMENT users EMPTY>
<!ELEMENT pets EMPTY>
<!ATTLIST people
<!ATTLIST people
id CDATA #IMPLIED
id CDATA #IMPLIED
name CDATA #IMPLIED
name CDATA #IMPLIED
...
@@ -11,3 +12,10 @@
...
@@ -11,3 +12,10 @@
login CDATA #IMPLIED
login CDATA #IMPLIED
password CDATA #IMPLIED
password CDATA #IMPLIED
>
>
<!ATTLIST pets
id CDATA #IMPLIED
name CDATA #IMPLIED
kind CDATA #IMPLIED
breed CDATA #IMPLIED
owner CDATA #IMPLIED
>
\ No newline at end of file
src/test/resources/datasets/dataset.xml
View file @
0cec5cdc
...
@@ -15,4 +15,8 @@
...
@@ -15,4 +15,8 @@
<users
login=
"admin"
password=
"43f413b773f7d0cfad0e8e6529ec1249ce71e8697919eab30d82d800a3986b70"
/>
<users
login=
"admin"
password=
"43f413b773f7d0cfad0e8e6529ec1249ce71e8697919eab30d82d800a3986b70"
/>
<users
login=
"normal"
password=
"688f21dd2d65970f174e2c9d35159250a8a23e27585452683db8c5d10b586336"
/>
<users
login=
"normal"
password=
"688f21dd2d65970f174e2c9d35159250a8a23e27585452683db8c5d10b586336"
/>
<pets
id=
"1"
name=
"Ron"
kind=
"Can"
breed=
"Moito"
owner=
"1"
/>
<pets
id=
"1"
name=
"Paul"
kind=
"Gato"
breed=
"Alerxico"
owner=
"2"
/>
<pets
id=
"1"
name=
"Punky"
kind=
"Gato"
breed=
"Alerxico"
owner=
"2"
/>
</dataset>
</dataset>
\ No newline at end of file
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