From 065df943db040560f1e8c25827da25b956789b7f Mon Sep 17 00:00:00 2001 From: M0 Date: Fri, 29 Sep 2023 13:35:22 -0400 Subject: [PATCH] actualizando --- 1--conocer/wiki/._copinchapedia-notebook.html | Bin 4096 -> 0 bytes 1--conocer/wiki/backup/index-A2.html | 3500 + 1--conocer/wiki/backup/index-A3.html | 3500 + 1--conocer/wiki/dev-old.html | 65984 ++++++++++++++++ 1--conocer/wiki/dev.html | 63667 +-------------- 1--conocer/wiki/index-old.html | 10193 +++ 1--conocer/wiki/index.html | 12899 +-- 1--conocer/wiki/media/image/background.svg | 32 + 1--conocer/wiki/media/image/banner--01.svg | 1 + 1--conocer/wiki/media/image/copincha-logo.png | Bin 0 -> 5811 bytes 10 files changed, 86903 insertions(+), 72873 deletions(-) delete mode 100644 1--conocer/wiki/._copinchapedia-notebook.html create mode 100644 1--conocer/wiki/backup/index-A2.html create mode 100644 1--conocer/wiki/backup/index-A3.html create mode 100644 1--conocer/wiki/dev-old.html create mode 100644 1--conocer/wiki/index-old.html create mode 100644 1--conocer/wiki/media/image/background.svg create mode 100644 1--conocer/wiki/media/image/banner--01.svg create mode 100644 1--conocer/wiki/media/image/copincha-logo.png diff --git a/1--conocer/wiki/._copinchapedia-notebook.html b/1--conocer/wiki/._copinchapedia-notebook.html deleted file mode 100644 index 2c1ff02d27df8ffafc7bdc1e8c2abf6d2855a6f1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4096 zcmZQz6=P>$Vqox1Ojhs@R)|o50+1L3ClDJkFz{^v(m+1nBL)UWIUt(=a103vvYvJF zKST$^0-$mMG%bukK2%&PIX_n~v7jI)RWB#8xTLf=H6ukeOGKnpcvUpO=`EQ>l=XnpUEal#`g34eSd;bq#3>)&Fp>$S}zL G{|^9;$SZUJ diff --git a/1--conocer/wiki/backup/index-A2.html b/1--conocer/wiki/backup/index-A2.html new file mode 100644 index 0000000..8ac1229 --- /dev/null +++ b/1--conocer/wiki/backup/index-A2.html @@ -0,0 +1,3500 @@ + + + + + + + + + + + + + + + + + + + + +copinchapedia — la wiki de copincha + + + + + + + + + + + +
+ +
+ + + + + + + + + + + + + + diff --git a/1--conocer/wiki/backup/index-A3.html b/1--conocer/wiki/backup/index-A3.html new file mode 100644 index 0000000..d5c8c88 --- /dev/null +++ b/1--conocer/wiki/backup/index-A3.html @@ -0,0 +1,3500 @@ + + + + + + + + + + + + + + + + + + + + +copinchapedia — la wiki de copincha + + + + + + + + + + + +
+ +
+ + + + + + + + + + + + + + diff --git a/1--conocer/wiki/dev-old.html b/1--conocer/wiki/dev-old.html new file mode 100644 index 0000000..efa3507 --- /dev/null +++ b/1--conocer/wiki/dev-old.html @@ -0,0 +1,65984 @@ + + + + + + + + + + + + + + + + + + + + +Copincha — a non-linear personal web notebook + + + + + + + + + + + +
+ +
+ + + + + + + + + + + + + + + + + diff --git a/1--conocer/wiki/dev.html b/1--conocer/wiki/dev.html index e10ba3c..3ca53fb 100644 --- a/1--conocer/wiki/dev.html +++ b/1--conocer/wiki/dev.html @@ -10,7 +10,7 @@ - + @@ -19,7 +19,7 @@ -Copincha — a non-linear personal web notebook +copinchapedia — la wiki de copincha @@ -141,63133 +141,443 @@ Error message and password prompt

This TiddlyWiki contains the following tiddlers:

-

- - - - - - - - - - - - + + + @@ -63527,6 +838,26 @@ $tw.utils.isArrayEqual = function(array1,array2) { }); }; +/* +Add an entry to a sorted array if it doesn't already exist, while maintaining the sort order +*/ +$tw.utils.insertSortedArray = function(array,value) { + var low = 0, high = array.length - 1, mid, cmp; + while(low <= high) { + mid = (low + high) >> 1; + cmp = value.localeCompare(array[mid]); + if(cmp > 0) { + low = mid + 1; + } else if(cmp < 0) { + high = mid - 1; + } else { + return array; + } + } + array.splice(low,0,value); + return array; +}; + /* Push entries onto an array, removing them first if they already exist in the array array: array to modify (assumed to be free of duplicates) @@ -63715,6 +1046,28 @@ $tw.utils.deepDefaults = function(object /*, sourceObjectList */) { return object; }; +/* +Convert a URIComponent encoded string to a string safely +*/ +$tw.utils.decodeURIComponentSafe = function(s) { + var v = s; + try { + v = decodeURIComponent(s); + } catch(e) {} + return v; +}; + +/* +Convert a URI encoded string to a string safely +*/ +$tw.utils.decodeURISafe = function(s) { + var v = s; + try { + v = decodeURI(s); + } catch(e) {} + return v; +}; + /* Convert "&" to &, " " to nbsp, "<" to <, ">" to > and """ to " */ @@ -63726,8 +1079,16 @@ $tw.utils.htmlDecode = function(s) { Get the browser location.hash. We don't use location.hash because of the way that Firefox auto-urldecodes it (see http://stackoverflow.com/questions/1703552/encoding-of-window-location-hash) */ $tw.utils.getLocationHash = function() { - var parts = window.location.href.split('#'); - return "#" + (parts.length > 1 ? parts[1] : ""); + var href = window.location.href; + var idx = href.indexOf('#'); + if(idx === -1) { + return "#"; + } else if(href.substr(idx + 1,1) === "#" || href.substr(idx + 1,3) === "%23") { + // Special case: ignore location hash if it itself starts with a # + return "#"; + } else { + return href.substring(idx); + } }; /* @@ -63756,13 +1117,21 @@ $tw.utils.stringifyDate = function(value) { // Parse a date from a UTC YYYYMMDDHHMMSSmmm format string $tw.utils.parseDate = function(value) { if(typeof value === "string") { - return new Date(Date.UTC(parseInt(value.substr(0,4),10), + var negative = 1; + if(value.charAt(0) === "-") { + negative = -1; + value = value.substr(1); + } + var year = parseInt(value.substr(0,4),10) * negative, + d = new Date(Date.UTC(year, parseInt(value.substr(4,2),10)-1, parseInt(value.substr(6,2),10), parseInt(value.substr(8,2)||"00",10), parseInt(value.substr(10,2)||"00",10), parseInt(value.substr(12,2)||"00",10), parseInt(value.substr(14,3)||"000",10))); + d.setUTCFullYear(year); // See https://stackoverflow.com/a/5870822 + return d; } else if($tw.utils.isDate(value)) { return value; } else { @@ -63776,7 +1145,7 @@ $tw.utils.stringifyList = function(value) { var result = new Array(value.length); for(var t=0, l=value.length; t 0){ + $tw.wiki.addTiddler({title: "$:/config/OriginalTiddlerPaths", type: "application/json", text: JSON.stringify(output)}); } - $tw.wiki.addTiddler({title: "$:/config/OriginalTiddlerPaths", type: "application/json", text: JSON.stringify(output)}); } - // Save the path to the tiddlers folder for the filesystemadaptor - $tw.boot.wikiTiddlersPath = path.resolve($tw.boot.wikiPath,config["default-tiddler-location"] || $tw.config.wikiTiddlersSubDir); // Load any plugins within the wiki folder var wikiPluginsPath = path.resolve(wikiPath,$tw.config.wikiPluginsSubDir); if(fs.existsSync(wikiPluginsPath)) { @@ -65605,7 +3087,7 @@ $tw.loadTiddlersNode = function() { // Load any extra plugins $tw.utils.each($tw.boot.extraPlugins,function(name) { if(name.charAt(0) === "+") { // Relative path to plugin - var pluginFields = $tw.loadPluginFolder(name.substring(1));; + var pluginFields = $tw.loadPluginFolder(name.substring(1)); if(pluginFields) { $tw.wiki.addTiddler(pluginFields); } @@ -65614,7 +3096,7 @@ $tw.loadTiddlersNode = function() { type = parts[0]; if(parts.length === 3 && ["plugins","themes","languages"].indexOf(type) !== -1) { $tw.loadPlugins([parts[1] + "/" + parts[2]],$tw.config[type + "Path"],$tw.config[type + "EnvVar"]); - } + } } }); // Load the tiddlers from the wiki directory @@ -65631,8 +3113,7 @@ $tw.loadTiddlersNode = function() { /* Startup TiddlyWiki */ -$tw.boot.startup = function(options) { - options = options || {}; +$tw.boot.initStartup = function(options) { // Get the URL hash and check for safe mode $tw.locationHash = "#"; if($tw.browser && !$tw.node) { @@ -65718,22 +3199,25 @@ $tw.boot.startup = function(options) { $tw.utils.registerFileType("application/zip","base64",".zip"); $tw.utils.registerFileType("application/x-zip-compressed","base64",".zip"); $tw.utils.registerFileType("image/jpeg","base64",[".jpg",".jpeg"],{flags:["image"]}); + $tw.utils.registerFileType("image/jpg","base64",[".jpg",".jpeg"],{flags:["image"]}); $tw.utils.registerFileType("image/png","base64",".png",{flags:["image"]}); $tw.utils.registerFileType("image/gif","base64",".gif",{flags:["image"]}); $tw.utils.registerFileType("image/webp","base64",".webp",{flags:["image"]}); $tw.utils.registerFileType("image/heic","base64",".heic",{flags:["image"]}); $tw.utils.registerFileType("image/heif","base64",".heif",{flags:["image"]}); $tw.utils.registerFileType("image/svg+xml","utf8",".svg",{flags:["image"]}); + $tw.utils.registerFileType("image/vnd.microsoft.icon","base64",".ico",{flags:["image"]}); $tw.utils.registerFileType("image/x-icon","base64",".ico",{flags:["image"]}); $tw.utils.registerFileType("application/font-woff","base64",".woff"); $tw.utils.registerFileType("application/x-font-ttf","base64",".woff"); $tw.utils.registerFileType("application/font-woff2","base64",".woff2"); $tw.utils.registerFileType("audio/ogg","base64",".ogg"); + $tw.utils.registerFileType("audio/mp4","base64",[".mp4",".m4a"]); $tw.utils.registerFileType("video/ogg","base64",[".ogm",".ogv",".ogg"]); $tw.utils.registerFileType("video/webm","base64",".webm"); $tw.utils.registerFileType("video/mp4","base64",".mp4"); $tw.utils.registerFileType("audio/mp3","base64",".mp3"); - $tw.utils.registerFileType("audio/mp4","base64",[".mp4",".m4a"]); + $tw.utils.registerFileType("audio/mpeg","base64",[".mp3",".m2a",".mp2",".mpa",".mpg",".mpga"]); $tw.utils.registerFileType("text/markdown","utf8",[".md",".markdown"],{deserializerType:"text/x-markdown"}); $tw.utils.registerFileType("text/x-markdown","utf8",[".md",".markdown"]); $tw.utils.registerFileType("application/enex+xml","utf8",".enex"); @@ -65745,7 +3229,7 @@ $tw.boot.startup = function(options) { $tw.utils.registerFileType("application/epub+zip","base64",".epub"); $tw.utils.registerFileType("application/octet-stream","base64",".octet-stream"); // Create the wiki store for the app - $tw.wiki = new $tw.Wiki(); + $tw.wiki = new $tw.Wiki($tw.safeMode && {enableIndexers: []}); // Install built in tiddler fields modules $tw.Tiddler.fieldModules = $tw.modules.getModulesByTypeAsHashmap("tiddlerfield"); // Install the tiddler deserializer modules @@ -65765,6 +3249,9 @@ $tw.boot.startup = function(options) { return result; } } +}; +$tw.boot.loadStartup = function(options){ + // Load tiddlers if($tw.boot.tasks.readBrowserTiddlers) { $tw.loadTiddlersBrowser(); @@ -65777,6 +3264,8 @@ $tw.boot.startup = function(options) { } // Give hooks a chance to modify the store $tw.hooks.invokeHook("th-boot-tiddlers-loaded"); +} +$tw.boot.execStartup = function(options){ // Unpack plugin tiddlers $tw.wiki.readPluginInfo(); $tw.wiki.registerPluginTiddlers("plugin",$tw.safeMode ? ["$:/core"] : undefined); @@ -65805,6 +3294,16 @@ $tw.boot.startup = function(options) { $tw.boot.disabledStartupModules = $tw.boot.disabledStartupModules || []; // Repeatedly execute the next eligible task $tw.boot.executeNextStartupTask(options.callback); +} +/* +Startup TiddlyWiki +*/ +$tw.boot.startup = function(options) { + options = options || {}; + // Get the URL hash and check for safe mode + $tw.boot.initStartup(options); + $tw.boot.loadStartup(options); + $tw.boot.execStartup(options); }; /* @@ -65866,16 +3365,29 @@ $tw.boot.executeNextStartupTask = function(callback) { }; /* -Returns true if we are running on one platforms specified in a task modules `platforms` array +Returns true if we are running on one of the platforms specified in taskModule's +`platforms` array; or if `platforms` property is not defined. */ $tw.boot.doesTaskMatchPlatform = function(taskModule) { var platforms = taskModule.platforms; if(platforms) { for(var t=0; t diff --git a/1--conocer/wiki/index-old.html b/1--conocer/wiki/index-old.html new file mode 100644 index 0000000..434a4e2 --- /dev/null +++ b/1--conocer/wiki/index-old.html @@ -0,0 +1,10193 @@ + + + + + + + + + + + + + + + + + + + + +Copinchapedia + +— Wiki del Hackerspace Copincha + + + + + + + + + + + + +
+ +
+ + + + + + + + + + + + + + + + + diff --git a/1--conocer/wiki/index.html b/1--conocer/wiki/index.html index 55ac631..ddb876f 100644 --- a/1--conocer/wiki/index.html +++ b/1--conocer/wiki/index.html @@ -2,7 +2,7 @@ - + @@ -10,7 +10,7 @@ - + @@ -19,7 +19,7 @@ -Copinchapedia - -— Wiki del Hackerspace Copincha - +copinchapedia — la wiki de copincha @@ -144,10049 +141,3359 @@ Error message and password prompt

This TiddlyWiki contains the following tiddlers:

    -
  • ¡Hola, bienvenido a Copinchapedia!
  • - -
  • ¿Cómo contribuir en Copincha?
  • +
  • $:/config/DefaultColourMappings/menubar-background
  • -
  • ¿Qué es Copincha?
  • +
  • $:/config/DefaultColourMappings/menubar-foreground
  • -
  • ¿Qué es Copinchapedia?
  • +
  • $:/config/plugins/menubar/MenuItems/Visibility/$:/plugins/tiddlywiki/menubar/items/contents
  • -
  • ✨ Acerca de
  • +
  • $:/config/plugins/menubar/MenuItems/Visibility/$:/plugins/tiddlywiki/menubar/items/hamburger
  • -
  • $:/config/AnimationDuration
  • +
  • $:/config/plugins/menubar/MenuItems/Visibility/$:/plugins/tiddlywiki/menubar/items/pagecontrols
  • -
  • $:/config/AutoSave
  • +
  • $:/config/plugins/menubar/MenuItems/Visibility/$:/plugins/tiddlywiki/menubar/items/search
  • -
  • $:/config/bimlas/locator/fields/keywords
  • +
  • $:/config/plugins/menubar/MenuItems/Visibility/$:/plugins/tiddlywiki/menubar/items/search 1
  • -
  • $:/config/bimlas/locator/fields/responder
  • +
  • $:/config/plugins/menubar/MenuItems/Visibility/$:/plugins/tiddlywiki/menubar/items/server
  • -
  • $:/config/bimlas/locator/toolbars/search/$:/plugins/bimlas/locator/buttons/toggle-fields-filter
  • +
  • $:/config/plugins/menubar/MenuItems/Visibility/$:/plugins/tiddlywiki/menubar/items/sidebar
  • -
  • $:/config/bimlas/locator/toolbars/view/$:/plugins/bimlas/locator/buttons/collapse-history
  • +
  • $:/config/plugins/menubar/MenuItems/Visibility/$:/plugins/tiddlywiki/menubar/items/topleftbar
  • -
  • $:/config/bimlas/locator/toolbars/view/$:/plugins/bimlas/locator/buttons/create-new-tiddler
  • +
  • $:/config/plugins/menubar/MenuItems/Visibility/$:/plugins/tiddlywiki/menubar/items/toprightbar
  • -
  • $:/config/bimlas/locator/toolbars/view/$:/plugins/bimlas/locator/buttons/open-in-story-river
  • +
  • $:/config/plugins/menubar/TableOfContents/Tag
  • -
  • $:/config/bimlas/locator/toolbars/view/$:/plugins/bimlas/locator/buttons/search-in-context
  • +
  • $:/config/RelinkOnRename
  • -
  • $:/config/bimlas/locator/toolbars/view/$:/plugins/bimlas/locator/buttons/toggle-context-settings
  • +
  • $:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/edit
  • -
  • $:/config/bimlas/locator/toolbars/view/$:/plugins/bimlas/locator/buttons/toggle-fields-filter
  • +
  • $:/core
  • -
  • $:/config/bimlas/locator/toolbars/view/$:/plugins/bimlas/locator/buttons/view-toolbar-dropdown
  • +
  • $:/core/ui/SideBar/More
  • -
  • $:/config/codemirror/autoCloseTags
  • +
  • $:/core/ui/SideBar/Open
  • -
  • $:/config/codemirror/keyMap
  • +
  • $:/core/ui/SideBar/Tools
  • -
  • $:/config/codemirror/lineNumbers
  • +
  • $:/core/ui/ViewTemplate/subtitle
  • -
  • $:/config/codemirror/styleActiveLine
  • +
  • $:/core/ui/ViewTemplate/subtitle/modified
  • -
  • $:/config/codemirror/theme
  • +
  • $:/core/ui/ViewTemplate/title/default
  • -
  • $:/config/DefaultSidebarTab
  • +
  • $:/DefaultTiddlers
  • -
  • $:/config/EditToolbarButtons/Visibility/$:/core/ui/Buttons/delete
  • +
  • $:/favicon.ico
  • -
  • $:/config/field-search/data/Authors
  • +
  • $:/isEncrypted
  • -
  • $:/config/field-search/data/Keywords
  • +
  • $:/palette
  • -
  • $:/config/field-search/data/Tags
  • +
  • $:/palettes/copincha
  • -
  • $:/config/field-search/tab/Any Field
  • +
  • $:/plugins/danielo515/2click2edit
  • -
  • $:/config/field-search/tab/Authors
  • +
  • $:/plugins/felixhayashi/respawn
  • -
  • $:/config/field-search/tab/Keywords
  • +
  • $:/plugins/felixhayashi/topstoryview
  • -
  • $:/config/field-search/tab/Tags
  • +
  • $:/plugins/flibbles/relink
  • -
  • $:/config/KookmaPluginLibrary
  • +
  • $:/plugins/flibbles/relink-fieldnames
  • -
  • $:/config/Navigation/openLinkFromInsideRiver
  • +
  • $:/plugins/flibbles/relink-markdown
  • -
  • $:/config/Navigation/openLinkFromOutsideRiver
  • +
  • $:/plugins/flibbles/relink-titles
  • -
  • $:/config/OfficialPluginLibrary
  • +
  • $:/plugins/sq/streams
  • -
  • $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/advanced-search
  • +
  • $:/plugins/sq/streams-as-editor
  • -
  • $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/close-all
  • +
  • $:/plugins/sq/streams-search
  • -
  • $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/control-panel
  • +
  • $:/plugins/tiddlywiki/filesystem
  • -
  • $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/export-page
  • +
  • $:/plugins/tiddlywiki/menubar
  • -
  • $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/home
  • +
  • $:/plugins/tiddlywiki/menubar/items/about
  • -
  • $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/import
  • +
  • $:/plugins/tiddlywiki/menubar/items/actividades
  • -
  • $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/language
  • +
  • $:/plugins/tiddlywiki/menubar/items/calendario
  • -
  • $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/manager
  • +
  • $:/plugins/tiddlywiki/menubar/items/contacto
  • -
  • $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/more-page-actions
  • +
  • $:/plugins/tiddlywiki/menubar/items/join
  • -
  • $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/new-tiddler
  • +
  • $:/plugins/tiddlywiki/menubar/items/proyectos
  • -
  • $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/refresh
  • +
  • $:/plugins/tiddlywiki/menubar/items/search 1
  • -
  • $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/save-wiki
  • +
  • $:/plugins/tiddlywiki/menubar/items/servicios
  • -
  • $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/storyview
  • +
  • $:/plugins/tiddlywiki/menubar/items/talleres
  • -
  • $:/config/PageControlButtons/Visibility/$:/plugins/kookma/commander/buttons/pagecontrol
  • +
  • $:/plugins/tiddlywiki/menubar/styles
  • -
  • $:/config/PageControlButtons/Visibility/$:/plugins/kookma/solution/buttons/pagecontrol
  • +
  • $:/SiteSubtitle
  • -
  • $:/config/PageControlButtons/Visibility/$:/plugins/kookma/utility/pagecontrol/view-fields-button
  • +
  • $:/SiteTitle
  • -
  • $:/config/PageControlButtons/Visibility/$:/plugins/tiddlywiki/markdown/new-markdown-button
  • +
  • $:/state/advancedsearch/currentTab
  • -
  • $:/config/PageControlButtons/Visibility/$:/utility/ui/Button/SwitchPalette
  • +
  • $:/state/Excise/-386158927/type
  • -
  • $:/config/Plugins/Disabled/$:/plugins/kookma/favorites
  • +
  • $:/state/http-requests
  • -
  • $:/config/RelinkOnRename
  • +
  • $:/state/peek-stylesheets/open/-1116772087$:/plugins/sq/streams/contextmenu/contextmenu-styles
  • -
  • $:/config/SaveWikiButton/Filename
  • +
  • $:/state/plugin-info--778185000-$:/plugins/tiddlywiki/filesystem---1320199477
  • -
  • $:/config/Search/AutoFocus
  • +
  • $:/state/plugin-info-713020762-$:/plugins/tiddlywiki/menubar--777473238
  • -
  • $:/config/TextEditor/EnableToolbar
  • +
  • $:/state/search/currentTab
  • -
  • $:/config/TimestampDisable
  • +
  • $:/state/showeditpreview
  • -
  • $:/config/toc/admin
  • +
  • $:/state/ShowPaletteEditor
  • -
  • $:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/clone
  • +
  • $:/state/sidebar
  • -
  • $:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/close
  • +
  • $:/state/sq/streams/visibility/copincha/20230928041541658--1254993181
  • -
  • $:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/close-others
  • +
  • $:/state/sq/streams/visibility/copincha/20230928041546393-934822130
  • -
  • $:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/delete
  • +
  • $:/state/sq/streams/visibility/copincha/20230928041548495--369046925
  • -
  • $:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/edit
  • +
  • $:/state/sq/streams/visibility/copincha/20230928042426730-2022682073
  • -
  • $:/config/ViewToolbarButtons/Visibility/$:/core/ui/Buttons/more-tiddler-actions
  • +
  • $:/state/sq/streams/visibility/copincha/20230928042740135-782739965
  • -
  • $:/config/ViewToolbarButtons/Visibility/$:/plugins/ajh/favorites/template
  • +
  • $:/state/sq/streams/visibility/copincha/20230928042840565--156986883
  • -
  • $:/config/ViewToolbarButtons/Visibility/$:/plugins/bimlas/locator/viewtemplate/open-in-sidebar
  • +
  • $:/state/sq/streams/visibility/copincha/20230928062923658-235852612
  • -
  • $:/config/ViewToolbarButtons/Visibility/$:/plugins/danielo/encryptTiddler/crypt-button
  • +
  • $:/state/sq/streams/visibility/copincha/20230928062926521-119290700
  • -
  • $:/config/ViewToolbarButtons/Visibility/$:/plugins/felixhayashi/tiddlymap/misc/quickConnectButton
  • +
  • $:/state/sq/streams/visibility/copincha/20230928062931943--1779145438
  • -
  • $:/config/ViewToolbarButtons/Visibility/$:/plugins/kookma/favorites/ui/buttons/add-remove
  • +
  • $:/state/sq/streams/visibility/copincha/20230928063011441-1517244705
  • -
  • $:/config/wikilabs/PluginLibraryWL/latest
  • +
  • $:/state/sq/streams/visibility/copincha/20230928063013515--2009532357
  • -
  • $:/config/WikiParserRules/Inline/wikilink
  • +
  • $:/state/sq/streams/visibility/copincha/20230928063019801--1466208351
  • -
  • $:/core
  • +
  • $:/state/sq/streams/visibility/copincha/20230928063307747-1329551714
  • -
  • $:/core/images/add-comment
  • +
  • $:/state/sq/streams/visibility/copincha/20230928071813328-1752783608
  • -
  • $:/core/images/facebook
  • +
  • $:/state/tab--1498284803
  • -
  • $:/core/images/instagram
  • +
  • $:/state/tab--1963855381
  • -
  • $:/core/images/telegram
  • +
  • $:/state/tab--2112689675
  • -
  • $:/core/images/whatsapp
  • +
  • $:/state/tab--86143343
  • -
  • $:/core/templates/server/static.tiddler.html
  • +
  • $:/state/tab--959111941
  • -
  • $:/core/ui/EditorToolbar/rtl
  • +
  • $:/state/tab-1749438307
  • -
  • $:/core/ui/MoreSideBar/Recent
  • +
  • $:/state/tab-453520357
  • -
  • $:/core/ui/SideBar/More
  • +
  • $:/state/tab/search-results/sidebar
  • -
  • $:/core/ui/SideBar/Open
  • +
  • $:/state/tab/sidebar--595412856
  • -
  • $:/core/ui/SideBar/Recent
  • +
  • $:/state/tabs/controlpanel/toolbars-1345989671
  • -
  • $:/core/ui/SideBar/Tools
  • +
  • $:/state/toc/contenidos-Talleres--944721818
  • -
  • $:/DefaultTiddlers
  • +
  • $:/state/toc/TableOfContents-Actividades--944721818
  • -
  • $:/favicon.ico
  • +
  • $:/state/toc/TableOfContents-Actividades-1684905998
  • -
  • $:/favorites/favlist
  • +
  • $:/state/toc/TableOfContents-Proyectos--944721818
  • -
  • $:/highlight.js/theme/twdark.css
  • +
  • $:/state/toc/TableOfContents-Proyectos-1684905998
  • -
  • $:/highlight.js/theme/zenburn-modified.css
  • +
  • $:/state/toc/TableOfContents-Servicios--944721818
  • -
  • $:/Import
  • +
  • $:/state/toc/TableOfContents-Talleres--944721818
  • -
  • $:/isEncrypted
  • +
  • $:/status/RequireReloadDueToPluginChange
  • -
  • $:/keepstate/dynamictables/your-state-tid/style
  • +
  • $:/StoryList
  • -
  • $:/keepstate/utility/toggle-view-fields
  • +
  • $:/theme
  • -
  • $:/language
  • +
  • $:/themes/tiddlywiki/centralised
  • -
  • $:/languages/es-ES
  • +
  • $:/themes/tiddlywiki/snowwhite
  • -
  • $:/palette
  • +
  • $:/themes/tiddlywiki/vanilla
  • -
  • $:/palettes/Vanilla
  • +
  • $:/themes/tiddlywiki/vanilla/metrics/fontsize
  • -
  • $:/plugins/felixhayashi/hotzone
  • +
  • $:/themes/tiddlywiki/vanilla/metrics/lineheight
  • -
  • $:/plugins/felixhayashi/respawn
  • +
  • $:/themes/tiddlywiki/vanilla/metrics/sidebarbreakpoint
  • -
  • $:/plugins/felixhayashi/tiddlymap
  • +
  • $:/themes/tiddlywiki/vanilla/metrics/sidebarwidth
  • -
  • $:/plugins/felixhayashi/tiddlymap/config/sys/user
  • +
  • $:/themes/tiddlywiki/vanilla/metrics/storyleft
  • -
  • $:/plugins/felixhayashi/tiddlymap/config/vis/user
  • +
  • $:/themes/tiddlywiki/vanilla/metrics/storyright
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/edgeTypes/tmap:unknown
  • +
  • $:/themes/tiddlywiki/vanilla/metrics/storywidth
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/edgeTypes/tw-body:link
  • +
  • $:/themes/tiddlywiki/vanilla/metrics/tiddlerwidth
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/edgeTypes/tw-list:list
  • +
  • $:/themes/tiddlywiki/vanilla/settings/backgroundimage
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/edgeTypes/tw-list:tags
  • +
  • $:/themes/tiddlywiki/vanilla/settings/backgroundimageattachment
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/nodeTypes/Concepto
  • +
  • $:/themes/tiddlywiki/vanilla/settings/backgroundimagesize
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/nodeTypes/Concepto-Mapa
  • +
  • $:/themes/tiddlywiki/vanilla/settings/codefontfamily
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/nodeTypes/Encuentros
  • +
  • $:/themes/tiddlywiki/vanilla/settings/editorfontfamily
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/nodeTypes/Encuentros-Cafe
  • +
  • $:/themes/tiddlywiki/vanilla/settings/fontfamily
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/nodeTypes/Encuentros-Mapa
  • +
  • 2023-09-25_08-19.png
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/nodeTypes/Proyectos
  • +
  • 3D-alo-cubano
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/nodeTypes/Proyectos-Mapa
  • +
  • About
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/nodeTypes/Proyectos-Sub
  • +
  • Actividades
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/nodeTypes/tmap:central-topic
  • +
  • barra
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/nodeTypes/tmap:neighbour
  • +
  • cafe-reparador
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/views/Default/filter/edges
  • +
  • cafe-sorpresa
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/views/Default/filter/nodes
  • +
  • Calendario
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/views/Default/map
  • +
  • carta resistor
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/views/Live View
  • +
  • Contacto
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/views/Live View/filter/edges
  • +
  • contenidos
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/views/Live View/filter/nodes
  • +
  • copincha-descripcion
  • -
  • $:/plugins/felixhayashi/tiddlymap/graph/views/Live View/map
  • +
  • copinchapedia
  • -
  • $:/plugins/felixhayashi/tiddlymap/hook/editor
  • +
  • Crear una Paleta
  • -
  • $:/plugins/felixhayashi/tiddlymap/misc/defaultViewHolder
  • +
  • Desarrollo del wiki
  • -
  • $:/plugins/felixhayashi/tiddlymap/misc/meta
  • +
  • Desarrollo del wiki/20230928050314967
  • -
  • $:/plugins/felixhayashi/topstoryview
  • +
  • Diseno intersticial
  • -
  • $:/plugins/felixhayashi/vis
  • +
  • Diseno participativo intersticial
  • -
  • $:/plugins/flibbles/relink
  • +
  • Impresion 3D
  • -
  • $:/plugins/kookma/commander/buttons/pagecontrol
  • +
  • Intersticialidad
  • -
  • $:/plugins/kookma/favorites/recent
  • +
  • La maquina intersticial
  • -
  • $:/plugins/kookma/favorites/sidebar-tab
  • +
  • La maquina intersticial 1
  • -
  • $:/plugins/kookma/shiraz
  • +
  • New Tiddler
  • -
  • $:/plugins/kookma/shiraz/styles/colorful-sidebar-tab
  • +
  • Notas
  • -
  • $:/plugins/kookma/shiraz/styles/misc/tiddler-button-visibility
  • +
  • Precious-plastic-la-habana
  • -
  • $:/plugins/kookma/shiraz/styles/misc/ui-buttons
  • +
  • quitar elementos de tiddler
  • -
  • $:/plugins/kookma/solution/ui/search-in-fields
  • +
  • Servicios
  • -
  • $:/plugins/kookma/toc/styles/main
  • +
  • Talleres
  • -
  • $:/plugins/kookma/utility
  • +
  • Unirse
  • -
  • $:/plugins/kookma/utility/styles/tw-version
  • +
  • Ventajas de la instersticialidad
  • -
  • $:/plugins/kookma/utility/viewtemplate/view-fields
  • +
  • Ventajas de la instersticialidad 1
  • -
  • $:/plugins/tiddlywiki/markdown/new-markdown-button
  • +
+

-
  • $:/plugins/tiddlywiki/railroad
  • -
  • $:/plugins/TWaddle/LeftBar/temp
  • -
  • $:/richlink/.dictionary
  • + -
  • $:/richlink/audio
  • + + + + + + + + + + - - - - diff --git a/1--conocer/wiki/media/image/background.svg b/1--conocer/wiki/media/image/background.svg new file mode 100644 index 0000000..48cefd3 --- /dev/null +++ b/1--conocer/wiki/media/image/background.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/1--conocer/wiki/media/image/banner--01.svg b/1--conocer/wiki/media/image/banner--01.svg new file mode 100644 index 0000000..7c04a01 --- /dev/null +++ b/1--conocer/wiki/media/image/banner--01.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/1--conocer/wiki/media/image/copincha-logo.png b/1--conocer/wiki/media/image/copincha-logo.png new file mode 100644 index 0000000000000000000000000000000000000000..0b964f316b6a489f95c589288e3d65ac65e4d3ac GIT binary patch literal 5811 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 literal 0 HcmV?d00001