Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 6a6c213

Browse files
Add files via upload
1 parent d911ab4 commit 6a6c213

27 files changed

+541
-0
lines changed

‎templates/bulkInsertCassandra.html‎

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Bulk Insert Cassandra</title>
6+
</head>
7+
<body>
8+
<form action="/bulkInsertCassandra/{{client_id}}/{{client_key}}/{{bundle_path}}" method="POST">
9+
<h1>Enter details to bulk insert in Cassandra</h1>
10+
<table>
11+
<tr><td>Keyspace name:</td><td> <input type="text" name="db" id="db"></td></tr>
12+
<tr><td>Table name: </td><td><input type="text" name="table" id="table"></td></tr>
13+
<tr><td>Attributes: </td><td><input type="text" name="attr" id="attr"></td></tr>
14+
<tr><td>Path (csv): </td><td><input type="text" name="path" id="Path"></td></tr>
15+
<tr><td colspan="2"><input type="submit" value="Insert"></td></tr>
16+
</table>
17+
</form>
18+
</body>
19+
</html>

‎templates/bulkInsertMongoDB.html‎

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Bulk Insert MongoDB</title>
6+
</head>
7+
<body>
8+
<form action="/bulkInsertMongoDB/{{part1}}/{{part2}}" method="POST">
9+
<h1>Enter details to bulk insert in MongoDB</h1>
10+
<table>
11+
<tr><td>Database name: </td><td><input type="text" name="db" id="db"></td></tr>
12+
<tr><td>Collection name: </td><td><input type="text" name="coll" id="coll"></td></tr>
13+
<tr><td>Path (json): </td><td><input type="text" name="path" id="path"></td></tr>
14+
<tr><td colspan="2"><input type="submit" value="Insert"></td></tr>
15+
</table>
16+
</form>
17+
</body>
18+
</html>

‎templates/bulkInsertSql.html‎

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Bulk Insert SQL</title>
6+
</head>
7+
<body>
8+
<form action="/bulkInsertSql/{{host}}/{{user}}/{{passwd}}" method="POST">
9+
<h1>Enter details to bulk insert in MySQL</h1>
10+
<table>
11+
<tr><td>Database name:</td> <td><input type="text" name="db" id="db"></td></tr>
12+
<tr><td>Table name: </td><td><input type="text" name="table" id="table"></td></tr>
13+
<tr><td>Attributes: </td> <td><input type="text" name="attr" id="attr"></td></tr>
14+
<tr><td>Path (csv): </td><td><input type="text" name="path" id="Path"></td></tr>
15+
<tr><td colspan="2"><input type="submit" value="Insert"></td></tr>
16+
</table>
17+
</form>
18+
</body>
19+
</html>

‎templates/createCassandra.html‎

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Create Cassandra</title>
6+
</head>
7+
<body>
8+
<form action="/createTableCassandra/{{client_id}}/{{client_key}}/{{bundle_path}}" method="POST">
9+
<h1>Create Table in Cassandra</h1>
10+
<h2>For online Cassandra - DataStax, make sure your keyspace is already created.<br>
11+
Hence, leave the Class and Replication Factor fields blank. </h2>
12+
<h2>For offline Cassandra, if your keyspace doesn't exist already, enter details in all the fields.<br>
13+
If keyspace exists, leave the Class and Replication Factor fields blank. </h2>
14+
<table>
15+
<tr><td>Keyspace name: </td><td><input type="text" name="db" id="db"></td></tr>
16+
<tr><td>Class: </td><td><input type="text" name="class" id="class"></td></tr>
17+
<tr><td>Replication Factor: </td><td><input type="text" name="rf" id="rf"></td></tr>
18+
<tr><td>Table name: </td><td><input type="text" name="table" id="table"></td></tr>
19+
<tr><td>Attributes: </td><td><input type="text" name="attr" id="attr"></td></tr>
20+
<tr><td colspan="2"><input type="submit" value="Create"></td></tr>
21+
</table>
22+
</form>
23+
</body>
24+
</html>

