Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Renamed fossil.pikchr-util.js to fossil.pikchr.js. Minor UI tweaks in the pikchr-related bits. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
f5c040869d21927b3368952578cf4468 |
| User & Date: | stephan 2020-09-14 10:48:44.498 |
Context
|
2020-09-14
| ||
| 11:12 | Had to move the pikchr svg/source buttons along the top to keep them from getting truncated off-screen in the forum. Added them to the forum. There are sizing problems of the source view for small pics because the parent element has a fixed max-width. ... (check-in: 4e6aeb5fb3 user: stephan tags: trunk) | |
| 10:48 | Renamed fossil.pikchr-util.js to fossil.pikchr.js. Minor UI tweaks in the pikchr-related bits. ... (check-in: f5c040869d user: stephan tags: trunk) | |
| 09:19 | Moved SVG/pikchr mode buttons to the left of the SVG so that their positions remain stable when switching images in pikchrshow or resizing them via window-resize in other views. CSS-animated the mode-change button toggle. ... (check-in: b74d1a3fd1 user: stephan tags: trunk) | |
Changes
Changes to src/builtin.c.
| ︙ | ︙ | |||
736 737 738 739 740 741 742 743 744 745 746 747 748 |
** builtin_request_js() when this is called then they will be included
** in the JS request emitted by this routine, resulting in a different
** script URL than if they were not included. Thus, if a given page
** has its own scripts to install via builtin_request_js(), they
** should, if possible, be delayed until after this is called OR the
** page should call builtin_fulfill_js_requests() to flush the request
** queue before calling this routine.
*/
int builtin_bundle_all_fossil_js_apis(void){
static int bundled = 0;
if(JS_BUNDLED == builtin_get_js_delivery_mode()){
if(!bundled){
bundled = 1;
| > > > > > > > > > > | > > > > | | | > | | 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 |
** builtin_request_js() when this is called then they will be included
** in the JS request emitted by this routine, resulting in a different
** script URL than if they were not included. Thus, if a given page
** has its own scripts to install via builtin_request_js(), they
** should, if possible, be delayed until after this is called OR the
** page should call builtin_fulfill_js_requests() to flush the request
** queue before calling this routine.
**
** Example usage:
**
** if(!builtin_bundle_all_fossil_js_apis()){
** builtin_emit_fossil_js_apis("dom", "fetch", 0);
** }
**
** In bundled mode, that will emit all builtin fossil JS APIs, and in
** non-bundled mode it will queue up the "dom" and "fetch" APIs to be
** emitted the next time builtin_fulfill_js_requests() is called.
*/
int builtin_bundle_all_fossil_js_apis(void){
static int bundled = 0;
if(JS_BUNDLED == builtin_get_js_delivery_mode()){
if(!bundled){
bundled = 1;
builtin_emit_fossil_js_apis(
/* The order of the following arguments is important: any
which have dependencies must be listed after their
dependencies. ALL of them depend on the core
window.fossil bootstrapping bits. */
"dom", "fetch", "storage", "tabs",
"confirmer", "popupwidget",
"copybutton", "numbered-lines",
"pikchr",
0);
builtin_fulfill_js_requests();
}
return 1;
}else{
return 0;
}
}
|
Changes to src/default.css.
| ︙ | ︙ | |||
903 904 905 906 907 908 909 910 911 912 913 914 915 916 |
d='M10,4.4v1.6h1.6zm-4,-0.6h3v3h-3zm0,3h6v5.4h-6z'/%3E%3Cpath style='fill:rgb(80,128,208)' \
d='M7,8h4v1h-4zm0,2h4v1h-4z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: center;
cursor: pointer;
}
.copy-button.disabled {
opacity: 0.4;
}
.copy-button-flipped {
/*Note: .16em is suitable for element grouping.*/
margin-left: .16em;
margin-right: 0;
}
| > | 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 |
d='M10,4.4v1.6h1.6zm-4,-0.6h3v3h-3zm0,3h6v5.4h-6z'/%3E%3Cpath style='fill:rgb(80,128,208)' \
d='M7,8h4v1h-4zm0,2h4v1h-4z'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: center;
cursor: pointer;
}
.copy-button.disabled {
filter: grayscale(1);
opacity: 0.4;
}
.copy-button-flipped {
/*Note: .16em is suitable for element grouping.*/
margin-left: .16em;
margin-right: 0;
}
|
| ︙ | ︙ |
Name change from src/fossil.pikchr-util.js to src/fossil.pikchr.js.
| ︙ | ︙ | |||
16 17 18 19 20 21 22 |
styleCSS = `
.pikchr-src-button {
min-height: ${wh}; max-height: ${wh};
min-width: ${wh}; max-width: ${wh};
font-size: ${wh};
position: absolute;
top: 0;
| | | < > > > | | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
styleCSS = `
.pikchr-src-button {
min-height: ${wh}; max-height: ${wh};
min-width: ${wh}; max-width: ${wh};
font-size: ${wh};
position: absolute;
top: 0;
left: -${wh};
border: 1px solid black;
background-color: rgba(255,255,0,0.2);
border-radius: 0.25cm;
z-index: 50;
cursor: pointer;
text-align: center;
display: inline-flex;
align-items: center;
justify-content: center;
transform-origin: center;
transition: transform 250ms linear;
}
.pikchr-src-button.src-active {
transform: scaleX(-1);
}
.pikchr-src-button > span {
vertical-align: middle;
}
textarea.pikchr-src-text {
box-sizing: border-box/*reduces UI shift*/;
}
.pikchr-copy-button {
min-width: ${wh}; max-width: ${wh};
min-height: ${wh}; max-height: ${wh};
display: inline-block;
position: absolute;
top: calc(${wh} * 1.25);
left: -${wh};
z-index: 50;
margin-right: 0;
}
`;
head.appendChild(styleTag);
/* Adapted from https://stackoverflow.com/a/524721 */
styleTag.type = 'text/css';
|
| ︙ | ︙ | |||
111 112 113 114 115 116 117 |
console.warn("No pikchr:src node found in",svg);
return this;
}
opt = F.mergeLastWins({
},opt);
const parent = svg.parentNode;
parent.style.position = 'relative' /* REQUIRED for btn placement */;
| | | 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 |
console.warn("No pikchr:src node found in",svg);
return this;
}
opt = F.mergeLastWins({
},opt);
const parent = svg.parentNode;
parent.style.position = 'relative' /* REQUIRED for btn placement */;
const srcView = D.addClass(D.textarea(0,0,true), 'pikchr-src-text');
srcView.value = src.textContent;
const btnFlip = D.append(
D.addClass(D.span(), 'pikchr-src-button'),
D.append(D.span(), "⟳")
);
const btnCopy = F.copyButton(
D.span(), {
|
| ︙ | ︙ |
Changes to src/main.mk.
| ︙ | ︙ | |||
233 234 235 236 237 238 239 | $(SRCDIR)/fossil.fetch.js \ $(SRCDIR)/fossil.numbered-lines.js \ $(SRCDIR)/fossil.page.fileedit.js \ $(SRCDIR)/fossil.page.forumpost.js \ $(SRCDIR)/fossil.page.pikchrshow.js \ $(SRCDIR)/fossil.page.wikiedit-wysiwyg-legacy.js \ $(SRCDIR)/fossil.page.wikiedit.js \ | | | 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 | $(SRCDIR)/fossil.fetch.js \ $(SRCDIR)/fossil.numbered-lines.js \ $(SRCDIR)/fossil.page.fileedit.js \ $(SRCDIR)/fossil.page.forumpost.js \ $(SRCDIR)/fossil.page.pikchrshow.js \ $(SRCDIR)/fossil.page.wikiedit-wysiwyg-legacy.js \ $(SRCDIR)/fossil.page.wikiedit.js \ $(SRCDIR)/fossil.pikchr.js \ $(SRCDIR)/fossil.popupwidget.js \ $(SRCDIR)/fossil.storage.js \ $(SRCDIR)/fossil.tabs.js \ $(SRCDIR)/graph.js \ $(SRCDIR)/href.js \ $(SRCDIR)/login.js \ $(SRCDIR)/markdown.md \ |
| ︙ | ︙ |
Changes to src/pikchrshow.c.
| ︙ | ︙ | |||
165 166 167 168 169 170 171 |
}
fossil_free(zOut);
} CX("</div>"/*#pikchrshow-output*/);
} CX("</fieldset>"/*#pikchrshow-output-wrapper*/);
} CX("</div>"/*sbs-wrapper*/);
if(!builtin_bundle_all_fossil_js_apis()){
builtin_emit_fossil_js_apis("dom", "fetch", "copybutton",
| | > | | 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
}
fossil_free(zOut);
} CX("</div>"/*#pikchrshow-output*/);
} CX("</fieldset>"/*#pikchrshow-output-wrapper*/);
} CX("</div>"/*sbs-wrapper*/);
if(!builtin_bundle_all_fossil_js_apis()){
builtin_emit_fossil_js_apis("dom", "fetch", "copybutton",
"popupwidget", "storage",
"pikchr", 0);
}
builtin_emit_fossil_js_apis("page.pikchrshow", 0);
builtin_fulfill_js_requests();
style_footer();
}
/*
** COMMAND: pikchr*
**
|
| ︙ | ︙ |
Changes to win/Makefile.mingw.
| ︙ | ︙ | |||
645 646 647 648 649 650 651 | $(SRCDIR)/fossil.fetch.js \ $(SRCDIR)/fossil.numbered-lines.js \ $(SRCDIR)/fossil.page.fileedit.js \ $(SRCDIR)/fossil.page.forumpost.js \ $(SRCDIR)/fossil.page.pikchrshow.js \ $(SRCDIR)/fossil.page.wikiedit-wysiwyg-legacy.js \ $(SRCDIR)/fossil.page.wikiedit.js \ | | | 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 | $(SRCDIR)/fossil.fetch.js \ $(SRCDIR)/fossil.numbered-lines.js \ $(SRCDIR)/fossil.page.fileedit.js \ $(SRCDIR)/fossil.page.forumpost.js \ $(SRCDIR)/fossil.page.pikchrshow.js \ $(SRCDIR)/fossil.page.wikiedit-wysiwyg-legacy.js \ $(SRCDIR)/fossil.page.wikiedit.js \ $(SRCDIR)/fossil.pikchr.js \ $(SRCDIR)/fossil.popupwidget.js \ $(SRCDIR)/fossil.storage.js \ $(SRCDIR)/fossil.tabs.js \ $(SRCDIR)/graph.js \ $(SRCDIR)/href.js \ $(SRCDIR)/login.js \ $(SRCDIR)/markdown.md \ |
| ︙ | ︙ |
Changes to win/Makefile.msc.
| ︙ | ︙ | |||
566 567 568 569 570 571 572 |
"$(SRCDIR)\fossil.fetch.js" \
"$(SRCDIR)\fossil.numbered-lines.js" \
"$(SRCDIR)\fossil.page.fileedit.js" \
"$(SRCDIR)\fossil.page.forumpost.js" \
"$(SRCDIR)\fossil.page.pikchrshow.js" \
"$(SRCDIR)\fossil.page.wikiedit-wysiwyg-legacy.js" \
"$(SRCDIR)\fossil.page.wikiedit.js" \
| | | 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 |
"$(SRCDIR)\fossil.fetch.js" \
"$(SRCDIR)\fossil.numbered-lines.js" \
"$(SRCDIR)\fossil.page.fileedit.js" \
"$(SRCDIR)\fossil.page.forumpost.js" \
"$(SRCDIR)\fossil.page.pikchrshow.js" \
"$(SRCDIR)\fossil.page.wikiedit-wysiwyg-legacy.js" \
"$(SRCDIR)\fossil.page.wikiedit.js" \
"$(SRCDIR)\fossil.pikchr.js" \
"$(SRCDIR)\fossil.popupwidget.js" \
"$(SRCDIR)\fossil.storage.js" \
"$(SRCDIR)\fossil.tabs.js" \
"$(SRCDIR)\graph.js" \
"$(SRCDIR)\href.js" \
"$(SRCDIR)\login.js" \
"$(SRCDIR)\markdown.md" \
|
| ︙ | ︙ | |||
1172 1173 1174 1175 1176 1177 1178 | echo "$(SRCDIR)\fossil.fetch.js" >> $@ echo "$(SRCDIR)\fossil.numbered-lines.js" >> $@ echo "$(SRCDIR)\fossil.page.fileedit.js" >> $@ echo "$(SRCDIR)\fossil.page.forumpost.js" >> $@ echo "$(SRCDIR)\fossil.page.pikchrshow.js" >> $@ echo "$(SRCDIR)\fossil.page.wikiedit-wysiwyg-legacy.js" >> $@ echo "$(SRCDIR)\fossil.page.wikiedit.js" >> $@ | | | 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 | echo "$(SRCDIR)\fossil.fetch.js" >> $@ echo "$(SRCDIR)\fossil.numbered-lines.js" >> $@ echo "$(SRCDIR)\fossil.page.fileedit.js" >> $@ echo "$(SRCDIR)\fossil.page.forumpost.js" >> $@ echo "$(SRCDIR)\fossil.page.pikchrshow.js" >> $@ echo "$(SRCDIR)\fossil.page.wikiedit-wysiwyg-legacy.js" >> $@ echo "$(SRCDIR)\fossil.page.wikiedit.js" >> $@ echo "$(SRCDIR)\fossil.pikchr.js" >> $@ echo "$(SRCDIR)\fossil.popupwidget.js" >> $@ echo "$(SRCDIR)\fossil.storage.js" >> $@ echo "$(SRCDIR)\fossil.tabs.js" >> $@ echo "$(SRCDIR)\graph.js" >> $@ echo "$(SRCDIR)\href.js" >> $@ echo "$(SRCDIR)\login.js" >> $@ echo "$(SRCDIR)\markdown.md" >> $@ |
| ︙ | ︙ |