Known Bugs

February 1, 2024 (02:15:02 PM)

CONTENT TO ADD

TO ANSWER

TO FIX

MARKDOWN

Solution to Problem 1.1 (A database catalog for a campus) Pb 1.1 – Solution to Q. 1 … Pb 1.1 – Solution to Q. 2

Ideally, all the problems would be separated in questions.

DRAWINGS

MAKEFILE

HTML

About this last aspect:

The alt attribute is useful in many cases (cf. https://www.w3schools.com/tags/att_alt.asp ):

The alt attribute provides alternative information for an image if a user for some reason cannot view it (because of slow connection, an error in the src attribute, or if the user uses a screen reader).

You can see more reasons at https://www.w3.org/TR/html51/semantics-embedded-content.html#examples-of-scenarios-where-users-benefit-from-text-alternatives-for-images

Not having those alt attributes prevents the document from being accessible to everyone, and prevent the html document from being “valid” (cf. https://validator.w3.org/nu/?doc=http%3A%2F%2Fspots.augusta.edu%2Fcaubert%2Fdb%2Fln%2FCSCI_3410_lecture_notes.html )

In pandoc, the syntax is


![Alt text](img/reverse_eng_01.jpeg "Title")
\

(note the “" afterward, to prevent the image of being displayed as a figure). I have a convention for the relational models, i.e., in

![
CAR(VIN (PK), Make, Model, Year)
DRIVER(State (PK), Licence\_number (PK), Name, Address)
INSURANCE(Policy\_Number (PK), Insured\_Car (FK to CAR.VIN), Insured\_Driver\_State (FK to DRIVER.State), Insured\_Driver\_Num (FK to DRIVER.Licence\_number), Rate)
PRICE(Stock\_number (PK), Car\_Vin (FK to CAR.VIN), Price, Margin)
](fig/rel_mod/car_01)
\

the part between ![ and ](fig/rel_mod/car_01) is a description of the image you can see at https://spots.augusta.edu/caubert/db/ln/CSCI_3410_lecture_notes.html#example.

It’s not ideal, but it gives to someone without images, a good internet connection, etc., the possibility to still get the content. As of now, the lecture notes do not have a good “notation” to describe

And have not introduced “alt” attributes for (almost) any of the images that are displayed from the folder “img”.

CSS

PDF

SQL

OTHER

TO DO

TO CHECK

REFERENCES TO ADD / READ