Skip to content

Commit e5a424a

Browse files
Merge pull request #86 from aslsto/master
#49 changed categories. added deep back muscles
2 parents c144ea6 + 183911a commit e5a424a

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

MuscleWeb/database.sql

+10-7
Original file line numberDiff line numberDiff line change
@@ -478,10 +478,10 @@ INSERT INTO tbl_arteries VALUES(120,'R. dorsalis arteriae lumbales ','Dorsal bra
478478
CREATE TABLE tbl_musclegroups (id integer NOT NULL PRIMARY KEY AUTOINCREMENT, name text NOT NULL, lat_name text NOT NULL, parent_id INTEGER, explanation TEXT, FOREIGN KEY (parent_id) REFERENCES tbl_musclegroups (id));
479479
INSERT INTO tbl_musclegroups VALUES(126,'Muscles of the head','Mm. capitis',NULL,'Includes masticatoy and mimetic muscles, 1st and 2nd visceral arch');
480480
INSERT INTO tbl_musclegroups VALUES(127,'Muscles of the neck','Mm. colli',NULL,NULL);
481-
INSERT INTO tbl_musclegroups VALUES(128,'Muscles of the thorax','Mm. thoracis',NULL,NULL);
481+
INSERT INTO tbl_musclegroups VALUES(128,'Muscles of the thorax','Mm. thoracis',195,NULL);
482482
INSERT INTO tbl_musclegroups VALUES(129,'Muscles of the upper limb','Musculi membri superioris',NULL,NULL);
483483
INSERT INTO tbl_musclegroups VALUES(130,'Muscles of the lower limb','Musculi membri inferioris',NULL,NULL);
484-
INSERT INTO tbl_musclegroups VALUES(131,'Muscles of the abdomen','Mm. abdominis',NULL,NULL);
484+
INSERT INTO tbl_musclegroups VALUES(131,'Muscles of the abdomen','Mm. abdominis',195,NULL);
485485
INSERT INTO tbl_musclegroups VALUES(132,'Masticatory muscles','Mm. masticatorii',126,NULL);
486486
INSERT INTO tbl_musclegroups VALUES(133,'Facial (mimetic muscles)','Mm. faciei',126,NULL);
487487
INSERT INTO tbl_musclegroups VALUES(134,'Derivates of the 1st visceral arch','0',127,NULL);
@@ -508,9 +508,9 @@ INSERT INTO tbl_musclegroups VALUES(155,'Muscles of the scalp and around the eye
508508
INSERT INTO tbl_musclegroups VALUES(156,'Muscles of the nose opening','0',133,NULL);
509509
INSERT INTO tbl_musclegroups VALUES(157,'Mimetic muscles in the region of the mouth','0',133,NULL);
510510
INSERT INTO tbl_musclegroups VALUES(158,'Muscles of the ear opening','0',133,NULL);
511-
INSERT INTO tbl_musclegroups VALUES(159,'1st layer','0',NULL,NULL);
512-
INSERT INTO tbl_musclegroups VALUES(160,'2nd layer','0',NULL,NULL);
513-
INSERT INTO tbl_musclegroups VALUES(161,'3rd layer','0',NULL,NULL);
511+
INSERT INTO tbl_musclegroups VALUES(159,'1st layer','0',194,NULL);
512+
INSERT INTO tbl_musclegroups VALUES(160,'2nd layer','0',194,NULL);
513+
INSERT INTO tbl_musclegroups VALUES(161,'3rd layer','0',194,NULL);
514514
INSERT INTO tbl_musclegroups VALUES(162,'Anterior compartment','Compartimentum brachii anterius',144,NULL);
515515
INSERT INTO tbl_musclegroups VALUES(163,'Posterior compartment','Compartimentum brachii posterius',144,NULL);
516516
INSERT INTO tbl_musclegroups VALUES(164,'Anterior compartment','Compartimentum antebrachii anterius',145,NULL);
@@ -538,10 +538,13 @@ INSERT INTO tbl_musclegroups VALUES(185,'2nd layer','0',166,NULL);
538538
INSERT INTO tbl_musclegroups VALUES(186,'Muscles of the great toe','0',179,NULL);
539539
INSERT INTO tbl_musclegroups VALUES(187,'Muscles of the little toe','0',179,NULL);
540540
INSERT INTO tbl_musclegroups VALUES(188,'Middle group muscles of the foot','0',179,NULL);
541-
INSERT INTO tbl_musclegroups VALUES(189,'Superficial muscles of the back','0',128,NULL);
541+
INSERT INTO tbl_musclegroups VALUES(189,'Superficial muscles of the back','0',193,NULL);
542542
INSERT INTO tbl_musclegroups VALUES(190,'1st layer','0',189,NULL);
543543
INSERT INTO tbl_musclegroups VALUES(191,'2nd layer','0',189,NULL);
544544
INSERT INTO tbl_musclegroups VALUES(192,'3rd layer','0',189,NULL);
545+
INSERT INTO tbl_musclegroups VALUES(193,'Muslces of the back','Mm. dorsi',195,NULL);
546+
INSERT INTO tbl_musclegroups VALUES(194,'Deep muslces of the back','0',193,NULL);
547+
INSERT INTO tbl_musclegroups VALUES(195,'Muslces of the trunk','0',NULL,NULL);
545548
CREATE TABLE IF NOT EXISTS 'tbl_muscles_arteries' ('muscle_id' INTEGER NOT NULL, 'arterie_id' INTEGER NOT NULL, PRIMARY KEY ('muscle_id', 'arterie_id'));
546549
CREATE TABLE IF NOT EXISTS 'tbl_muscles_nerves' ('muscle_id' INTEGER NOT NULL, 'nerve_id' INTEGER NOT NULL, PRIMARY KEY ('muscle_id', 'nerve_id'));
547550
CREATE TABLE IF NOT EXISTS 'tbl_muscles_veins' ('muscle_id' INTEGER NOT NULL, 'vein_id' INTEGER NOT NULL, PRIMARY KEY ('muscle_id', 'vein_id'));
@@ -1300,7 +1303,7 @@ INSERT INTO tbl_link_nerves VALUES(169,175,0);
13001303
INSERT INTO tbl_link_nerves VALUES(170,176,0);
13011304
DELETE FROM sqlite_sequence;
13021305
INSERT INTO sqlite_sequence VALUES('tbl_arteries',120);
1303-
INSERT INTO sqlite_sequence VALUES('tbl_musclegroups',192);
1306+
INSERT INTO sqlite_sequence VALUES('tbl_musclegroups',195);
13041307
INSERT INTO sqlite_sequence VALUES('tbl_nerves',42);
13051308
INSERT INTO sqlite_sequence VALUES('tbl_veins',7);
13061309
INSERT INTO sqlite_sequence VALUES('tbl_muscles',176);

MuscleWeb/wwwroot/nav.html

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
<li><a href="index.html">muscles of the...</a></li>
44
<li><a href="groups.html?id=126">head</a></li>
55
<li><a href="groups.html?id=127">neck</a></li>
6-
<li><a href="groups.html?id=128">thorax</a></li>
7-
<li><a href="groups.html?id=131">abdomen</a></li>
6+
<li><a href="groups.html?id=195">trunk</a></li>
87
<li><a href="groups.html?id=129">upper extremities</a></li>
98
<li><a href="groups.html?id=130">lower extremities</a></li>
109
<li><a href="about.html">about</a></li>

0 commit comments

Comments
 (0)