parsav  Check-in [8d8ab01573]

Overview
Comment:unfuck last commit
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 8d8ab0157391c8465b23f3e9878ce0edce35ea98e2dadd780eb3da4fd9345a95
User & Date: lexi on 2021-01-06 22:31:15
Other Links: manifest | tags
Context
2021-01-07
07:35
tentative beginnings of upload + media management system check-in: f4c6e72a22 user: lexi tags: trunk
2021-01-06
22:31
unfuck last commit check-in: 8d8ab01573 user: lexi tags: trunk
22:18
notifications work now check-in: 9cc5d48cd8 user: lexi tags: trunk
Changes

Modified render/tweet.t from [0700e85db2] to [18c58bf27c].

    65     65   		if not parent then
    66     66   			lib.bail('schema integrity violation - could not match post to parent')
    67     67   		end
    68     68   		var pauth = co.srv:actor_fetch_uid(parent(0).author) defer pauth:free()
    69     69   		var pidbuf: int8[lib.math.shorthand.maxlen]
    70     70   		var pidlen = lib.math.shorthand.gen(p.parent, pidbuf)
    71     71   		var pa: lib.str.acc pa:init(128)
    72         -		pa:lpush('<small>in reply to <a class="username" href="'):push(&pidbuf[0],pidlen):lpush('">')
           72  +		pa:lpush('<small>in reply to <a class="username" href="/post/'):push(&pidbuf[0],pidlen):lpush('">')
    73     73   		lib.render.nym(pauth.ptr,0,&pa,true)
    74     74   		pa:lpush('</a></small>')
    75     75   		tpl.extra = pa:finalize()
    76     76   	end
    77     77   	if p.rts + p.likes > 0 then
    78     78   		var s: lib.str.acc s:init(128)
    79     79   		s:lpush('<div class="stats">')

Modified static/style.scss from [fa60ad7c82] to [37c2876b01].

   528    528   		text-decoration: none;
   529    529   		padding: 0.1in;
   530    530   		padding-left: 0.15in;
   531    531   		background: linear-gradient(to right, tone(-55%), transparent);
   532    532   	}
   533    533   	>.content {
   534    534   		grid-column: 2/5; grid-row: 1/2;
          535  +		> small {
          536  +			@extend %sans;
          537  +			display: block;
          538  +			margin-top: -0.1in;
          539  +			font-size: 75%;
          540  +			font-style: italic;
          541  +			opacity: 80%;
          542  +		}
   535    543   		padding: 0.2in;
   536    544   		@extend %serif;
   537    545   		font-size: 110%;
   538    546   		text-align: justify;
   539    547   		color: tone(25%);
   540    548   	}
   541    549   	> a[href].permalink {