All public logs

Jump to navigation Jump to search

Combined display of all available logs of HTYP. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 18:45, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v3/class/tSequentialAccess (Moved to another site: content was: "#REDIRECT Ferreteria/v0.3/class/tSequentialAccess", and the only contributor was "Woozle" (talk))
  • 18:45, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v3/class/tSimpleFields (Moved to another site: content was: "#REDIRECT Ferreteria/v0.3/class/tSimpleFields", and the only contributor was "Woozle" (talk))
  • 18:42, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v2/class/fcpeSimple (Moved to another site: content was: "{{page/code/class}} * '''file''': {{l/version|file|page/page.php}} * '''extends''': {{l/version|class|fcPageElement}} * '''extended by''': ** {{l/version|class|fcpeLoginWidget}} ** {{l/version|class|fcPageContent}} ** {{l/version|class|fcContentHeader}} <source lang=php> /*:::: PURPOSE: a Simple Page Element is a Page Element with a name and a value, no other contents to displa...", and the only contributor was "Woozle" (...)
  • 18:42, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v2/class/ftSingleKeyedDBTable (Moved to another site: content was: "{{page/code/class}} * '''file''': {{l/ferreteria/file|db/v2/tables/db-table-keyed.php}} * '''uses''': {{l/version|class|ftKeyedTable}} * '''used by''': ** {{l/version|class|fctNodeTypesBase}} ** {{l/version|class|fctEventPlex}} ** {{l/version|class|fcTable_keyed_single}} ==Functions== * public function '''GetRecord_forKey'''($id) { * public function '''GetRecords_forKeyList'''($s...", and the only contributor was "Woozle" (...)
  • 18:42, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v2/data (Moved to another site: content was: "==Tables== * {{l/sub|event}} logs", and the only contributor was "Woozle" (talk))
  • 18:42, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v2/data/event (Moved to another site: content was: "==Tables== * {{l/ferreteria/table|event}}: EventPlex core * {{l/ferreteria/table|event_done}} * {{l/ferreteria/table|event_in_table}} * {{l/ferreteria/table|event_notes}}", and the only contributor was "Woozle" (talk))
  • 18:42, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v2/trait/ftExecutableTree (Moved to another site: content was: "{{page/code/class}} * '''file''': {{l/ferreteria/file|page/page.php}} * '''uses''': {{l/version|trait|ftExecutableTwig}} * '''used by''': ** {{l/version|class|fcNavBase}} ** {{l/version|class|fcContainerTag}} ** {{l/version|class|fcPageContent}} ** {{l/version|class|fcPage}} <source lang=php> // PURPOSE: So an ExecutableTwig node will pass events down to its subnodes trait ftExec...", and the only contributor was "Woozle" (...)
  • 18:42, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v2/trait/ftExecutableTwig (Moved to another site: content was: "{{page/code/class}} * '''file''': {{l/ferreteria/file|page/page.php}} * '''uses''': ''nothing'' * '''used by''': ** {{l/version|class|fcNavBase}} <source lang=php> // PURPOSE: So a node can respond to events (does not pass them down to subnodes) trait ftExecutableTwig { public function DoEvent($nEvent) { $this->OnEventDispatch($nEvent); } protected function OnEventDi...", and the only contributor was "Woozle" (...)
  • 18:42, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v2/usage (Moved to another site: content was: "==About== Ferreteria is a pretty damn complicated place, but it's actually pretty easy to get it to do what you want; you just have to know where to go and what to say. * '''I/O''': ** /browser: interacting with the web browser ** /events: writing (and sometimes reading) the event log * '''DB''' - database operations: ** /SQO: structured query objects (TODO: move to...", and the only contributor was "Woozle" ([...)
  • 18:42, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v2/usage/SQO (Moved to another site: content was: "==About== Structured query objects (SQOs) allow classes to define the best way of implementing various parts of more complicated queries without having to define the entire query. Each SQO class represents part of an SQL statement and allows modification of its parameters and contents (if any). The Render() and Trace() methods work for any element at any level, so you can in...", and the only contributor was "Woozle" (...)
  • 18:42, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v2/usage/browser (Moved to another site: content was: "How to generate browser output depends on what kind of output you want to generate. ==Page Title== There are actually two kinds of page title, both of which can be set or updated at any time prior to the rendering phase: * '''browser title''': what the browser shows in its window frame * '''content title''': text displayed in a standard prominent format at the top of the page, s...", and the only contributor was "Woozle" (...)
  • 18:42, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v2/usage/db (Moved to another site: content was: "==About== '''Databases''' in Ferreteria are managed through several sets of classes that work together. I am in the process of rewriting this module from scratch; information about the existing code is in /v1. ==Rules== * Each '''Connection''' should be requested from the static '''DBO Factory''' class by passing it a connection spec. * The Factory looks up which '''Connectio...", and the only contributor was "Woozle" (...)
  • 18:42, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v2/usage/db/records (Moved to another site: content was: "The top layer of routines for writing data from a recordset object back to the database is pretty simple and consists of two main functions: * table: <code>public function Insert(array $arData)</code> * table: <code>public function Update(array $arChg,$sqlWhere,$isNativeData=FALSE)</code> * recordset: <code>public function Update(array $arChg,$isNativeData=FALSE)</code> The <cod...", and the only contributor was "Woozle" (...)
  • 18:41, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v2/usage/db/v1 (Moved to another site: content was: "==About== The division of duties between the different class-families was rather muddled. When PHP deprecated the default MySQL library, it seemed easier to rewrite the whole structure from the ground up than to try to figure out how to work in support for the MySQLi library. ==Files== * {{ferreteria/code|db/data.php}} * {{ferreteria/code|db/data-chained.php}} * {{ferreteria/code...", and the only contributor was "Woozle" (...)
  • 18:41, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v2/usage/events (Moved to another site: content was: "==About== All types of events are (or soon will be) tied to a central table. The idea is that we should be able to arbitrarily add new types of events with their own specialized data by having "sub-tables" which store the additional fields and point back to the base event table for all the basic stuff, instead of having one massive table with every possible field in it (most of w...", and the only contributor was "Woozle" (...)
  • 18:41, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v2/usage/forms (Moved to another site: content was: "==About== ''This page may be slightly out of date, e.g. class names may have changed.'' '''Forms''' in Ferreteria consist of several sets of classes that work together: * '''control''' classes render editable (and eventually non-editable) data fields * '''field''' classes handle translating values between internal storage and on-disk storage (database) ==Status== * This is versi...", and the only contributor was "Woozle" (...)
  • 18:41, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v2/usage/forms/creating (Moved to another site: content was: "How to create a form for editing record-based data: from {{vbzcart/code|dropins/orders/order.php#L1507}} (function PageForm()): <php> $oForm = new fcForm_DB($this); $oField = new fcFormField_<type>($oForm,'<field name>'); $oCtrl = new fcFormControl_HTML[_<type>]($oField,array(<HTML attributes>)); </php> The first line creates a Form object, the next line creates a...", and the only contributor was "Woozle" ([...)
  • 18:41, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v2/usage/forms/displaying (Moved to another site: content was: "==displaying a form== See {{l/vc/code|dropins/orders/order.php#L1178|order.php AdminPage_basic()}} for a working example of a full-page form, and {{l/vc/code|dropins/orders/order.php#L1313|order.php PageTemplate()}} for building a template. ===template example=== <source lang=php> private $tpPage; protected function PageTemplate() { if (empty($this->tpPage)) { $sTp...", and the only contributor was "Woozle" (...)
  • 18:40, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v2/usage/forms/v1 (Moved to another site: content was: "#REDIRECT Ferreteria/v1/usage/forms", and the only contributor was "Woozle" (talk))
  • 18:40, 22 May 2022 Woozle talk contribs deleted page Ferreteria/v2/usage/login (Moved to another site: content was: "==Data== This uses essentially the same tables as VbzCart/tables#Users -- documentation to be moved here eventually. ==Code== ===log in with existing user/password=== '''clsPageLogin''' (see {{l/same|pages}}): <php> protected function DoLoginCheck() { $this->App()->Session()->UserLogin($this->LoginName(),$this->sPass); } </php> '''clsUserSession''': <php> /*----...", and the only contributor was "Woozle" ([...)
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)