Home
last modified time | relevance | path

Searched refs:line (Results 251 – 275 of 2140) sorted by last modified time

1...<<11121314151617181920>>...86

/plugin/upgrade/
H A Dhelper.php242 foreach ($list as $line) {
243 $line = trim(preg_replace('/#.*$/', '', $line));
244 if (!$line) continue;
245 $file = DOKU_INC . $line;
250 $this->log('info', $this->getLang('rm_mismatch'), hsc($line));
258 $this->log('info', $this->getLang('rm_done'), hsc($line));
260 $this->log('error', $this->getLang('rm_fail'), hsc($line));
/plugin/upgrade/vendor/splitbrain/php-cli/src/
H A DColors.php100 * Convenience function to print a line in a given color
102 * @param string $line the line to print, a new line is added automatically
108 public function ptln($line, $color, $channel = STDOUT) argument
111 fwrite($channel, rtrim($line) . "\n");
H A DTableFormatter.php296 foreach ($lines as &$line) {
297 $line = rtrim($line);
298 if ($this->strlen($line) <= $width) {
301 $words = explode(' ', $line);
302 $line = '';
309 $line .= rtrim($actual) . $break;
314 $line .= $this->substr($actual, 0, $width) . $break;
321 $line .= trim($actual);
/plugin/smtp/
H A Daction.php83 foreach($logger->getLog() as $line) {
84 $log[] = trim($line[1]);
/plugin/embeddedphp/
H A DLICENSE291 the "copyright" line and a pointer to where the full notice is found.
293 <one line to give the program's name and a brief idea of what it does.>
/plugin/htmlokalt/
H A DLICENSE209 …exclusion of warranty; and each file should have at least the “copyright” line and a pointer to wh…
211 <one line to give the program's name and a brief idea of what it does.>
/plugin/farmer/admin/
H A Dinfo.php53 $this->line('thisis', $animal ? $this->getLang('thisis.animal') : $this->getLang('thisis.farmer'));
55 $this->line('animal', $animal);
57 $this->line('confdir', fullpath(DOKU_CONF) . '/');
58 $this->line('savedir', fullpath($conf['savedir']) . '/');
59 $this->line('baseinstall', DOKU_INC);
60 $this->line('farm host', $config['base']['farmhost']);
61 $this->line('farm dir', DOKU_FARMDIR);
63 $this->line('animals', $this->animals($INPUT->bool('list')));
66 $this->line('conf_inherit_' . $key, $this->getLang($value ? 'conf_inherit_yes' : 'conf_inherit_no'));
69 $this->line('plugin
107 protected function line($langkey, $value) { global() function in admin_plugin_farmer_info
[all...]
H A Dnew.php347 * Creates a new user line
355 $line = implode(
359 return $line;
363 * Copies the current user as new admin line
/plugin/farmer/_animal/data/pages/wiki/
H A Dsyntax.txt20 **Paragraphs** are created from blank lines. If you want to **force a newline** without a paragraph, you can use two backslashes followed by a whitespace or the end of line.
23 two backslashes are only recognized at the end of a line\\
27 two backslashes are only recognized at the end of a line\\
86 * For Mozilla and Firefox it can be enabled through different workaround mentioned in the [[http://kb.mozillazine.org/Links_to_local_pages_do_not_work|Mozilla Knowledge Base]]. However, there will still be a JavaScript warning about trying to open a Windows Share. To remove this warning (for all users), put the following line in ''conf/local.protected.php'':
120 By using four or more dashes, you can make a horizontal line:
/plugin/farmer/css/
H A Dchosen.less82 line-height: 24px;
145 line-height: normal;
175 line-height: 15px;
254 line-height: normal;
275 line-height: 13px;
/plugin/const/
H A DLICENSE291 the "copyright" line and a pointer to where the full notice is found.
/plugin/sql2wiki/
H A DLICENSE291 the "copyright" line and a pointer to where the full notice is found.
293 <one line to give the program's name and a brief idea of what it does.>
/plugin/approve/syntax/
H A Dtable.php42 foreach ($lines as $line) {
43 $pair = explode(':', $line, 2);
/plugin/approve/
H A DLICENSE291 the "copyright" line and a pointer to where the full notice is found.
293 <one line to give the program's name and a brief idea of what it does.>
/plugin/btable2/
H A DLICENSE291 the "copyright" line and a pointer to where the full notice is found.
293 <one line to give the program's name and a brief idea of what it does.>
/plugin/structacl/
H A Dhelper.php17 foreach ($lines as $line) {
19 $line = preg_replace('/#.*$/', '', $line);
20 $line = trim($line);
21 if ($line === '' || strpos($line, self::STRUCTACL_SEPCHAR) === false) continue;
23 list($schema, $field) = explode(self::STRUCTACL_SEPCHAR, $line, 2);
H A DLICENSE291 the "copyright" line and a pointer to where the full notice is found.
293 <one line to give the program's name and a brief idea of what it does.>
/plugin/notification/
H A DLICENSE291 the "copyright" line and a pointer to where the full notice is found.
293 <one line to give the program's name and a brief idea of what it does.>
/plugin/notification/syntax/
H A Dlist.php43 foreach ($lines as $line) {
44 $pair = explode(':', $line, 2);
/plugin/ireadit/syntax/
H A Dlist.php47 foreach ($lines as $line) {
48 $pair = explode(':', $line, 2);
/plugin/odt/
H A Dexample.css94 text-decoration: line-through;
171 /* Horizontal line
176 border-line-width-bottom: 0.002cm 0.035cm 0.002cm;
H A DChangeLog.txt59 * Added support for text indentation for the first line of a paragraph.
122 * Added support for line-height in CSS based paragraph open functions
/plugin/odt/renderer/
H A Dpagepdf.php98 foreach ($output as $line) {
99 $errormessage .= $this->_xmlEntities($line);
/plugin/keyboard/
H A DCOPYING291 the "copyright" line and a pointer to where the full notice is found.
293 <one line to give the program's name and a brief idea of what it does.>
/plugin/openid/Auth/Yadis/
H A DHTTPFetcher.php138 foreach ($headers as $line) {
139 if (strpos(strtolower($line), "location: ") === 0) {
140 $parts = explode(" ", $line, 2);

1...<<11121314151617181920>>...86