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
int main(int argc, char** argv) { | |
std::cout << "test" << std::endl; | |
} |
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
plugins: { | |
h264streaming: { | |
url: options.h264_plugin | |
}, | |
trafficlog: { | |
url: options.trafficlog_plugin, | |
id: options.player_id, | |
poll_interval: options.poll_interval, | |
pid: options.player_id, | |
log_url: options.trafficlog_url |
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
player = flowplayer('player', options.player_path, { | |
clip: { | |
url: options.clip, | |
autoPlay: options.autoplay, | |
provider: 'h264streaming', | |
onStart: function() { | |
if (seek_time !== null) | |
this.seek(seek_time); | |
}, |
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
<!--Templates:--> | |
<extension point="org.eclipse.ui.editors.templates"> | |
<contextType name="%templates.php.contextType.name" | |
class="org.eclipse.php.internal.ui.editor.templates.PhpTemplateContextType" | |
id="php" /> | |
<contextType name="%templates.newphp.contextType.name" | |
class="org.eclipse.php.internal.ui.editor.templates.PhpNewFileTemplateContextType" | |
id="newPhp" /> | |
<contextType name="%templates.phpcomment.contextType.name" |
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
Project: | |
Global: | |
main: # the main module is required, and must not be removed. | |
actions: | |
header: | |
footer: | |
sitemap: | |
loginForm: |
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
DmUser: | |
dashboard: | |
components: | |
someComponent: |
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
parameters: | |
media_tag_application.class: dmMediaTagFlowPlayerApplication # Responsible for rendering flash objects | |
media_tag_video.class: dmMediaTagFlowPlayerVideo # Responsible for rendering video | |
media_tag_audio.class: dmMediaTagFlowPlayerAudio # Responsible for rendering audio |
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
ckeditor: | |
config: | |
toolbar: | |
- ['Format', 'Bold', 'Italic','Strike','Blockquote', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink'] | |
- ['PasteText','PasteFromWord'] | |
- ['Undo','Redo'] | |
- ['Image', 'HorizontalRule','SpecialChar'] | |
extraPlugins: dmMedia |
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
<ul id="someid"> | |
<li> </li> | |
<ul> | |
<li> </li> | |
<li> </li> | |
<ul> | |
<li></li> | |
</ul> | |
</ul> | |
</ul> |
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
SELECT User.name , Document.id from users User | |
LEFT JOIN documents as Document ON (Document.user_id = User.id) | |
WHERE Document.status = 'SOME_STATUS' | |
$docs = $this->User->find('all', array( | |
'conditions' => array('Document.status' => 'SOME_STATUS'), | |
'joins' => array( | |
array ( | |
'table' => 'documents', | |
'alias' => 'Document', |
OlderNewer