This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>fileTypes</key> | |
<array> | |
<string>blade</string> | |
<string>blade.php</string> | |
</array> | |
<key>name</key> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//view get_test.php | |
Former::text('name')->class('myclass')->autofocus(), | |
Former::text('surname')->class('myclass'), | |
Former::password('password'), | |
Former::actions()->submit('Submit'), | |
Former::close(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Provider extends BaseController { | |
//rules for registering | |
public $rules = array( | |
'sname' => 'required|max:20|alpha', | |
'email' => 'required|email|unique:users', | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="event-dialog" class="modal hide fade"> | |
<!-- dialog contents --> | |
<div class="modal-body"> | |
From: <input type="time" placeholder="08:00" id="efrom" /><br /> | |
To: <input type="time" placeholder="16:00" id="eto" /> | |
</div> | |
<!-- dialog buttons --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
['zip'=>'1000', 'name'=> 'Ljubljana'] | |
['zip'=>'1001', 'name'=> 'Ljubljana - P.P.'] | |
['zip'=>'1210', 'name'=> 'Ljubljana - Šentvid'] | |
['zip'=>'1211', 'name'=> 'Ljubljana - Šmartno'] | |
['zip'=>'1215', 'name'=> 'Medvode'] | |
['zip'=>'1216', 'name'=> 'Smlednik'] | |
['zip'=>'1217', 'name'=> 'Vodice'] | |
['zip'=>'1218', 'name'=> 'Komenda'] | |
['zip'=>'1219', 'name'=> 'Laze v Tuhinju'] | |
['zip'=>'1221', 'name'=> 'Motnik'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (Session::has('user')) { | |
Auth::login(Session::get('user')); | |
} | |
else{ | |
Session::put('user',Cookie::get('user')); | |
Auth::login(Cookie::get('user')); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import imaplib | |
import StringIO | |
import rfc822 | |
obj = imaplib.IMAP4_SSL("imap.gmail.com", "993") | |
obj.login("[email protected]", "pass") | |
print obj.list() | |
obj.select("[Gmail]/Vsa po&AWE-ta") | |
m = obj.search(None, "ALL")[1][0] | |
alli = m.split() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Provider registration | |
Ob napaki email ze obstaja predlagam da uporabniki to javite in mu odprete login screen z vnesenim email naslovom. V primeru da ob registraciji vnesem prekratko geslo je bolje povedati uporabniku da ima sibko geslo kot ga prisiliti davnese od 4 do 20 mest za geslo. | |
User registration | |
Enako ter se | |
Tu je geslo do 30. | |
Realno je da uporabnik pozabi da je registriran in se skusa registrirati ponovno. Izbira casovne cone je nejasna. Je samo utc ter razlika. | |
Jezik se lahko privzeto za uporabnike iz slo nastavi na slovensko. |
OlderNewer