List of commits:
Subject Hash Author Date (UTC)
Some notes about the bugs with css. a68fe8d8974ee19a585e9c9b77519a918d3795ee aubert@math.cnrs.fr 2019-09-17 16:58:10
Adding some bugs to the report. 50e2dc7eca8e2dcd20e8f9e06eba76e54bd52114 aubert@math.cnrs.fr 2019-09-17 16:20:58
Added quizz 2 a57781924233353363e5cc9b8d6b7d88a0a735b6 aubert@math.cnrs.fr 2019-09-17 12:45:36
Adding quiz #2, correcting a few typo in SQL chapter. 16e6aee0be154245b472c77fb2d6a486dd07ef38 aubert@math.cnrs.fr 2019-09-16 19:58:53
Quick changes in the first SQL part: check is actually taken into account! b62ed769ef0ebd96ea91e3053246e142b73d524c aubert@math.cnrs.fr 2019-09-09 16:26:17
Added quiz #1 of Fall 2019, plus minor corrections. a5498523b05cb246ce58b05a8951b833a0b0e699 aubert@math.cnrs.fr 2019-08-29 16:23:07
Adding a figure for a quizz, and a possible bug to the list. 6e83297ccb9678296993e605b2f35d0b13a97523 aubert@math.cnrs.fr 2019-08-27 16:20:35
Changed the monospace font, updated instructions to install mariaDB. 3dc6162733e0a373205012869c1ee068ef3e5c91 aubert@math.cnrs.fr 2019-08-16 18:56:37
Few patches to prepare for Fall 2019. 545561b3d47dfe9bff2436f8f2b7e32572cd808a aubert@math.cnrs.fr 2019-08-07 17:12:26
Editing the cycle of design picture 9bd1c3190a71202b88011b831161cf9d6a365237 aubert@math.cnrs.fr 2019-08-07 16:13:03
Test c742ba7590d59e2941f9fa197c9d009d5c642e76 au 2019-07-31 23:56:14
Minor fix in Known bugs and contrib. 19f3adfa1f88e6d12e94868f4eab0b5838d05eb6 aubert@math.cnrs.fr 2019-07-29 20:51:14
Commit 2ed1a8532cbdae46d3feb99cf52f23f2afa144ec aubert@math.cnrs.fr 2019-07-29 19:01:36
Adding the final to the notes. 0e8848a3e67ec49bab5b767e25d6099fd218e417 aubert@math.cnrs.fr 2019-05-20 14:44:54
Added the solution to one of the problem from Exam #2. 625545a335c5dc7b7303355088a3abba999fdf40 aubert@math.cnrs.fr 2019-05-06 16:59:50
Added a solution to one of the problem of Exam #2, and added the last quiz. 4e0ee25d509412e5e455d9ad4c98f7aad8c5a354 aubert@math.cnrs.fr 2019-04-19 15:14:10
A few glitches in the first java programs patched, added the alternative version to the source. 48611244d21515269bae041dc2535b7e08fb5877 aubert@math.cnrs.fr 2019-04-04 22:05:03
patching a few glitches with the java code and the mysql code used in the demo for the first program. 0fcb73dcc60aef476899c4efea092c99dd6027db aubert@math.cnrs.fr 2019-04-04 21:55:55
Tidying up a program. dd409ab3fd6736af4b8adaac284ee101b9770f60 aubert@math.cnrs.fr 2019-04-04 19:02:21
Correcting the chapter on db programming. 484c4a6372056106bae77e48b397c1174738fc26 aubert@math.cnrs.fr 2019-04-04 18:57:50
Commit a68fe8d8974ee19a585e9c9b77519a918d3795ee - Some notes about the bugs with css.
Author: aubert@math.cnrs.fr
Author date (UTC): 2019-09-17 16:58
Committer name: aubert@math.cnrs.fr
Committer date (UTC): 2019-09-17 16:58
Parent(s): 50e2dc7eca8e2dcd20e8f9e06eba76e54bd52114
Signer:
Signing key:
Signing status: N
Tree: 531deecf8de911f7b5f1368dc05a9e1135533984
File Lines added Lines deleted
KNOWN_BUGS.md 23 2
notes/style/style.css 83 0
File KNOWN_BUGS.md changed (mode: 100644) (index d022ca9..68c9e91)
... ... HTML
47 47 - Add the possibility for the table of content to "follow" the reading, expanding the titles as we go, and highlighting the current section under reading. This could be achieved using something similar to <https://jsfiddle.net/vu6hN/28/> (cf. <https://stackoverflow.com/questions/27610892/highlight-menu-on-scrolling-if-reach-div>). - Add the possibility for the table of content to "follow" the reading, expanding the titles as we go, and highlighting the current section under reading. This could be achieved using something similar to <https://jsfiddle.net/vu6hN/28/> (cf. <https://stackoverflow.com/questions/27610892/highlight-menu-on-scrolling-if-reach-div>).
48 48 - Make a more "mobile-friendly" version. Defer loading of image? - Make a more "mobile-friendly" version. Defer loading of image?
49 49 - Make all the images clickable to open (in pop-ups?) better versions of them. - Make all the images clickable to open (in pop-ups?) better versions of them.
50 - Weird spacing, e.g. in the code "INSERT INTO TRAINS VALUES('Thomas', 4);".
51 - Wrap the line code.
50
51 CSS:
52
53 - Wrap the line code. Now it is prevented by
54
55 white-space: pre; div.sourceCode { margin: 1em 0; }
56
57 cf. the discussion at <https://stackoverflow.com/q/57812345/>
58
59 - add actual links in code.
60 - Remove
61
62 @media screen {
63 code.sourceCode > span > a:first-child::before { text-decoration: underline; }
64 }
65
66 - What's the point of
67
68 .sourceCode:after {
69 content: attr(data-caption);
70 font-weight:bold;
71 }
72 - hover should probably be on line number.
52 73
53 74 PDF PDF
54 75 ---- ----
File notes/style/style.css changed (mode: 100644) (index 51b456f..fc1c4d0)
... ... pre {
31 31 border-radius: 5px; border-radius: 5px;
32 32 word-wrap: break-word; word-wrap: break-word;
33 33 } }
34 .sourceCode{
35 text-indent: 0
36 }
34 37 .sourceCode:after { .sourceCode:after {
35 38 content: attr(data-caption); content: attr(data-caption);
36 39 font-weight:bold; font-weight:bold;
 
... ... dl, dt, dd{
456 459 border: 1px solid black; border: 1px solid black;
457 460 } }
458 461 */ */
462
463
464 /*
465 * Borrowed from
466 * https://gist.github.com/killercup/5917178
467 */
468
469
470
471
472 *::-moz-selection {
473 background: rgba(255, 255, 0, 0.3);
474 color: #000;
475 }
476
477 *::selection {
478 background: rgba(255, 255, 0, 0.3);
479 color: #000;
480 }
481
482 a::-moz-selection {
483 background: rgba(255, 255, 0, 0.3);
484 color: #0645ad;
485 }
486
487 a::selection {
488 background: rgba(255, 255, 0, 0.3);
489 color: #0645ad;
490 }
491
492
493 img {
494 max-width: 100%;
495 }
496
497 blockquote {
498 color: #666666;
499 margin: 0;
500 padding-left: 3em;
501 border-left: 0.5em #EEE solid;
502 }
503
504 figure {
505 display: block;
506 text-align: center;
507 margin: 1em 0;
508 }
509
510 figure img {
511 border: none;
512 margin: 0 auto;
513 }
514
515 figcaption {
516 font-size: 0.8em;
517 font-style: italic;
518 margin: 0 0 .8em;
519 }
520
521 table {
522 margin-bottom: 2em;
523 border-bottom: 1px solid #ddd;
524 border-right: 1px solid #ddd;
525 border-spacing: 0;
526 border-collapse: collapse;
527 }
528
529 table th {
530 padding: .2em 1em;
531 background-color: #eee;
532 border-top: 1px solid #ddd;
533 border-left: 1px solid #ddd;
534 }
535
536 table td {
537 padding: .2em 1em;
538 border-top: 1px solid #ddd;
539 border-left: 1px solid #ddd;
540 vertical-align: top;
541 }
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/caubert/CSCI_3410

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/caubert/CSCI_3410

Clone this repository using git:
git clone git://git.rocketgit.com/user/caubert/CSCI_3410

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main