‎templates/createMongoDB.html‎

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Create MongoDB</title>
6+
</head>
7+
<body>
8+
<form action="/createDocumentMongoDB/{{part1}}/{{part2}}" method="POST">
9+
<h1>Create Document in MongoDB</h1>
10+
<table>
11+
<tr><td>Database name: </td><td><input type="text" name="db" id="db"></td></tr>
12+
<tr><td>Collection name: </td><td><input type="text" name="coll" id="coll"></td></tr>
13+
<tr><td colspan="2"><input type="submit" value="Create"></td></tr>
14+
</table>
15+
</form>
16+
</body>
17+
</html>

‎templates/createSql.html‎

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Create SQL</title>
6+
</head>
7+
<body>
8+
<form action="/createTableSql/{{host}}/{{user}}/{{passwd}}" method="POST">
9+
<h1>Create Table in MySQL</h1>
10+
<table>
11+
<tr><td>Database name: </td><td><input type="text" name="db" id="db"></td></tr>
12+
<tr><td>Table name: </td><td><input type="text" name="table" id="table"></td></tr>
13+
<tr><td>Attributes: </td><td><input type="text" name="attr" id="attr"></td></tr>
14+
<tr><td colspan="2"><input type="submit" value="Create"></td></tr>
15+
</table>
16+
</form>
17+
</body>
18+
</html>

‎templates/deleteCassandra.html‎

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Delete Records</title>
6+
</head>
7+
<body>
8+
<form action="/deleteCassandra/{{client_id}}/{{client_key}}/{{bundle_path}}" method="POST">
9+
<h1>Enter details to delete in Cassandra</h1>
10+
<table>
11+
<tr><td>Keyspace name: </td><td><input type="text" name="db" id="db"></td></tr>
12+
<tr><td>Table name: </td><td><input type="text" name="table" id="table"></td></tr>
13+
<tr><td>WHERE: </td><td><input type="text" name="val" id="val"></td></tr>
14+
<tr><td colspan="2"><input type="submit" value="Delete"></td></tr>
15+
</table>
16+
</form>
17+
</body>
18+
</html>

‎templates/deleteMongoDB.html‎

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Delete MongoDB</title>
6+
</head>
7+
<body>
8+
<form action="/deleteMongoDB/{{part1}}/{{part2}}" method="POST">
9+
<h1>Enter details to delete in MongoDB</h1>
10+
<table>
11+
<tr><td>Database name: </td><td><input type="text" name="db" id="db"></td></tr>
12+
<tr><td>Collection name: </td><td><input type="text" name="coll" id="coll"></td></tr>
13+
<tr><td>WHERE (dict): </td><td><input type="text" name="delete" id="delete"></td></tr>
14+
<tr><td colspan="2">
15+
<select id="delete_op" name="delete_op">
16+
<option value="delete_one">Delete One</option>
17+
<option value="delete_many">Delete Many</option>
18+
</select>
19+
</td></tr>
20+
<tr><td colspan="2"><input type="submit" value="Delete"></td></tr>
21+
</table>
22+
</form>
23+
</body>
24+
</html>

‎templates/deleteSql.html‎

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Delete Records</title>
6+
</head>
7+
<body>
8+
<form action="/deleteSql/{{host}}/{{user}}/{{passwd}}" method="POST">
9+
<h1>Enter details to delete in MySQL</h1>
10+
<table>
11+
<tr><td>Database name: </td><td><input type="text" name="db" id="db"></td></tr>
12+
<tr><td>Table name: </td><td><input type="text" name="table" id="table"></td></tr>
13+
<tr><td>WHERE: </td><td><input type="text" name="val" id="val"></td></tr>
14+
<tr><td colspan="2"><input type="submit" value="Delete">
15+
</table>
16+
</form>
17+
</body>
18+
</html>

‎templates/downloadCassandra.html‎

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>Download Cassandra</title>
6+
</head>
7+
<body>
8+
<form action="/downloadCassandra/{{client_id}}/{{client_key}}/{{bundle_path}}" method="POST">
9+
<h1>Enter details to download from Cassandra</h1>
10+
<table>
11+
<tr><td>Keyspace name: </td><td><input type="text" name="db" id="db"></td></tr>
12+
<tr><td>Table name: </td><td><input type="text" name="table" id="table"></td></tr>
13+
<tr><td>Path (csv): </td><td><input type="text" name="path" id="path"></td></tr>
14+
<tr><td colspan="2"><input type="submit" value="Download"></td></tr>
15+
</table>
16+
</form>
17+
</body>
18+
</html>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /