This file contains hidden or 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 class="assigned_to editable story_field" fieldtype="select" fieldname="assigned_to" fieldlabel="<%=l(:assigned_to)%>"> | |
| <div class="t">Assigned To:</div> | |
| <div class="v"><%= assignee_name_or_empty(story) %></div> | |
| </div> |
This file contains hidden or 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
| <script src="https://apps.delta.ncsu.edu/shared-ga/applyyourself_ga.js" type="text/javascript" charset="utf-8"></script> |
This file contains hidden or 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
| var ContentOpacity = '1'; | |
| var TimeToSlide = 250.0; | |
| var openAccordion = ''; | |
| function runAccordion(index) | |
| { | |
| var nID = "Accordion" + index + "Content"; | |
| if(openAccordion == nID) | |
| nID = ''; |
This file contains hidden or 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
| super(context, context.getAssets().openFd("drug.db.mp3").getFileDescriptor().toString(), null, DATABASE_VERSION, R.raw.ormlite_config) |
This file contains hidden or 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
| package com.pruvop.drugdb; | |
| import android.app.AlarmManager; | |
| import android.app.PendingIntent; | |
| import android.content.Context; | |
| import android.content.Intent; | |
| import android.util.Log; | |
| import java.util.Calendar; | |
| import java.util.Date; |
This file contains hidden or 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
| public void testAddScheduleCard() { | |
| getInstrumentation().waitForIdleSync(); | |
| //Select Add Button | |
| solo.clickOnText("Add Another Time"); | |
| assertEquals(solo.searchText("Add Another Time",2), true); | |
| } |
This file contains hidden or 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
| <script type="text/javascript"> | |
| var _gaq = _gaq || []; | |
| _gaq.push(['_setAccount','UA-3002088-4']); | |
| _gaq.push(['_setAllowLinker',true],['_setDomainName','www.nextgengovt.com'],['_trackPageview']); | |
| (function() { | |
| var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | |
| ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | |
| var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); | |
| })(); | |
| </script> |
This file contains hidden or 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
| class ContactForm(forms.Form): | |
| name = forms.CharField(label="Name*") | |
| company = forms.CharField(label="Company*") | |
| email = forms.EmailField(label="Email*") | |
| address = forms.CharField(required=False) | |
| city = forms.CharField(required=False) | |
| state = forms.CharField(required=False) | |
| zipcode = forms.CharField(required=False) | |
| country = forms.CharField(required=False) | |
| telephone = forms.CharField(required=False) |
This file contains hidden or 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
| def resource_filename(base, path_to_append): | |
| """ | |
| resource_filename takes in any python object, preferably __name__. | |
| It then uses the OS module to determine the full path to the calling | |
| module, then that is joined with any additional path and it | |
| is returned. | |
| """ | |
| base_path = os.path.dirname(os.path.abspath(base)) | |
| return os.path.join(base_path, path_to_append) |
This file contains hidden or 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
| { | |
| "bold_folder_labels": true, | |
| "caret_style": "phase", | |
| "color_scheme": "Packages/Tomorrow-Night-Eighties.tmTheme", | |
| "fade_fold_buttons": false, | |
| "font_face": "Consolas", | |
| "font_size": 13, | |
| "highlight_line": true, | |
| "line_padding_bottom": 1, | |
| "line_padding_top": 1, |
OlderNewer